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

67378 строки
1.7 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity,
  51. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. parents: [
  143. "video-games"
  144. ]
  145. },
  146. tiger: {
  147. name: "Tiger",
  148. parents: [
  149. "cat"
  150. ]
  151. },
  152. cat: {
  153. name: "Cat",
  154. parents: [
  155. "feliform"
  156. ]
  157. },
  158. "blue-jay": {
  159. name: "Blue Jay",
  160. parents: [
  161. "corvid"
  162. ]
  163. },
  164. wolf: {
  165. name: "Wolf",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. coyote: {
  171. name: "Coyote",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. raccoon: {
  177. name: "Raccoon",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. weasel: {
  183. name: "Weasel",
  184. parents: [
  185. "mustelid"
  186. ]
  187. },
  188. "red-panda": {
  189. name: "Red Panda",
  190. parents: [
  191. "mammal"
  192. ]
  193. },
  194. dolphin: {
  195. name: "Dolphin",
  196. parents: [
  197. "mammal"
  198. ]
  199. },
  200. "african-wild-dog": {
  201. name: "African Wild Dog",
  202. parents: [
  203. "canine"
  204. ]
  205. },
  206. "hyena": {
  207. name: "Hyena",
  208. parents: [
  209. "feliform"
  210. ]
  211. },
  212. "carbuncle": {
  213. name: "Carbuncle",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. bat: {
  219. name: "Bat",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "leaf-nosed-bat": {
  225. name: "Leaf-Nosed Bat",
  226. parents: [
  227. "bat"
  228. ]
  229. },
  230. "fish": {
  231. name: "Fish",
  232. parents: [
  233. "animal",
  234. "aquatic"
  235. ]
  236. },
  237. "ram": {
  238. name: "Ram",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "demon": {
  244. name: "Demon",
  245. parents: [
  246. "supernatural"
  247. ]
  248. },
  249. "cougar": {
  250. name: "Cougar",
  251. parents: [
  252. "cat"
  253. ]
  254. },
  255. "goat": {
  256. name: "Goat",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "lion": {
  262. name: "Lion",
  263. parents: [
  264. "cat"
  265. ]
  266. },
  267. "harpy-eager": {
  268. name: "Harpy Eagle",
  269. parents: [
  270. "avian"
  271. ]
  272. },
  273. "deer": {
  274. name: "Deer",
  275. parents: [
  276. "mammal"
  277. ]
  278. },
  279. "phoenix": {
  280. name: "Phoenix",
  281. parents: [
  282. "avian"
  283. ]
  284. },
  285. "aeromorph": {
  286. name: "Aeromorph",
  287. parents: [
  288. "machine"
  289. ]
  290. },
  291. "machine": {
  292. name: "Machine",
  293. },
  294. "android": {
  295. name: "Android",
  296. parents: [
  297. "machine"
  298. ]
  299. },
  300. "jackal": {
  301. name: "Jackal",
  302. parents: [
  303. "canine"
  304. ]
  305. },
  306. "corvid": {
  307. name: "Corvid",
  308. parents: [
  309. "passerine"
  310. ]
  311. },
  312. "pharaoh-hound": {
  313. name: "Pharaoh Hound",
  314. parents: [
  315. "dog"
  316. ]
  317. },
  318. "skunk": {
  319. name: "Skunk",
  320. parents: [
  321. "mammal"
  322. ]
  323. },
  324. "shark": {
  325. name: "Shark",
  326. parents: [
  327. "fish"
  328. ]
  329. },
  330. "black-panther": {
  331. name: "Black Panther",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "umbra": {
  337. name: "Umbra",
  338. parents: [
  339. "animal"
  340. ]
  341. },
  342. "raven": {
  343. name: "Raven",
  344. parents: [
  345. "corvid"
  346. ]
  347. },
  348. "snow-leopard": {
  349. name: "Snow Leopard",
  350. parents: [
  351. "cat"
  352. ]
  353. },
  354. "barbary-lion": {
  355. name: "Barbary Lion",
  356. parents: [
  357. "lion"
  358. ]
  359. },
  360. "dra'gal": {
  361. name: "Dra'Gal",
  362. parents: [
  363. "mammal"
  364. ]
  365. },
  366. "german-shepherd": {
  367. name: "German Shepherd",
  368. parents: [
  369. "dog"
  370. ]
  371. },
  372. "bayleef": {
  373. name: "Bayleef",
  374. parents: [
  375. "pokemon",
  376. "plant",
  377. "animal"
  378. ]
  379. },
  380. "mouse": {
  381. name: "Mouse",
  382. parents: [
  383. "rodent"
  384. ]
  385. },
  386. "rat": {
  387. name: "Rat",
  388. parents: [
  389. "mammal"
  390. ]
  391. },
  392. "hoshiko-beast": {
  393. name: "Hoshiko Beast",
  394. parents: ["animal"]
  395. },
  396. "snow-jugani": {
  397. name: "Snow Jugani",
  398. parents: ["cat"]
  399. },
  400. "patamon": {
  401. name: "Patamon",
  402. parents: ["digimon", "guinea-pig"]
  403. },
  404. "digimon": {
  405. name: "Digimon",
  406. parents: [
  407. "video-games"
  408. ]
  409. },
  410. "jugani": {
  411. name: "Jugani",
  412. parents: ["cat"]
  413. },
  414. "luxray": {
  415. name: "Luxray",
  416. parents: ["pokemon", "lion"]
  417. },
  418. "mech": {
  419. name: "Mech",
  420. parents: ["machine"]
  421. },
  422. "zoid": {
  423. name: "Zoid",
  424. parents: ["mech"]
  425. },
  426. "monster": {
  427. name: "Monster",
  428. parents: ["animal"]
  429. },
  430. "foo-dog": {
  431. name: "Foo Dog",
  432. parents: ["mammal"]
  433. },
  434. "elephant": {
  435. name: "Elephant",
  436. parents: ["mammal"]
  437. },
  438. "eagle": {
  439. name: "Eagle",
  440. parents: ["bird-of-prey"]
  441. },
  442. "cow": {
  443. name: "Cow",
  444. parents: ["mammal"]
  445. },
  446. "crocodile": {
  447. name: "Crocodile",
  448. parents: ["reptile"]
  449. },
  450. "borzoi": {
  451. name: "Borzoi",
  452. parents: ["dog"]
  453. },
  454. "snake": {
  455. name: "Snake",
  456. parents: ["reptile"]
  457. },
  458. "horned-bush-viper": {
  459. name: "Horned Bush Viper",
  460. parents: ["viper"]
  461. },
  462. "cobra": {
  463. name: "Cobra",
  464. parents: ["snake"]
  465. },
  466. "harpy-eagle": {
  467. name: "Harpy Eagle",
  468. parents: ["eagle"]
  469. },
  470. "raptor": {
  471. name: "Raptor",
  472. parents: ["dinosaur"]
  473. },
  474. "dinosaur": {
  475. name: "Dinosaur",
  476. parents: ["saurian"]
  477. },
  478. "saurian": {
  479. name: "Saurian",
  480. parents: ["lizard"]
  481. },
  482. "veilhound": {
  483. name: "Veilhound",
  484. parents: ["hellhound"]
  485. },
  486. "hellhound": {
  487. name: "Hellhound",
  488. parents: ["canine", "demon"]
  489. },
  490. "insect": {
  491. name: "Insect",
  492. parents: ["animal"]
  493. },
  494. "beetle": {
  495. name: "Beetle",
  496. parents: ["insect"]
  497. },
  498. "moth": {
  499. name: "Moth",
  500. parents: ["insect"]
  501. },
  502. "eastern-dragon": {
  503. name: "Eastern Dragon",
  504. parents: ["dragon"]
  505. },
  506. "jaguar": {
  507. name: "Jaguar",
  508. parents: ["cat"]
  509. },
  510. "horse": {
  511. name: "Horse",
  512. parents: ["mammal"]
  513. },
  514. "sergal": {
  515. name: "Sergal",
  516. parents: ["mammal", "avian", "vilous"]
  517. },
  518. "gryphon": {
  519. name: "Gryphon",
  520. parents: ["lion", "eagle"]
  521. },
  522. "robot": {
  523. name: "Robot",
  524. parents: ["machine"]
  525. },
  526. "medihound": {
  527. name: "Medihound",
  528. parents: ["robot", "dog"]
  529. },
  530. "sylveon": {
  531. name: "Sylveon",
  532. parents: ["pokemon"]
  533. },
  534. "catgirl": {
  535. name: "Catgirl",
  536. parents: ["mammal"]
  537. },
  538. "cowgirl": {
  539. name: "Cowgirl",
  540. parents: ["mammal"]
  541. },
  542. "pony": {
  543. name: "Pony",
  544. parents: ["horse"]
  545. },
  546. "rabbit": {
  547. name: "Rabbit",
  548. parents: ["leporidae"]
  549. },
  550. "fennec-fox": {
  551. name: "Fennec Fox",
  552. parents: ["fox"]
  553. },
  554. "azodian": {
  555. name: "Azodian",
  556. parents: ["mouse"]
  557. },
  558. "shiba-inu": {
  559. name: "Shiba Inu",
  560. parents: ["dog"]
  561. },
  562. "changeling": {
  563. name: "Changeling",
  564. parents: ["insect"]
  565. },
  566. "cheetah": {
  567. name: "Cheetah",
  568. parents: ["cat"]
  569. },
  570. "golden-jackal": {
  571. name: "Golden Jackal",
  572. parents: ["jackal"]
  573. },
  574. "manectric": {
  575. name: "Manectric",
  576. parents: ["pokemon", "wolf"]
  577. },
  578. "rat": {
  579. name: "Rat",
  580. parents: ["rodent"]
  581. },
  582. "rodent": {
  583. name: "Rodent",
  584. parents: ["mammal"]
  585. },
  586. "octocoon": {
  587. name: "Octocoon",
  588. parents: ["raccoon", "octopus"]
  589. },
  590. "octopus": {
  591. name: "Octopus",
  592. parents: ["fish"]
  593. },
  594. "werewolf": {
  595. name: "Werewolf",
  596. parents: ["wolf", "werebeast"]
  597. },
  598. "werebeast": {
  599. name: "Werebeast",
  600. parents: ["monster"]
  601. },
  602. "meerkat": {
  603. name: "Meerkat",
  604. parents: ["mammal"]
  605. },
  606. "human": {
  607. name: "Human",
  608. parents: ["mammal", "humanoid"]
  609. },
  610. "geth": {
  611. name: "Geth",
  612. parents: ["android"]
  613. },
  614. "husky": {
  615. name: "Husky",
  616. parents: ["dog"]
  617. },
  618. "long-eared-bat": {
  619. name: "Long Eared Bat",
  620. parents: ["bat"]
  621. },
  622. "lizard": {
  623. name: "Lizard",
  624. parents: ["reptile"]
  625. },
  626. "salamander": {
  627. name: "Salamander",
  628. parents: ["lizard"]
  629. },
  630. "chameleon": {
  631. name: "Chameleon",
  632. parents: ["lizard"]
  633. },
  634. "gecko": {
  635. name: "Gecko",
  636. parents: ["lizard"]
  637. },
  638. "kobold": {
  639. name: "Kobold",
  640. parents: ["reptile"]
  641. },
  642. "charizard": {
  643. name: "Charizard",
  644. parents: ["pokemon", "dragon"]
  645. },
  646. "lugia": {
  647. name: "Lugia",
  648. parents: ["pokemon", "avian"]
  649. },
  650. "cerberus": {
  651. name: "Cerberus",
  652. parents: ["dog"]
  653. },
  654. "tyrantrum": {
  655. name: "Tyrantrum",
  656. parents: ["pokemon"]
  657. },
  658. "lemur": {
  659. name: "Lemur",
  660. parents: ["mammal"]
  661. },
  662. "kelpie": {
  663. name: "Kelpie",
  664. parents: ["horse", "monster"]
  665. },
  666. "labrador": {
  667. name: "Labrador",
  668. parents: ["dog"]
  669. },
  670. "sylveon": {
  671. name: "Sylveon",
  672. parents: ["eeveelution"]
  673. },
  674. "eeveelution": {
  675. name: "Eeveelution",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "polar-bear": {
  679. name: "Polar Bear",
  680. parents: ["bear"]
  681. },
  682. "bear": {
  683. name: "Bear",
  684. parents: ["mammal"]
  685. },
  686. "absol": {
  687. name: "Absol",
  688. parents: ["pokemon", "cat"]
  689. },
  690. "wolver": {
  691. name: "Wolver",
  692. parents: ["mammal"]
  693. },
  694. "rottweiler": {
  695. name: "Rottweiler",
  696. parents: ["dog"]
  697. },
  698. "zebra": {
  699. name: "Zebra",
  700. parents: ["horse"]
  701. },
  702. "yoshi": {
  703. name: "Yoshi",
  704. parents: ["dinosaur"]
  705. },
  706. "lynx": {
  707. name: "Lynx",
  708. parents: ["cat"]
  709. },
  710. "unknown": {
  711. name: "Unknown",
  712. parents: []
  713. },
  714. "thylacine": {
  715. name: "Thylacine",
  716. parents: ["mammal"]
  717. },
  718. "gabumon": {
  719. name: "Gabumon",
  720. parents: ["digimon"]
  721. },
  722. "border-collie": {
  723. name: "Border Collie",
  724. parents: ["dog"]
  725. },
  726. "imp": {
  727. name: "Imp",
  728. parents: ["demon"]
  729. },
  730. "kangaroo": {
  731. name: "Kangaroo",
  732. parents: ["marsupial"]
  733. },
  734. "renamon": {
  735. name: "Renamon",
  736. parents: ["digimon", "fox"]
  737. },
  738. "candy-orca-dragon": {
  739. name: "Candy Orca Dragon",
  740. parents: ["fish", "dragon", "candy"]
  741. },
  742. "sabertooth-tiger": {
  743. name: "Sabertooth Tiger",
  744. parents: ["cat"]
  745. },
  746. "espurr": {
  747. name: "Espurr",
  748. parents: ["pokemon", "cat"]
  749. },
  750. "otter": {
  751. name: "Otter",
  752. parents: ["mustelid"]
  753. },
  754. "elemental": {
  755. name: "Elemental",
  756. parents: ["mammal"]
  757. },
  758. "mew": {
  759. name: "Mew",
  760. parents: ["pokemon"]
  761. },
  762. "goodra": {
  763. name: "Goodra",
  764. parents: ["pokemon"]
  765. },
  766. "fairy": {
  767. name: "Fairy",
  768. parents: ["magical"]
  769. },
  770. "typhlosion": {
  771. name: "Typhlosion",
  772. parents: ["pokemon"]
  773. },
  774. "magical": {
  775. name: "Magical",
  776. parents: []
  777. },
  778. "xenomorph": {
  779. name: "Xenomorph",
  780. parents: ["monster", "alien"]
  781. },
  782. "charr": {
  783. name: "Charr",
  784. parents: ["cat"]
  785. },
  786. "siberian-husky": {
  787. name: "Siberian Husky",
  788. parents: ["husky"]
  789. },
  790. "alligator": {
  791. name: "Alligator",
  792. parents: ["reptile"]
  793. },
  794. "bernese-mountain-dog": {
  795. name: "Bernese Mountain Dog",
  796. parents: ["dog"]
  797. },
  798. "reshiram": {
  799. name: "Reshiram",
  800. parents: ["pokemon", "dragon"]
  801. },
  802. "grizzly-bear": {
  803. name: "Grizzly Bear",
  804. parents: ["bear"]
  805. },
  806. "water-monitor": {
  807. name: "Water Monitor",
  808. parents: ["lizard"]
  809. },
  810. "banchofossa": {
  811. name: "Banchofossa",
  812. parents: ["mammal"]
  813. },
  814. "kirin": {
  815. name: "Kirin",
  816. parents: ["monster"]
  817. },
  818. "quilava": {
  819. name: "Quilava",
  820. parents: ["pokemon"]
  821. },
  822. "seviper": {
  823. name: "Seviper",
  824. parents: ["pokemon", "viper"]
  825. },
  826. "flying-fox": {
  827. name: "Flying Fox",
  828. parents: ["bat"]
  829. },
  830. "keynain": {
  831. name: "Keynain",
  832. parents: ["avian"]
  833. },
  834. "lucario": {
  835. name: "Lucario",
  836. parents: ["pokemon", "jackal"]
  837. },
  838. "siamese-cat": {
  839. name: "Siamese Cat",
  840. parents: ["cat"]
  841. },
  842. "spider": {
  843. name: "Spider",
  844. parents: ["insect"]
  845. },
  846. "samurott": {
  847. name: "Samurott",
  848. parents: ["pokemon", "otter"]
  849. },
  850. "megalodon": {
  851. name: "Megalodon",
  852. parents: ["shark"]
  853. },
  854. "unicorn": {
  855. name: "Unicorn",
  856. parents: ["horse"]
  857. },
  858. "greninja": {
  859. name: "Greninja",
  860. parents: ["pokemon", "frog"]
  861. },
  862. "water-dragon": {
  863. name: "Water Dragon",
  864. parents: ["dragon"]
  865. },
  866. "cross-fox": {
  867. name: "Cross Fox",
  868. parents: ["fox"]
  869. },
  870. "synth": {
  871. name: "Synth",
  872. parents: ["machine"]
  873. },
  874. "construct": {
  875. name: "Construct",
  876. parents: []
  877. },
  878. "mexican-wolf": {
  879. name: "Mexican Wolf",
  880. parents: ["wolf"]
  881. },
  882. "leopard": {
  883. name: "Leopard",
  884. parents: ["cat"]
  885. },
  886. "pig": {
  887. name: "Pig",
  888. parents: ["mammal"]
  889. },
  890. "ampharos": {
  891. name: "Ampharos",
  892. parents: ["pokemon", "sheep"]
  893. },
  894. "orca": {
  895. name: "Orca",
  896. parents: ["fish"]
  897. },
  898. "lycanroc": {
  899. name: "Lycanroc",
  900. parents: ["pokemon", "wolf"]
  901. },
  902. "surkanu": {
  903. name: "Surkanu",
  904. parents: ["monster"]
  905. },
  906. "seal": {
  907. name: "Seal",
  908. parents: ["mammal"]
  909. },
  910. "keldeo": {
  911. name: "Keldeo",
  912. parents: ["pokemon"]
  913. },
  914. "great-dane": {
  915. name: "Great Dane",
  916. parents: ["dog"]
  917. },
  918. "black-backed-jackal": {
  919. name: "Black Backed Jackal",
  920. parents: ["jackal"]
  921. },
  922. "sheep": {
  923. name: "Sheep",
  924. parents: ["mammal"]
  925. },
  926. "leopard-seal": {
  927. name: "Leopard Seal",
  928. parents: ["seal"]
  929. },
  930. "zoroark": {
  931. name: "Zoroark",
  932. parents: ["pokemon", "fox"]
  933. },
  934. "maned-wolf": {
  935. name: "Maned Wolf",
  936. parents: ["canine"]
  937. },
  938. "dracha": {
  939. name: "Dracha",
  940. parents: ["dragon"]
  941. },
  942. "wolxi": {
  943. name: "Wolxi",
  944. parents: ["mammal", "alien"]
  945. },
  946. "dratini": {
  947. name: "Dratini",
  948. parents: ["pokemon", "dragon"]
  949. },
  950. "skaven": {
  951. name: "Skaven",
  952. parents: ["rat"]
  953. },
  954. "mongoose": {
  955. name: "Mongoose",
  956. parents: ["mammal"]
  957. },
  958. "lopunny": {
  959. name: "Lopunny",
  960. parents: ["pokemon", "rabbit"]
  961. },
  962. "feraligatr": {
  963. name: "Feraligatr",
  964. parents: ["pokemon", "alligator"]
  965. },
  966. "houndoom": {
  967. name: "Houndoom",
  968. parents: ["pokemon", "dog"]
  969. },
  970. "protogen": {
  971. name: "Protogen",
  972. parents: ["machine"]
  973. },
  974. "saint-bernard": {
  975. name: "Saint Bernard",
  976. parents: ["dog"]
  977. },
  978. "crow": {
  979. name: "Crow",
  980. parents: ["corvid"]
  981. },
  982. "delphox": {
  983. name: "Delphox",
  984. parents: ["pokemon", "fox"]
  985. },
  986. "moose": {
  987. name: "Moose",
  988. parents: ["mammal"]
  989. },
  990. "joraxian": {
  991. name: "Joraxian",
  992. parents: ["monster", "canine", "demon"]
  993. },
  994. "nimbat": {
  995. name: "Nimbat",
  996. parents: ["mammal"]
  997. },
  998. "aardwolf": {
  999. name: "Aardwolf",
  1000. parents: ["canine"]
  1001. },
  1002. "fluudrani": {
  1003. name: "Fluudrani",
  1004. parents: ["animal"]
  1005. },
  1006. "arcanine": {
  1007. name: "Arcanine",
  1008. parents: ["pokemon", "dog"]
  1009. },
  1010. "inteleon": {
  1011. name: "Inteleon",
  1012. parents: ["pokemon", "fish"]
  1013. },
  1014. "ninetales": {
  1015. name: "Ninetales",
  1016. parents: ["pokemon", "kitsune"]
  1017. },
  1018. "tigrex": {
  1019. name: "Tigrex",
  1020. parents: ["wyvern", "monster-hunter"]
  1021. },
  1022. "zorua": {
  1023. name: "Zorua",
  1024. parents: ["pokemon", "fox"]
  1025. },
  1026. "vulpix": {
  1027. name: "Vulpix",
  1028. parents: ["pokemon", "fox"]
  1029. },
  1030. "barghest": {
  1031. name: "Barghest",
  1032. parents: ["monster"]
  1033. },
  1034. "gray-wolf": {
  1035. name: "Gray Wolf",
  1036. parents: ["wolf"]
  1037. },
  1038. "ruppells-fox": {
  1039. name: "Rüppell's Fox",
  1040. parents: ["fox"]
  1041. },
  1042. "bull-terrier": {
  1043. name: "Bull Terrier",
  1044. parents: ["dog"]
  1045. },
  1046. "european-honey-buzzard": {
  1047. name: "European Honey Buzzard",
  1048. parents: ["avian"]
  1049. },
  1050. "t-rex": {
  1051. name: "Tyrannosaurus Rex",
  1052. parents: ["theropod"]
  1053. },
  1054. "mactarian": {
  1055. name: "Mactarian",
  1056. parents: ["shark", "monster"]
  1057. },
  1058. "mewtwo-y": {
  1059. name: "Mewtwo Y",
  1060. parents: ["mewtwo"]
  1061. },
  1062. "mewtwo": {
  1063. name: "Mewtwo",
  1064. parents: ["pokemon"]
  1065. },
  1066. "eevee": {
  1067. name: "Eevee",
  1068. parents: ["eeveelution"]
  1069. },
  1070. "mienshao": {
  1071. name: "Mienshao",
  1072. parents: ["pokemon"]
  1073. },
  1074. "sugar-glider": {
  1075. name: "Sugar Glider",
  1076. parents: ["opossum"]
  1077. },
  1078. "spectral-bat": {
  1079. name: "Spectral Bat",
  1080. parents: ["bat"]
  1081. },
  1082. "scolipede": {
  1083. name: "Scolipede",
  1084. parents: ["pokemon", "insect"]
  1085. },
  1086. "jackalope": {
  1087. name: "Jackalope",
  1088. parents: ["rabbit", "antelope"]
  1089. },
  1090. "caracal": {
  1091. name: "Caracal",
  1092. parents: ["cat"]
  1093. },
  1094. "stoat": {
  1095. name: "Stoat",
  1096. parents: ["mammal"]
  1097. },
  1098. "african-golden-cat": {
  1099. name: "African Golden Cat",
  1100. parents: ["cat"]
  1101. },
  1102. "gigantosaurus": {
  1103. name: "Gigantosaurus",
  1104. parents: ["dinosaur"]
  1105. },
  1106. "zorgoia": {
  1107. name: "Zorgoia",
  1108. parents: ["mammal"]
  1109. },
  1110. "monitor-lizard": {
  1111. name: "Monitor Lizard",
  1112. parents: ["lizard"]
  1113. },
  1114. "ziralkia": {
  1115. name: "Ziralkia",
  1116. parents: ["mammal"]
  1117. },
  1118. "kiiasi": {
  1119. name: "Kiiasi",
  1120. parents: ["animal"]
  1121. },
  1122. "synx": {
  1123. name: "Synx",
  1124. parents: ["monster"]
  1125. },
  1126. "panther": {
  1127. name: "Panther",
  1128. parents: ["cat"]
  1129. },
  1130. "azumarill": {
  1131. name: "Azumarill",
  1132. parents: ["pokemon"]
  1133. },
  1134. "river-snaptail": {
  1135. name: "River Snaptail",
  1136. parents: ["otter", "crocodile"]
  1137. },
  1138. "great-blue-heron": {
  1139. name: "Great Blue Heron",
  1140. parents: ["avian"]
  1141. },
  1142. "smeargle": {
  1143. name: "Smeargle",
  1144. parents: ["pokemon"]
  1145. },
  1146. "vendeilen": {
  1147. name: "Vendeilen",
  1148. parents: ["monster"]
  1149. },
  1150. "ventura": {
  1151. name: "Ventura",
  1152. parents: ["canine"]
  1153. },
  1154. "clouded-leopard": {
  1155. name: "Clouded Leopard",
  1156. parents: ["leopard"]
  1157. },
  1158. "argonian": {
  1159. name: "Argonian",
  1160. parents: ["lizard"]
  1161. },
  1162. "salazzle": {
  1163. name: "Salazzle",
  1164. parents: ["pokemon", "lizard"]
  1165. },
  1166. "je-stoff-drachen": {
  1167. name: "Je-Stoff Drachen",
  1168. parents: ["dragon"]
  1169. },
  1170. "finnish-spitz-dog": {
  1171. name: "Finnish Spitz Dog",
  1172. parents: ["dog"]
  1173. },
  1174. "gray-fox": {
  1175. name: "Gray Fox",
  1176. parents: ["fox"]
  1177. },
  1178. "opossum": {
  1179. name: "Opossum",
  1180. parents: ["mammal"]
  1181. },
  1182. "antelope": {
  1183. name: "Antelope",
  1184. parents: ["mammal"]
  1185. },
  1186. "weavile": {
  1187. name: "Weavile",
  1188. parents: ["pokemon"]
  1189. },
  1190. "pikachu": {
  1191. name: "Pikachu",
  1192. parents: ["pokemon", "mouse"]
  1193. },
  1194. "grovyle": {
  1195. name: "Grovyle",
  1196. parents: ["pokemon", "plant"]
  1197. },
  1198. "sthara": {
  1199. name: "Sthara",
  1200. parents: ["snow-leopard", "reptile"]
  1201. },
  1202. "star-warrior": {
  1203. name: "Star Warrior",
  1204. parents: ["magical"]
  1205. },
  1206. "dragonoid": {
  1207. name: "Dragonoid",
  1208. parents: ["dragon"]
  1209. },
  1210. "suicune": {
  1211. name: "Suicune",
  1212. parents: ["pokemon"]
  1213. },
  1214. "vole": {
  1215. name: "Vole",
  1216. parents: ["mammal"]
  1217. },
  1218. "blaziken": {
  1219. name: "Blaziken",
  1220. parents: ["pokemon", "avian"]
  1221. },
  1222. "buizel": {
  1223. name: "Buizel",
  1224. parents: ["pokemon", "fish"]
  1225. },
  1226. "floatzel": {
  1227. name: "Floatzel",
  1228. parents: ["pokemon", "fish"]
  1229. },
  1230. "umok": {
  1231. name: "Umok",
  1232. parents: ["avian"]
  1233. },
  1234. "sea-monster": {
  1235. name: "Sea Monster",
  1236. parents: ["monster", "fish"]
  1237. },
  1238. "egyptian-vulture": {
  1239. name: "Egyptian Vulture",
  1240. parents: ["avian"]
  1241. },
  1242. "doberman": {
  1243. name: "Doberman",
  1244. parents: ["dog"]
  1245. },
  1246. "zangoose": {
  1247. name: "Zangoose",
  1248. parents: ["pokemon", "mongoose"]
  1249. },
  1250. "mongoose": {
  1251. name: "Mongoose",
  1252. parents: ["mammal"]
  1253. },
  1254. "wickerbeast": {
  1255. name: "Wickerbeast",
  1256. parents: ["monster"]
  1257. },
  1258. "zenari": {
  1259. name: "Zenari",
  1260. parents: ["lizard"]
  1261. },
  1262. "plant": {
  1263. name: "Plant",
  1264. parents: []
  1265. },
  1266. "raskatox": {
  1267. name: "Raskatox",
  1268. parents: ["raccoon", "skunk", "cat", "fox"]
  1269. },
  1270. "mikromare": {
  1271. name: "mikromare",
  1272. parents: ["alien"]
  1273. },
  1274. "alien": {
  1275. name: "Alien",
  1276. parents: ["animal"]
  1277. },
  1278. "deity": {
  1279. name: "Deity",
  1280. parents: []
  1281. },
  1282. "skarlan": {
  1283. name: "Skarlan",
  1284. parents: ["slug", "dragon"]
  1285. },
  1286. "slug": {
  1287. name: "Slug",
  1288. parents: ["mollusk"]
  1289. },
  1290. "mollusk": {
  1291. name: "Mollusk",
  1292. parents: ["animal"]
  1293. },
  1294. "chimera": {
  1295. name: "Chimera",
  1296. parents: ["monster"]
  1297. },
  1298. "gestalt": {
  1299. name: "Gestalt",
  1300. parents: ["construct"]
  1301. },
  1302. "mimic": {
  1303. name: "Mimic",
  1304. parents: ["monster"]
  1305. },
  1306. "calico-rat": {
  1307. name: "Calico Rat",
  1308. parents: ["rat"]
  1309. },
  1310. "panda": {
  1311. name: "Panda",
  1312. parents: ["mammal"]
  1313. },
  1314. "oni": {
  1315. name: "Oni",
  1316. parents: ["monster"]
  1317. },
  1318. "pegasus": {
  1319. name: "Pegasus",
  1320. parents: ["horse"]
  1321. },
  1322. "vulpera": {
  1323. name: "Vulpera",
  1324. parents: ["fennec-fox"]
  1325. },
  1326. "ceratosaurus": {
  1327. name: "Ceratosaurus",
  1328. parents: ["dinosaur"]
  1329. },
  1330. "nykur": {
  1331. name: "Nykur",
  1332. parents: ["horse", "monster"]
  1333. },
  1334. "giraffe": {
  1335. name: "Giraffe",
  1336. parents: ["mammal"]
  1337. },
  1338. "tauren": {
  1339. name: "Tauren",
  1340. parents: ["cow"]
  1341. },
  1342. "draconi": {
  1343. name: "Draconi",
  1344. parents: ["alien", "cat", "cyborg"]
  1345. },
  1346. "dire-wolf": {
  1347. name: "Dire Wolf",
  1348. parents: ["wolf"]
  1349. },
  1350. "ferromorph": {
  1351. name: "Ferromorph",
  1352. parents: ["construct"]
  1353. },
  1354. "meowth": {
  1355. name: "Meowth",
  1356. parents: ["cat", "pokemon"]
  1357. },
  1358. "pavodragon": {
  1359. name: "Pavodragon",
  1360. parents: ["dragon"]
  1361. },
  1362. "aaltranae": {
  1363. name: "Aaltranae",
  1364. parents: ["dragon"]
  1365. },
  1366. "cyborg": {
  1367. name: "Cyborg",
  1368. parents: ["machine"]
  1369. },
  1370. "draptor": {
  1371. name: "Draptor",
  1372. parents: ["dragon"]
  1373. },
  1374. "candy": {
  1375. name: "Candy",
  1376. parents: []
  1377. },
  1378. "drenath": {
  1379. name: "Drenath",
  1380. parents: ["dragon", "snake", "rabbit"]
  1381. },
  1382. "coyju": {
  1383. name: "Coyju",
  1384. parents: ["coyote", "kaiju"]
  1385. },
  1386. "kaiju": {
  1387. name: "Kaiju",
  1388. parents: ["monster"]
  1389. },
  1390. "nickit": {
  1391. name: "Nickit",
  1392. parents: ["pokemon", "cat"]
  1393. },
  1394. "lopunny": {
  1395. name: "Lopunny",
  1396. parents: ["pokemon", "rabbit"]
  1397. },
  1398. "korean-jindo-dog": {
  1399. name: "Korean Jindo Dog",
  1400. parents: ["dog"]
  1401. },
  1402. "naga": {
  1403. name: "Naga",
  1404. parents: ["snake", "monster"]
  1405. },
  1406. "undead": {
  1407. name: "Undead",
  1408. parents: ["monster"]
  1409. },
  1410. "whale": {
  1411. name: "Whale",
  1412. parents: ["fish"]
  1413. },
  1414. "gelato-bee": {
  1415. name: "Gelato Bee",
  1416. parents: ["bee"]
  1417. },
  1418. "bee": {
  1419. name: "Bee",
  1420. parents: ["insect"]
  1421. },
  1422. "gardevoir": {
  1423. name: "Gardevoir",
  1424. parents: ["pokemon"]
  1425. },
  1426. "ant": {
  1427. name: "Ant",
  1428. parents: ["insect"]
  1429. },
  1430. "frog": {
  1431. name: "Frog",
  1432. parents: ["amphibian"]
  1433. },
  1434. "amphibian": {
  1435. name: "Amphibian",
  1436. parents: ["animal", "aquatic"]
  1437. },
  1438. "pangolin": {
  1439. name: "Pangolin",
  1440. parents: ["mammal"]
  1441. },
  1442. "uragi'viidorn": {
  1443. name: "Uragi'viidorn",
  1444. parents: ["avian", "bear"]
  1445. },
  1446. "gryphdelphais": {
  1447. name: "Gryphdelphais",
  1448. parents: ["dolphin", "gryphon"]
  1449. },
  1450. "plush": {
  1451. name: "Plush",
  1452. parents: ["construct"]
  1453. },
  1454. "draiger": {
  1455. name: "Draiger",
  1456. parents: ["dragon","tiger"]
  1457. },
  1458. "foxsky": {
  1459. name: "Foxsky",
  1460. parents: ["fox", "husky"]
  1461. },
  1462. "umbreon": {
  1463. name: "Umbreon",
  1464. parents: ["eeveelution"]
  1465. },
  1466. "slime-dragon": {
  1467. name: "Slime Dragon",
  1468. parents: ["dragon", "goo"]
  1469. },
  1470. "enderman": {
  1471. name: "Enderman",
  1472. parents: ["monster"]
  1473. },
  1474. "gremlin": {
  1475. name: "Gremlin",
  1476. parents: ["monster"]
  1477. },
  1478. "dragonsune": {
  1479. name: "Dragonsune",
  1480. parents: ["dragon", "kitsune"]
  1481. },
  1482. "ghost": {
  1483. name: "Ghost",
  1484. parents: ["supernatural"]
  1485. },
  1486. "false-vampire-bat": {
  1487. name: "False Vampire Bat",
  1488. parents: ["bat"]
  1489. },
  1490. "succubus": {
  1491. name: "Succubus",
  1492. parents: ["demon"]
  1493. },
  1494. "mia": {
  1495. name: "Mia",
  1496. parents: ["canine"]
  1497. },
  1498. "rainbow": {
  1499. name: "Rainbow",
  1500. parents: ["monster"]
  1501. },
  1502. "solgaleo": {
  1503. name: "Solgaleo",
  1504. parents: ["pokemon"]
  1505. },
  1506. "lucent-nargacuga": {
  1507. name: "Lucent Nargacuga",
  1508. parents: ["nargacuga"]
  1509. },
  1510. "monster-hunter": {
  1511. name: "Monster Hunter",
  1512. parents: ["monster", "video-games"]
  1513. },
  1514. "leviathan": {
  1515. "name": "Leviathan",
  1516. "url": "sea-monster"
  1517. },
  1518. "bull": {
  1519. name: "Bull",
  1520. parents: ["mammal"]
  1521. },
  1522. "tanuki": {
  1523. name: "Tanuki",
  1524. parents: ["monster"]
  1525. },
  1526. "chakat": {
  1527. name: "Chakat",
  1528. parents: ["cat"]
  1529. },
  1530. "hydra": {
  1531. name: "Hydra",
  1532. parents: ["monster"]
  1533. },
  1534. "zigzagoon": {
  1535. name: "Zigzagoon",
  1536. parents: ["raccoon", "pokemon"]
  1537. },
  1538. "vulture": {
  1539. name: "Vulture",
  1540. parents: ["avian"]
  1541. },
  1542. "eastern-dragon": {
  1543. name: "Eastern Dragon",
  1544. parents: ["dragon"]
  1545. },
  1546. "gryffon": {
  1547. name: "Gryffon",
  1548. parents: ["phoenix", "red-panda"]
  1549. },
  1550. "amtsvane": {
  1551. name: "Amtsvane",
  1552. parents: ["reptile"]
  1553. },
  1554. "kigavi": {
  1555. name: "Kigavi",
  1556. parents: ["avian"]
  1557. },
  1558. "turian": {
  1559. name: "Turian",
  1560. parents: ["avian"]
  1561. },
  1562. "zeraora": {
  1563. name: "Zeraora",
  1564. parents: ["pokemon", "cat"]
  1565. },
  1566. "sandshrew": {
  1567. name: "Sandshrew",
  1568. parents: ["pokemon", "pangolin"]
  1569. },
  1570. "valais-blacknose-sheep": {
  1571. name: "Valais Blacknose Sheep",
  1572. parents: ["sheep"]
  1573. },
  1574. "novaleit": {
  1575. name: "Novaleit",
  1576. parents: ["mammal"]
  1577. },
  1578. "dunnoh": {
  1579. name: "Dunnoh",
  1580. parents: ["mammal"]
  1581. },
  1582. "lunaral-dragon": {
  1583. name: "Lunaral Dragon",
  1584. parents: ["dragon"]
  1585. },
  1586. "arctic-wolf": {
  1587. name: "Arctic Wolf",
  1588. parents: ["wolf"]
  1589. },
  1590. "donkey": {
  1591. name: "Donkey",
  1592. parents: ["horse"]
  1593. },
  1594. "chinchilla": {
  1595. name: "Chinchilla",
  1596. parents: ["rodent"]
  1597. },
  1598. "felkin": {
  1599. name: "Felkin",
  1600. parents: ["dragon"]
  1601. },
  1602. "tykeriel": {
  1603. name: "Tykeriel",
  1604. parents: ["avian"]
  1605. },
  1606. "folf": {
  1607. name: "Folf",
  1608. parents: ["fox", "wolf"]
  1609. },
  1610. "pooltoy": {
  1611. name: "Pooltoy",
  1612. parents: ["construct"]
  1613. },
  1614. "demi": {
  1615. name: "Demi",
  1616. parents: ["human"]
  1617. },
  1618. "stegosaurus": {
  1619. name: "Stegosaurus",
  1620. parents: ["dinosaur"]
  1621. },
  1622. "computer-virus": {
  1623. name: "Computer Virus",
  1624. parents: ["program"]
  1625. },
  1626. "program": {
  1627. name: "Program",
  1628. parents: ["construct"]
  1629. },
  1630. "space-springhare": {
  1631. name: "Space Springhare",
  1632. parents: ["hare"]
  1633. },
  1634. "river-drake": {
  1635. name: "River Drake",
  1636. parents: ["dragon"]
  1637. },
  1638. "djinn": {
  1639. "name": "Djinn",
  1640. "url": "supernatural"
  1641. },
  1642. "supernatural": {
  1643. name: "Supernatural",
  1644. parents: ["monster"]
  1645. },
  1646. "grasshopper-mouse": {
  1647. name: "Grasshopper Mouse",
  1648. parents: ["mouse"]
  1649. },
  1650. "somali-cat": {
  1651. name: "Somali Cat",
  1652. parents: ["cat"]
  1653. },
  1654. "minccino": {
  1655. name: "Minccino",
  1656. parents: ["pokemon", "chinchilla"]
  1657. },
  1658. "pine-marten": {
  1659. name: "Pine Marten",
  1660. parents: ["marten"]
  1661. },
  1662. "marten": {
  1663. name: "Marten",
  1664. parents: ["mustelid"]
  1665. },
  1666. "mustelid": {
  1667. name: "Mustelid",
  1668. parents: ["mammal"]
  1669. },
  1670. "caribou": {
  1671. name: "Caribou",
  1672. parents: ["deer"]
  1673. },
  1674. "gnoll": {
  1675. name: "Gnoll",
  1676. parents: ["hyena", "monster"]
  1677. },
  1678. "peacekeeper": {
  1679. name: "Peacekeeper",
  1680. parents: ["human"]
  1681. },
  1682. "river-otter": {
  1683. name: "River Otter",
  1684. parents: ["otter"]
  1685. },
  1686. "dhole": {
  1687. name: "Dhole",
  1688. parents: ["canine"]
  1689. },
  1690. "springbok": {
  1691. name: "Springbok",
  1692. parents: ["antelope"]
  1693. },
  1694. "marsupial": {
  1695. name: "Marsupial",
  1696. parents: ["mammal"]
  1697. },
  1698. "townsend-big-eared-bat": {
  1699. name: "Townsend Big-eared Bat",
  1700. parents: ["bat"]
  1701. },
  1702. "squirrel": {
  1703. name: "Squirrel",
  1704. parents: ["rodent"]
  1705. },
  1706. "magpie": {
  1707. name: "Magpie",
  1708. parents: ["corvid"]
  1709. },
  1710. "civet": {
  1711. name: "Civet",
  1712. parents: ["feliform"]
  1713. },
  1714. "feliform": {
  1715. name: "Feliform",
  1716. parents: ["mammal"]
  1717. },
  1718. "tiefling": {
  1719. name: "Tiefling",
  1720. parents: ["devil"]
  1721. },
  1722. "devil": {
  1723. name: "Devil",
  1724. parents: ["supernatural"]
  1725. },
  1726. "sika-deer": {
  1727. name: "Sika Deer",
  1728. parents: ["deer"]
  1729. },
  1730. "vaporeon": {
  1731. name: "Vaporeon",
  1732. parents: ["eeveelution"]
  1733. },
  1734. "leafeon": {
  1735. name: "Leafeon",
  1736. parents: ["eeveelution"]
  1737. },
  1738. "jolteon": {
  1739. name: "Jolteon",
  1740. parents: ["eeveelution"]
  1741. },
  1742. "spireborn": {
  1743. name: "Spireborn",
  1744. parents: ["zorgoia"]
  1745. },
  1746. "vampire": {
  1747. name: "Vampire",
  1748. parents: ["monster"]
  1749. },
  1750. "extraplanar": {
  1751. name: "Extraplanar",
  1752. parents: []
  1753. },
  1754. "goo": {
  1755. name: "Goo",
  1756. parents: []
  1757. },
  1758. "skink": {
  1759. name: "Skink",
  1760. parents: ["lizard"]
  1761. },
  1762. "bat-eared-fox": {
  1763. name: "Bat-eared Fox",
  1764. parents: ["fox"]
  1765. },
  1766. "belted-kingfisher": {
  1767. name: "Belted Kingfisher",
  1768. parents: ["avian"]
  1769. },
  1770. "omnifalcon": {
  1771. name: "Omnifalcon",
  1772. parents: ["gryphon", "falcon", "harpy-eagle"]
  1773. },
  1774. "falcon": {
  1775. name: "Falcon",
  1776. parents: ["bird-of-prey"]
  1777. },
  1778. "avali": {
  1779. name: "Avali",
  1780. parents: ["avian", "alien"]
  1781. },
  1782. "arctic-fox": {
  1783. name: "Arctic Fox",
  1784. parents: ["fox"]
  1785. },
  1786. "snow-tiger": {
  1787. name: "Snow Tiger",
  1788. parents: ["tiger"]
  1789. },
  1790. "marble-fox": {
  1791. name: "Marble Fox",
  1792. parents: ["fox"]
  1793. },
  1794. "king-wickerbeast": {
  1795. name: "King Wickerbeast",
  1796. parents: ["wickerbeast"]
  1797. },
  1798. "wickerbeast": {
  1799. name: "Wickerbeast",
  1800. parents: ["mammal"]
  1801. },
  1802. "european-polecat": {
  1803. name: "European Polecat",
  1804. parents: ["polecat"]
  1805. },
  1806. "polecat": {
  1807. name: "Polecat",
  1808. parents: ["mustelid"]
  1809. },
  1810. "teshari": {
  1811. name: "Teshari",
  1812. parents: ["avian", "raptor"]
  1813. },
  1814. "alicorn": {
  1815. name: "Alicorn",
  1816. parents: ["horse"]
  1817. },
  1818. "atlas-moth": {
  1819. name: "Atlas Moth",
  1820. parents: ["moth"]
  1821. },
  1822. "owlbear": {
  1823. name: "Owlbear",
  1824. parents: ["owl", "bear", "monster"]
  1825. },
  1826. "owl": {
  1827. name: "Owl",
  1828. parents: ["avian"]
  1829. },
  1830. "silvertongue": {
  1831. name: "Silvertongue",
  1832. parents: ["reptile"]
  1833. },
  1834. "ahuizotl": {
  1835. name: "Ahuizotl",
  1836. parents: ["monster"]
  1837. },
  1838. "ender-dragon": {
  1839. name: "Ender Dragon",
  1840. parents: ["dragon"]
  1841. },
  1842. "bruhathkayosaurus": {
  1843. name: "Bruhathkayosaurus",
  1844. parents: ["sauropod"]
  1845. },
  1846. "sauropod": {
  1847. name: "Sauropod",
  1848. parents: ["dinosaur"]
  1849. },
  1850. "black-sable-antelope": {
  1851. name: "Black Sable Antelope",
  1852. parents: ["antelope"]
  1853. },
  1854. "slime": {
  1855. name: "Slime",
  1856. parents: ["goo"]
  1857. },
  1858. "utahraptor": {
  1859. name: "Utahraptor",
  1860. parents: ["raptor"]
  1861. },
  1862. "indian-giant-squirrel": {
  1863. name: "Indian Giant Squirrel",
  1864. parents: ["squirrel"]
  1865. },
  1866. "golden-retriever": {
  1867. name: "Golden Retriever",
  1868. parents: ["dog"]
  1869. },
  1870. "triceratops": {
  1871. name: "Triceratops",
  1872. parents: ["dinosaur"]
  1873. },
  1874. "drake": {
  1875. name: "Drake",
  1876. parents: ["dragon"]
  1877. },
  1878. "okapi": {
  1879. name: "Okapi",
  1880. parents: ["giraffe"]
  1881. },
  1882. "arctic-hare": {
  1883. name: "Arctic Hare",
  1884. parents: ["hare"]
  1885. },
  1886. "hare": {
  1887. name: "Hare",
  1888. parents: ["leporidae"]
  1889. },
  1890. "leporidae": {
  1891. name: "Leporidae",
  1892. parents: ["mammal"]
  1893. },
  1894. "leopard-gecko": {
  1895. name: "Leopard Gecko",
  1896. parents: ["gecko"]
  1897. },
  1898. "dreamspawn": {
  1899. name: "Dreamspawn",
  1900. parents: ["illusion"]
  1901. },
  1902. "illusion": {
  1903. name: "Illusion",
  1904. parents: []
  1905. },
  1906. "purrloin": {
  1907. name: "Purrloin",
  1908. parents: ["cat", "pokemon"]
  1909. },
  1910. "noivern": {
  1911. name: "Noivern",
  1912. parents: ["bat", "dragon", "pokemon"]
  1913. },
  1914. "hedgehog": {
  1915. name: "Hedgehog",
  1916. parents: ["mammal"]
  1917. },
  1918. "liger": {
  1919. name: "Liger",
  1920. parents: ["lion", "tiger", "hybrid"]
  1921. },
  1922. "hybrid": {
  1923. name: "Hybrid",
  1924. parents: []
  1925. },
  1926. "drider": {
  1927. name: "Drider",
  1928. parents: ["spider"]
  1929. },
  1930. "sabresune": {
  1931. name: "Sabresune",
  1932. parents: ["kitsune", "sabertooth-tiger"]
  1933. },
  1934. "ditto": {
  1935. name: "Ditto",
  1936. parents: ["pokemon", "goo"]
  1937. },
  1938. "amogus": {
  1939. name: "Amogus",
  1940. parents: ["deity"]
  1941. },
  1942. "ferret": {
  1943. name: "Ferret",
  1944. parents: ["mustelid"]
  1945. },
  1946. "guinea-pig": {
  1947. name: "Guinea Pig",
  1948. parents: ["rodent"]
  1949. },
  1950. "viper": {
  1951. name: "Viper",
  1952. parents: ["snake"]
  1953. },
  1954. "cinderace": {
  1955. name: "Cinderace",
  1956. parents: ["pokemon", "rabbit"]
  1957. },
  1958. "caudin": {
  1959. name: "Caudin",
  1960. parents: ["dragon"]
  1961. },
  1962. "red-winged-blackbird": {
  1963. name: "Red-Winged Blackbird",
  1964. parents: ["avian"]
  1965. },
  1966. "hooded-wheater": {
  1967. name: "Hooded Wheater",
  1968. parents: ["passerine"]
  1969. },
  1970. "passerine": {
  1971. name: "Passerine",
  1972. parents: ["avian"]
  1973. },
  1974. "gieeg": {
  1975. name: "Gieeg",
  1976. parents: ["alien"]
  1977. },
  1978. "ringtail": {
  1979. name: "Ringtail",
  1980. parents: ["raccoon"]
  1981. },
  1982. "hisuian-zoroark": {
  1983. name: "Hisuian Zoroark",
  1984. parents: ["zoroark", "hisuian"]
  1985. },
  1986. "hisuian": {
  1987. name: "Hisuian",
  1988. parents: ["regional-pokemon"]
  1989. },
  1990. "regional-pokemon": {
  1991. name: "Regional Pokemon",
  1992. parents: ["pokemon"]
  1993. },
  1994. "cybeast": {
  1995. name: "Cybeast",
  1996. parents: ["computer-virus"]
  1997. },
  1998. "javira-dragon": {
  1999. name: "Javira Dragon",
  2000. parents: ["dragon"]
  2001. },
  2002. "koopew": {
  2003. name: "Koopew",
  2004. parents: ["dragon", "alien"]
  2005. },
  2006. "nevrean": {
  2007. name: "Nevrean",
  2008. parents: ["avian", "vilous"]
  2009. },
  2010. "vilous": {
  2011. name: "Vilous Species",
  2012. parents: []
  2013. },
  2014. "titanoboa": {
  2015. name: "Titanoboa",
  2016. parents: ["snake"]
  2017. },
  2018. "raichu": {
  2019. name: "Raichu",
  2020. parents: ["pikachu"]
  2021. },
  2022. "taur": {
  2023. name: "Taur",
  2024. parents: []
  2025. },
  2026. "continental-giant-rabbit": {
  2027. name: "Continental Giant Rabbit",
  2028. parents: ["rabbit"]
  2029. },
  2030. "demigryph": {
  2031. name: "Demigryph",
  2032. parents: ["lion", "eagle"]
  2033. },
  2034. "bald-eagle": {
  2035. name: "Bald Eagle",
  2036. parents: ["eagle"]
  2037. },
  2038. "kestrel": {
  2039. name: "Kestrel",
  2040. parents: ["falcon"]
  2041. },
  2042. "mockingbird": {
  2043. name: "Mockingbird",
  2044. parents: ["songbird"]
  2045. },
  2046. "songbird": {
  2047. name: "Songbird",
  2048. parents: ["avian"]
  2049. },
  2050. "bird-of-prey": {
  2051. name: "Bird of Prey",
  2052. parents: ["avian"]
  2053. },
  2054. "marowak": {
  2055. name: "Marowak",
  2056. parents: ["pokemon", "reptile"]
  2057. },
  2058. "joltik": {
  2059. name: "Joltik",
  2060. parents: ["pokemon", "insect"]
  2061. },
  2062. "mink": {
  2063. name: "Mink",
  2064. parents: ["mustelid"]
  2065. },
  2066. "sandcat": {
  2067. name: "Sandcat",
  2068. parents: ["cat"]
  2069. },
  2070. "hrothgar": {
  2071. name: "Hrothgar",
  2072. parents: ["cat"]
  2073. },
  2074. "garchomp": {
  2075. name: "Garchomp",
  2076. parents: ["dragon", "pokemon"]
  2077. },
  2078. "nargacuga": {
  2079. name: "Nargacuga",
  2080. parents: ["monster-hunter"]
  2081. },
  2082. "sable": {
  2083. name: "Sable",
  2084. parents: ["marten"]
  2085. },
  2086. "deino": {
  2087. name: "Deino",
  2088. parents: ["pokemon", "dinosaur"]
  2089. },
  2090. "housecat": {
  2091. name: "Housecat",
  2092. parents: ["cat"]
  2093. },
  2094. "bombay-cat": {
  2095. name: "Bombay Cat",
  2096. parents: ["housecat"]
  2097. },
  2098. "maine-coon": {
  2099. name: "Maine Coon",
  2100. parents: ["housecat"]
  2101. },
  2102. "coelacanth": {
  2103. name: "Coelacanth",
  2104. parents: ["fish"]
  2105. },
  2106. "silvally": {
  2107. name: "Silvally",
  2108. parents: ["legendary-pokemon"]
  2109. },
  2110. "legendary-pokemon": {
  2111. name: "Legendary Pokemon",
  2112. parents: ["pokemon"]
  2113. },
  2114. "great-maccao": {
  2115. name: "Great Maccao",
  2116. parents: ["monster-hunter", "raptor"]
  2117. },
  2118. "shapeshifter": {
  2119. name: "shapeshifter",
  2120. parents: []
  2121. },
  2122. "obstagoon": {
  2123. name: "Obstagoon",
  2124. parents: ["zigzagoon"]
  2125. },
  2126. "thomsons-gazelle": {
  2127. name: "Thomsons Gazelle",
  2128. parents: ["gazelle"]
  2129. },
  2130. "gazelle": {
  2131. name: "Gazelle",
  2132. parents: ["antelope"]
  2133. },
  2134. "monkey": {
  2135. name: "Monkey",
  2136. parents: ["primate"]
  2137. },
  2138. "serval": {
  2139. name: "Serval",
  2140. parents: ["cat"]
  2141. },
  2142. "swampert": {
  2143. name: "Swampert",
  2144. parents: ["pokemon"]
  2145. },
  2146. "red-fox": {
  2147. name: "Red Fox",
  2148. parents: ["fox"]
  2149. },
  2150. "sliver": {
  2151. name: "Sliver",
  2152. parents: ["alien"]
  2153. },
  2154. "sergix": {
  2155. name: "Sergix",
  2156. parents: ["demon", "sergal", "phoenix"]
  2157. },
  2158. "behemoth": {
  2159. name: "Behemoth",
  2160. parents: ["monster", "dragon", "final-fantasy"]
  2161. },
  2162. "final-fantasy": {
  2163. name: "Final Fantasy",
  2164. parents: ["video-games"]
  2165. },
  2166. "video-games": {
  2167. name: "Video Games",
  2168. parents: []
  2169. },
  2170. "eastern-cottontail-rabbit": {
  2171. name: "Eastern Cottontail Rabbit",
  2172. parents: ["rabbit"]
  2173. },
  2174. "thresher-shark": {
  2175. name: "Thresher Shark",
  2176. parents: ["shark"]
  2177. },
  2178. "ai": {
  2179. name: "AI",
  2180. parents: []
  2181. },
  2182. "black-tip-reef-shark": {
  2183. name: "Black Tip Reef Shark",
  2184. parents: ["shark"]
  2185. },
  2186. "quetzalcoatlus-northropi": {
  2187. name: "Quetzalcoatlus Northropi",
  2188. parents: ["dinosaur"]
  2189. },
  2190. "snivy": {
  2191. name: "Snivy",
  2192. parents: ["pokemon", "snake"]
  2193. },
  2194. "nedynvor": {
  2195. name: "Nedynvor",
  2196. parents: ["avian"]
  2197. },
  2198. "marbled-polecat": {
  2199. name: "Marbled Polecat",
  2200. parents: ["polecat"]
  2201. },
  2202. "ape": {
  2203. name: "Ape",
  2204. parents: ["primate"]
  2205. },
  2206. "primate": {
  2207. name: "Primate",
  2208. parents: ["mammal"]
  2209. },
  2210. "kulve-taroth": {
  2211. name: "Kulve Taroth",
  2212. parents: ["monster-hunter", "dragon"]
  2213. },
  2214. "irthos": {
  2215. name: "Irthos",
  2216. parents: ["dragon"]
  2217. },
  2218. "furred-dragon": {
  2219. name: "Furred Dragon",
  2220. parents: ["dragon"]
  2221. },
  2222. "hippogriff": {
  2223. name: "Hippogriff",
  2224. parents: ["gryphon", "horse"]
  2225. },
  2226. "peregrine-falcon": {
  2227. name: "Peregrine Falcon",
  2228. parents: ["falcon"]
  2229. },
  2230. "deinonychus": {
  2231. name: "Deinonychus",
  2232. parents: ["theropod"]
  2233. },
  2234. "theropod": {
  2235. name: "Theropod",
  2236. parents: ["dinosaur"]
  2237. },
  2238. "chocobo": {
  2239. name: "Chocobo",
  2240. parents: ["avian"]
  2241. },
  2242. "stilio": {
  2243. name: "Stilio",
  2244. parents: ["snake"]
  2245. },
  2246. "kardox": {
  2247. name: "Kardox",
  2248. parents: ["wolf", "dragon", "horse"]
  2249. },
  2250. "food": {
  2251. name: "Food",
  2252. parents: ["object"]
  2253. },
  2254. "object": {
  2255. name: "Object",
  2256. parents: []
  2257. },
  2258. "honey-badger": {
  2259. name: "honey-badger",
  2260. parents: ["badger"]
  2261. },
  2262. "badger": {
  2263. name: "Badger",
  2264. parents: ["mustelid"]
  2265. },
  2266. "rattlesnake": {
  2267. name: "Rattlesnake",
  2268. parents: ["snake"]
  2269. },
  2270. "diamondback": {
  2271. name: "Diamondback",
  2272. parents: ["snake"]
  2273. },
  2274. "spidox": {
  2275. name: "Spidox",
  2276. parents: ["spider", "fox"]
  2277. },
  2278. "kodiak-bear": {
  2279. name: "Kodiak Bear",
  2280. parents: ["bear"]
  2281. },
  2282. "alurean": {
  2283. name: "Alurean",
  2284. parents: ["saurian", "aquatic", "alien"]
  2285. },
  2286. "aquatic": {
  2287. name: "Aquatic",
  2288. parents: []
  2289. },
  2290. "wyvern": {
  2291. name: "Wyvern",
  2292. parents: ["dragon"]
  2293. },
  2294. "catfish": {
  2295. name: "Catfish",
  2296. parents: ["fish"]
  2297. },
  2298. "vesempress": {
  2299. name: "Vesempress",
  2300. parents: ["vespiquen"]
  2301. },
  2302. "vespiquen": {
  2303. name: "Vespiquen",
  2304. parents: ["pokemon", "bee"]
  2305. },
  2306. "gaelterranian": {
  2307. name: "Gaelterranian",
  2308. parents: ["alien"]
  2309. },
  2310. "pistrogre": {
  2311. name: "Pistrogre",
  2312. parents: ["alien", "deity", "insect", "reptile"]
  2313. },
  2314. "komodo-dragon": {
  2315. name: "Komodo Dragon",
  2316. parents: ["lizard"]
  2317. },
  2318. "shiny": {
  2319. name: "Shiny",
  2320. parents: ["pokemon"]
  2321. },
  2322. "latex": {
  2323. name: "Latex",
  2324. parents: []
  2325. },
  2326. "praying-mantis": {
  2327. name: "Praying Mantis",
  2328. parents: ["insect"]
  2329. },
  2330. "espeon": {
  2331. name: "Espeon",
  2332. parents: ["eeveelution"]
  2333. },
  2334. "skullwolf": {
  2335. name: "Skullwolf",
  2336. parents: ["wolf", "skullmonster"]
  2337. },
  2338. "skulldragon": {
  2339. name: "Skulldragon",
  2340. parents: ["dragon", "skullmonster"]
  2341. },
  2342. "skullmonster": {
  2343. name: "Skullmonster",
  2344. parents: ["monster"]
  2345. },
  2346. "ferrin": {
  2347. name: "Ferrin",
  2348. parents: ["dragon"]
  2349. },
  2350. "rusty-spotted-cat": {
  2351. name: "Rusty-Spotted Cat",
  2352. parents: ["cat"]
  2353. },
  2354. "elf": {
  2355. name: "Elf",
  2356. parents: ["humanoid"]
  2357. },
  2358. "humanoid": {
  2359. name: "Humanoid",
  2360. parents: []
  2361. },
  2362. "allusus": {
  2363. name: "Allusus",
  2364. parents: ["humanoid"]
  2365. },
  2366. "saltwater-crocodile": {
  2367. name: "Saltwater Crocodile",
  2368. parents: ["crocodile"]
  2369. },
  2370. "eastern-grey-kangaroo": {
  2371. name: "Eastern Grey Kangaroo",
  2372. parents: ["kangaroo"]
  2373. },
  2374. "latenivenatrix": {
  2375. name: "Latenivenatrix",
  2376. parents: ["troodontidae"]
  2377. },
  2378. "troodontidae": {
  2379. name: "Troodontidae",
  2380. parents: ["theropod", "avian"]
  2381. },
  2382. "duck": {
  2383. name: "Duck",
  2384. parents: ["waterfowl"]
  2385. },
  2386. "waterfowl": {
  2387. name: "Waterfowl",
  2388. parents: ["avian"]
  2389. },
  2390. "earless-monitor-lizard": {
  2391. name: "Earless Monitor Lizard",
  2392. parents: ["monitor-lizard"]
  2393. },
  2394. "aerosynth": {
  2395. name: "Aerosynth",
  2396. parents: ["aeromorph", "synth"]
  2397. },
  2398. "phenx": {
  2399. name: "Phenx",
  2400. parents: ["uragi"]
  2401. },
  2402. "uragi": {
  2403. name: "Uragi",
  2404. parents: ["avian", "bear"]
  2405. },
  2406. "driger": {
  2407. name: "Driger",
  2408. parents: ["dragon", "tiger"]
  2409. },
  2410. "homestuck-troll": {
  2411. name: "Troll (Homestuck)",
  2412. parents: ["humanoid"]
  2413. },
  2414. "riolu": {
  2415. name: "Riolu",
  2416. parents: ["pokemon"]
  2417. },
  2418. "king-cheetah": {
  2419. name: "King Cheetah",
  2420. parents: ["cheetah"]
  2421. },
  2422. "secretary-bird": {
  2423. name: "Secretary Bird",
  2424. parents: ["bird-of-prey"]
  2425. },
  2426. "russian-blue": {
  2427. name: "Russian Blue",
  2428. parents: ["housecat"]
  2429. },
  2430. "wholphin": {
  2431. name: "Wholphin",
  2432. parents: ["whale", "dolphin"]
  2433. },
  2434. "sea-dragon": {
  2435. name: "Sea Dragon",
  2436. parents: ["dragon", "aquatic"]
  2437. },
  2438. "brown-bear": {
  2439. name: "Brown Bear",
  2440. parents: ["bear"]
  2441. },
  2442. "vampire-bat": {
  2443. name: "Vampire Bat",
  2444. parents: ["bat"]
  2445. },
  2446. "dilophosaurus": {
  2447. name: "Dilophosaurus",
  2448. parents: ["theropod"]
  2449. },
  2450. }
  2451. //species
  2452. function getSpeciesInfo(speciesList) {
  2453. let result = new Set();
  2454. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2455. result.add(entry)
  2456. });
  2457. return Array.from(result);
  2458. };
  2459. function getSpeciesInfoHelper(species) {
  2460. if (!speciesData[species]) {
  2461. console.warn(species + " doesn't exist");
  2462. return [];
  2463. }
  2464. if (speciesData[species].parents) {
  2465. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2466. } else {
  2467. return [species];
  2468. }
  2469. }
  2470. characterMakers.push(() => makeCharacter(
  2471. {
  2472. name: "Fen",
  2473. species: ["crux"],
  2474. description: {
  2475. title: "Bio",
  2476. text: "Very furry. Sheds on everything."
  2477. },
  2478. tags: [
  2479. "anthro",
  2480. "goo"
  2481. ]
  2482. },
  2483. {
  2484. front: {
  2485. height: math.unit(12, "feet"),
  2486. weight: math.unit(2400, "lb"),
  2487. preyCapacity: math.unit(1, "people"),
  2488. name: "Front",
  2489. image: {
  2490. source: "./media/characters/fen/front.svg",
  2491. extra: 1804/1562,
  2492. bottom: 205/2009
  2493. },
  2494. extraAttributes: {
  2495. pawSize: {
  2496. name: "Paw Size",
  2497. power: 2,
  2498. type: "area",
  2499. base: math.unit(0.35, "m^2")
  2500. }
  2501. }
  2502. },
  2503. diving: {
  2504. height: math.unit(4.9, "meters"),
  2505. weight: math.unit(2400, "lb"),
  2506. name: "Diving",
  2507. image: {
  2508. source: "./media/characters/fen/diving.svg"
  2509. }
  2510. },
  2511. sleeby: {
  2512. height: math.unit(3.45, "meters"),
  2513. weight: math.unit(2400, "lb"),
  2514. name: "Sleeby",
  2515. image: {
  2516. source: "./media/characters/fen/sleeby.svg"
  2517. }
  2518. },
  2519. goo: {
  2520. height: math.unit(12, "feet"),
  2521. weight: math.unit(3600, "lb"),
  2522. volume: math.unit(1000, "liters"),
  2523. preyCapacity: math.unit(6, "people"),
  2524. name: "Goo",
  2525. image: {
  2526. source: "./media/characters/fen/goo.svg",
  2527. extra: 1307/1071,
  2528. bottom: 134/1441
  2529. }
  2530. },
  2531. horror: {
  2532. height: math.unit(13.6, "feet"),
  2533. weight: math.unit(2400, "lb"),
  2534. preyCapacity: math.unit(1, "people"),
  2535. name: "Horror",
  2536. image: {
  2537. source: "./media/characters/fen/horror.svg",
  2538. extra: 893/797,
  2539. bottom: 0/893
  2540. }
  2541. },
  2542. gooNsfw: {
  2543. height: math.unit(12, "feet"),
  2544. weight: math.unit(3750, "lb"),
  2545. volume: math.unit(1000, "liters"),
  2546. preyCapacity: math.unit(6, "people"),
  2547. name: "Goo (NSFW)",
  2548. image: {
  2549. source: "./media/characters/fen/goo-nsfw.svg",
  2550. extra: 1875/1734,
  2551. bottom: 122/1997
  2552. }
  2553. },
  2554. maw: {
  2555. height: math.unit(5.03, "feet"),
  2556. name: "Maw",
  2557. image: {
  2558. source: "./media/characters/fen/maw.svg"
  2559. }
  2560. },
  2561. gooCeiling: {
  2562. height: math.unit(6.6, "feet"),
  2563. weight: math.unit(3000, "lb"),
  2564. volume: math.unit(1000, "liters"),
  2565. preyCapacity: math.unit(6, "people"),
  2566. name: "Maw (Goo)",
  2567. image: {
  2568. source: "./media/characters/fen/goo-maw.svg"
  2569. }
  2570. },
  2571. paw: {
  2572. height: math.unit(3.77, "feet"),
  2573. name: "Paw",
  2574. image: {
  2575. source: "./media/characters/fen/paw.svg"
  2576. },
  2577. extraAttributes: {
  2578. "toeSize": {
  2579. name: "Toe Size",
  2580. power: 2,
  2581. type: "area",
  2582. base: math.unit(0.02875, "m^2")
  2583. },
  2584. "pawSize": {
  2585. name: "Paw Size",
  2586. power: 2,
  2587. type: "area",
  2588. base: math.unit(0.378, "m^2")
  2589. },
  2590. }
  2591. },
  2592. tail: {
  2593. height: math.unit(12.1, "feet"),
  2594. name: "Tail",
  2595. image: {
  2596. source: "./media/characters/fen/tail.svg"
  2597. }
  2598. },
  2599. tailFull: {
  2600. height: math.unit(12.1, "feet"),
  2601. name: "Full Tail",
  2602. image: {
  2603. source: "./media/characters/fen/tail-full.svg"
  2604. }
  2605. },
  2606. back: {
  2607. height: math.unit(12, "feet"),
  2608. weight: math.unit(2400, "lb"),
  2609. name: "Back",
  2610. image: {
  2611. source: "./media/characters/fen/back.svg",
  2612. },
  2613. info: {
  2614. description: {
  2615. mode: "append",
  2616. text: "\n\nHe is not currently looking at you."
  2617. }
  2618. }
  2619. },
  2620. full: {
  2621. height: math.unit(1.85, "meter"),
  2622. weight: math.unit(3200, "lb"),
  2623. preyCapacity: math.unit(3, "people"),
  2624. name: "Full",
  2625. image: {
  2626. source: "./media/characters/fen/full.svg",
  2627. extra: 1133/859,
  2628. bottom: 145/1278
  2629. },
  2630. info: {
  2631. description: {
  2632. mode: "append",
  2633. text: "\n\nMunch."
  2634. }
  2635. }
  2636. },
  2637. gooLounging: {
  2638. height: math.unit(4.53, "feet"),
  2639. weight: math.unit(3000, "lb"),
  2640. preyCapacity: math.unit(6, "people"),
  2641. name: "Goo (Lounging)",
  2642. image: {
  2643. source: "./media/characters/fen/goo-lounging.svg",
  2644. bottom: 116 / 613
  2645. }
  2646. },
  2647. lounging: {
  2648. height: math.unit(10.52, "feet"),
  2649. weight: math.unit(2400, "lb"),
  2650. name: "Lounging",
  2651. image: {
  2652. source: "./media/characters/fen/lounging.svg"
  2653. }
  2654. },
  2655. },
  2656. [
  2657. {
  2658. name: "Small",
  2659. height: math.unit(2.2428, "meter")
  2660. },
  2661. {
  2662. name: "Normal",
  2663. height: math.unit(12, "feet"),
  2664. default: true,
  2665. },
  2666. {
  2667. name: "Big",
  2668. height: math.unit(20, "feet")
  2669. },
  2670. {
  2671. name: "Minimacro",
  2672. height: math.unit(40, "feet"),
  2673. info: {
  2674. description: {
  2675. mode: "append",
  2676. text: "\n\nTOO DAMN BIG"
  2677. }
  2678. }
  2679. },
  2680. {
  2681. name: "Macro",
  2682. height: math.unit(100, "feet"),
  2683. info: {
  2684. description: {
  2685. mode: "append",
  2686. text: "\n\nTOO DAMN BIG"
  2687. }
  2688. }
  2689. },
  2690. {
  2691. name: "Megamacro",
  2692. height: math.unit(2, "miles")
  2693. },
  2694. {
  2695. name: "Gigamacro",
  2696. height: math.unit(10, "earths")
  2697. },
  2698. ]
  2699. ))
  2700. characterMakers.push(() => makeCharacter(
  2701. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2702. {
  2703. front: {
  2704. height: math.unit(183, "cm"),
  2705. weight: math.unit(80, "kg"),
  2706. name: "Front",
  2707. image: {
  2708. source: "./media/characters/sofia-fluttertail/front.svg",
  2709. bottom: 0.01,
  2710. extra: 2154 / 2081
  2711. }
  2712. },
  2713. frontAlt: {
  2714. height: math.unit(183, "cm"),
  2715. weight: math.unit(80, "kg"),
  2716. name: "Front (alt)",
  2717. image: {
  2718. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2719. }
  2720. },
  2721. back: {
  2722. height: math.unit(183, "cm"),
  2723. weight: math.unit(80, "kg"),
  2724. name: "Back",
  2725. image: {
  2726. source: "./media/characters/sofia-fluttertail/back.svg"
  2727. }
  2728. },
  2729. kneeling: {
  2730. height: math.unit(125, "cm"),
  2731. weight: math.unit(80, "kg"),
  2732. name: "Kneeling",
  2733. image: {
  2734. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2735. extra: 1033 / 977,
  2736. bottom: 23.7 / 1057
  2737. }
  2738. },
  2739. maw: {
  2740. height: math.unit(183 / 5, "cm"),
  2741. name: "Maw",
  2742. image: {
  2743. source: "./media/characters/sofia-fluttertail/maw.svg"
  2744. }
  2745. },
  2746. mawcloseup: {
  2747. height: math.unit(183 / 5 * 0.41, "cm"),
  2748. name: "Maw (Closeup)",
  2749. image: {
  2750. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2751. }
  2752. },
  2753. paws: {
  2754. height: math.unit(1.17, "feet"),
  2755. name: "Paws",
  2756. image: {
  2757. source: "./media/characters/sofia-fluttertail/paws.svg",
  2758. extra: 851 / 851,
  2759. bottom: 17 / 868
  2760. }
  2761. },
  2762. },
  2763. [
  2764. {
  2765. name: "Normal",
  2766. height: math.unit(1.83, "meter")
  2767. },
  2768. {
  2769. name: "Size Thief",
  2770. height: math.unit(18, "feet")
  2771. },
  2772. {
  2773. name: "50 Foot Collie",
  2774. height: math.unit(50, "feet")
  2775. },
  2776. {
  2777. name: "Macro",
  2778. height: math.unit(96, "feet"),
  2779. default: true
  2780. },
  2781. {
  2782. name: "Megamerger",
  2783. height: math.unit(650, "feet")
  2784. },
  2785. ]
  2786. ))
  2787. characterMakers.push(() => makeCharacter(
  2788. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2789. {
  2790. front: {
  2791. height: math.unit(7, "feet"),
  2792. weight: math.unit(100, "kg"),
  2793. name: "Front",
  2794. image: {
  2795. source: "./media/characters/march/front.svg",
  2796. extra: 1992/1851,
  2797. bottom: 39/2031
  2798. }
  2799. },
  2800. foot: {
  2801. height: math.unit(0.9, "feet"),
  2802. name: "Foot",
  2803. image: {
  2804. source: "./media/characters/march/foot.svg"
  2805. }
  2806. },
  2807. },
  2808. [
  2809. {
  2810. name: "Normal",
  2811. height: math.unit(7.9, "feet")
  2812. },
  2813. {
  2814. name: "Macro",
  2815. height: math.unit(220, "meters")
  2816. },
  2817. {
  2818. name: "Megamacro",
  2819. height: math.unit(2.98, "km"),
  2820. default: true
  2821. },
  2822. {
  2823. name: "Gigamacro",
  2824. height: math.unit(15963, "km")
  2825. },
  2826. {
  2827. name: "Teramacro",
  2828. height: math.unit(2980000000, "km")
  2829. },
  2830. {
  2831. name: "Examacro",
  2832. height: math.unit(250, "parsecs")
  2833. },
  2834. ]
  2835. ))
  2836. characterMakers.push(() => makeCharacter(
  2837. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2838. {
  2839. front: {
  2840. height: math.unit(6, "feet"),
  2841. weight: math.unit(60, "kg"),
  2842. name: "Front",
  2843. image: {
  2844. source: "./media/characters/noir/front.svg",
  2845. extra: 1,
  2846. bottom: 0.032
  2847. }
  2848. },
  2849. },
  2850. [
  2851. {
  2852. name: "Normal",
  2853. height: math.unit(6.6, "feet")
  2854. },
  2855. {
  2856. name: "Macro",
  2857. height: math.unit(500, "feet")
  2858. },
  2859. {
  2860. name: "Megamacro",
  2861. height: math.unit(2.5, "km"),
  2862. default: true
  2863. },
  2864. {
  2865. name: "Gigamacro",
  2866. height: math.unit(22500, "km")
  2867. },
  2868. {
  2869. name: "Teramacro",
  2870. height: math.unit(2500000000, "km")
  2871. },
  2872. {
  2873. name: "Examacro",
  2874. height: math.unit(200, "parsecs")
  2875. },
  2876. ]
  2877. ))
  2878. characterMakers.push(() => makeCharacter(
  2879. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2880. {
  2881. front: {
  2882. height: math.unit(7, "feet"),
  2883. weight: math.unit(100, "kg"),
  2884. name: "Front",
  2885. image: {
  2886. source: "./media/characters/okuri/front.svg",
  2887. extra: 739/665,
  2888. bottom: 39/778
  2889. }
  2890. },
  2891. back: {
  2892. height: math.unit(7, "feet"),
  2893. weight: math.unit(100, "kg"),
  2894. name: "Back",
  2895. image: {
  2896. source: "./media/characters/okuri/back.svg",
  2897. extra: 734/653,
  2898. bottom: 13/747
  2899. }
  2900. },
  2901. sitting: {
  2902. height: math.unit(2.95, "feet"),
  2903. weight: math.unit(100, "kg"),
  2904. name: "Sitting",
  2905. image: {
  2906. source: "./media/characters/okuri/sitting.svg",
  2907. extra: 370/318,
  2908. bottom: 99/469
  2909. }
  2910. },
  2911. },
  2912. [
  2913. {
  2914. name: "Smallest",
  2915. height: math.unit(5 + 2/12, "feet")
  2916. },
  2917. {
  2918. name: "Smaller",
  2919. height: math.unit(300, "feet")
  2920. },
  2921. {
  2922. name: "Small",
  2923. height: math.unit(1000, "feet")
  2924. },
  2925. {
  2926. name: "Macro",
  2927. height: math.unit(1, "mile")
  2928. },
  2929. {
  2930. name: "Mega Macro (Small)",
  2931. height: math.unit(20, "km")
  2932. },
  2933. {
  2934. name: "Mega Macro (Large)",
  2935. height: math.unit(600, "km")
  2936. },
  2937. {
  2938. name: "Giga Macro",
  2939. height: math.unit(10000, "km")
  2940. },
  2941. {
  2942. name: "Normal",
  2943. height: math.unit(577560, "km"),
  2944. default: true
  2945. },
  2946. {
  2947. name: "Large",
  2948. height: math.unit(4, "galaxies")
  2949. },
  2950. {
  2951. name: "Largest",
  2952. height: math.unit(15, "multiverses")
  2953. },
  2954. ]
  2955. ))
  2956. characterMakers.push(() => makeCharacter(
  2957. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2958. {
  2959. front: {
  2960. height: math.unit(7, "feet"),
  2961. weight: math.unit(100, "kg"),
  2962. name: "Front",
  2963. image: {
  2964. source: "./media/characters/manny/front.svg",
  2965. extra: 1,
  2966. bottom: 0.06
  2967. }
  2968. },
  2969. back: {
  2970. height: math.unit(7, "feet"),
  2971. weight: math.unit(100, "kg"),
  2972. name: "Back",
  2973. image: {
  2974. source: "./media/characters/manny/back.svg",
  2975. extra: 1,
  2976. bottom: 0.014
  2977. }
  2978. },
  2979. },
  2980. [
  2981. {
  2982. name: "Normal",
  2983. height: math.unit(7, "feet"),
  2984. },
  2985. {
  2986. name: "Macro",
  2987. height: math.unit(78, "feet"),
  2988. default: true
  2989. },
  2990. {
  2991. name: "Macro+",
  2992. height: math.unit(300, "meters")
  2993. },
  2994. {
  2995. name: "Macro++",
  2996. height: math.unit(2400, "meters")
  2997. },
  2998. {
  2999. name: "Megamacro",
  3000. height: math.unit(5167, "meters")
  3001. },
  3002. {
  3003. name: "Gigamacro",
  3004. height: math.unit(41769, "miles")
  3005. },
  3006. ]
  3007. ))
  3008. characterMakers.push(() => makeCharacter(
  3009. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  3010. {
  3011. front: {
  3012. height: math.unit(7, "feet"),
  3013. weight: math.unit(100, "kg"),
  3014. name: "Front",
  3015. image: {
  3016. source: "./media/characters/adake/front-1.svg"
  3017. }
  3018. },
  3019. frontAlt: {
  3020. height: math.unit(7, "feet"),
  3021. weight: math.unit(100, "kg"),
  3022. name: "Front (Alt)",
  3023. image: {
  3024. source: "./media/characters/adake/front-2.svg",
  3025. extra: 1,
  3026. bottom: 0.01
  3027. }
  3028. },
  3029. back: {
  3030. height: math.unit(7, "feet"),
  3031. weight: math.unit(100, "kg"),
  3032. name: "Back",
  3033. image: {
  3034. source: "./media/characters/adake/back.svg",
  3035. }
  3036. },
  3037. kneel: {
  3038. height: math.unit(5.385, "feet"),
  3039. weight: math.unit(100, "kg"),
  3040. name: "Kneeling",
  3041. image: {
  3042. source: "./media/characters/adake/kneel.svg",
  3043. bottom: 0.052
  3044. }
  3045. },
  3046. },
  3047. [
  3048. {
  3049. name: "Normal",
  3050. height: math.unit(7, "feet"),
  3051. },
  3052. {
  3053. name: "Macro",
  3054. height: math.unit(78, "feet"),
  3055. default: true
  3056. },
  3057. {
  3058. name: "Macro+",
  3059. height: math.unit(300, "meters")
  3060. },
  3061. {
  3062. name: "Macro++",
  3063. height: math.unit(2400, "meters")
  3064. },
  3065. {
  3066. name: "Megamacro",
  3067. height: math.unit(5167, "meters")
  3068. },
  3069. {
  3070. name: "Gigamacro",
  3071. height: math.unit(41769, "miles")
  3072. },
  3073. ]
  3074. ))
  3075. characterMakers.push(() => makeCharacter(
  3076. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  3077. {
  3078. front: {
  3079. height: math.unit(1.65, "meters"),
  3080. weight: math.unit(50, "kg"),
  3081. name: "Front",
  3082. image: {
  3083. source: "./media/characters/elijah/front.svg",
  3084. extra: 858 / 830,
  3085. bottom: 95.5 / 953.8559
  3086. }
  3087. },
  3088. back: {
  3089. height: math.unit(1.65, "meters"),
  3090. weight: math.unit(50, "kg"),
  3091. name: "Back",
  3092. image: {
  3093. source: "./media/characters/elijah/back.svg",
  3094. extra: 895 / 850,
  3095. bottom: 5.3 / 897.956
  3096. }
  3097. },
  3098. frontNsfw: {
  3099. height: math.unit(1.65, "meters"),
  3100. weight: math.unit(50, "kg"),
  3101. name: "Front (NSFW)",
  3102. image: {
  3103. source: "./media/characters/elijah/front-nsfw.svg",
  3104. extra: 858 / 830,
  3105. bottom: 95.5 / 953.8559
  3106. }
  3107. },
  3108. backNsfw: {
  3109. height: math.unit(1.65, "meters"),
  3110. weight: math.unit(50, "kg"),
  3111. name: "Back (NSFW)",
  3112. image: {
  3113. source: "./media/characters/elijah/back-nsfw.svg",
  3114. extra: 895 / 850,
  3115. bottom: 5.3 / 897.956
  3116. }
  3117. },
  3118. dick: {
  3119. height: math.unit(1, "feet"),
  3120. name: "Dick",
  3121. image: {
  3122. source: "./media/characters/elijah/dick.svg"
  3123. }
  3124. },
  3125. beakOpen: {
  3126. height: math.unit(1.25, "feet"),
  3127. name: "Beak (Open)",
  3128. image: {
  3129. source: "./media/characters/elijah/beak-open.svg"
  3130. }
  3131. },
  3132. beakShut: {
  3133. height: math.unit(1.25, "feet"),
  3134. name: "Beak (Shut)",
  3135. image: {
  3136. source: "./media/characters/elijah/beak-shut.svg"
  3137. }
  3138. },
  3139. footFlexing: {
  3140. height: math.unit(1.61, "feet"),
  3141. name: "Foot (Flexing)",
  3142. image: {
  3143. source: "./media/characters/elijah/foot-flexing.svg"
  3144. }
  3145. },
  3146. footStepping: {
  3147. height: math.unit(1.44, "feet"),
  3148. name: "Foot (Stepping)",
  3149. image: {
  3150. source: "./media/characters/elijah/foot-stepping.svg"
  3151. }
  3152. },
  3153. plantigradeLeg: {
  3154. height: math.unit(2.34, "feet"),
  3155. name: "Plantigrade Leg",
  3156. image: {
  3157. source: "./media/characters/elijah/plantigrade-leg.svg"
  3158. }
  3159. },
  3160. plantigradeFootLeft: {
  3161. height: math.unit(0.9, "feet"),
  3162. name: "Plantigrade Foot (Left)",
  3163. image: {
  3164. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3165. }
  3166. },
  3167. plantigradeFootRight: {
  3168. height: math.unit(0.9, "feet"),
  3169. name: "Plantigrade Foot (Right)",
  3170. image: {
  3171. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3172. }
  3173. },
  3174. },
  3175. [
  3176. {
  3177. name: "Normal",
  3178. height: math.unit(1.65, "meters")
  3179. },
  3180. {
  3181. name: "Macro",
  3182. height: math.unit(55, "meters"),
  3183. default: true
  3184. },
  3185. {
  3186. name: "Macro+",
  3187. height: math.unit(105, "meters")
  3188. },
  3189. ]
  3190. ))
  3191. characterMakers.push(() => makeCharacter(
  3192. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3193. {
  3194. front: {
  3195. height: math.unit(7 + 2/12, "feet"),
  3196. weight: math.unit(320, "kg"),
  3197. preyCapacity: math.unit(0.276549935, "people"),
  3198. name: "Front",
  3199. image: {
  3200. source: "./media/characters/rai/front.svg",
  3201. extra: 1802/1696,
  3202. bottom: 68/1870
  3203. },
  3204. form: "anthro",
  3205. default: true
  3206. },
  3207. frontDressed: {
  3208. height: math.unit(7 + 2/12, "feet"),
  3209. weight: math.unit(320, "kg"),
  3210. preyCapacity: math.unit(0.276549935, "people"),
  3211. name: "Front (Dressed)",
  3212. image: {
  3213. source: "./media/characters/rai/front-dressed.svg",
  3214. extra: 1802/1696,
  3215. bottom: 68/1870
  3216. },
  3217. form: "anthro"
  3218. },
  3219. side: {
  3220. height: math.unit(7 + 2/12, "feet"),
  3221. weight: math.unit(320, "kg"),
  3222. preyCapacity: math.unit(0.276549935, "people"),
  3223. name: "Side",
  3224. image: {
  3225. source: "./media/characters/rai/side.svg",
  3226. extra: 1789/1710,
  3227. bottom: 115/1904
  3228. },
  3229. form: "anthro"
  3230. },
  3231. back: {
  3232. height: math.unit(7 + 2/12, "feet"),
  3233. weight: math.unit(320, "kg"),
  3234. preyCapacity: math.unit(0.276549935, "people"),
  3235. name: "Back",
  3236. image: {
  3237. source: "./media/characters/rai/back.svg",
  3238. extra: 1770/1707,
  3239. bottom: 28/1798
  3240. },
  3241. form: "anthro"
  3242. },
  3243. feral: {
  3244. height: math.unit(9.5, "feet"),
  3245. weight: math.unit(640, "kg"),
  3246. preyCapacity: math.unit(4, "people"),
  3247. name: "Feral",
  3248. image: {
  3249. source: "./media/characters/rai/feral.svg",
  3250. extra: 945/553,
  3251. bottom: 176/1121
  3252. },
  3253. form: "feral",
  3254. default: true
  3255. },
  3256. dragon: {
  3257. height: math.unit(23, "feet"),
  3258. weight: math.unit(50000, "lb"),
  3259. name: "Dragon",
  3260. image: {
  3261. source: "./media/characters/rai/dragon.svg",
  3262. extra: 2498 / 2030,
  3263. bottom: 85.2 / 2584
  3264. },
  3265. form: "dragon",
  3266. default: true
  3267. },
  3268. maw: {
  3269. height: math.unit(1.69, "feet"),
  3270. name: "Maw",
  3271. image: {
  3272. source: "./media/characters/rai/maw.svg"
  3273. },
  3274. form: "anthro"
  3275. },
  3276. },
  3277. [
  3278. {
  3279. name: "Normal",
  3280. height: math.unit(7 + 2/12, "feet"),
  3281. form: "anthro"
  3282. },
  3283. {
  3284. name: "Big",
  3285. height: math.unit(11, "feet"),
  3286. form: "anthro"
  3287. },
  3288. {
  3289. name: "Minimacro",
  3290. height: math.unit(77, "feet"),
  3291. form: "anthro"
  3292. },
  3293. {
  3294. name: "Macro",
  3295. height: math.unit(302, "feet"),
  3296. default: true,
  3297. form: "anthro"
  3298. },
  3299. {
  3300. name: "Normal",
  3301. height: math.unit(9.5, "feet"),
  3302. form: "feral",
  3303. default: true
  3304. },
  3305. {
  3306. name: "Normal",
  3307. height: math.unit(23, "feet"),
  3308. form: "dragon",
  3309. default: true
  3310. }
  3311. ],
  3312. {
  3313. "anthro": {
  3314. name: "Anthro",
  3315. default: true
  3316. },
  3317. "feral": {
  3318. name: "Feral",
  3319. },
  3320. "dragon": {
  3321. name: "Dragon",
  3322. },
  3323. }
  3324. ))
  3325. characterMakers.push(() => makeCharacter(
  3326. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3327. {
  3328. frontDressed: {
  3329. height: math.unit(216, "feet"),
  3330. weight: math.unit(7000000, "lb"),
  3331. preyCapacity: math.unit(1321, "people"),
  3332. name: "Front (Dressed)",
  3333. image: {
  3334. source: "./media/characters/jazzy/front-dressed.svg",
  3335. extra: 2738 / 2651,
  3336. bottom: 41.8 / 2786
  3337. }
  3338. },
  3339. backDressed: {
  3340. height: math.unit(216, "feet"),
  3341. weight: math.unit(7000000, "lb"),
  3342. preyCapacity: math.unit(1321, "people"),
  3343. name: "Back (Dressed)",
  3344. image: {
  3345. source: "./media/characters/jazzy/back-dressed.svg",
  3346. extra: 2775 / 2673,
  3347. bottom: 36.8 / 2817
  3348. }
  3349. },
  3350. front: {
  3351. height: math.unit(216, "feet"),
  3352. weight: math.unit(7000000, "lb"),
  3353. preyCapacity: math.unit(1321, "people"),
  3354. name: "Front",
  3355. image: {
  3356. source: "./media/characters/jazzy/front.svg",
  3357. extra: 2738 / 2651,
  3358. bottom: 41.8 / 2786
  3359. }
  3360. },
  3361. back: {
  3362. height: math.unit(216, "feet"),
  3363. weight: math.unit(7000000, "lb"),
  3364. preyCapacity: math.unit(1321, "people"),
  3365. name: "Back",
  3366. image: {
  3367. source: "./media/characters/jazzy/back.svg",
  3368. extra: 2775 / 2673,
  3369. bottom: 36.8 / 2817
  3370. }
  3371. },
  3372. maw: {
  3373. height: math.unit(20, "feet"),
  3374. name: "Maw",
  3375. image: {
  3376. source: "./media/characters/jazzy/maw.svg"
  3377. }
  3378. },
  3379. paws: {
  3380. height: math.unit(27.5, "feet"),
  3381. name: "Paws",
  3382. image: {
  3383. source: "./media/characters/jazzy/paws.svg"
  3384. }
  3385. },
  3386. eye: {
  3387. height: math.unit(4.4, "feet"),
  3388. name: "Eye",
  3389. image: {
  3390. source: "./media/characters/jazzy/eye.svg"
  3391. }
  3392. },
  3393. droneOffense: {
  3394. height: math.unit(9.5, "inches"),
  3395. name: "Drone (Offense)",
  3396. image: {
  3397. source: "./media/characters/jazzy/drone-offense.svg"
  3398. }
  3399. },
  3400. droneRecon: {
  3401. height: math.unit(9.5, "inches"),
  3402. name: "Drone (Recon)",
  3403. image: {
  3404. source: "./media/characters/jazzy/drone-recon.svg"
  3405. }
  3406. },
  3407. droneDefense: {
  3408. height: math.unit(9.5, "inches"),
  3409. name: "Drone (Defense)",
  3410. image: {
  3411. source: "./media/characters/jazzy/drone-defense.svg"
  3412. }
  3413. },
  3414. },
  3415. [
  3416. {
  3417. name: "Macro",
  3418. height: math.unit(216, "feet"),
  3419. default: true
  3420. },
  3421. ]
  3422. ))
  3423. characterMakers.push(() => makeCharacter(
  3424. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3425. {
  3426. front: {
  3427. height: math.unit(9 + 6/12, "feet"),
  3428. weight: math.unit(700, "lb"),
  3429. name: "Front",
  3430. image: {
  3431. source: "./media/characters/flamm/front.svg",
  3432. extra: 1736/1596,
  3433. bottom: 93/1829
  3434. }
  3435. },
  3436. buff: {
  3437. height: math.unit(9 + 6/12, "feet"),
  3438. weight: math.unit(950, "lb"),
  3439. name: "Buff",
  3440. image: {
  3441. source: "./media/characters/flamm/buff.svg",
  3442. extra: 3018/2874,
  3443. bottom: 221/3239
  3444. }
  3445. },
  3446. },
  3447. [
  3448. {
  3449. name: "Normal",
  3450. height: math.unit(9.5, "feet")
  3451. },
  3452. {
  3453. name: "Macro",
  3454. height: math.unit(200, "feet"),
  3455. default: true
  3456. },
  3457. ]
  3458. ))
  3459. characterMakers.push(() => makeCharacter(
  3460. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3461. {
  3462. front: {
  3463. height: math.unit(5 + 3/12, "feet"),
  3464. weight: math.unit(60, "kg"),
  3465. name: "Front",
  3466. image: {
  3467. source: "./media/characters/zephiro/front.svg",
  3468. extra: 1873/1761,
  3469. bottom: 147/2020
  3470. }
  3471. },
  3472. side: {
  3473. height: math.unit(5 + 3/12, "feet"),
  3474. weight: math.unit(60, "kg"),
  3475. name: "Side",
  3476. image: {
  3477. source: "./media/characters/zephiro/side.svg",
  3478. extra: 1929/1827,
  3479. bottom: 65/1994
  3480. }
  3481. },
  3482. back: {
  3483. height: math.unit(5 + 3/12, "feet"),
  3484. weight: math.unit(60, "kg"),
  3485. name: "Back",
  3486. image: {
  3487. source: "./media/characters/zephiro/back.svg",
  3488. extra: 1926/1816,
  3489. bottom: 41/1967
  3490. }
  3491. },
  3492. hand: {
  3493. height: math.unit(0.68, "feet"),
  3494. name: "Hand",
  3495. image: {
  3496. source: "./media/characters/zephiro/hand.svg"
  3497. }
  3498. },
  3499. paw: {
  3500. height: math.unit(1, "feet"),
  3501. name: "Paw",
  3502. image: {
  3503. source: "./media/characters/zephiro/paw.svg"
  3504. }
  3505. },
  3506. beans: {
  3507. height: math.unit(0.93, "feet"),
  3508. name: "Beans",
  3509. image: {
  3510. source: "./media/characters/zephiro/beans.svg"
  3511. }
  3512. },
  3513. },
  3514. [
  3515. {
  3516. name: "Micro",
  3517. height: math.unit(3, "inches")
  3518. },
  3519. {
  3520. name: "Normal",
  3521. height: math.unit(5 + 3 / 12, "feet"),
  3522. default: true
  3523. },
  3524. {
  3525. name: "Macro",
  3526. height: math.unit(118, "feet")
  3527. },
  3528. ]
  3529. ))
  3530. characterMakers.push(() => makeCharacter(
  3531. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3532. {
  3533. front: {
  3534. height: math.unit(5, "feet"),
  3535. weight: math.unit(90, "kg"),
  3536. preyCapacity: math.unit(14, "people"),
  3537. name: "Front",
  3538. image: {
  3539. source: "./media/characters/fory/front.svg",
  3540. extra: 2862 / 2674,
  3541. bottom: 180 / 3043.8
  3542. },
  3543. form: "weaselbun",
  3544. default: true,
  3545. extraAttributes: {
  3546. "pawSize": {
  3547. name: "Paw Size",
  3548. power: 2,
  3549. type: "area",
  3550. base: math.unit(0.1596, "m^2")
  3551. },
  3552. "pawLength": {
  3553. name: "Paw Length",
  3554. power: 1,
  3555. type: "length",
  3556. base: math.unit(0.7, "m")
  3557. }
  3558. }
  3559. },
  3560. back: {
  3561. height: math.unit(5, "feet"),
  3562. weight: math.unit(90, "kg"),
  3563. preyCapacity: math.unit(14, "people"),
  3564. name: "Back",
  3565. image: {
  3566. source: "./media/characters/fory/back.svg",
  3567. extra: 1790/1672,
  3568. bottom: 84/1874
  3569. },
  3570. form: "weaselbun",
  3571. extraAttributes: {
  3572. "pawSize": {
  3573. name: "Paw Size",
  3574. power: 2,
  3575. type: "area",
  3576. base: math.unit(0.1596, "m^2")
  3577. },
  3578. "pawLength": {
  3579. name: "Paw Length",
  3580. power: 1,
  3581. type: "length",
  3582. base: math.unit(0.7, "m")
  3583. }
  3584. }
  3585. },
  3586. paw: {
  3587. height: math.unit(2.14, "feet"),
  3588. name: "Paw",
  3589. image: {
  3590. source: "./media/characters/fory/paw.svg"
  3591. },
  3592. form: "weaselbun",
  3593. extraAttributes: {
  3594. "pawSize": {
  3595. name: "Paw Size",
  3596. power: 2,
  3597. type: "area",
  3598. base: math.unit(0.1596, "m^2")
  3599. },
  3600. "pawLength": {
  3601. name: "Paw Length",
  3602. power: 1,
  3603. type: "length",
  3604. base: math.unit(0.48, "m")
  3605. }
  3606. }
  3607. },
  3608. bunBack: {
  3609. height: math.unit(3, "feet"),
  3610. weight: math.unit(20, "kg"),
  3611. preyCapacity: math.unit(3, "people"),
  3612. name: "Back",
  3613. image: {
  3614. source: "./media/characters/fory/bun-back.svg",
  3615. extra: 1749/1564,
  3616. bottom: 246/1995
  3617. },
  3618. form: "bun",
  3619. default: true,
  3620. extraAttributes: {
  3621. "pawSize": {
  3622. name: "Paw Size",
  3623. power: 2,
  3624. type: "area",
  3625. base: math.unit(0.072, "m^2")
  3626. },
  3627. "pawLength": {
  3628. name: "Paw Length",
  3629. power: 1,
  3630. type: "length",
  3631. base: math.unit(0.45, "m")
  3632. }
  3633. }
  3634. },
  3635. },
  3636. [
  3637. {
  3638. name: "Normal",
  3639. height: math.unit(5, "feet"),
  3640. form: "weaselbun"
  3641. },
  3642. {
  3643. name: "Macro",
  3644. height: math.unit(50, "feet"),
  3645. default: true,
  3646. form: "weaselbun"
  3647. },
  3648. {
  3649. name: "Megamacro",
  3650. height: math.unit(10, "miles"),
  3651. form: "weaselbun"
  3652. },
  3653. {
  3654. name: "Gigamacro",
  3655. height: math.unit(5, "earths"),
  3656. form: "weaselbun"
  3657. },
  3658. {
  3659. name: "Normal",
  3660. height: math.unit(3, "feet"),
  3661. default: true,
  3662. form: "bun"
  3663. },
  3664. {
  3665. name: "Fun-Size",
  3666. height: math.unit(12, "feet"),
  3667. form: "bun"
  3668. },
  3669. {
  3670. name: "Macro",
  3671. height: math.unit(100, "feet"),
  3672. form: "bun"
  3673. },
  3674. {
  3675. name: "Planetary",
  3676. height: math.unit(3, "earths"),
  3677. form: "bun"
  3678. },
  3679. ],
  3680. {
  3681. "weaselbun": {
  3682. name: "Weaselbun",
  3683. default: true
  3684. },
  3685. "bun": {
  3686. name: "Bun",
  3687. },
  3688. }
  3689. ))
  3690. characterMakers.push(() => makeCharacter(
  3691. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3692. {
  3693. front: {
  3694. height: math.unit(7, "feet"),
  3695. weight: math.unit(90, "kg"),
  3696. name: "Front",
  3697. image: {
  3698. source: "./media/characters/kurrikage/front.svg",
  3699. extra: 1845/1733,
  3700. bottom: 119/1964
  3701. }
  3702. },
  3703. back: {
  3704. height: math.unit(7, "feet"),
  3705. weight: math.unit(90, "kg"),
  3706. name: "Back",
  3707. image: {
  3708. source: "./media/characters/kurrikage/back.svg",
  3709. extra: 1790/1677,
  3710. bottom: 61/1851
  3711. }
  3712. },
  3713. dressed: {
  3714. height: math.unit(7, "feet"),
  3715. weight: math.unit(90, "kg"),
  3716. name: "Dressed",
  3717. image: {
  3718. source: "./media/characters/kurrikage/dressed.svg",
  3719. extra: 1845/1733,
  3720. bottom: 119/1964
  3721. }
  3722. },
  3723. foot: {
  3724. height: math.unit(1.5, "feet"),
  3725. name: "Foot",
  3726. image: {
  3727. source: "./media/characters/kurrikage/foot.svg"
  3728. }
  3729. },
  3730. staff: {
  3731. height: math.unit(6.7, "feet"),
  3732. name: "Staff",
  3733. image: {
  3734. source: "./media/characters/kurrikage/staff.svg"
  3735. }
  3736. },
  3737. peek: {
  3738. height: math.unit(1.05, "feet"),
  3739. name: "Peeking",
  3740. image: {
  3741. source: "./media/characters/kurrikage/peek.svg",
  3742. bottom: 0.08
  3743. }
  3744. },
  3745. },
  3746. [
  3747. {
  3748. name: "Normal",
  3749. height: math.unit(12, "feet"),
  3750. default: true
  3751. },
  3752. {
  3753. name: "Big",
  3754. height: math.unit(20, "feet")
  3755. },
  3756. {
  3757. name: "Macro",
  3758. height: math.unit(500, "feet")
  3759. },
  3760. {
  3761. name: "Megamacro",
  3762. height: math.unit(20, "miles")
  3763. },
  3764. ]
  3765. ))
  3766. characterMakers.push(() => makeCharacter(
  3767. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3768. {
  3769. front: {
  3770. height: math.unit(6, "feet"),
  3771. weight: math.unit(75, "kg"),
  3772. name: "Front",
  3773. image: {
  3774. source: "./media/characters/shingo/front.svg",
  3775. extra: 1900/1825,
  3776. bottom: 82/1982
  3777. }
  3778. },
  3779. side: {
  3780. height: math.unit(6, "feet"),
  3781. weight: math.unit(75, "kg"),
  3782. name: "Side",
  3783. image: {
  3784. source: "./media/characters/shingo/side.svg",
  3785. extra: 1930/1865,
  3786. bottom: 16/1946
  3787. }
  3788. },
  3789. back: {
  3790. height: math.unit(6, "feet"),
  3791. weight: math.unit(75, "kg"),
  3792. name: "Back",
  3793. image: {
  3794. source: "./media/characters/shingo/back.svg",
  3795. extra: 1922/1852,
  3796. bottom: 16/1938
  3797. }
  3798. },
  3799. frontDressed: {
  3800. height: math.unit(6, "feet"),
  3801. weight: math.unit(150, "lb"),
  3802. name: "Front-dressed",
  3803. image: {
  3804. source: "./media/characters/shingo/front-dressed.svg",
  3805. extra: 1900/1825,
  3806. bottom: 82/1982
  3807. }
  3808. },
  3809. paw: {
  3810. height: math.unit(1.29, "feet"),
  3811. name: "Paw",
  3812. image: {
  3813. source: "./media/characters/shingo/paw.svg"
  3814. }
  3815. },
  3816. hand: {
  3817. height: math.unit(1.07, "feet"),
  3818. name: "Hand",
  3819. image: {
  3820. source: "./media/characters/shingo/hand.svg"
  3821. }
  3822. },
  3823. frontAlt: {
  3824. height: math.unit(6, "feet"),
  3825. weight: math.unit(75, "kg"),
  3826. name: "Front (Alt)",
  3827. image: {
  3828. source: "./media/characters/shingo/front-alt.svg",
  3829. extra: 3511 / 3338,
  3830. bottom: 0.005
  3831. }
  3832. },
  3833. frontAlt2: {
  3834. height: math.unit(6, "feet"),
  3835. weight: math.unit(75, "kg"),
  3836. name: "Front (Alt 2)",
  3837. image: {
  3838. source: "./media/characters/shingo/front-alt-2.svg",
  3839. extra: 706/681,
  3840. bottom: 11/717
  3841. }
  3842. },
  3843. pawAlt: {
  3844. height: math.unit(1, "feet"),
  3845. name: "Paw (Alt)",
  3846. image: {
  3847. source: "./media/characters/shingo/paw-alt.svg"
  3848. }
  3849. },
  3850. },
  3851. [
  3852. {
  3853. name: "Micro",
  3854. height: math.unit(4, "inches")
  3855. },
  3856. {
  3857. name: "Normal",
  3858. height: math.unit(6, "feet"),
  3859. default: true
  3860. },
  3861. {
  3862. name: "Macro",
  3863. height: math.unit(108, "feet")
  3864. },
  3865. {
  3866. name: "Macro+",
  3867. height: math.unit(1500, "feet")
  3868. },
  3869. ]
  3870. ))
  3871. characterMakers.push(() => makeCharacter(
  3872. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3873. {
  3874. side: {
  3875. height: math.unit(6, "feet"),
  3876. weight: math.unit(75, "kg"),
  3877. name: "Side",
  3878. image: {
  3879. source: "./media/characters/aigey/side.svg"
  3880. }
  3881. },
  3882. },
  3883. [
  3884. {
  3885. name: "Macro",
  3886. height: math.unit(200, "feet"),
  3887. default: true
  3888. },
  3889. {
  3890. name: "Megamacro",
  3891. height: math.unit(100, "miles")
  3892. },
  3893. ]
  3894. )
  3895. )
  3896. characterMakers.push(() => makeCharacter(
  3897. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3898. {
  3899. front: {
  3900. height: math.unit(13, "feet"),
  3901. weight: math.unit(1036.80, "kg"),
  3902. name: "Front",
  3903. image: {
  3904. source: "./media/characters/natasha/front.svg",
  3905. extra: 1301/1210,
  3906. bottom: 39/1340
  3907. }
  3908. },
  3909. back: {
  3910. height: math.unit(13, "feet"),
  3911. weight: math.unit(1036.80, "kg"),
  3912. name: "Back",
  3913. image: {
  3914. source: "./media/characters/natasha/back.svg",
  3915. extra: 1342/1252,
  3916. bottom: 20/1362
  3917. }
  3918. },
  3919. head: {
  3920. height: math.unit(3.48, "feet"),
  3921. name: "Head",
  3922. image: {
  3923. source: "./media/characters/natasha/head.svg"
  3924. }
  3925. },
  3926. jaws: {
  3927. height: math.unit(3.52, "feet"),
  3928. name: "Jaws",
  3929. image: {
  3930. source: "./media/characters/natasha/jaws.svg"
  3931. }
  3932. },
  3933. paws: {
  3934. height: math.unit(2.7, "feet"),
  3935. name: "Paws",
  3936. image: {
  3937. source: "./media/characters/natasha/paws.svg"
  3938. }
  3939. },
  3940. collar: {
  3941. height: math.unit(0.89, "feet"),
  3942. name: "Collar",
  3943. image: {
  3944. source: "./media/characters/natasha/collar.svg"
  3945. }
  3946. },
  3947. gauge: {
  3948. height: math.unit(0.36, "feet"),
  3949. name: "Gauge",
  3950. image: {
  3951. source: "./media/characters/natasha/gauge.svg"
  3952. }
  3953. },
  3954. },
  3955. [
  3956. {
  3957. name: "Shortstack",
  3958. height: math.unit(3, "feet")
  3959. },
  3960. {
  3961. name: "Normal",
  3962. height: math.unit(13, "feet"),
  3963. default: true
  3964. },
  3965. {
  3966. name: "Macro",
  3967. height: math.unit(100, "feet")
  3968. },
  3969. {
  3970. name: "Macro+",
  3971. height: math.unit(260, "feet")
  3972. },
  3973. {
  3974. name: "Macro++",
  3975. height: math.unit(1, "mile")
  3976. },
  3977. ]
  3978. ))
  3979. characterMakers.push(() => makeCharacter(
  3980. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3981. {
  3982. front: {
  3983. height: math.unit(6, "feet"),
  3984. weight: math.unit(75, "kg"),
  3985. name: "Front",
  3986. image: {
  3987. source: "./media/characters/malik/front.svg",
  3988. extra: 1750/1561,
  3989. bottom: 80/1830
  3990. },
  3991. extraAttributes: {
  3992. "toeSize": {
  3993. name: "Toe Size",
  3994. power: 2,
  3995. type: "area",
  3996. base: math.unit(0.0159, "m^2")
  3997. },
  3998. "pawSize": {
  3999. name: "Paw Size",
  4000. power: 2,
  4001. type: "area",
  4002. base: math.unit(0.09834, "m^2")
  4003. },
  4004. }
  4005. },
  4006. side: {
  4007. height: math.unit(6, "feet"),
  4008. weight: math.unit(75, "kg"),
  4009. name: "Side",
  4010. image: {
  4011. source: "./media/characters/malik/side.svg",
  4012. extra: 1802/1685,
  4013. bottom: 42/1844
  4014. },
  4015. extraAttributes: {
  4016. "toeSize": {
  4017. name: "Toe Size",
  4018. power: 2,
  4019. type: "area",
  4020. base: math.unit(0.0159, "m^2")
  4021. },
  4022. "pawSize": {
  4023. name: "Paw Size",
  4024. power: 2,
  4025. type: "area",
  4026. base: math.unit(0.09834, "m^2")
  4027. },
  4028. }
  4029. },
  4030. back: {
  4031. height: math.unit(6, "feet"),
  4032. weight: math.unit(75, "kg"),
  4033. name: "Back",
  4034. image: {
  4035. source: "./media/characters/malik/back.svg",
  4036. extra: 1803/1607,
  4037. bottom: 33/1836
  4038. },
  4039. extraAttributes: {
  4040. "toeSize": {
  4041. name: "Toe Size",
  4042. power: 2,
  4043. type: "area",
  4044. base: math.unit(0.0159, "m^2")
  4045. },
  4046. "pawSize": {
  4047. name: "Paw Size",
  4048. power: 2,
  4049. type: "area",
  4050. base: math.unit(0.09834, "m^2")
  4051. },
  4052. }
  4053. },
  4054. },
  4055. [
  4056. {
  4057. name: "Macro",
  4058. height: math.unit(156, "feet"),
  4059. default: true
  4060. },
  4061. {
  4062. name: "Macro+",
  4063. height: math.unit(1188, "feet")
  4064. },
  4065. ]
  4066. ))
  4067. characterMakers.push(() => makeCharacter(
  4068. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  4069. {
  4070. front: {
  4071. height: math.unit(6, "feet"),
  4072. weight: math.unit(75, "kg"),
  4073. name: "Front",
  4074. image: {
  4075. source: "./media/characters/sefer/front.svg",
  4076. extra: 848 / 659,
  4077. bottom: 28.3 / 876.442
  4078. }
  4079. },
  4080. back: {
  4081. height: math.unit(6, "feet"),
  4082. weight: math.unit(75, "kg"),
  4083. name: "Back",
  4084. image: {
  4085. source: "./media/characters/sefer/back.svg",
  4086. extra: 864 / 695,
  4087. bottom: 10 / 871
  4088. }
  4089. },
  4090. frontDressed: {
  4091. height: math.unit(6, "feet"),
  4092. weight: math.unit(75, "kg"),
  4093. name: "Dressed",
  4094. image: {
  4095. source: "./media/characters/sefer/dressed.svg",
  4096. extra: 839 / 653,
  4097. bottom: 37.6 / 878
  4098. }
  4099. },
  4100. },
  4101. [
  4102. {
  4103. name: "Normal",
  4104. height: math.unit(6, "feet"),
  4105. default: true
  4106. },
  4107. {
  4108. name: "Big",
  4109. height: math.unit(8, "meters")
  4110. },
  4111. ]
  4112. ))
  4113. characterMakers.push(() => makeCharacter(
  4114. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  4115. {
  4116. body: {
  4117. height: math.unit(2.2428, "meter"),
  4118. weight: math.unit(124.738, "kg"),
  4119. name: "Body",
  4120. image: {
  4121. extra: 1225 / 1050,
  4122. source: "./media/characters/north/front.svg"
  4123. }
  4124. }
  4125. },
  4126. [
  4127. {
  4128. name: "Micro",
  4129. height: math.unit(4, "inches")
  4130. },
  4131. {
  4132. name: "Macro",
  4133. height: math.unit(63, "meters")
  4134. },
  4135. {
  4136. name: "Megamacro",
  4137. height: math.unit(101, "miles"),
  4138. default: true
  4139. }
  4140. ]
  4141. ))
  4142. characterMakers.push(() => makeCharacter(
  4143. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4144. {
  4145. angled: {
  4146. height: math.unit(4, "meter"),
  4147. weight: math.unit(150, "kg"),
  4148. name: "Angled",
  4149. image: {
  4150. source: "./media/characters/talan/angled-sfw.svg",
  4151. bottom: 29 / 3734
  4152. }
  4153. },
  4154. angledNsfw: {
  4155. height: math.unit(4, "meter"),
  4156. weight: math.unit(150, "kg"),
  4157. name: "Angled (NSFW)",
  4158. image: {
  4159. source: "./media/characters/talan/angled-nsfw.svg",
  4160. bottom: 29 / 3734
  4161. }
  4162. },
  4163. frontNsfw: {
  4164. height: math.unit(4, "meter"),
  4165. weight: math.unit(150, "kg"),
  4166. name: "Front (NSFW)",
  4167. image: {
  4168. source: "./media/characters/talan/front-nsfw.svg",
  4169. bottom: 29 / 3734
  4170. }
  4171. },
  4172. sideNsfw: {
  4173. height: math.unit(4, "meter"),
  4174. weight: math.unit(150, "kg"),
  4175. name: "Side (NSFW)",
  4176. image: {
  4177. source: "./media/characters/talan/side-nsfw.svg",
  4178. bottom: 29 / 3734
  4179. }
  4180. },
  4181. back: {
  4182. height: math.unit(4, "meter"),
  4183. weight: math.unit(150, "kg"),
  4184. name: "Back",
  4185. image: {
  4186. source: "./media/characters/talan/back.svg"
  4187. }
  4188. },
  4189. dickBottom: {
  4190. height: math.unit(0.621, "meter"),
  4191. name: "Dick (Bottom)",
  4192. image: {
  4193. source: "./media/characters/talan/dick-bottom.svg"
  4194. }
  4195. },
  4196. dickTop: {
  4197. height: math.unit(0.621, "meter"),
  4198. name: "Dick (Top)",
  4199. image: {
  4200. source: "./media/characters/talan/dick-top.svg"
  4201. }
  4202. },
  4203. dickSide: {
  4204. height: math.unit(0.305, "meter"),
  4205. name: "Dick (Side)",
  4206. image: {
  4207. source: "./media/characters/talan/dick-side.svg"
  4208. }
  4209. },
  4210. dickFront: {
  4211. height: math.unit(0.305, "meter"),
  4212. name: "Dick (Front)",
  4213. image: {
  4214. source: "./media/characters/talan/dick-front.svg"
  4215. }
  4216. },
  4217. },
  4218. [
  4219. {
  4220. name: "Normal",
  4221. height: math.unit(4, "meters")
  4222. },
  4223. {
  4224. name: "Macro",
  4225. height: math.unit(100, "meters")
  4226. },
  4227. {
  4228. name: "Megamacro",
  4229. height: math.unit(2, "miles"),
  4230. default: true
  4231. },
  4232. {
  4233. name: "Gigamacro",
  4234. height: math.unit(5000, "miles")
  4235. },
  4236. {
  4237. name: "Teramacro",
  4238. height: math.unit(100, "parsecs")
  4239. }
  4240. ]
  4241. ))
  4242. characterMakers.push(() => makeCharacter(
  4243. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4244. {
  4245. front: {
  4246. height: math.unit(2, "meter"),
  4247. weight: math.unit(90, "kg"),
  4248. name: "Front",
  4249. image: {
  4250. source: "./media/characters/gael'rathus/front.svg"
  4251. }
  4252. },
  4253. frontAlt: {
  4254. height: math.unit(2, "meter"),
  4255. weight: math.unit(90, "kg"),
  4256. name: "Front (alt)",
  4257. image: {
  4258. source: "./media/characters/gael'rathus/front-alt.svg"
  4259. }
  4260. },
  4261. frontAlt2: {
  4262. height: math.unit(2, "meter"),
  4263. weight: math.unit(90, "kg"),
  4264. name: "Front (alt 2)",
  4265. image: {
  4266. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4267. }
  4268. }
  4269. },
  4270. [
  4271. {
  4272. name: "Normal",
  4273. height: math.unit(9, "feet"),
  4274. default: true
  4275. },
  4276. {
  4277. name: "Large",
  4278. height: math.unit(25, "feet")
  4279. },
  4280. {
  4281. name: "Macro",
  4282. height: math.unit(0.25, "miles")
  4283. },
  4284. {
  4285. name: "Megamacro",
  4286. height: math.unit(10, "miles")
  4287. }
  4288. ]
  4289. ))
  4290. characterMakers.push(() => makeCharacter(
  4291. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4292. {
  4293. side: {
  4294. height: math.unit(2, "meter"),
  4295. weight: math.unit(140, "kg"),
  4296. name: "Side",
  4297. image: {
  4298. source: "./media/characters/sosha/side.svg",
  4299. extra: 1170/1006,
  4300. bottom: 94/1264
  4301. }
  4302. },
  4303. maw: {
  4304. height: math.unit(2.87, "feet"),
  4305. name: "Maw",
  4306. image: {
  4307. source: "./media/characters/sosha/maw.svg",
  4308. extra: 966/865,
  4309. bottom: 0/966
  4310. }
  4311. },
  4312. cooch: {
  4313. height: math.unit(5.6, "feet"),
  4314. name: "Cooch",
  4315. image: {
  4316. source: "./media/characters/sosha/cooch.svg"
  4317. }
  4318. },
  4319. },
  4320. [
  4321. {
  4322. name: "Normal",
  4323. height: math.unit(12, "feet"),
  4324. default: true
  4325. }
  4326. ]
  4327. ))
  4328. characterMakers.push(() => makeCharacter(
  4329. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4330. {
  4331. side: {
  4332. height: math.unit(5 + 5 / 12, "feet"),
  4333. weight: math.unit(170, "kg"),
  4334. name: "Side",
  4335. image: {
  4336. source: "./media/characters/runnola/side.svg",
  4337. extra: 741 / 448,
  4338. bottom: 0.05
  4339. }
  4340. },
  4341. },
  4342. [
  4343. {
  4344. name: "Small",
  4345. height: math.unit(3, "feet")
  4346. },
  4347. {
  4348. name: "Normal",
  4349. height: math.unit(5 + 5 / 12, "feet"),
  4350. default: true
  4351. },
  4352. {
  4353. name: "Big",
  4354. height: math.unit(10, "feet")
  4355. },
  4356. ]
  4357. ))
  4358. characterMakers.push(() => makeCharacter(
  4359. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4360. {
  4361. front: {
  4362. height: math.unit(2, "meter"),
  4363. weight: math.unit(50, "kg"),
  4364. name: "Front",
  4365. image: {
  4366. source: "./media/characters/kurribird/front.svg",
  4367. bottom: 0.015
  4368. }
  4369. },
  4370. frontAlt: {
  4371. height: math.unit(1.5, "meter"),
  4372. weight: math.unit(50, "kg"),
  4373. name: "Front (Alt)",
  4374. image: {
  4375. source: "./media/characters/kurribird/front-alt.svg",
  4376. extra: 1.45
  4377. }
  4378. },
  4379. },
  4380. [
  4381. {
  4382. name: "Normal",
  4383. height: math.unit(7, "feet")
  4384. },
  4385. {
  4386. name: "Big",
  4387. height: math.unit(12, "feet"),
  4388. default: true
  4389. },
  4390. {
  4391. name: "Macro",
  4392. height: math.unit(1500, "feet")
  4393. },
  4394. {
  4395. name: "Megamacro",
  4396. height: math.unit(2, "miles")
  4397. }
  4398. ]
  4399. ))
  4400. characterMakers.push(() => makeCharacter(
  4401. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4402. {
  4403. front: {
  4404. height: math.unit(2, "meter"),
  4405. weight: math.unit(80, "kg"),
  4406. name: "Front",
  4407. image: {
  4408. source: "./media/characters/elbial/front.svg",
  4409. extra: 1643 / 1556,
  4410. bottom: 60.2 / 1696
  4411. }
  4412. },
  4413. side: {
  4414. height: math.unit(2, "meter"),
  4415. weight: math.unit(80, "kg"),
  4416. name: "Side",
  4417. image: {
  4418. source: "./media/characters/elbial/side.svg",
  4419. extra: 1601/1528,
  4420. bottom: 97/1698
  4421. }
  4422. },
  4423. back: {
  4424. height: math.unit(2, "meter"),
  4425. weight: math.unit(80, "kg"),
  4426. name: "Back",
  4427. image: {
  4428. source: "./media/characters/elbial/back.svg",
  4429. extra: 1653/1569,
  4430. bottom: 20/1673
  4431. }
  4432. },
  4433. frontDressed: {
  4434. height: math.unit(2, "meter"),
  4435. weight: math.unit(80, "kg"),
  4436. name: "Front (Dressed)",
  4437. image: {
  4438. source: "./media/characters/elbial/front-dressed.svg",
  4439. extra: 1638/1569,
  4440. bottom: 70/1708
  4441. }
  4442. },
  4443. genitals: {
  4444. height: math.unit(2 / 3.367, "meter"),
  4445. name: "Genitals",
  4446. image: {
  4447. source: "./media/characters/elbial/genitals.svg"
  4448. }
  4449. },
  4450. },
  4451. [
  4452. {
  4453. name: "Large",
  4454. height: math.unit(100, "feet")
  4455. },
  4456. {
  4457. name: "Macro",
  4458. height: math.unit(500, "feet"),
  4459. default: true
  4460. },
  4461. {
  4462. name: "Megamacro",
  4463. height: math.unit(10, "miles")
  4464. },
  4465. {
  4466. name: "Gigamacro",
  4467. height: math.unit(25000, "miles")
  4468. },
  4469. {
  4470. name: "Full-Size",
  4471. height: math.unit(8000000, "gigaparsecs")
  4472. }
  4473. ]
  4474. ))
  4475. characterMakers.push(() => makeCharacter(
  4476. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4477. {
  4478. front: {
  4479. height: math.unit(2, "meter"),
  4480. weight: math.unit(60, "kg"),
  4481. name: "Front",
  4482. image: {
  4483. source: "./media/characters/noah/front.svg",
  4484. extra: 1383/1313,
  4485. bottom: 104/1487
  4486. }
  4487. },
  4488. hand: {
  4489. height: math.unit(0.6, "feet"),
  4490. name: "Hand",
  4491. image: {
  4492. source: "./media/characters/noah/hand.svg"
  4493. }
  4494. },
  4495. talons: {
  4496. height: math.unit(1.385, "feet"),
  4497. name: "Talons",
  4498. image: {
  4499. source: "./media/characters/noah/talons.svg"
  4500. }
  4501. },
  4502. beak: {
  4503. height: math.unit(0.43, "feet"),
  4504. name: "Beak",
  4505. image: {
  4506. source: "./media/characters/noah/beak.svg"
  4507. }
  4508. },
  4509. collar: {
  4510. height: math.unit(0.88, "feet"),
  4511. name: "Collar",
  4512. image: {
  4513. source: "./media/characters/noah/collar.svg"
  4514. }
  4515. },
  4516. eyeNarrow: {
  4517. height: math.unit(0.18, "feet"),
  4518. name: "Eye (Narrow)",
  4519. image: {
  4520. source: "./media/characters/noah/eye-narrow.svg"
  4521. }
  4522. },
  4523. eyeNormal: {
  4524. height: math.unit(0.18, "feet"),
  4525. name: "Eye (Normal)",
  4526. image: {
  4527. source: "./media/characters/noah/eye-normal.svg"
  4528. }
  4529. },
  4530. eyeWide: {
  4531. height: math.unit(0.18, "feet"),
  4532. name: "Eye (Wide)",
  4533. image: {
  4534. source: "./media/characters/noah/eye-wide.svg"
  4535. }
  4536. },
  4537. ear: {
  4538. height: math.unit(0.64, "feet"),
  4539. name: "Ear",
  4540. image: {
  4541. source: "./media/characters/noah/ear.svg"
  4542. }
  4543. },
  4544. },
  4545. [
  4546. {
  4547. name: "Large",
  4548. height: math.unit(50, "feet")
  4549. },
  4550. {
  4551. name: "Macro",
  4552. height: math.unit(750, "feet"),
  4553. default: true
  4554. },
  4555. {
  4556. name: "Megamacro",
  4557. height: math.unit(50, "miles")
  4558. },
  4559. {
  4560. name: "Gigamacro",
  4561. height: math.unit(100000, "miles")
  4562. },
  4563. {
  4564. name: "Full-Size",
  4565. height: math.unit(3000000000, "miles")
  4566. }
  4567. ]
  4568. ))
  4569. characterMakers.push(() => makeCharacter(
  4570. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4571. {
  4572. front: {
  4573. height: math.unit(2, "meter"),
  4574. weight: math.unit(80, "kg"),
  4575. name: "Front",
  4576. image: {
  4577. source: "./media/characters/natalya/front.svg"
  4578. }
  4579. },
  4580. back: {
  4581. height: math.unit(2, "meter"),
  4582. weight: math.unit(80, "kg"),
  4583. name: "Back",
  4584. image: {
  4585. source: "./media/characters/natalya/back.svg"
  4586. }
  4587. }
  4588. },
  4589. [
  4590. {
  4591. name: "Normal",
  4592. height: math.unit(150, "feet"),
  4593. default: true
  4594. },
  4595. {
  4596. name: "Megamacro",
  4597. height: math.unit(5, "miles")
  4598. },
  4599. {
  4600. name: "Full-Size",
  4601. height: math.unit(600, "kiloparsecs")
  4602. }
  4603. ]
  4604. ))
  4605. characterMakers.push(() => makeCharacter(
  4606. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4607. {
  4608. front: {
  4609. height: math.unit(2, "meter"),
  4610. weight: math.unit(50, "kg"),
  4611. name: "Front",
  4612. image: {
  4613. source: "./media/characters/erestrebah/front.svg",
  4614. extra: 1262/1162,
  4615. bottom: 96/1358
  4616. }
  4617. },
  4618. back: {
  4619. height: math.unit(2, "meter"),
  4620. weight: math.unit(50, "kg"),
  4621. name: "Back",
  4622. image: {
  4623. source: "./media/characters/erestrebah/back.svg",
  4624. extra: 1257/1139,
  4625. bottom: 13/1270
  4626. }
  4627. },
  4628. wing: {
  4629. height: math.unit(2, "meter"),
  4630. weight: math.unit(50, "kg"),
  4631. name: "Wing",
  4632. image: {
  4633. source: "./media/characters/erestrebah/wing.svg",
  4634. extra: 1262/1162,
  4635. bottom: 96/1358
  4636. }
  4637. },
  4638. mouth: {
  4639. height: math.unit(0.39, "feet"),
  4640. name: "Mouth",
  4641. image: {
  4642. source: "./media/characters/erestrebah/mouth.svg"
  4643. }
  4644. }
  4645. },
  4646. [
  4647. {
  4648. name: "Normal",
  4649. height: math.unit(10, "feet")
  4650. },
  4651. {
  4652. name: "Large",
  4653. height: math.unit(50, "feet"),
  4654. default: true
  4655. },
  4656. {
  4657. name: "Macro",
  4658. height: math.unit(300, "feet")
  4659. },
  4660. {
  4661. name: "Macro+",
  4662. height: math.unit(750, "feet")
  4663. },
  4664. {
  4665. name: "Megamacro",
  4666. height: math.unit(3, "miles")
  4667. }
  4668. ]
  4669. ))
  4670. characterMakers.push(() => makeCharacter(
  4671. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4672. {
  4673. front: {
  4674. height: math.unit(2, "meter"),
  4675. weight: math.unit(80, "kg"),
  4676. name: "Front",
  4677. image: {
  4678. source: "./media/characters/jennifer/front.svg",
  4679. bottom: 0.11,
  4680. extra: 1.16
  4681. }
  4682. },
  4683. frontAlt: {
  4684. height: math.unit(2, "meter"),
  4685. weight: math.unit(80, "kg"),
  4686. name: "Front (Alt)",
  4687. image: {
  4688. source: "./media/characters/jennifer/front-alt.svg"
  4689. }
  4690. }
  4691. },
  4692. [
  4693. {
  4694. name: "Canon Height",
  4695. height: math.unit(120, "feet"),
  4696. default: true
  4697. },
  4698. {
  4699. name: "Macro+",
  4700. height: math.unit(300, "feet")
  4701. },
  4702. {
  4703. name: "Megamacro",
  4704. height: math.unit(20000, "feet")
  4705. }
  4706. ]
  4707. ))
  4708. characterMakers.push(() => makeCharacter(
  4709. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4710. {
  4711. front: {
  4712. height: math.unit(2, "meter"),
  4713. weight: math.unit(50, "kg"),
  4714. name: "Front",
  4715. image: {
  4716. source: "./media/characters/kalista/front.svg",
  4717. extra: 1314/1145,
  4718. bottom: 101/1415
  4719. }
  4720. },
  4721. back: {
  4722. height: math.unit(2, "meter"),
  4723. weight: math.unit(50, "kg"),
  4724. name: "Back",
  4725. image: {
  4726. source: "./media/characters/kalista/back.svg",
  4727. extra: 1366 / 1156,
  4728. bottom: 33.9 / 1362.78
  4729. }
  4730. }
  4731. },
  4732. [
  4733. {
  4734. name: "Uncomfortably Small",
  4735. height: math.unit(10, "feet")
  4736. },
  4737. {
  4738. name: "Small",
  4739. height: math.unit(30, "feet")
  4740. },
  4741. {
  4742. name: "Macro",
  4743. height: math.unit(100, "feet"),
  4744. default: true
  4745. },
  4746. {
  4747. name: "Macro+",
  4748. height: math.unit(2000, "feet")
  4749. },
  4750. {
  4751. name: "True Form",
  4752. height: math.unit(8924, "miles")
  4753. }
  4754. ]
  4755. ))
  4756. characterMakers.push(() => makeCharacter(
  4757. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4758. {
  4759. front: {
  4760. height: math.unit(2, "meter"),
  4761. weight: math.unit(120, "kg"),
  4762. name: "Front",
  4763. image: {
  4764. source: "./media/characters/ggv/front.svg"
  4765. }
  4766. },
  4767. side: {
  4768. height: math.unit(2, "meter"),
  4769. weight: math.unit(120, "kg"),
  4770. name: "Side",
  4771. image: {
  4772. source: "./media/characters/ggv/side.svg"
  4773. }
  4774. }
  4775. },
  4776. [
  4777. {
  4778. name: "Extremely Puny",
  4779. height: math.unit(9 + 5 / 12, "feet")
  4780. },
  4781. {
  4782. name: "Horribly Small",
  4783. height: math.unit(47.7, "miles"),
  4784. default: true
  4785. },
  4786. {
  4787. name: "Reasonably Sized",
  4788. height: math.unit(25000, "parsecs")
  4789. },
  4790. {
  4791. name: "Slightly Uncompressed",
  4792. height: math.unit(7.77e31, "parsecs")
  4793. },
  4794. {
  4795. name: "Omniversal",
  4796. height: math.unit(1e300, "meters")
  4797. },
  4798. ]
  4799. ))
  4800. characterMakers.push(() => makeCharacter(
  4801. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4802. {
  4803. front: {
  4804. height: math.unit(2, "meter"),
  4805. weight: math.unit(75, "lb"),
  4806. name: "Front",
  4807. image: {
  4808. source: "./media/characters/napalm/front.svg"
  4809. }
  4810. },
  4811. back: {
  4812. height: math.unit(2, "meter"),
  4813. weight: math.unit(75, "lb"),
  4814. name: "Back",
  4815. image: {
  4816. source: "./media/characters/napalm/back.svg"
  4817. }
  4818. }
  4819. },
  4820. [
  4821. {
  4822. name: "Standard",
  4823. height: math.unit(55, "feet"),
  4824. default: true
  4825. }
  4826. ]
  4827. ))
  4828. characterMakers.push(() => makeCharacter(
  4829. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4830. {
  4831. front: {
  4832. height: math.unit(7 + 5 / 6, "feet"),
  4833. weight: math.unit(325, "lb"),
  4834. name: "Front",
  4835. image: {
  4836. source: "./media/characters/asana/front.svg",
  4837. extra: 1133 / 1060,
  4838. bottom: 15.2 / 1148.6
  4839. }
  4840. },
  4841. back: {
  4842. height: math.unit(7 + 5 / 6, "feet"),
  4843. weight: math.unit(325, "lb"),
  4844. name: "Back",
  4845. image: {
  4846. source: "./media/characters/asana/back.svg",
  4847. extra: 1114 / 1043,
  4848. bottom: 5 / 1120
  4849. }
  4850. },
  4851. dressedDark: {
  4852. height: math.unit(7 + 5 / 6, "feet"),
  4853. weight: math.unit(325, "lb"),
  4854. name: "Dressed (Dark)",
  4855. image: {
  4856. source: "./media/characters/asana/dressed-dark.svg",
  4857. extra: 1133 / 1060,
  4858. bottom: 15.2 / 1148.6
  4859. }
  4860. },
  4861. dressedLight: {
  4862. height: math.unit(7 + 5 / 6, "feet"),
  4863. weight: math.unit(325, "lb"),
  4864. name: "Dressed (Light)",
  4865. image: {
  4866. source: "./media/characters/asana/dressed-light.svg",
  4867. extra: 1133 / 1060,
  4868. bottom: 15.2 / 1148.6
  4869. }
  4870. },
  4871. },
  4872. [
  4873. {
  4874. name: "Standard",
  4875. height: math.unit(7 + 5 / 6, "feet"),
  4876. default: true
  4877. },
  4878. {
  4879. name: "Large",
  4880. height: math.unit(10, "meters")
  4881. },
  4882. {
  4883. name: "Macro",
  4884. height: math.unit(2500, "meters")
  4885. },
  4886. {
  4887. name: "Megamacro",
  4888. height: math.unit(5e6, "meters")
  4889. },
  4890. {
  4891. name: "Examacro",
  4892. height: math.unit(5e12, "lightyears")
  4893. },
  4894. {
  4895. name: "Max Size",
  4896. height: math.unit(1e31, "lightyears")
  4897. }
  4898. ]
  4899. ))
  4900. characterMakers.push(() => makeCharacter(
  4901. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4902. {
  4903. front: {
  4904. height: math.unit(2, "meter"),
  4905. weight: math.unit(60, "kg"),
  4906. name: "Front",
  4907. image: {
  4908. source: "./media/characters/ebony/front.svg",
  4909. bottom: 0.03,
  4910. extra: 1045 / 810 + 0.03
  4911. }
  4912. },
  4913. side: {
  4914. height: math.unit(2, "meter"),
  4915. weight: math.unit(60, "kg"),
  4916. name: "Side",
  4917. image: {
  4918. source: "./media/characters/ebony/side.svg",
  4919. bottom: 0.03,
  4920. extra: 1045 / 810 + 0.03
  4921. }
  4922. },
  4923. back: {
  4924. height: math.unit(2, "meter"),
  4925. weight: math.unit(60, "kg"),
  4926. name: "Back",
  4927. image: {
  4928. source: "./media/characters/ebony/back.svg",
  4929. bottom: 0.01,
  4930. extra: 1045 / 810 + 0.01
  4931. }
  4932. },
  4933. },
  4934. [
  4935. // TODO check why I did this lol
  4936. {
  4937. name: "Standard",
  4938. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4939. default: true
  4940. },
  4941. {
  4942. name: "Macro",
  4943. height: math.unit(200, "feet")
  4944. },
  4945. {
  4946. name: "Gigamacro",
  4947. height: math.unit(13000, "km")
  4948. }
  4949. ]
  4950. ))
  4951. characterMakers.push(() => makeCharacter(
  4952. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4953. {
  4954. front: {
  4955. height: math.unit(6, "feet"),
  4956. weight: math.unit(175, "lb"),
  4957. name: "Front",
  4958. image: {
  4959. source: "./media/characters/mountain/front.svg",
  4960. extra: 972 / 955,
  4961. bottom: 64 / 1036.6
  4962. }
  4963. },
  4964. back: {
  4965. height: math.unit(6, "feet"),
  4966. weight: math.unit(175, "lb"),
  4967. name: "Back",
  4968. image: {
  4969. source: "./media/characters/mountain/back.svg",
  4970. extra: 970 / 950,
  4971. bottom: 28.25 / 999
  4972. }
  4973. },
  4974. },
  4975. [
  4976. {
  4977. name: "Large",
  4978. height: math.unit(20, "meters")
  4979. },
  4980. {
  4981. name: "Macro",
  4982. height: math.unit(300, "meters")
  4983. },
  4984. {
  4985. name: "Gigamacro",
  4986. height: math.unit(10000, "km"),
  4987. default: true
  4988. },
  4989. {
  4990. name: "Examacro",
  4991. height: math.unit(10e9, "lightyears")
  4992. }
  4993. ]
  4994. ))
  4995. characterMakers.push(() => makeCharacter(
  4996. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4997. {
  4998. front: {
  4999. height: math.unit(8, "feet"),
  5000. weight: math.unit(500, "lb"),
  5001. name: "Front",
  5002. image: {
  5003. source: "./media/characters/rick/front.svg"
  5004. }
  5005. }
  5006. },
  5007. [
  5008. {
  5009. name: "Normal",
  5010. height: math.unit(8, "feet"),
  5011. default: true
  5012. },
  5013. {
  5014. name: "Macro",
  5015. height: math.unit(5, "km")
  5016. }
  5017. ]
  5018. ))
  5019. characterMakers.push(() => makeCharacter(
  5020. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  5021. {
  5022. front: {
  5023. height: math.unit(8, "feet"),
  5024. weight: math.unit(120, "lb"),
  5025. name: "Front",
  5026. image: {
  5027. source: "./media/characters/ona/front.svg"
  5028. }
  5029. },
  5030. frontAlt: {
  5031. height: math.unit(8, "feet"),
  5032. weight: math.unit(120, "lb"),
  5033. name: "Front (Alt)",
  5034. image: {
  5035. source: "./media/characters/ona/front-alt.svg"
  5036. }
  5037. },
  5038. back: {
  5039. height: math.unit(8, "feet"),
  5040. weight: math.unit(120, "lb"),
  5041. name: "Back",
  5042. image: {
  5043. source: "./media/characters/ona/back.svg"
  5044. }
  5045. },
  5046. foot: {
  5047. height: math.unit(1.1, "feet"),
  5048. name: "Foot",
  5049. image: {
  5050. source: "./media/characters/ona/foot.svg"
  5051. }
  5052. }
  5053. },
  5054. [
  5055. {
  5056. name: "Megamacro",
  5057. height: math.unit(70, "km"),
  5058. default: true
  5059. },
  5060. {
  5061. name: "Gigamacro",
  5062. height: math.unit(681818, "miles")
  5063. },
  5064. {
  5065. name: "Examacro",
  5066. height: math.unit(3800000, "lightyears")
  5067. },
  5068. ]
  5069. ))
  5070. characterMakers.push(() => makeCharacter(
  5071. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  5072. {
  5073. front: {
  5074. height: math.unit(12, "feet"),
  5075. weight: math.unit(3000, "lb"),
  5076. name: "Front",
  5077. image: {
  5078. source: "./media/characters/mech/front.svg",
  5079. extra: 2900 / 2770,
  5080. bottom: 110 / 3010
  5081. }
  5082. },
  5083. back: {
  5084. height: math.unit(12, "feet"),
  5085. weight: math.unit(3000, "lb"),
  5086. name: "Back",
  5087. image: {
  5088. source: "./media/characters/mech/back.svg",
  5089. extra: 3011 / 2890,
  5090. bottom: 94 / 3105
  5091. }
  5092. },
  5093. maw: {
  5094. height: math.unit(3.07, "feet"),
  5095. name: "Maw",
  5096. image: {
  5097. source: "./media/characters/mech/maw.svg"
  5098. }
  5099. },
  5100. head: {
  5101. height: math.unit(3.07, "feet"),
  5102. name: "Head",
  5103. image: {
  5104. source: "./media/characters/mech/head.svg"
  5105. }
  5106. },
  5107. dick: {
  5108. height: math.unit(1.43, "feet"),
  5109. name: "Dick",
  5110. image: {
  5111. source: "./media/characters/mech/dick.svg"
  5112. }
  5113. },
  5114. },
  5115. [
  5116. {
  5117. name: "Normal",
  5118. height: math.unit(12, "feet")
  5119. },
  5120. {
  5121. name: "Macro",
  5122. height: math.unit(300, "feet"),
  5123. default: true
  5124. },
  5125. {
  5126. name: "Macro+",
  5127. height: math.unit(1500, "feet")
  5128. },
  5129. ]
  5130. ))
  5131. characterMakers.push(() => makeCharacter(
  5132. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5133. {
  5134. front: {
  5135. height: math.unit(1.3, "meter"),
  5136. weight: math.unit(30, "kg"),
  5137. name: "Front",
  5138. image: {
  5139. source: "./media/characters/gregory/front.svg",
  5140. }
  5141. }
  5142. },
  5143. [
  5144. {
  5145. name: "Normal",
  5146. height: math.unit(1.3, "meter"),
  5147. default: true
  5148. },
  5149. {
  5150. name: "Macro",
  5151. height: math.unit(20, "meter")
  5152. }
  5153. ]
  5154. ))
  5155. characterMakers.push(() => makeCharacter(
  5156. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5157. {
  5158. front: {
  5159. height: math.unit(2.8, "meter"),
  5160. weight: math.unit(200, "kg"),
  5161. name: "Front",
  5162. image: {
  5163. source: "./media/characters/elory/front.svg",
  5164. }
  5165. }
  5166. },
  5167. [
  5168. {
  5169. name: "Normal",
  5170. height: math.unit(2.8, "meter"),
  5171. default: true
  5172. },
  5173. {
  5174. name: "Macro",
  5175. height: math.unit(38, "meter")
  5176. }
  5177. ]
  5178. ))
  5179. characterMakers.push(() => makeCharacter(
  5180. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5181. {
  5182. front: {
  5183. height: math.unit(470, "feet"),
  5184. weight: math.unit(924, "tons"),
  5185. name: "Front",
  5186. image: {
  5187. source: "./media/characters/angelpatamon/front.svg",
  5188. }
  5189. }
  5190. },
  5191. [
  5192. {
  5193. name: "Normal",
  5194. height: math.unit(470, "feet"),
  5195. default: true
  5196. },
  5197. {
  5198. name: "Deity Size I",
  5199. height: math.unit(28651.2, "km")
  5200. },
  5201. {
  5202. name: "Deity Size II",
  5203. height: math.unit(171907.2, "km")
  5204. }
  5205. ]
  5206. ))
  5207. characterMakers.push(() => makeCharacter(
  5208. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5209. {
  5210. side: {
  5211. height: math.unit(7.2, "meter"),
  5212. weight: math.unit(8.2, "tons"),
  5213. name: "Side",
  5214. image: {
  5215. source: "./media/characters/cryae/side.svg",
  5216. extra: 3500 / 1500
  5217. }
  5218. }
  5219. },
  5220. [
  5221. {
  5222. name: "Normal",
  5223. height: math.unit(7.2, "meter"),
  5224. default: true
  5225. }
  5226. ]
  5227. ))
  5228. characterMakers.push(() => makeCharacter(
  5229. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5230. {
  5231. front: {
  5232. height: math.unit(6, "feet"),
  5233. weight: math.unit(175, "lb"),
  5234. name: "Front",
  5235. image: {
  5236. source: "./media/characters/xera/front.svg",
  5237. extra: 2377 / 1972,
  5238. bottom: 75.5 / 2452
  5239. }
  5240. },
  5241. side: {
  5242. height: math.unit(6, "feet"),
  5243. weight: math.unit(175, "lb"),
  5244. name: "Side",
  5245. image: {
  5246. source: "./media/characters/xera/side.svg",
  5247. extra: 2345 / 2019,
  5248. bottom: 39.7 / 2384
  5249. }
  5250. },
  5251. back: {
  5252. height: math.unit(6, "feet"),
  5253. weight: math.unit(175, "lb"),
  5254. name: "Back",
  5255. image: {
  5256. source: "./media/characters/xera/back.svg",
  5257. extra: 2095 / 1984,
  5258. bottom: 67 / 2166
  5259. }
  5260. },
  5261. },
  5262. [
  5263. {
  5264. name: "Small",
  5265. height: math.unit(10, "feet")
  5266. },
  5267. {
  5268. name: "Macro",
  5269. height: math.unit(500, "meters"),
  5270. default: true
  5271. },
  5272. {
  5273. name: "Macro+",
  5274. height: math.unit(10, "km")
  5275. },
  5276. {
  5277. name: "Gigamacro",
  5278. height: math.unit(25000, "km")
  5279. },
  5280. {
  5281. name: "Teramacro",
  5282. height: math.unit(3e6, "km")
  5283. }
  5284. ]
  5285. ))
  5286. characterMakers.push(() => makeCharacter(
  5287. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5288. {
  5289. front: {
  5290. height: math.unit(6, "feet"),
  5291. weight: math.unit(175, "lb"),
  5292. name: "Front",
  5293. image: {
  5294. source: "./media/characters/nebula/front.svg",
  5295. extra: 2566 / 2362,
  5296. bottom: 81 / 2644
  5297. }
  5298. }
  5299. },
  5300. [
  5301. {
  5302. name: "Small",
  5303. height: math.unit(4.5, "meters")
  5304. },
  5305. {
  5306. name: "Macro",
  5307. height: math.unit(1500, "meters"),
  5308. default: true
  5309. },
  5310. {
  5311. name: "Megamacro",
  5312. height: math.unit(150, "km")
  5313. },
  5314. {
  5315. name: "Gigamacro",
  5316. height: math.unit(27000, "km")
  5317. }
  5318. ]
  5319. ))
  5320. characterMakers.push(() => makeCharacter(
  5321. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5322. {
  5323. front: {
  5324. height: math.unit(6, "feet"),
  5325. weight: math.unit(225, "lb"),
  5326. name: "Front",
  5327. image: {
  5328. source: "./media/characters/abysgar/front.svg",
  5329. extra: 1739/1614,
  5330. bottom: 71/1810
  5331. }
  5332. },
  5333. frontNsfw: {
  5334. height: math.unit(6, "feet"),
  5335. weight: math.unit(225, "lb"),
  5336. name: "Front (NSFW)",
  5337. image: {
  5338. source: "./media/characters/abysgar/front-nsfw.svg",
  5339. extra: 1739/1614,
  5340. bottom: 71/1810
  5341. }
  5342. },
  5343. back: {
  5344. height: math.unit(4.6, "feet"),
  5345. weight: math.unit(225, "lb"),
  5346. name: "Back",
  5347. image: {
  5348. source: "./media/characters/abysgar/back.svg",
  5349. extra: 1384/1327,
  5350. bottom: 0/1384
  5351. }
  5352. },
  5353. head: {
  5354. height: math.unit(1.25, "feet"),
  5355. name: "Head",
  5356. image: {
  5357. source: "./media/characters/abysgar/head.svg",
  5358. extra: 669/569,
  5359. bottom: 0/669
  5360. }
  5361. },
  5362. },
  5363. [
  5364. {
  5365. name: "Small",
  5366. height: math.unit(4.5, "meters")
  5367. },
  5368. {
  5369. name: "Macro",
  5370. height: math.unit(1250, "meters"),
  5371. default: true
  5372. },
  5373. {
  5374. name: "Megamacro",
  5375. height: math.unit(125, "km")
  5376. },
  5377. {
  5378. name: "Gigamacro",
  5379. height: math.unit(26000, "km")
  5380. }
  5381. ]
  5382. ))
  5383. characterMakers.push(() => makeCharacter(
  5384. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5385. {
  5386. front: {
  5387. height: math.unit(6, "feet"),
  5388. weight: math.unit(180, "lb"),
  5389. name: "Front",
  5390. image: {
  5391. source: "./media/characters/yakuz/front.svg"
  5392. }
  5393. }
  5394. },
  5395. [
  5396. {
  5397. name: "Small",
  5398. height: math.unit(5, "meters")
  5399. },
  5400. {
  5401. name: "Macro",
  5402. height: math.unit(1500, "meters"),
  5403. default: true
  5404. },
  5405. {
  5406. name: "Megamacro",
  5407. height: math.unit(200, "km")
  5408. },
  5409. {
  5410. name: "Gigamacro",
  5411. height: math.unit(100000, "km")
  5412. }
  5413. ]
  5414. ))
  5415. characterMakers.push(() => makeCharacter(
  5416. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5417. {
  5418. front: {
  5419. height: math.unit(6, "feet"),
  5420. weight: math.unit(175, "lb"),
  5421. name: "Front",
  5422. image: {
  5423. source: "./media/characters/mirova/front.svg",
  5424. extra: 3334 / 3071,
  5425. bottom: 42 / 3375.6
  5426. }
  5427. }
  5428. },
  5429. [
  5430. {
  5431. name: "Small",
  5432. height: math.unit(5, "meters")
  5433. },
  5434. {
  5435. name: "Macro",
  5436. height: math.unit(900, "meters"),
  5437. default: true
  5438. },
  5439. {
  5440. name: "Megamacro",
  5441. height: math.unit(135, "km")
  5442. },
  5443. {
  5444. name: "Gigamacro",
  5445. height: math.unit(20000, "km")
  5446. }
  5447. ]
  5448. ))
  5449. characterMakers.push(() => makeCharacter(
  5450. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5451. {
  5452. side: {
  5453. height: math.unit(28.35, "feet"),
  5454. weight: math.unit(99.75, "tons"),
  5455. name: "Side",
  5456. image: {
  5457. source: "./media/characters/asana-mech/side.svg",
  5458. extra: 923 / 699,
  5459. bottom: 50 / 975
  5460. }
  5461. },
  5462. chaingun: {
  5463. height: math.unit(7, "feet"),
  5464. weight: math.unit(2400, "lb"),
  5465. name: "Chaingun",
  5466. image: {
  5467. source: "./media/characters/asana-mech/chaingun.svg"
  5468. }
  5469. },
  5470. laser: {
  5471. height: math.unit(7.12, "feet"),
  5472. weight: math.unit(2000, "lb"),
  5473. name: "Laser",
  5474. image: {
  5475. source: "./media/characters/asana-mech/laser.svg"
  5476. }
  5477. },
  5478. },
  5479. [
  5480. {
  5481. name: "Normal",
  5482. height: math.unit(28.35, "feet"),
  5483. default: true
  5484. },
  5485. {
  5486. name: "Macro",
  5487. height: math.unit(2500, "feet")
  5488. },
  5489. {
  5490. name: "Megamacro",
  5491. height: math.unit(25, "miles")
  5492. },
  5493. {
  5494. name: "Examacro",
  5495. height: math.unit(6e8, "lightyears")
  5496. },
  5497. ]
  5498. ))
  5499. characterMakers.push(() => makeCharacter(
  5500. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5501. {
  5502. front: {
  5503. height: math.unit(5, "meters"),
  5504. weight: math.unit(1000, "kg"),
  5505. name: "Front",
  5506. image: {
  5507. source: "./media/characters/asche/front.svg",
  5508. extra: 1258 / 1190,
  5509. bottom: 47 / 1305
  5510. }
  5511. },
  5512. frontUnderwear: {
  5513. height: math.unit(5, "meters"),
  5514. weight: math.unit(1000, "kg"),
  5515. name: "Front (Underwear)",
  5516. image: {
  5517. source: "./media/characters/asche/front-underwear.svg",
  5518. extra: 1258 / 1190,
  5519. bottom: 47 / 1305
  5520. }
  5521. },
  5522. frontDressed: {
  5523. height: math.unit(5, "meters"),
  5524. weight: math.unit(1000, "kg"),
  5525. name: "Front (Dressed)",
  5526. image: {
  5527. source: "./media/characters/asche/front-dressed.svg",
  5528. extra: 1258 / 1190,
  5529. bottom: 47 / 1305
  5530. }
  5531. },
  5532. frontArmor: {
  5533. height: math.unit(5, "meters"),
  5534. weight: math.unit(1000, "kg"),
  5535. name: "Front (Armored)",
  5536. image: {
  5537. source: "./media/characters/asche/front-armored.svg",
  5538. extra: 1374 / 1308,
  5539. bottom: 23 / 1397
  5540. }
  5541. },
  5542. mp724: {
  5543. height: math.unit(0.96, "meters"),
  5544. weight: math.unit(38, "kg"),
  5545. name: "H&K MP724",
  5546. image: {
  5547. source: "./media/characters/asche/h&k-mp724.svg"
  5548. }
  5549. },
  5550. side: {
  5551. height: math.unit(5, "meters"),
  5552. weight: math.unit(1000, "kg"),
  5553. name: "Side",
  5554. image: {
  5555. source: "./media/characters/asche/side.svg",
  5556. extra: 1717 / 1609,
  5557. bottom: 0.005
  5558. }
  5559. },
  5560. back: {
  5561. height: math.unit(5, "meters"),
  5562. weight: math.unit(1000, "kg"),
  5563. name: "Back",
  5564. image: {
  5565. source: "./media/characters/asche/back.svg",
  5566. extra: 1570 / 1501
  5567. }
  5568. },
  5569. },
  5570. [
  5571. {
  5572. name: "DEFCON 5",
  5573. height: math.unit(5, "meters")
  5574. },
  5575. {
  5576. name: "DEFCON 4",
  5577. height: math.unit(500, "meters"),
  5578. default: true
  5579. },
  5580. {
  5581. name: "DEFCON 3",
  5582. height: math.unit(5, "km")
  5583. },
  5584. {
  5585. name: "DEFCON 2",
  5586. height: math.unit(500, "km")
  5587. },
  5588. {
  5589. name: "DEFCON 1",
  5590. height: math.unit(500000, "km")
  5591. },
  5592. {
  5593. name: "DEFCON 0",
  5594. height: math.unit(3, "gigaparsecs")
  5595. },
  5596. ]
  5597. ))
  5598. characterMakers.push(() => makeCharacter(
  5599. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5600. {
  5601. front: {
  5602. height: math.unit(7, "feet"),
  5603. weight: math.unit(92.7, "kg"),
  5604. name: "Front",
  5605. image: {
  5606. source: "./media/characters/gale/front.svg",
  5607. extra: 977/919,
  5608. bottom: 105/1082
  5609. }
  5610. },
  5611. side: {
  5612. height: math.unit(6.7, "feet"),
  5613. weight: math.unit(92.7, "kg"),
  5614. name: "Side",
  5615. image: {
  5616. source: "./media/characters/gale/side.svg",
  5617. extra: 978/922,
  5618. bottom: 140/1118
  5619. }
  5620. },
  5621. back: {
  5622. height: math.unit(7, "feet"),
  5623. weight: math.unit(92.7, "kg"),
  5624. name: "Back",
  5625. image: {
  5626. source: "./media/characters/gale/back.svg",
  5627. extra: 966/920,
  5628. bottom: 61/1027
  5629. }
  5630. },
  5631. maw: {
  5632. height: math.unit(2.23, "feet"),
  5633. name: "Maw",
  5634. image: {
  5635. source: "./media/characters/gale/maw.svg"
  5636. }
  5637. },
  5638. foot: {
  5639. height: math.unit(2.1, "feet"),
  5640. name: "Foot",
  5641. image: {
  5642. source: "./media/characters/gale/foot.svg"
  5643. }
  5644. },
  5645. },
  5646. [
  5647. {
  5648. name: "Normal",
  5649. height: math.unit(7, "feet")
  5650. },
  5651. {
  5652. name: "Macro",
  5653. height: math.unit(150, "feet"),
  5654. default: true
  5655. },
  5656. {
  5657. name: "Macro+",
  5658. height: math.unit(300, "feet")
  5659. },
  5660. ]
  5661. ))
  5662. characterMakers.push(() => makeCharacter(
  5663. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5664. {
  5665. front: {
  5666. height: math.unit(5 + 10/12, "feet"),
  5667. weight: math.unit(67, "kg"),
  5668. name: "Front",
  5669. image: {
  5670. source: "./media/characters/draylen/front.svg",
  5671. extra: 832/777,
  5672. bottom: 85/917
  5673. }
  5674. }
  5675. },
  5676. [
  5677. {
  5678. name: "Normal",
  5679. height: math.unit(5 + 10/12, "feet")
  5680. },
  5681. {
  5682. name: "Macro",
  5683. height: math.unit(150, "feet"),
  5684. default: true
  5685. }
  5686. ]
  5687. ))
  5688. characterMakers.push(() => makeCharacter(
  5689. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5690. {
  5691. front: {
  5692. height: math.unit(7 + 9 / 12, "feet"),
  5693. weight: math.unit(379, "lbs"),
  5694. name: "Front",
  5695. image: {
  5696. source: "./media/characters/chez/front.svg"
  5697. }
  5698. },
  5699. side: {
  5700. height: math.unit(7 + 9 / 12, "feet"),
  5701. weight: math.unit(379, "lbs"),
  5702. name: "Side",
  5703. image: {
  5704. source: "./media/characters/chez/side.svg"
  5705. }
  5706. }
  5707. },
  5708. [
  5709. {
  5710. name: "Normal",
  5711. height: math.unit(7 + 9 / 12, "feet"),
  5712. default: true
  5713. },
  5714. {
  5715. name: "God King",
  5716. height: math.unit(9750000, "meters")
  5717. }
  5718. ]
  5719. ))
  5720. characterMakers.push(() => makeCharacter(
  5721. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5722. {
  5723. front: {
  5724. height: math.unit(6, "feet"),
  5725. weight: math.unit(275, "lbs"),
  5726. name: "Front",
  5727. image: {
  5728. source: "./media/characters/kaylum/front.svg",
  5729. bottom: 0.01,
  5730. extra: 1166 / 1031
  5731. }
  5732. },
  5733. frontWingless: {
  5734. height: math.unit(6, "feet"),
  5735. weight: math.unit(275, "lbs"),
  5736. name: "Front (Wingless)",
  5737. image: {
  5738. source: "./media/characters/kaylum/front-wingless.svg",
  5739. bottom: 0.01,
  5740. extra: 1117 / 1031
  5741. }
  5742. }
  5743. },
  5744. [
  5745. {
  5746. name: "Normal",
  5747. height: math.unit(3.05, "meters")
  5748. },
  5749. {
  5750. name: "Master",
  5751. height: math.unit(5.5, "meters")
  5752. },
  5753. {
  5754. name: "Rampage",
  5755. height: math.unit(19, "meters")
  5756. },
  5757. {
  5758. name: "Macro Lite",
  5759. height: math.unit(37, "meters")
  5760. },
  5761. {
  5762. name: "Hyper Predator",
  5763. height: math.unit(61, "meters")
  5764. },
  5765. {
  5766. name: "Macro",
  5767. height: math.unit(138, "meters"),
  5768. default: true
  5769. }
  5770. ]
  5771. ))
  5772. characterMakers.push(() => makeCharacter(
  5773. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5774. {
  5775. front: {
  5776. height: math.unit(5 + 5 / 12, "feet"),
  5777. weight: math.unit(120, "lbs"),
  5778. name: "Front",
  5779. image: {
  5780. source: "./media/characters/geta/front.svg",
  5781. extra: 1003/933,
  5782. bottom: 21/1024
  5783. }
  5784. },
  5785. paw: {
  5786. height: math.unit(0.35, "feet"),
  5787. name: "Paw",
  5788. image: {
  5789. source: "./media/characters/geta/paw.svg"
  5790. }
  5791. },
  5792. },
  5793. [
  5794. {
  5795. name: "Micro",
  5796. height: math.unit(3, "inches"),
  5797. default: true
  5798. },
  5799. {
  5800. name: "Normal",
  5801. height: math.unit(5 + 5 / 12, "feet")
  5802. }
  5803. ]
  5804. ))
  5805. characterMakers.push(() => makeCharacter(
  5806. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5807. {
  5808. front: {
  5809. height: math.unit(6, "feet"),
  5810. weight: math.unit(300, "lbs"),
  5811. name: "Front",
  5812. image: {
  5813. source: "./media/characters/tyrnn/front.svg"
  5814. }
  5815. }
  5816. },
  5817. [
  5818. {
  5819. name: "Main Height",
  5820. height: math.unit(355, "feet"),
  5821. default: true
  5822. },
  5823. {
  5824. name: "Fave. Height",
  5825. height: math.unit(2400, "feet")
  5826. }
  5827. ]
  5828. ))
  5829. characterMakers.push(() => makeCharacter(
  5830. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5831. {
  5832. front: {
  5833. height: math.unit(6, "feet"),
  5834. weight: math.unit(300, "lbs"),
  5835. name: "Front",
  5836. image: {
  5837. source: "./media/characters/appledectomy/front.svg"
  5838. }
  5839. }
  5840. },
  5841. [
  5842. {
  5843. name: "Macro",
  5844. height: math.unit(2500, "feet")
  5845. },
  5846. {
  5847. name: "Megamacro",
  5848. height: math.unit(50, "miles"),
  5849. default: true
  5850. },
  5851. {
  5852. name: "Gigamacro",
  5853. height: math.unit(5000, "miles")
  5854. },
  5855. {
  5856. name: "Teramacro",
  5857. height: math.unit(250000, "miles")
  5858. },
  5859. ]
  5860. ))
  5861. characterMakers.push(() => makeCharacter(
  5862. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5863. {
  5864. front: {
  5865. height: math.unit(6, "feet"),
  5866. weight: math.unit(200, "lbs"),
  5867. name: "Front",
  5868. image: {
  5869. source: "./media/characters/vulpes/front.svg",
  5870. extra: 573 / 543,
  5871. bottom: 0.033
  5872. }
  5873. },
  5874. side: {
  5875. height: math.unit(6, "feet"),
  5876. weight: math.unit(200, "lbs"),
  5877. name: "Side",
  5878. image: {
  5879. source: "./media/characters/vulpes/side.svg",
  5880. extra: 577 / 549,
  5881. bottom: 11 / 588
  5882. }
  5883. },
  5884. back: {
  5885. height: math.unit(6, "feet"),
  5886. weight: math.unit(200, "lbs"),
  5887. name: "Back",
  5888. image: {
  5889. source: "./media/characters/vulpes/back.svg",
  5890. extra: 573 / 549,
  5891. bottom: 20 / 593
  5892. }
  5893. },
  5894. feet: {
  5895. height: math.unit(1.276, "feet"),
  5896. name: "Feet",
  5897. image: {
  5898. source: "./media/characters/vulpes/feet.svg"
  5899. }
  5900. },
  5901. maw: {
  5902. height: math.unit(1.18, "feet"),
  5903. name: "Maw",
  5904. image: {
  5905. source: "./media/characters/vulpes/maw.svg"
  5906. }
  5907. },
  5908. },
  5909. [
  5910. {
  5911. name: "Micro",
  5912. height: math.unit(2, "inches")
  5913. },
  5914. {
  5915. name: "Normal",
  5916. height: math.unit(6.3, "feet")
  5917. },
  5918. {
  5919. name: "Macro",
  5920. height: math.unit(850, "feet")
  5921. },
  5922. {
  5923. name: "Megamacro",
  5924. height: math.unit(7500, "feet"),
  5925. default: true
  5926. },
  5927. {
  5928. name: "Gigamacro",
  5929. height: math.unit(570000, "miles")
  5930. }
  5931. ]
  5932. ))
  5933. characterMakers.push(() => makeCharacter(
  5934. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5935. {
  5936. front: {
  5937. height: math.unit(6, "feet"),
  5938. weight: math.unit(210, "lbs"),
  5939. name: "Front",
  5940. image: {
  5941. source: "./media/characters/rain-fallen/front.svg"
  5942. }
  5943. },
  5944. side: {
  5945. height: math.unit(6, "feet"),
  5946. weight: math.unit(210, "lbs"),
  5947. name: "Side",
  5948. image: {
  5949. source: "./media/characters/rain-fallen/side.svg"
  5950. }
  5951. },
  5952. back: {
  5953. height: math.unit(6, "feet"),
  5954. weight: math.unit(210, "lbs"),
  5955. name: "Back",
  5956. image: {
  5957. source: "./media/characters/rain-fallen/back.svg"
  5958. }
  5959. },
  5960. feral: {
  5961. height: math.unit(9, "feet"),
  5962. weight: math.unit(700, "lbs"),
  5963. name: "Feral",
  5964. image: {
  5965. source: "./media/characters/rain-fallen/feral.svg"
  5966. }
  5967. },
  5968. },
  5969. [
  5970. {
  5971. name: "Meddling with Mortals",
  5972. height: math.unit(8 + 8/12, "feet")
  5973. },
  5974. {
  5975. name: "Normal",
  5976. height: math.unit(5, "meter")
  5977. },
  5978. {
  5979. name: "Macro",
  5980. height: math.unit(150, "meter"),
  5981. default: true
  5982. },
  5983. {
  5984. name: "Megamacro",
  5985. height: math.unit(278e6, "meter")
  5986. },
  5987. {
  5988. name: "Gigamacro",
  5989. height: math.unit(2e9, "meter")
  5990. },
  5991. {
  5992. name: "Teramacro",
  5993. height: math.unit(8e12, "meter")
  5994. },
  5995. {
  5996. name: "Devourer",
  5997. height: math.unit(14, "zettameters")
  5998. },
  5999. {
  6000. name: "Scarlet King",
  6001. height: math.unit(18, "yottameters")
  6002. },
  6003. {
  6004. name: "Void",
  6005. height: math.unit(1e88, "yottameters")
  6006. }
  6007. ]
  6008. ))
  6009. characterMakers.push(() => makeCharacter(
  6010. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  6011. {
  6012. standing: {
  6013. height: math.unit(6, "feet"),
  6014. weight: math.unit(180, "lbs"),
  6015. name: "Standing",
  6016. image: {
  6017. source: "./media/characters/zaakira/standing.svg",
  6018. extra: 1599/1504,
  6019. bottom: 39/1638
  6020. }
  6021. },
  6022. laying: {
  6023. height: math.unit(3.3, "feet"),
  6024. weight: math.unit(180, "lbs"),
  6025. name: "Laying",
  6026. image: {
  6027. source: "./media/characters/zaakira/laying.svg"
  6028. }
  6029. },
  6030. },
  6031. [
  6032. {
  6033. name: "Normal",
  6034. height: math.unit(12, "feet")
  6035. },
  6036. {
  6037. name: "Macro",
  6038. height: math.unit(279, "feet"),
  6039. default: true
  6040. }
  6041. ]
  6042. ))
  6043. characterMakers.push(() => makeCharacter(
  6044. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  6045. {
  6046. femSfw: {
  6047. height: math.unit(8, "feet"),
  6048. weight: math.unit(350, "lb"),
  6049. name: "Fem",
  6050. image: {
  6051. source: "./media/characters/sigvald/fem-sfw.svg",
  6052. extra: 182 / 164,
  6053. bottom: 8.7 / 190.5
  6054. }
  6055. },
  6056. femNsfw: {
  6057. height: math.unit(8, "feet"),
  6058. weight: math.unit(350, "lb"),
  6059. name: "Fem (NSFW)",
  6060. image: {
  6061. source: "./media/characters/sigvald/fem-nsfw.svg",
  6062. extra: 182 / 164,
  6063. bottom: 8.7 / 190.5
  6064. }
  6065. },
  6066. maleNsfw: {
  6067. height: math.unit(8, "feet"),
  6068. weight: math.unit(350, "lb"),
  6069. name: "Male (NSFW)",
  6070. image: {
  6071. source: "./media/characters/sigvald/male-nsfw.svg",
  6072. extra: 182 / 164,
  6073. bottom: 8.7 / 190.5
  6074. }
  6075. },
  6076. hermNsfw: {
  6077. height: math.unit(8, "feet"),
  6078. weight: math.unit(350, "lb"),
  6079. name: "Herm (NSFW)",
  6080. image: {
  6081. source: "./media/characters/sigvald/herm-nsfw.svg",
  6082. extra: 182 / 164,
  6083. bottom: 8.7 / 190.5
  6084. }
  6085. },
  6086. dick: {
  6087. height: math.unit(2.36, "feet"),
  6088. name: "Dick",
  6089. image: {
  6090. source: "./media/characters/sigvald/dick.svg"
  6091. }
  6092. },
  6093. eye: {
  6094. height: math.unit(0.31, "feet"),
  6095. name: "Eye",
  6096. image: {
  6097. source: "./media/characters/sigvald/eye.svg"
  6098. }
  6099. },
  6100. mouth: {
  6101. height: math.unit(0.92, "feet"),
  6102. name: "Mouth",
  6103. image: {
  6104. source: "./media/characters/sigvald/mouth.svg"
  6105. }
  6106. },
  6107. paws: {
  6108. height: math.unit(2.2, "feet"),
  6109. name: "Paws",
  6110. image: {
  6111. source: "./media/characters/sigvald/paws.svg"
  6112. }
  6113. }
  6114. },
  6115. [
  6116. {
  6117. name: "Normal",
  6118. height: math.unit(8, "feet")
  6119. },
  6120. {
  6121. name: "Large",
  6122. height: math.unit(12, "feet")
  6123. },
  6124. {
  6125. name: "Larger",
  6126. height: math.unit(20, "feet")
  6127. },
  6128. {
  6129. name: "Macro",
  6130. height: math.unit(150, "feet")
  6131. },
  6132. {
  6133. name: "Macro+",
  6134. height: math.unit(200, "feet"),
  6135. default: true
  6136. },
  6137. ]
  6138. ))
  6139. characterMakers.push(() => makeCharacter(
  6140. { name: "Scott", species: ["fox"], tags: ["anthro", "taur"] },
  6141. {
  6142. anthro_front: {
  6143. height: math.unit(5 + 11/12, "feet"),
  6144. weight: math.unit(250, "lb"),
  6145. name: "Front",
  6146. image: {
  6147. source: "./media/characters/scott/anthro-front.svg",
  6148. extra: 851/781,
  6149. bottom: 54/905
  6150. },
  6151. form: "anthro",
  6152. default: true
  6153. },
  6154. anthro_side: {
  6155. height: math.unit(5.1, "feet"),
  6156. weight: math.unit(250, "lb"),
  6157. name: "Side",
  6158. image: {
  6159. source: "./media/characters/scott/anthro-side.svg"
  6160. },
  6161. form: "anthro",
  6162. },
  6163. anthro_dick: {
  6164. height: math.unit(1.33, "feet"),
  6165. name: "Dick",
  6166. image: {
  6167. source: "./media/characters/scott/anthro-dick.svg"
  6168. },
  6169. form: "anthro",
  6170. },
  6171. side: {
  6172. height: math.unit(12, "feet"),
  6173. weight: math.unit(2000, "kg"),
  6174. name: "Side",
  6175. image: {
  6176. source: "./media/characters/scott/side.svg",
  6177. extra: 754 / 724,
  6178. bottom: 0.069
  6179. },
  6180. form: "taur",
  6181. default: true
  6182. },
  6183. upright: {
  6184. height: math.unit(12, "feet"),
  6185. weight: math.unit(2000, "kg"),
  6186. name: "Upright",
  6187. image: {
  6188. source: "./media/characters/scott/upright.svg",
  6189. extra: 3881 / 3722,
  6190. bottom: 0.05
  6191. },
  6192. form: "taur",
  6193. },
  6194. },
  6195. [
  6196. {
  6197. name: "Normal",
  6198. height: math.unit(5 + 11/12, "feet"),
  6199. default: true,
  6200. form: "anthro"
  6201. },
  6202. {
  6203. name: "Normal",
  6204. height: math.unit(12, "feet"),
  6205. default: true,
  6206. form: "taur"
  6207. },
  6208. ],
  6209. {
  6210. "anthro": {
  6211. name: "Anthro",
  6212. default: true
  6213. },
  6214. "taur": {
  6215. name: "Taur",
  6216. },
  6217. }
  6218. ))
  6219. characterMakers.push(() => makeCharacter(
  6220. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6221. {
  6222. side: {
  6223. height: math.unit(8, "meters"),
  6224. weight: math.unit(84755, "lbs"),
  6225. name: "Side",
  6226. image: {
  6227. source: "./media/characters/tobias/side.svg",
  6228. extra: 1474 / 1096,
  6229. bottom: 38.9 / 1513.1235
  6230. }
  6231. },
  6232. maw: {
  6233. height: math.unit(2.3, "meters"),
  6234. name: "Maw",
  6235. image: {
  6236. source: "./media/characters/tobias/maw.svg"
  6237. }
  6238. },
  6239. burp: {
  6240. height: math.unit(2.85, "meters"),
  6241. name: "Burp",
  6242. image: {
  6243. source: "./media/characters/tobias/burp.svg"
  6244. }
  6245. },
  6246. },
  6247. [
  6248. {
  6249. name: "Normal",
  6250. height: math.unit(8, "meters"),
  6251. default: true
  6252. },
  6253. ]
  6254. ))
  6255. characterMakers.push(() => makeCharacter(
  6256. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6257. {
  6258. front: {
  6259. height: math.unit(5.5, "feet"),
  6260. weight: math.unit(400, "lbs"),
  6261. name: "Front",
  6262. image: {
  6263. source: "./media/characters/kieran/front.svg",
  6264. extra: 2694 / 2364,
  6265. bottom: 217 / 2908
  6266. }
  6267. },
  6268. side: {
  6269. height: math.unit(5.5, "feet"),
  6270. weight: math.unit(400, "lbs"),
  6271. name: "Side",
  6272. image: {
  6273. source: "./media/characters/kieran/side.svg",
  6274. extra: 875 / 777,
  6275. bottom: 84.6 / 959
  6276. }
  6277. },
  6278. },
  6279. [
  6280. {
  6281. name: "Normal",
  6282. height: math.unit(5.5, "feet"),
  6283. default: true
  6284. },
  6285. ]
  6286. ))
  6287. characterMakers.push(() => makeCharacter(
  6288. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6289. {
  6290. side: {
  6291. height: math.unit(2, "meters"),
  6292. weight: math.unit(70, "kg"),
  6293. name: "Side",
  6294. image: {
  6295. source: "./media/characters/sanya/side.svg",
  6296. bottom: 0.02,
  6297. extra: 1.02
  6298. }
  6299. },
  6300. },
  6301. [
  6302. {
  6303. name: "Small",
  6304. height: math.unit(2, "meters")
  6305. },
  6306. {
  6307. name: "Normal",
  6308. height: math.unit(3, "meters")
  6309. },
  6310. {
  6311. name: "Macro",
  6312. height: math.unit(16, "meters"),
  6313. default: true
  6314. },
  6315. ]
  6316. ))
  6317. characterMakers.push(() => makeCharacter(
  6318. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6319. {
  6320. front: {
  6321. height: math.unit(2, "meters"),
  6322. weight: math.unit(120, "kg"),
  6323. name: "Front",
  6324. image: {
  6325. source: "./media/characters/miranda/front.svg",
  6326. extra: 195 / 185,
  6327. bottom: 10.9 / 206.5
  6328. }
  6329. },
  6330. back: {
  6331. height: math.unit(2, "meters"),
  6332. weight: math.unit(120, "kg"),
  6333. name: "Back",
  6334. image: {
  6335. source: "./media/characters/miranda/back.svg",
  6336. extra: 201 / 193,
  6337. bottom: 2.3 / 203.7
  6338. }
  6339. },
  6340. },
  6341. [
  6342. {
  6343. name: "Normal",
  6344. height: math.unit(10, "feet"),
  6345. default: true
  6346. }
  6347. ]
  6348. ))
  6349. characterMakers.push(() => makeCharacter(
  6350. { name: "James", species: ["deer"], tags: ["anthro"] },
  6351. {
  6352. side: {
  6353. height: math.unit(2, "meters"),
  6354. weight: math.unit(100, "kg"),
  6355. name: "Front",
  6356. image: {
  6357. source: "./media/characters/james/front.svg",
  6358. extra: 10 / 8.5
  6359. }
  6360. },
  6361. },
  6362. [
  6363. {
  6364. name: "Normal",
  6365. height: math.unit(8.5, "feet"),
  6366. default: true
  6367. }
  6368. ]
  6369. ))
  6370. characterMakers.push(() => makeCharacter(
  6371. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6372. {
  6373. side: {
  6374. height: math.unit(9.5, "feet"),
  6375. weight: math.unit(2500, "lbs"),
  6376. name: "Side",
  6377. image: {
  6378. source: "./media/characters/heather/side.svg"
  6379. }
  6380. },
  6381. },
  6382. [
  6383. {
  6384. name: "Normal",
  6385. height: math.unit(9.5, "feet"),
  6386. default: true
  6387. }
  6388. ]
  6389. ))
  6390. characterMakers.push(() => makeCharacter(
  6391. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6392. {
  6393. side: {
  6394. height: math.unit(6.5, "feet"),
  6395. weight: math.unit(400, "lbs"),
  6396. name: "Side",
  6397. image: {
  6398. source: "./media/characters/lukas/side.svg",
  6399. extra: 7.25 / 6.5
  6400. }
  6401. },
  6402. },
  6403. [
  6404. {
  6405. name: "Normal",
  6406. height: math.unit(6.5, "feet"),
  6407. default: true
  6408. }
  6409. ]
  6410. ))
  6411. characterMakers.push(() => makeCharacter(
  6412. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6413. {
  6414. side: {
  6415. height: math.unit(5, "feet"),
  6416. weight: math.unit(3000, "lbs"),
  6417. name: "Side",
  6418. image: {
  6419. source: "./media/characters/louise/side.svg"
  6420. }
  6421. },
  6422. },
  6423. [
  6424. {
  6425. name: "Normal",
  6426. height: math.unit(5, "feet"),
  6427. default: true
  6428. }
  6429. ]
  6430. ))
  6431. characterMakers.push(() => makeCharacter(
  6432. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6433. {
  6434. side: {
  6435. height: math.unit(6, "feet"),
  6436. weight: math.unit(150, "lbs"),
  6437. name: "Side",
  6438. image: {
  6439. source: "./media/characters/ramona/side.svg",
  6440. extra: 871/854,
  6441. bottom: 41/912
  6442. }
  6443. },
  6444. },
  6445. [
  6446. {
  6447. name: "Normal",
  6448. height: math.unit(6 + 4/12, "feet")
  6449. },
  6450. {
  6451. name: "Minimacro",
  6452. height: math.unit(5.3, "meters"),
  6453. default: true
  6454. },
  6455. {
  6456. name: "Macro",
  6457. height: math.unit(20, "stories")
  6458. },
  6459. {
  6460. name: "Macro+",
  6461. height: math.unit(50, "stories")
  6462. },
  6463. ]
  6464. ))
  6465. characterMakers.push(() => makeCharacter(
  6466. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6467. {
  6468. standing: {
  6469. height: math.unit(5.75, "feet"),
  6470. weight: math.unit(160, "lbs"),
  6471. name: "Standing",
  6472. image: {
  6473. source: "./media/characters/deerpuff/standing.svg",
  6474. extra: 682 / 624
  6475. }
  6476. },
  6477. sitting: {
  6478. height: math.unit(5.75 / 1.79, "feet"),
  6479. weight: math.unit(160, "lbs"),
  6480. name: "Sitting",
  6481. image: {
  6482. source: "./media/characters/deerpuff/sitting.svg",
  6483. bottom: 44 / 400,
  6484. extra: 1
  6485. }
  6486. },
  6487. taurLaying: {
  6488. height: math.unit(6, "feet"),
  6489. weight: math.unit(400, "lbs"),
  6490. name: "Taur (Laying)",
  6491. image: {
  6492. source: "./media/characters/deerpuff/taur-laying.svg"
  6493. }
  6494. },
  6495. },
  6496. [
  6497. {
  6498. name: "Puffball",
  6499. height: math.unit(6, "inches")
  6500. },
  6501. {
  6502. name: "Normalpuff",
  6503. height: math.unit(5.75, "feet")
  6504. },
  6505. {
  6506. name: "Macropuff",
  6507. height: math.unit(1500, "feet"),
  6508. default: true
  6509. },
  6510. {
  6511. name: "Megapuff",
  6512. height: math.unit(500, "miles")
  6513. },
  6514. {
  6515. name: "Gigapuff",
  6516. height: math.unit(250000, "miles")
  6517. },
  6518. {
  6519. name: "Omegapuff",
  6520. height: math.unit(1000, "lightyears")
  6521. },
  6522. ]
  6523. ))
  6524. characterMakers.push(() => makeCharacter(
  6525. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6526. {
  6527. stomping: {
  6528. height: math.unit(6, "feet"),
  6529. weight: math.unit(170, "lbs"),
  6530. name: "Stomping",
  6531. image: {
  6532. source: "./media/characters/vivian/stomping.svg"
  6533. }
  6534. },
  6535. sitting: {
  6536. height: math.unit(6 / 1.75, "feet"),
  6537. weight: math.unit(170, "lbs"),
  6538. name: "Sitting",
  6539. image: {
  6540. source: "./media/characters/vivian/sitting.svg",
  6541. bottom: 1 / 6.4,
  6542. extra: 1,
  6543. }
  6544. },
  6545. },
  6546. [
  6547. {
  6548. name: "Normal",
  6549. height: math.unit(7, "feet"),
  6550. default: true
  6551. },
  6552. {
  6553. name: "Macro",
  6554. height: math.unit(10, "stories")
  6555. },
  6556. {
  6557. name: "Macro+",
  6558. height: math.unit(30, "stories")
  6559. },
  6560. {
  6561. name: "Megamacro",
  6562. height: math.unit(10, "miles")
  6563. },
  6564. {
  6565. name: "Megamacro+",
  6566. height: math.unit(2750000, "meters")
  6567. },
  6568. ]
  6569. ))
  6570. characterMakers.push(() => makeCharacter(
  6571. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6572. {
  6573. front: {
  6574. height: math.unit(6, "feet"),
  6575. weight: math.unit(160, "lbs"),
  6576. name: "Front",
  6577. image: {
  6578. source: "./media/characters/prince/front.svg",
  6579. extra: 1938/1682,
  6580. bottom: 45/1983
  6581. }
  6582. },
  6583. back: {
  6584. height: math.unit(6, "feet"),
  6585. weight: math.unit(160, "lbs"),
  6586. name: "Back",
  6587. image: {
  6588. source: "./media/characters/prince/back.svg",
  6589. extra: 1955/1726,
  6590. bottom: 6/1961
  6591. }
  6592. },
  6593. },
  6594. [
  6595. {
  6596. name: "Normal",
  6597. height: math.unit(7.75, "feet"),
  6598. default: true
  6599. },
  6600. {
  6601. name: "Not cute",
  6602. height: math.unit(17, "feet")
  6603. },
  6604. {
  6605. name: "I said NOT",
  6606. height: math.unit(91, "feet")
  6607. },
  6608. {
  6609. name: "Please stop",
  6610. height: math.unit(560, "feet")
  6611. },
  6612. {
  6613. name: "What have you done",
  6614. height: math.unit(2200, "feet")
  6615. },
  6616. {
  6617. name: "Deer God",
  6618. height: math.unit(3.6, "miles")
  6619. },
  6620. ]
  6621. ))
  6622. characterMakers.push(() => makeCharacter(
  6623. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6624. {
  6625. standing: {
  6626. height: math.unit(6, "feet"),
  6627. weight: math.unit(300, "lbs"),
  6628. name: "Standing",
  6629. image: {
  6630. source: "./media/characters/psymon/standing.svg",
  6631. extra: 1888 / 1810,
  6632. bottom: 0.05
  6633. }
  6634. },
  6635. slithering: {
  6636. height: math.unit(6, "feet"),
  6637. weight: math.unit(300, "lbs"),
  6638. name: "Slithering",
  6639. image: {
  6640. source: "./media/characters/psymon/slithering.svg",
  6641. extra: 1330 / 1224
  6642. }
  6643. },
  6644. slitheringAlt: {
  6645. height: math.unit(6, "feet"),
  6646. weight: math.unit(300, "lbs"),
  6647. name: "Slithering (Alt)",
  6648. image: {
  6649. source: "./media/characters/psymon/slithering-alt.svg",
  6650. extra: 1330 / 1224
  6651. }
  6652. },
  6653. },
  6654. [
  6655. {
  6656. name: "Normal",
  6657. height: math.unit(11.25, "feet"),
  6658. default: true
  6659. },
  6660. {
  6661. name: "Large",
  6662. height: math.unit(27, "feet")
  6663. },
  6664. {
  6665. name: "Giant",
  6666. height: math.unit(87, "feet")
  6667. },
  6668. {
  6669. name: "Macro",
  6670. height: math.unit(365, "feet")
  6671. },
  6672. {
  6673. name: "Megamacro",
  6674. height: math.unit(3, "miles")
  6675. },
  6676. {
  6677. name: "World Serpent",
  6678. height: math.unit(8000, "miles")
  6679. },
  6680. ]
  6681. ))
  6682. characterMakers.push(() => makeCharacter(
  6683. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6684. {
  6685. front: {
  6686. height: math.unit(6, "feet"),
  6687. weight: math.unit(180, "lbs"),
  6688. name: "Front",
  6689. image: {
  6690. source: "./media/characters/daimos/front.svg",
  6691. extra: 4160 / 3897,
  6692. bottom: 0.021
  6693. }
  6694. }
  6695. },
  6696. [
  6697. {
  6698. name: "Normal",
  6699. height: math.unit(8, "feet"),
  6700. default: true
  6701. },
  6702. {
  6703. name: "Big Dog",
  6704. height: math.unit(22, "feet")
  6705. },
  6706. {
  6707. name: "Macro",
  6708. height: math.unit(127, "feet")
  6709. },
  6710. {
  6711. name: "Megamacro",
  6712. height: math.unit(3600, "feet")
  6713. },
  6714. ]
  6715. ))
  6716. characterMakers.push(() => makeCharacter(
  6717. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6718. {
  6719. side: {
  6720. height: math.unit(6, "feet"),
  6721. weight: math.unit(180, "lbs"),
  6722. name: "Side",
  6723. image: {
  6724. source: "./media/characters/blake/side.svg",
  6725. extra: 1212 / 1120,
  6726. bottom: 0.05
  6727. }
  6728. },
  6729. crouched: {
  6730. height: math.unit(6 * 0.57, "feet"),
  6731. weight: math.unit(180, "lbs"),
  6732. name: "Crouched",
  6733. image: {
  6734. source: "./media/characters/blake/crouched.svg",
  6735. extra: 840 / 587,
  6736. bottom: 0.04
  6737. }
  6738. },
  6739. bent: {
  6740. height: math.unit(6 * 0.75, "feet"),
  6741. weight: math.unit(180, "lbs"),
  6742. name: "Bent",
  6743. image: {
  6744. source: "./media/characters/blake/bent.svg",
  6745. extra: 592 / 544,
  6746. bottom: 0.035
  6747. }
  6748. },
  6749. },
  6750. [
  6751. {
  6752. name: "Normal",
  6753. height: math.unit(8 + 1 / 6, "feet"),
  6754. default: true
  6755. },
  6756. {
  6757. name: "Big Backside",
  6758. height: math.unit(37, "feet")
  6759. },
  6760. {
  6761. name: "Subway Shredder",
  6762. height: math.unit(72, "feet")
  6763. },
  6764. {
  6765. name: "City Carver",
  6766. height: math.unit(1675, "feet")
  6767. },
  6768. {
  6769. name: "Tectonic Tweaker",
  6770. height: math.unit(2300, "miles")
  6771. },
  6772. ]
  6773. ))
  6774. characterMakers.push(() => makeCharacter(
  6775. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6776. {
  6777. front: {
  6778. height: math.unit(6, "feet"),
  6779. weight: math.unit(180, "lbs"),
  6780. name: "Front",
  6781. image: {
  6782. source: "./media/characters/guisetto/front.svg",
  6783. extra: 856 / 817,
  6784. bottom: 0.06
  6785. }
  6786. },
  6787. airborne: {
  6788. height: math.unit(6, "feet"),
  6789. weight: math.unit(180, "lbs"),
  6790. name: "Airborne",
  6791. image: {
  6792. source: "./media/characters/guisetto/airborne.svg",
  6793. extra: 584 / 525
  6794. }
  6795. },
  6796. },
  6797. [
  6798. {
  6799. name: "Normal",
  6800. height: math.unit(10 + 11 / 12, "feet"),
  6801. default: true
  6802. },
  6803. {
  6804. name: "Large",
  6805. height: math.unit(35, "feet")
  6806. },
  6807. {
  6808. name: "Macro",
  6809. height: math.unit(475, "feet")
  6810. },
  6811. ]
  6812. ))
  6813. characterMakers.push(() => makeCharacter(
  6814. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6815. {
  6816. front: {
  6817. height: math.unit(6, "feet"),
  6818. weight: math.unit(180, "lbs"),
  6819. name: "Front",
  6820. image: {
  6821. source: "./media/characters/luxor/front.svg",
  6822. extra: 2940 / 2152
  6823. }
  6824. },
  6825. back: {
  6826. height: math.unit(6, "feet"),
  6827. weight: math.unit(180, "lbs"),
  6828. name: "Back",
  6829. image: {
  6830. source: "./media/characters/luxor/back.svg",
  6831. extra: 1083 / 960
  6832. }
  6833. },
  6834. },
  6835. [
  6836. {
  6837. name: "Normal",
  6838. height: math.unit(5 + 5 / 6, "feet"),
  6839. default: true
  6840. },
  6841. {
  6842. name: "Lamp",
  6843. height: math.unit(50, "feet")
  6844. },
  6845. {
  6846. name: "Lämp",
  6847. height: math.unit(300, "feet")
  6848. },
  6849. {
  6850. name: "The sun is a lamp",
  6851. height: math.unit(250000, "miles")
  6852. },
  6853. ]
  6854. ))
  6855. characterMakers.push(() => makeCharacter(
  6856. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6857. {
  6858. front: {
  6859. height: math.unit(6, "feet"),
  6860. weight: math.unit(50, "lbs"),
  6861. name: "Front",
  6862. image: {
  6863. source: "./media/characters/huoyan/front.svg"
  6864. }
  6865. },
  6866. side: {
  6867. height: math.unit(6, "feet"),
  6868. weight: math.unit(180, "lbs"),
  6869. name: "Side",
  6870. image: {
  6871. source: "./media/characters/huoyan/side.svg"
  6872. }
  6873. },
  6874. },
  6875. [
  6876. {
  6877. name: "Chef",
  6878. height: math.unit(9, "feet")
  6879. },
  6880. {
  6881. name: "Normal",
  6882. height: math.unit(65, "feet"),
  6883. default: true
  6884. },
  6885. {
  6886. name: "Macro",
  6887. height: math.unit(780, "feet")
  6888. },
  6889. {
  6890. name: "Flaming Mountain",
  6891. height: math.unit(4.8, "miles")
  6892. },
  6893. {
  6894. name: "Celestial",
  6895. height: math.unit(765000, "miles")
  6896. },
  6897. ]
  6898. ))
  6899. characterMakers.push(() => makeCharacter(
  6900. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6901. {
  6902. front: {
  6903. height: math.unit(5 + 3 / 4, "feet"),
  6904. weight: math.unit(120, "lbs"),
  6905. name: "Front",
  6906. image: {
  6907. source: "./media/characters/tails/front.svg"
  6908. }
  6909. }
  6910. },
  6911. [
  6912. {
  6913. name: "Normal",
  6914. height: math.unit(5 + 3 / 4, "feet"),
  6915. default: true
  6916. }
  6917. ]
  6918. ))
  6919. characterMakers.push(() => makeCharacter(
  6920. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6921. {
  6922. front: {
  6923. height: math.unit(4, "feet"),
  6924. weight: math.unit(50, "lbs"),
  6925. name: "Front",
  6926. image: {
  6927. source: "./media/characters/rainy/front.svg"
  6928. }
  6929. }
  6930. },
  6931. [
  6932. {
  6933. name: "Macro",
  6934. height: math.unit(800, "feet"),
  6935. default: true
  6936. }
  6937. ]
  6938. ))
  6939. characterMakers.push(() => makeCharacter(
  6940. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6941. {
  6942. front: {
  6943. height: math.unit(6, "feet"),
  6944. weight: math.unit(150, "lbs"),
  6945. name: "Front",
  6946. image: {
  6947. source: "./media/characters/rainier/front.svg"
  6948. }
  6949. }
  6950. },
  6951. [
  6952. {
  6953. name: "Micro",
  6954. height: math.unit(2, "mm"),
  6955. default: true
  6956. }
  6957. ]
  6958. ))
  6959. characterMakers.push(() => makeCharacter(
  6960. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6961. {
  6962. front: {
  6963. height: math.unit(8 + 4/12, "feet"),
  6964. weight: math.unit(450, "kilograms"),
  6965. name: "Front",
  6966. image: {
  6967. source: "./media/characters/andy-renard/front.svg",
  6968. extra: 862/809,
  6969. bottom: 85/947
  6970. },
  6971. extraAttributes: {
  6972. "pawSize": {
  6973. name: "Paw Size",
  6974. power: 2,
  6975. type: "area",
  6976. base: math.unit(0.45*0.3, "meters^2")
  6977. },
  6978. "handSize": {
  6979. name: "Hand Size",
  6980. power: 2,
  6981. type: "area",
  6982. base: math.unit(0.4 * 0.3, "meters^2")
  6983. },
  6984. "cockSize": {
  6985. name: "Cock Length",
  6986. power: 1,
  6987. type: "length",
  6988. base: math.unit(0.75, "meters")
  6989. },
  6990. "ballDiameter": {
  6991. name: "Ball Diameter",
  6992. power: 1,
  6993. type: "length",
  6994. base: math.unit(0.3, "meters")
  6995. },
  6996. "ballVolume": {
  6997. name: "Ball Volume",
  6998. power: 3,
  6999. type: "volume",
  7000. base: math.unit(0.01413716694, "meters^3")
  7001. },
  7002. }
  7003. },
  7004. back: {
  7005. height: math.unit(8 + 4/12, "feet"),
  7006. weight: math.unit(450, "kilograms"),
  7007. name: "Back",
  7008. image: {
  7009. source: "./media/characters/andy-renard/back.svg",
  7010. extra: 1112/1033,
  7011. bottom: 64/1176
  7012. },
  7013. extraAttributes: {
  7014. "pawSize": {
  7015. name: "Paw Size",
  7016. power: 2,
  7017. type: "area",
  7018. base: math.unit(0.45*0.3, "meters^2")
  7019. },
  7020. "handSize": {
  7021. name: "Hand Size",
  7022. power: 2,
  7023. type: "area",
  7024. base: math.unit(0.4 * 0.3, "meters^2")
  7025. },
  7026. "cockSize": {
  7027. name: "Cock Length",
  7028. power: 1,
  7029. type: "length",
  7030. base: math.unit(0.75, "meters")
  7031. },
  7032. "ballDiameter": {
  7033. name: "Ball Diameter",
  7034. power: 1,
  7035. type: "length",
  7036. base: math.unit(0.3, "meters")
  7037. },
  7038. "ballVolume": {
  7039. name: "Ball Volume",
  7040. power: 3,
  7041. type: "volume",
  7042. base: math.unit(0.01413716694, "meters^3")
  7043. },
  7044. }
  7045. },
  7046. },
  7047. [
  7048. {
  7049. name: "Tall",
  7050. height: math.unit(6 + 8/12, "feet")
  7051. },
  7052. {
  7053. name: "Very Tall",
  7054. height: math.unit(8 + 4/12, "feet")
  7055. },
  7056. {
  7057. name: "Mini Macro",
  7058. height: math.unit(15, "feet"),
  7059. default: true
  7060. },
  7061. {
  7062. name: "Giant",
  7063. height: math.unit(50, "feet")
  7064. },
  7065. {
  7066. name: "Nice",
  7067. height: math.unit(69, "feet")
  7068. },
  7069. {
  7070. name: "Macro",
  7071. height: math.unit(100, "feet")
  7072. },
  7073. {
  7074. name: "Enormous",
  7075. height: math.unit(500, "feet")
  7076. },
  7077. {
  7078. name: "Gargantuan",
  7079. height: math.unit(1000, "feet")
  7080. },
  7081. {
  7082. name: "Mega",
  7083. height: math.unit(1, "mile")
  7084. },
  7085. {
  7086. name: "Giga",
  7087. height: math.unit(50, "miles")
  7088. },
  7089. {
  7090. name: "Tera",
  7091. height: math.unit(1000, "miles")
  7092. },
  7093. {
  7094. name: "Cosmic",
  7095. height: math.unit(1.5, "galaxies")
  7096. },
  7097. {
  7098. name: "God",
  7099. height: math.unit(1.5, "universes")
  7100. },
  7101. {
  7102. name: "Chief Execute God",
  7103. height: math.unit(1.5, "multiverses")
  7104. },
  7105. ]
  7106. ))
  7107. characterMakers.push(() => makeCharacter(
  7108. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  7109. {
  7110. front: {
  7111. height: math.unit(6, "feet"),
  7112. weight: math.unit(210, "lbs"),
  7113. name: "Front",
  7114. image: {
  7115. source: "./media/characters/cimmaron/front-sfw.svg",
  7116. extra: 701 / 676,
  7117. bottom: 0.046
  7118. }
  7119. },
  7120. back: {
  7121. height: math.unit(6, "feet"),
  7122. weight: math.unit(210, "lbs"),
  7123. name: "Back",
  7124. image: {
  7125. source: "./media/characters/cimmaron/back-sfw.svg",
  7126. extra: 701 / 676,
  7127. bottom: 0.046
  7128. }
  7129. },
  7130. frontNsfw: {
  7131. height: math.unit(6, "feet"),
  7132. weight: math.unit(210, "lbs"),
  7133. name: "Front (NSFW)",
  7134. image: {
  7135. source: "./media/characters/cimmaron/front-nsfw.svg",
  7136. extra: 701 / 676,
  7137. bottom: 0.046
  7138. }
  7139. },
  7140. backNsfw: {
  7141. height: math.unit(6, "feet"),
  7142. weight: math.unit(210, "lbs"),
  7143. name: "Back (NSFW)",
  7144. image: {
  7145. source: "./media/characters/cimmaron/back-nsfw.svg",
  7146. extra: 701 / 676,
  7147. bottom: 0.046
  7148. }
  7149. },
  7150. dick: {
  7151. height: math.unit(1.714, "feet"),
  7152. name: "Dick",
  7153. image: {
  7154. source: "./media/characters/cimmaron/dick.svg"
  7155. }
  7156. },
  7157. },
  7158. [
  7159. {
  7160. name: "Normal",
  7161. height: math.unit(6, "feet"),
  7162. default: true
  7163. },
  7164. {
  7165. name: "Macro Mayor",
  7166. height: math.unit(350, "meters")
  7167. },
  7168. ]
  7169. ))
  7170. characterMakers.push(() => makeCharacter(
  7171. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  7172. {
  7173. front: {
  7174. height: math.unit(6, "feet"),
  7175. weight: math.unit(200, "lbs"),
  7176. name: "Front",
  7177. image: {
  7178. source: "./media/characters/akari/front.svg",
  7179. extra: 962 / 901,
  7180. bottom: 0.04
  7181. }
  7182. }
  7183. },
  7184. [
  7185. {
  7186. name: "Micro",
  7187. height: math.unit(5, "inches"),
  7188. default: true
  7189. },
  7190. {
  7191. name: "Normal",
  7192. height: math.unit(7, "feet")
  7193. },
  7194. ]
  7195. ))
  7196. characterMakers.push(() => makeCharacter(
  7197. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  7198. {
  7199. front: {
  7200. height: math.unit(6, "feet"),
  7201. weight: math.unit(140, "lbs"),
  7202. name: "Front",
  7203. image: {
  7204. source: "./media/characters/cynosura/front.svg",
  7205. extra: 437/410,
  7206. bottom: 9/446
  7207. }
  7208. },
  7209. back: {
  7210. height: math.unit(6, "feet"),
  7211. weight: math.unit(140, "lbs"),
  7212. name: "Back",
  7213. image: {
  7214. source: "./media/characters/cynosura/back.svg",
  7215. extra: 1304/1160,
  7216. bottom: 71/1375
  7217. }
  7218. },
  7219. },
  7220. [
  7221. {
  7222. name: "Micro",
  7223. height: math.unit(4, "inches")
  7224. },
  7225. {
  7226. name: "Normal",
  7227. height: math.unit(5.75, "feet"),
  7228. default: true
  7229. },
  7230. {
  7231. name: "Tall",
  7232. height: math.unit(10, "feet")
  7233. },
  7234. {
  7235. name: "Big",
  7236. height: math.unit(20, "feet")
  7237. },
  7238. {
  7239. name: "Macro",
  7240. height: math.unit(50, "feet")
  7241. },
  7242. ]
  7243. ))
  7244. characterMakers.push(() => makeCharacter(
  7245. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  7246. {
  7247. front: {
  7248. height: math.unit(13 + 2/12, "feet"),
  7249. weight: math.unit(800, "kg"),
  7250. name: "Front",
  7251. image: {
  7252. source: "./media/characters/gin/front.svg",
  7253. extra: 1312/1191,
  7254. bottom: 45/1357
  7255. }
  7256. },
  7257. mouth: {
  7258. height: math.unit(2.39 * 1.8, "feet"),
  7259. name: "Mouth",
  7260. image: {
  7261. source: "./media/characters/gin/mouth.svg"
  7262. }
  7263. },
  7264. hand: {
  7265. height: math.unit(1.57 * 2.19, "feet"),
  7266. name: "Hand",
  7267. image: {
  7268. source: "./media/characters/gin/hand.svg"
  7269. }
  7270. },
  7271. foot: {
  7272. height: math.unit(6 / 4.25 * 2.19, "feet"),
  7273. name: "Foot",
  7274. image: {
  7275. source: "./media/characters/gin/foot.svg"
  7276. }
  7277. },
  7278. sole: {
  7279. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7280. name: "Sole",
  7281. image: {
  7282. source: "./media/characters/gin/sole.svg"
  7283. }
  7284. },
  7285. },
  7286. [
  7287. {
  7288. name: "Very Small",
  7289. height: math.unit(13 + 2 / 12, "feet")
  7290. },
  7291. {
  7292. name: "Micro",
  7293. height: math.unit(600, "miles")
  7294. },
  7295. {
  7296. name: "Regular",
  7297. height: math.unit(20, "earths"),
  7298. default: true
  7299. },
  7300. {
  7301. name: "Macro",
  7302. height: math.unit(2.2, "solarradii")
  7303. },
  7304. {
  7305. name: "Teramacro",
  7306. height: math.unit(1.2, "galaxies")
  7307. },
  7308. {
  7309. name: "Omegamacro",
  7310. height: math.unit(200, "universes")
  7311. },
  7312. ]
  7313. ))
  7314. characterMakers.push(() => makeCharacter(
  7315. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7316. {
  7317. front: {
  7318. height: math.unit(6 + 1 / 6, "feet"),
  7319. weight: math.unit(178, "lbs"),
  7320. name: "Front",
  7321. image: {
  7322. source: "./media/characters/guy/front.svg"
  7323. }
  7324. }
  7325. },
  7326. [
  7327. {
  7328. name: "Normal",
  7329. height: math.unit(6 + 1 / 6, "feet"),
  7330. default: true
  7331. },
  7332. {
  7333. name: "Large",
  7334. height: math.unit(25 + 7 / 12, "feet")
  7335. },
  7336. {
  7337. name: "Macro",
  7338. height: math.unit(60 + 9 / 12, "feet")
  7339. },
  7340. {
  7341. name: "Macro+",
  7342. height: math.unit(246, "feet")
  7343. },
  7344. {
  7345. name: "Macro++",
  7346. height: math.unit(878, "feet")
  7347. }
  7348. ]
  7349. ))
  7350. characterMakers.push(() => makeCharacter(
  7351. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7352. {
  7353. front: {
  7354. height: math.unit(9, "feet"),
  7355. weight: math.unit(800, "lbs"),
  7356. name: "Front",
  7357. image: {
  7358. source: "./media/characters/tiberius/front.svg",
  7359. extra: 2295 / 2071
  7360. }
  7361. },
  7362. back: {
  7363. height: math.unit(9, "feet"),
  7364. weight: math.unit(800, "lbs"),
  7365. name: "Back",
  7366. image: {
  7367. source: "./media/characters/tiberius/back.svg",
  7368. extra: 2373 / 2160
  7369. }
  7370. },
  7371. },
  7372. [
  7373. {
  7374. name: "Normal",
  7375. height: math.unit(9, "feet"),
  7376. default: true
  7377. }
  7378. ]
  7379. ))
  7380. characterMakers.push(() => makeCharacter(
  7381. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7382. {
  7383. front: {
  7384. height: math.unit(6, "feet"),
  7385. weight: math.unit(600, "lbs"),
  7386. name: "Front",
  7387. image: {
  7388. source: "./media/characters/surgo/front.svg",
  7389. extra: 3591 / 2227
  7390. }
  7391. },
  7392. back: {
  7393. height: math.unit(6, "feet"),
  7394. weight: math.unit(600, "lbs"),
  7395. name: "Back",
  7396. image: {
  7397. source: "./media/characters/surgo/back.svg",
  7398. extra: 3557 / 2228
  7399. }
  7400. },
  7401. laying: {
  7402. height: math.unit(6 * 0.85, "feet"),
  7403. weight: math.unit(600, "lbs"),
  7404. name: "Laying",
  7405. image: {
  7406. source: "./media/characters/surgo/laying.svg"
  7407. }
  7408. },
  7409. },
  7410. [
  7411. {
  7412. name: "Normal",
  7413. height: math.unit(6, "feet"),
  7414. default: true
  7415. }
  7416. ]
  7417. ))
  7418. characterMakers.push(() => makeCharacter(
  7419. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7420. {
  7421. side: {
  7422. height: math.unit(6, "feet"),
  7423. weight: math.unit(150, "lbs"),
  7424. name: "Side",
  7425. image: {
  7426. source: "./media/characters/cibus/side.svg",
  7427. extra: 800 / 400
  7428. }
  7429. },
  7430. },
  7431. [
  7432. {
  7433. name: "Normal",
  7434. height: math.unit(6, "feet"),
  7435. default: true
  7436. }
  7437. ]
  7438. ))
  7439. characterMakers.push(() => makeCharacter(
  7440. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7441. {
  7442. front: {
  7443. height: math.unit(6, "feet"),
  7444. weight: math.unit(240, "lbs"),
  7445. name: "Front",
  7446. image: {
  7447. source: "./media/characters/nibbles/front.svg"
  7448. }
  7449. },
  7450. side: {
  7451. height: math.unit(6, "feet"),
  7452. weight: math.unit(240, "lbs"),
  7453. name: "Side",
  7454. image: {
  7455. source: "./media/characters/nibbles/side.svg"
  7456. }
  7457. },
  7458. },
  7459. [
  7460. {
  7461. name: "Normal",
  7462. height: math.unit(9, "feet"),
  7463. default: true
  7464. }
  7465. ]
  7466. ))
  7467. characterMakers.push(() => makeCharacter(
  7468. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7469. {
  7470. side: {
  7471. height: math.unit(5 + 1 / 6, "feet"),
  7472. weight: math.unit(130, "lbs"),
  7473. name: "Side",
  7474. image: {
  7475. source: "./media/characters/rikky/side.svg",
  7476. extra: 851 / 801
  7477. }
  7478. },
  7479. },
  7480. [
  7481. {
  7482. name: "Normal",
  7483. height: math.unit(5 + 1 / 6, "feet")
  7484. },
  7485. {
  7486. name: "Macro",
  7487. height: math.unit(152, "feet"),
  7488. default: true
  7489. },
  7490. {
  7491. name: "Megamacro",
  7492. height: math.unit(7, "miles")
  7493. }
  7494. ]
  7495. ))
  7496. characterMakers.push(() => makeCharacter(
  7497. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7498. {
  7499. side: {
  7500. height: math.unit(370, "cm"),
  7501. weight: math.unit(350, "lbs"),
  7502. name: "Side",
  7503. image: {
  7504. source: "./media/characters/malfressa/side.svg"
  7505. }
  7506. },
  7507. walking: {
  7508. height: math.unit(370, "cm"),
  7509. weight: math.unit(350, "lbs"),
  7510. name: "Walking",
  7511. image: {
  7512. source: "./media/characters/malfressa/walking.svg"
  7513. }
  7514. },
  7515. feral: {
  7516. height: math.unit(2500, "cm"),
  7517. weight: math.unit(100000, "lbs"),
  7518. name: "Feral",
  7519. image: {
  7520. source: "./media/characters/malfressa/feral.svg",
  7521. extra: 2108 / 837,
  7522. bottom: 0.02
  7523. }
  7524. },
  7525. },
  7526. [
  7527. {
  7528. name: "Normal",
  7529. height: math.unit(370, "cm")
  7530. },
  7531. {
  7532. name: "Macro",
  7533. height: math.unit(300, "meters"),
  7534. default: true
  7535. }
  7536. ]
  7537. ))
  7538. characterMakers.push(() => makeCharacter(
  7539. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7540. {
  7541. front: {
  7542. height: math.unit(6, "feet"),
  7543. weight: math.unit(60, "kg"),
  7544. name: "Front",
  7545. image: {
  7546. source: "./media/characters/jaro/front.svg",
  7547. extra: 845/817,
  7548. bottom: 45/890
  7549. }
  7550. },
  7551. back: {
  7552. height: math.unit(6, "feet"),
  7553. weight: math.unit(60, "kg"),
  7554. name: "Back",
  7555. image: {
  7556. source: "./media/characters/jaro/back.svg",
  7557. extra: 847/817,
  7558. bottom: 34/881
  7559. }
  7560. },
  7561. },
  7562. [
  7563. {
  7564. name: "Micro",
  7565. height: math.unit(7, "inches")
  7566. },
  7567. {
  7568. name: "Normal",
  7569. height: math.unit(5.5, "feet"),
  7570. default: true
  7571. },
  7572. {
  7573. name: "Minimacro",
  7574. height: math.unit(20, "feet")
  7575. },
  7576. {
  7577. name: "Macro",
  7578. height: math.unit(200, "meters")
  7579. }
  7580. ]
  7581. ))
  7582. characterMakers.push(() => makeCharacter(
  7583. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7584. {
  7585. front: {
  7586. height: math.unit(6, "feet"),
  7587. weight: math.unit(195, "lb"),
  7588. name: "Front",
  7589. image: {
  7590. source: "./media/characters/rogue/front.svg"
  7591. }
  7592. },
  7593. },
  7594. [
  7595. {
  7596. name: "Macro",
  7597. height: math.unit(90, "feet"),
  7598. default: true
  7599. },
  7600. ]
  7601. ))
  7602. characterMakers.push(() => makeCharacter(
  7603. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7604. {
  7605. standing: {
  7606. height: math.unit(5 + 8 / 12, "feet"),
  7607. weight: math.unit(140, "lb"),
  7608. name: "Standing",
  7609. image: {
  7610. source: "./media/characters/piper/standing.svg",
  7611. extra: 1440/1284,
  7612. bottom: 66/1506
  7613. }
  7614. },
  7615. running: {
  7616. height: math.unit(5 + 8 / 12, "feet"),
  7617. weight: math.unit(140, "lb"),
  7618. name: "Running",
  7619. image: {
  7620. source: "./media/characters/piper/running.svg",
  7621. extra: 3948/3655,
  7622. bottom: 0/3948
  7623. }
  7624. },
  7625. sole: {
  7626. height: math.unit(0.81, "feet"),
  7627. weight: math.unit(2, "kg"),
  7628. name: "Sole",
  7629. image: {
  7630. source: "./media/characters/piper/sole.svg"
  7631. }
  7632. },
  7633. nipple: {
  7634. height: math.unit(0.25, "feet"),
  7635. weight: math.unit(1.5, "lb"),
  7636. name: "Nipple",
  7637. image: {
  7638. source: "./media/characters/piper/nipple.svg"
  7639. }
  7640. },
  7641. head: {
  7642. height: math.unit(1.1, "feet"),
  7643. name: "Head",
  7644. image: {
  7645. source: "./media/characters/piper/head.svg"
  7646. }
  7647. },
  7648. },
  7649. [
  7650. {
  7651. name: "Micro",
  7652. height: math.unit(2, "inches")
  7653. },
  7654. {
  7655. name: "Normal",
  7656. height: math.unit(5 + 8 / 12, "feet")
  7657. },
  7658. {
  7659. name: "Macro",
  7660. height: math.unit(250, "feet"),
  7661. default: true
  7662. },
  7663. {
  7664. name: "Megamacro",
  7665. height: math.unit(7, "miles")
  7666. },
  7667. ]
  7668. ))
  7669. characterMakers.push(() => makeCharacter(
  7670. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7671. {
  7672. front: {
  7673. height: math.unit(6, "feet"),
  7674. weight: math.unit(220, "lb"),
  7675. name: "Front",
  7676. image: {
  7677. source: "./media/characters/gemini/front.svg"
  7678. }
  7679. },
  7680. back: {
  7681. height: math.unit(6, "feet"),
  7682. weight: math.unit(220, "lb"),
  7683. name: "Back",
  7684. image: {
  7685. source: "./media/characters/gemini/back.svg"
  7686. }
  7687. },
  7688. kneeling: {
  7689. height: math.unit(6 / 1.5, "feet"),
  7690. weight: math.unit(220, "lb"),
  7691. name: "Kneeling",
  7692. image: {
  7693. source: "./media/characters/gemini/kneeling.svg",
  7694. bottom: 0.02
  7695. }
  7696. },
  7697. },
  7698. [
  7699. {
  7700. name: "Macro",
  7701. height: math.unit(300, "meters"),
  7702. default: true
  7703. },
  7704. {
  7705. name: "Megamacro",
  7706. height: math.unit(6900, "meters")
  7707. },
  7708. ]
  7709. ))
  7710. characterMakers.push(() => makeCharacter(
  7711. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7712. {
  7713. anthro: {
  7714. height: math.unit(2.35, "meters"),
  7715. weight: math.unit(73, "kg"),
  7716. name: "Anthro",
  7717. image: {
  7718. source: "./media/characters/alicia/anthro.svg",
  7719. extra: 2571 / 2385,
  7720. bottom: 75 / 2648
  7721. }
  7722. },
  7723. paw: {
  7724. height: math.unit(1.32, "feet"),
  7725. name: "Paw",
  7726. image: {
  7727. source: "./media/characters/alicia/paw.svg"
  7728. }
  7729. },
  7730. feral: {
  7731. height: math.unit(1.69, "meters"),
  7732. weight: math.unit(73, "kg"),
  7733. name: "Feral",
  7734. image: {
  7735. source: "./media/characters/alicia/feral.svg",
  7736. extra: 2123 / 1715,
  7737. bottom: 222 / 2349
  7738. }
  7739. },
  7740. },
  7741. [
  7742. {
  7743. name: "Normal",
  7744. height: math.unit(2.35, "meters")
  7745. },
  7746. {
  7747. name: "Macro",
  7748. height: math.unit(60, "meters"),
  7749. default: true
  7750. },
  7751. {
  7752. name: "Megamacro",
  7753. height: math.unit(10000, "kilometers")
  7754. },
  7755. ]
  7756. ))
  7757. characterMakers.push(() => makeCharacter(
  7758. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7759. {
  7760. front: {
  7761. height: math.unit(7, "feet"),
  7762. weight: math.unit(250, "lbs"),
  7763. name: "Front",
  7764. image: {
  7765. source: "./media/characters/archy/front.svg"
  7766. }
  7767. }
  7768. },
  7769. [
  7770. {
  7771. name: "Micro",
  7772. height: math.unit(1, "inch")
  7773. },
  7774. {
  7775. name: "Shorty",
  7776. height: math.unit(5, "feet")
  7777. },
  7778. {
  7779. name: "Normal",
  7780. height: math.unit(7, "feet")
  7781. },
  7782. {
  7783. name: "Macro",
  7784. height: math.unit(600, "meters"),
  7785. default: true
  7786. },
  7787. {
  7788. name: "Megamacro",
  7789. height: math.unit(1, "mile")
  7790. },
  7791. ]
  7792. ))
  7793. characterMakers.push(() => makeCharacter(
  7794. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7795. {
  7796. front: {
  7797. height: math.unit(1.65, "meters"),
  7798. weight: math.unit(74, "kg"),
  7799. name: "Front",
  7800. image: {
  7801. source: "./media/characters/berri/front.svg",
  7802. extra: 857 / 837,
  7803. bottom: 18 / 877
  7804. }
  7805. },
  7806. bum: {
  7807. height: math.unit(1.46, "feet"),
  7808. name: "Bum",
  7809. image: {
  7810. source: "./media/characters/berri/bum.svg"
  7811. }
  7812. },
  7813. mouth: {
  7814. height: math.unit(0.44, "feet"),
  7815. name: "Mouth",
  7816. image: {
  7817. source: "./media/characters/berri/mouth.svg"
  7818. }
  7819. },
  7820. paw: {
  7821. height: math.unit(0.826, "feet"),
  7822. name: "Paw",
  7823. image: {
  7824. source: "./media/characters/berri/paw.svg"
  7825. }
  7826. },
  7827. },
  7828. [
  7829. {
  7830. name: "Normal",
  7831. height: math.unit(1.65, "meters")
  7832. },
  7833. {
  7834. name: "Macro",
  7835. height: math.unit(60, "m"),
  7836. default: true
  7837. },
  7838. {
  7839. name: "Megamacro",
  7840. height: math.unit(9.213, "km")
  7841. },
  7842. {
  7843. name: "Planet Eater",
  7844. height: math.unit(489, "megameters")
  7845. },
  7846. {
  7847. name: "Teramacro",
  7848. height: math.unit(2471635000000, "meters")
  7849. },
  7850. {
  7851. name: "Examacro",
  7852. height: math.unit(8.0624e+26, "meters")
  7853. }
  7854. ]
  7855. ))
  7856. characterMakers.push(() => makeCharacter(
  7857. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7858. {
  7859. front: {
  7860. height: math.unit(1.72, "meters"),
  7861. weight: math.unit(68, "kg"),
  7862. name: "Front",
  7863. image: {
  7864. source: "./media/characters/lexi/front.svg"
  7865. }
  7866. }
  7867. },
  7868. [
  7869. {
  7870. name: "Very Smol",
  7871. height: math.unit(10, "mm")
  7872. },
  7873. {
  7874. name: "Micro",
  7875. height: math.unit(6.8, "cm"),
  7876. default: true
  7877. },
  7878. {
  7879. name: "Normal",
  7880. height: math.unit(1.72, "m")
  7881. }
  7882. ]
  7883. ))
  7884. characterMakers.push(() => makeCharacter(
  7885. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7886. {
  7887. front: {
  7888. height: math.unit(1.69, "meters"),
  7889. weight: math.unit(68, "kg"),
  7890. name: "Front",
  7891. image: {
  7892. source: "./media/characters/martin/front.svg",
  7893. extra: 596 / 581
  7894. }
  7895. }
  7896. },
  7897. [
  7898. {
  7899. name: "Micro",
  7900. height: math.unit(6.85, "cm"),
  7901. default: true
  7902. },
  7903. {
  7904. name: "Normal",
  7905. height: math.unit(1.69, "m")
  7906. }
  7907. ]
  7908. ))
  7909. characterMakers.push(() => makeCharacter(
  7910. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7911. {
  7912. front: {
  7913. height: math.unit(1.69, "meters"),
  7914. weight: math.unit(68, "kg"),
  7915. name: "Front",
  7916. image: {
  7917. source: "./media/characters/juno/front.svg"
  7918. }
  7919. }
  7920. },
  7921. [
  7922. {
  7923. name: "Micro",
  7924. height: math.unit(7, "cm")
  7925. },
  7926. {
  7927. name: "Normal",
  7928. height: math.unit(1.89, "m")
  7929. },
  7930. {
  7931. name: "Macro",
  7932. height: math.unit(353, "meters"),
  7933. default: true
  7934. }
  7935. ]
  7936. ))
  7937. characterMakers.push(() => makeCharacter(
  7938. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7939. {
  7940. front: {
  7941. height: math.unit(1.93, "meters"),
  7942. weight: math.unit(83, "kg"),
  7943. name: "Front",
  7944. image: {
  7945. source: "./media/characters/samantha/front.svg"
  7946. }
  7947. },
  7948. frontClothed: {
  7949. height: math.unit(1.93, "meters"),
  7950. weight: math.unit(83, "kg"),
  7951. name: "Front (Clothed)",
  7952. image: {
  7953. source: "./media/characters/samantha/front-clothed.svg"
  7954. }
  7955. },
  7956. back: {
  7957. height: math.unit(1.93, "meters"),
  7958. weight: math.unit(83, "kg"),
  7959. name: "Back",
  7960. image: {
  7961. source: "./media/characters/samantha/back.svg"
  7962. }
  7963. },
  7964. },
  7965. [
  7966. {
  7967. name: "Normal",
  7968. height: math.unit(1.93, "m")
  7969. },
  7970. {
  7971. name: "Macro",
  7972. height: math.unit(74, "meters"),
  7973. default: true
  7974. },
  7975. {
  7976. name: "Macro+",
  7977. height: math.unit(223, "meters"),
  7978. },
  7979. {
  7980. name: "Megamacro",
  7981. height: math.unit(8381, "meters"),
  7982. },
  7983. {
  7984. name: "Megamacro+",
  7985. height: math.unit(12000, "kilometers")
  7986. },
  7987. ]
  7988. ))
  7989. characterMakers.push(() => makeCharacter(
  7990. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7991. {
  7992. front: {
  7993. height: math.unit(1.92, "meters"),
  7994. weight: math.unit(80, "kg"),
  7995. name: "Front",
  7996. image: {
  7997. source: "./media/characters/dr-clay/front.svg"
  7998. }
  7999. },
  8000. frontClothed: {
  8001. height: math.unit(1.92, "meters"),
  8002. weight: math.unit(80, "kg"),
  8003. name: "Front (Clothed)",
  8004. image: {
  8005. source: "./media/characters/dr-clay/front-clothed.svg"
  8006. }
  8007. }
  8008. },
  8009. [
  8010. {
  8011. name: "Normal",
  8012. height: math.unit(1.92, "m")
  8013. },
  8014. {
  8015. name: "Macro",
  8016. height: math.unit(214, "meters"),
  8017. default: true
  8018. },
  8019. {
  8020. name: "Macro+",
  8021. height: math.unit(12.237, "meters"),
  8022. },
  8023. {
  8024. name: "Megamacro",
  8025. height: math.unit(557, "megameters"),
  8026. },
  8027. {
  8028. name: "Unimaginable",
  8029. height: math.unit(120e9, "lightyears")
  8030. },
  8031. ]
  8032. ))
  8033. characterMakers.push(() => makeCharacter(
  8034. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  8035. {
  8036. front: {
  8037. height: math.unit(2, "meters"),
  8038. weight: math.unit(80, "kg"),
  8039. name: "Front",
  8040. image: {
  8041. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  8042. }
  8043. }
  8044. },
  8045. [
  8046. {
  8047. name: "Teramacro",
  8048. height: math.unit(500000, "lightyears"),
  8049. default: true
  8050. },
  8051. ]
  8052. ))
  8053. characterMakers.push(() => makeCharacter(
  8054. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  8055. {
  8056. crux: {
  8057. height: math.unit(2, "meters"),
  8058. weight: math.unit(150, "kg"),
  8059. name: "Crux",
  8060. image: {
  8061. source: "./media/characters/vemus/crux.svg",
  8062. extra: 1074/936,
  8063. bottom: 23/1097
  8064. }
  8065. },
  8066. skunkTanuki: {
  8067. height: math.unit(2, "meters"),
  8068. weight: math.unit(150, "kg"),
  8069. name: "Skunk-Tanuki",
  8070. image: {
  8071. source: "./media/characters/vemus/skunk-tanuki.svg",
  8072. extra: 926/893,
  8073. bottom: 20/946
  8074. }
  8075. },
  8076. },
  8077. [
  8078. {
  8079. name: "Normal",
  8080. height: math.unit(4, "meters"),
  8081. default: true
  8082. },
  8083. {
  8084. name: "Big",
  8085. height: math.unit(8, "meters")
  8086. },
  8087. {
  8088. name: "Macro",
  8089. height: math.unit(100, "meters")
  8090. },
  8091. {
  8092. name: "Macro+",
  8093. height: math.unit(1500, "meters")
  8094. },
  8095. {
  8096. name: "Stellar",
  8097. height: math.unit(14e8, "meters")
  8098. },
  8099. ]
  8100. ))
  8101. characterMakers.push(() => makeCharacter(
  8102. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  8103. {
  8104. front: {
  8105. height: math.unit(2, "meters"),
  8106. weight: math.unit(70, "kg"),
  8107. name: "Front",
  8108. image: {
  8109. source: "./media/characters/beherit/front.svg",
  8110. extra: 1234/1109,
  8111. bottom: 55/1289
  8112. }
  8113. }
  8114. },
  8115. [
  8116. {
  8117. name: "Normal",
  8118. height: math.unit(6, "feet")
  8119. },
  8120. {
  8121. name: "Lorg",
  8122. height: math.unit(25, "feet"),
  8123. default: true
  8124. },
  8125. {
  8126. name: "Lorger",
  8127. height: math.unit(75, "feet")
  8128. },
  8129. {
  8130. name: "Macro",
  8131. height: math.unit(200, "meters")
  8132. },
  8133. ]
  8134. ))
  8135. characterMakers.push(() => makeCharacter(
  8136. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  8137. {
  8138. front: {
  8139. height: math.unit(2, "meters"),
  8140. weight: math.unit(150, "kg"),
  8141. name: "Front",
  8142. image: {
  8143. source: "./media/characters/everett/front.svg",
  8144. extra: 1017/866,
  8145. bottom: 86/1103
  8146. }
  8147. },
  8148. paw: {
  8149. height: math.unit(2 / 3.6, "meters"),
  8150. name: "Paw",
  8151. image: {
  8152. source: "./media/characters/everett/paw.svg"
  8153. }
  8154. },
  8155. },
  8156. [
  8157. {
  8158. name: "Normal",
  8159. height: math.unit(15, "feet"),
  8160. default: true
  8161. },
  8162. {
  8163. name: "Lorg",
  8164. height: math.unit(70, "feet"),
  8165. default: true
  8166. },
  8167. {
  8168. name: "Lorger",
  8169. height: math.unit(250, "feet")
  8170. },
  8171. {
  8172. name: "Macro",
  8173. height: math.unit(500, "meters")
  8174. },
  8175. ]
  8176. ))
  8177. characterMakers.push(() => makeCharacter(
  8178. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  8179. {
  8180. front: {
  8181. height: math.unit(2, "meters"),
  8182. weight: math.unit(86, "kg"),
  8183. name: "Front",
  8184. image: {
  8185. source: "./media/characters/rose/front.svg",
  8186. extra: 1785/1636,
  8187. bottom: 30/1815
  8188. },
  8189. form: "liom",
  8190. default: true
  8191. },
  8192. frontSporty: {
  8193. height: math.unit(2, "meters"),
  8194. weight: math.unit(86, "kg"),
  8195. name: "Front (Sporty)",
  8196. image: {
  8197. source: "./media/characters/rose/front-sporty.svg",
  8198. extra: 350/335,
  8199. bottom: 10/360
  8200. },
  8201. form: "liom"
  8202. },
  8203. frontAlt: {
  8204. height: math.unit(1.6, "meters"),
  8205. weight: math.unit(86, "kg"),
  8206. name: "Front (Alt)",
  8207. image: {
  8208. source: "./media/characters/rose/front-alt.svg",
  8209. extra: 299/283,
  8210. bottom: 3/302
  8211. },
  8212. form: "liom"
  8213. },
  8214. plush: {
  8215. height: math.unit(2, "meters"),
  8216. weight: math.unit(86/3, "kg"),
  8217. name: "Plush",
  8218. image: {
  8219. source: "./media/characters/rose/plush.svg",
  8220. extra: 361/337,
  8221. bottom: 11/372
  8222. },
  8223. form: "plush",
  8224. default: true
  8225. },
  8226. faeStanding: {
  8227. height: math.unit(10, "cm"),
  8228. weight: math.unit(10, "grams"),
  8229. name: "Standing",
  8230. image: {
  8231. source: "./media/characters/rose/fae-standing.svg",
  8232. extra: 1189/1060,
  8233. bottom: 27/1216
  8234. },
  8235. form: "fae",
  8236. default: true
  8237. },
  8238. faeSitting: {
  8239. height: math.unit(5, "cm"),
  8240. weight: math.unit(10, "grams"),
  8241. name: "Sitting",
  8242. image: {
  8243. source: "./media/characters/rose/fae-sitting.svg",
  8244. extra: 737/577,
  8245. bottom: 356/1093
  8246. },
  8247. form: "fae"
  8248. },
  8249. faePaw: {
  8250. height: math.unit(1.35, "cm"),
  8251. name: "Paw",
  8252. image: {
  8253. source: "./media/characters/rose/fae-paw.svg"
  8254. },
  8255. form: "fae"
  8256. },
  8257. },
  8258. [
  8259. {
  8260. name: "True Micro",
  8261. height: math.unit(9, "cm"),
  8262. form: "liom"
  8263. },
  8264. {
  8265. name: "Micro",
  8266. height: math.unit(16, "cm"),
  8267. form: "liom"
  8268. },
  8269. {
  8270. name: "Normal",
  8271. height: math.unit(1.85, "meters"),
  8272. default: true,
  8273. form: "liom"
  8274. },
  8275. {
  8276. name: "Mini-Macro",
  8277. height: math.unit(5, "meters"),
  8278. form: "liom"
  8279. },
  8280. {
  8281. name: "Macro",
  8282. height: math.unit(15, "meters"),
  8283. form: "liom"
  8284. },
  8285. {
  8286. name: "True Macro",
  8287. height: math.unit(40, "meters"),
  8288. form: "liom"
  8289. },
  8290. {
  8291. name: "City Scale",
  8292. height: math.unit(1, "km"),
  8293. form: "liom"
  8294. },
  8295. {
  8296. name: "Plushie",
  8297. height: math.unit(9, "cm"),
  8298. form: "plush",
  8299. default: true
  8300. },
  8301. {
  8302. name: "Fae",
  8303. height: math.unit(10, "cm"),
  8304. form: "fae",
  8305. default: true
  8306. },
  8307. ],
  8308. {
  8309. "liom": {
  8310. name: "Liom"
  8311. },
  8312. "plush": {
  8313. name: "Plush"
  8314. },
  8315. "fae": {
  8316. name: "Fae Fox",
  8317. default: true
  8318. }
  8319. }
  8320. ))
  8321. characterMakers.push(() => makeCharacter(
  8322. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8323. {
  8324. front: {
  8325. height: math.unit(2, "meters"),
  8326. weight: math.unit(350, "lbs"),
  8327. name: "Front",
  8328. image: {
  8329. source: "./media/characters/regal/front.svg"
  8330. }
  8331. },
  8332. back: {
  8333. height: math.unit(2, "meters"),
  8334. weight: math.unit(350, "lbs"),
  8335. name: "Back",
  8336. image: {
  8337. source: "./media/characters/regal/back.svg"
  8338. }
  8339. },
  8340. },
  8341. [
  8342. {
  8343. name: "Macro",
  8344. height: math.unit(350, "feet"),
  8345. default: true
  8346. }
  8347. ]
  8348. ))
  8349. characterMakers.push(() => makeCharacter(
  8350. { name: "Opal", species: ["rabbit", "deity"], tags: ["anthro"] },
  8351. {
  8352. standing: {
  8353. height: math.unit(4 + 11/12, "feet"),
  8354. weight: math.unit(100, "lb"),
  8355. name: "Standing",
  8356. image: {
  8357. source: "./media/characters/opal/standing.svg",
  8358. extra: 1588/1513,
  8359. bottom: 23/1611
  8360. }
  8361. },
  8362. sitting: {
  8363. height: math.unit(2.3, "feet"),
  8364. weight: math.unit(100, "lb"),
  8365. name: "Sitting",
  8366. image: {
  8367. source: "./media/characters/opal/sitting.svg",
  8368. extra: 1031/892,
  8369. bottom: 142/1173
  8370. }
  8371. },
  8372. hand: {
  8373. height: math.unit(0.59, "feet"),
  8374. name: "Hand",
  8375. image: {
  8376. source: "./media/characters/opal/hand.svg"
  8377. }
  8378. },
  8379. foot: {
  8380. height: math.unit(0.61, "feet"),
  8381. name: "Foot",
  8382. image: {
  8383. source: "./media/characters/opal/foot.svg"
  8384. }
  8385. },
  8386. },
  8387. [
  8388. {
  8389. name: "Small",
  8390. height: math.unit(4 + 11 / 12, "feet")
  8391. },
  8392. {
  8393. name: "Normal",
  8394. height: math.unit(20, "feet"),
  8395. default: true
  8396. },
  8397. {
  8398. name: "Macro",
  8399. height: math.unit(120, "feet")
  8400. },
  8401. {
  8402. name: "Megamacro",
  8403. height: math.unit(80, "miles")
  8404. },
  8405. {
  8406. name: "True Size",
  8407. height: math.unit(100000, "lightyears")
  8408. },
  8409. ]
  8410. ))
  8411. characterMakers.push(() => makeCharacter(
  8412. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8413. {
  8414. front: {
  8415. height: math.unit(6, "feet"),
  8416. weight: math.unit(200, "lbs"),
  8417. name: "Front",
  8418. image: {
  8419. source: "./media/characters/vector-wuff/front.svg"
  8420. }
  8421. }
  8422. },
  8423. [
  8424. {
  8425. name: "Normal",
  8426. height: math.unit(2.8, "meters")
  8427. },
  8428. {
  8429. name: "Macro",
  8430. height: math.unit(450, "meters"),
  8431. default: true
  8432. },
  8433. {
  8434. name: "Megamacro",
  8435. height: math.unit(15, "kilometers")
  8436. }
  8437. ]
  8438. ))
  8439. characterMakers.push(() => makeCharacter(
  8440. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8441. {
  8442. front: {
  8443. height: math.unit(6, "feet"),
  8444. weight: math.unit(256, "lbs"),
  8445. name: "Front",
  8446. image: {
  8447. source: "./media/characters/dannik/front.svg"
  8448. }
  8449. }
  8450. },
  8451. [
  8452. {
  8453. name: "Macro",
  8454. height: math.unit(69.57, "meters"),
  8455. default: true
  8456. },
  8457. ]
  8458. ))
  8459. characterMakers.push(() => makeCharacter(
  8460. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8461. {
  8462. front: {
  8463. height: math.unit(6, "feet"),
  8464. weight: math.unit(120, "lbs"),
  8465. name: "Front",
  8466. image: {
  8467. source: "./media/characters/azura-saharah/front.svg"
  8468. }
  8469. },
  8470. back: {
  8471. height: math.unit(6, "feet"),
  8472. weight: math.unit(120, "lbs"),
  8473. name: "Back",
  8474. image: {
  8475. source: "./media/characters/azura-saharah/back.svg"
  8476. }
  8477. },
  8478. },
  8479. [
  8480. {
  8481. name: "Macro",
  8482. height: math.unit(100, "feet"),
  8483. default: true
  8484. },
  8485. ]
  8486. ))
  8487. characterMakers.push(() => makeCharacter(
  8488. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8489. {
  8490. side: {
  8491. height: math.unit(5 + 4 / 12, "feet"),
  8492. weight: math.unit(163, "lbs"),
  8493. name: "Side",
  8494. image: {
  8495. source: "./media/characters/kennedy/side.svg"
  8496. }
  8497. }
  8498. },
  8499. [
  8500. {
  8501. name: "Standard Doggo",
  8502. height: math.unit(5 + 4 / 12, "feet")
  8503. },
  8504. {
  8505. name: "Big Doggo",
  8506. height: math.unit(25 + 3 / 12, "feet"),
  8507. default: true
  8508. },
  8509. ]
  8510. ))
  8511. characterMakers.push(() => makeCharacter(
  8512. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8513. {
  8514. front: {
  8515. height: math.unit(5 + 5/12, "feet"),
  8516. weight: math.unit(100, "lbs"),
  8517. name: "Front",
  8518. image: {
  8519. source: "./media/characters/odios-de-lunar/front.svg",
  8520. extra: 1468/1323,
  8521. bottom: 22/1490
  8522. }
  8523. }
  8524. },
  8525. [
  8526. {
  8527. name: "Micro",
  8528. height: math.unit(3, "inches")
  8529. },
  8530. {
  8531. name: "Normal",
  8532. height: math.unit(5.5, "feet"),
  8533. default: true
  8534. },
  8535. {
  8536. name: "Macro",
  8537. height: math.unit(100, "feet")
  8538. },
  8539. ]
  8540. ))
  8541. characterMakers.push(() => makeCharacter(
  8542. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8543. {
  8544. back: {
  8545. height: math.unit(6, "feet"),
  8546. weight: math.unit(220, "lbs"),
  8547. name: "Back",
  8548. image: {
  8549. source: "./media/characters/mandake/back.svg"
  8550. }
  8551. }
  8552. },
  8553. [
  8554. {
  8555. name: "Normal",
  8556. height: math.unit(7, "feet"),
  8557. default: true
  8558. },
  8559. {
  8560. name: "Macro",
  8561. height: math.unit(78, "feet")
  8562. },
  8563. {
  8564. name: "Macro+",
  8565. height: math.unit(300, "meters")
  8566. },
  8567. {
  8568. name: "Macro++",
  8569. height: math.unit(2400, "feet")
  8570. },
  8571. {
  8572. name: "Megamacro",
  8573. height: math.unit(5167, "meters")
  8574. },
  8575. {
  8576. name: "Gigamacro",
  8577. height: math.unit(41769, "miles")
  8578. },
  8579. ]
  8580. ))
  8581. characterMakers.push(() => makeCharacter(
  8582. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8583. {
  8584. front: {
  8585. height: math.unit(6, "feet"),
  8586. weight: math.unit(120, "lbs"),
  8587. name: "Front",
  8588. image: {
  8589. source: "./media/characters/yozey/front.svg"
  8590. }
  8591. },
  8592. frontAlt: {
  8593. height: math.unit(6, "feet"),
  8594. weight: math.unit(120, "lbs"),
  8595. name: "Front (Alt)",
  8596. image: {
  8597. source: "./media/characters/yozey/front-alt.svg"
  8598. }
  8599. },
  8600. side: {
  8601. height: math.unit(6, "feet"),
  8602. weight: math.unit(120, "lbs"),
  8603. name: "Side",
  8604. image: {
  8605. source: "./media/characters/yozey/side.svg"
  8606. }
  8607. },
  8608. },
  8609. [
  8610. {
  8611. name: "Micro",
  8612. height: math.unit(3, "inches"),
  8613. default: true
  8614. },
  8615. {
  8616. name: "Normal",
  8617. height: math.unit(6, "feet")
  8618. }
  8619. ]
  8620. ))
  8621. characterMakers.push(() => makeCharacter(
  8622. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8623. {
  8624. front: {
  8625. height: math.unit(6, "feet"),
  8626. weight: math.unit(103, "lbs"),
  8627. name: "Front",
  8628. image: {
  8629. source: "./media/characters/valeska-voss/front.svg"
  8630. }
  8631. }
  8632. },
  8633. [
  8634. {
  8635. name: "Mini-Sized Sub",
  8636. height: math.unit(3.1, "inches")
  8637. },
  8638. {
  8639. name: "Mid-Sized Sub",
  8640. height: math.unit(6.2, "inches")
  8641. },
  8642. {
  8643. name: "Full-Sized Sub",
  8644. height: math.unit(9.3, "inches")
  8645. },
  8646. {
  8647. name: "Normal",
  8648. height: math.unit(5 + 2 / 12, "foot"),
  8649. default: true
  8650. },
  8651. ]
  8652. ))
  8653. characterMakers.push(() => makeCharacter(
  8654. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8655. {
  8656. front: {
  8657. height: math.unit(6, "feet"),
  8658. weight: math.unit(160, "lbs"),
  8659. name: "Front",
  8660. image: {
  8661. source: "./media/characters/gene-zeta/front.svg",
  8662. extra: 3006 / 2826,
  8663. bottom: 182 / 3188
  8664. }
  8665. }
  8666. },
  8667. [
  8668. {
  8669. name: "Micro",
  8670. height: math.unit(6, "inches")
  8671. },
  8672. {
  8673. name: "Normal",
  8674. height: math.unit(5 + 11 / 12, "foot"),
  8675. default: true
  8676. },
  8677. {
  8678. name: "Macro",
  8679. height: math.unit(140, "feet")
  8680. },
  8681. {
  8682. name: "Supercharged",
  8683. height: math.unit(2500, "feet")
  8684. },
  8685. ]
  8686. ))
  8687. characterMakers.push(() => makeCharacter(
  8688. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8689. {
  8690. front: {
  8691. height: math.unit(6, "feet"),
  8692. weight: math.unit(350, "lbs"),
  8693. name: "Front",
  8694. image: {
  8695. source: "./media/characters/razinox/front.svg",
  8696. extra: 1686 / 1548,
  8697. bottom: 28.2 / 1868
  8698. }
  8699. },
  8700. back: {
  8701. height: math.unit(6, "feet"),
  8702. weight: math.unit(350, "lbs"),
  8703. name: "Back",
  8704. image: {
  8705. source: "./media/characters/razinox/back.svg",
  8706. extra: 1660 / 1590,
  8707. bottom: 15 / 1665
  8708. }
  8709. },
  8710. },
  8711. [
  8712. {
  8713. name: "Normal",
  8714. height: math.unit(10 + 8 / 12, "foot")
  8715. },
  8716. {
  8717. name: "Minimacro",
  8718. height: math.unit(15, "foot")
  8719. },
  8720. {
  8721. name: "Macro",
  8722. height: math.unit(60, "foot"),
  8723. default: true
  8724. },
  8725. {
  8726. name: "Megamacro",
  8727. height: math.unit(5, "miles")
  8728. },
  8729. {
  8730. name: "Gigamacro",
  8731. height: math.unit(6000, "miles")
  8732. },
  8733. ]
  8734. ))
  8735. characterMakers.push(() => makeCharacter(
  8736. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8737. {
  8738. front: {
  8739. height: math.unit(6, "feet"),
  8740. weight: math.unit(150, "lbs"),
  8741. name: "Front",
  8742. image: {
  8743. source: "./media/characters/cobalt/front.svg"
  8744. }
  8745. }
  8746. },
  8747. [
  8748. {
  8749. name: "Normal",
  8750. height: math.unit(8 + 1 / 12, "foot")
  8751. },
  8752. {
  8753. name: "Macro",
  8754. height: math.unit(111, "foot"),
  8755. default: true
  8756. },
  8757. {
  8758. name: "Supracosmic",
  8759. height: math.unit(1e42, "feet")
  8760. },
  8761. ]
  8762. ))
  8763. characterMakers.push(() => makeCharacter(
  8764. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8765. {
  8766. front: {
  8767. height: math.unit(5, "inches"),
  8768. name: "Front",
  8769. image: {
  8770. source: "./media/characters/amanda/front.svg",
  8771. extra: 926/791,
  8772. bottom: 38/964
  8773. }
  8774. },
  8775. back: {
  8776. height: math.unit(5, "inches"),
  8777. name: "Back",
  8778. image: {
  8779. source: "./media/characters/amanda/back.svg",
  8780. extra: 909/805,
  8781. bottom: 43/952
  8782. }
  8783. },
  8784. },
  8785. [
  8786. {
  8787. name: "Micro",
  8788. height: math.unit(5, "inches"),
  8789. default: true
  8790. },
  8791. ]
  8792. ))
  8793. characterMakers.push(() => makeCharacter(
  8794. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8795. {
  8796. front: {
  8797. height: math.unit(2.75, "meters"),
  8798. weight: math.unit(1200, "lb"),
  8799. name: "Front",
  8800. image: {
  8801. source: "./media/characters/teal/front.svg",
  8802. extra: 2463 / 2320,
  8803. bottom: 166 / 2629
  8804. }
  8805. },
  8806. back: {
  8807. height: math.unit(2.75, "meters"),
  8808. weight: math.unit(1200, "lb"),
  8809. name: "Back",
  8810. image: {
  8811. source: "./media/characters/teal/back.svg",
  8812. extra: 2580 / 2489,
  8813. bottom: 151 / 2731
  8814. }
  8815. },
  8816. sitting: {
  8817. height: math.unit(1.9, "meters"),
  8818. weight: math.unit(1200, "lb"),
  8819. name: "Sitting",
  8820. image: {
  8821. source: "./media/characters/teal/sitting.svg",
  8822. extra: 623 / 590,
  8823. bottom: 121 / 744
  8824. }
  8825. },
  8826. standing: {
  8827. height: math.unit(2.75, "meters"),
  8828. weight: math.unit(1200, "lb"),
  8829. name: "Standing",
  8830. image: {
  8831. source: "./media/characters/teal/standing.svg",
  8832. extra: 923 / 893,
  8833. bottom: 60 / 983
  8834. }
  8835. },
  8836. stretching: {
  8837. height: math.unit(3.65, "meters"),
  8838. weight: math.unit(1200, "lb"),
  8839. name: "Stretching",
  8840. image: {
  8841. source: "./media/characters/teal/stretching.svg",
  8842. extra: 1276 / 1244,
  8843. bottom: 0 / 1276
  8844. }
  8845. },
  8846. legged: {
  8847. height: math.unit(1.3, "meters"),
  8848. weight: math.unit(100, "lb"),
  8849. name: "Legged",
  8850. image: {
  8851. source: "./media/characters/teal/legged.svg",
  8852. extra: 462 / 437,
  8853. bottom: 24 / 486
  8854. }
  8855. },
  8856. naga: {
  8857. height: math.unit(5.4, "meters"),
  8858. weight: math.unit(4000, "lb"),
  8859. name: "Naga",
  8860. image: {
  8861. source: "./media/characters/teal/naga.svg",
  8862. extra: 1902 / 1858,
  8863. bottom: 0 / 1902
  8864. }
  8865. },
  8866. hand: {
  8867. height: math.unit(0.52, "meters"),
  8868. name: "Hand",
  8869. image: {
  8870. source: "./media/characters/teal/hand.svg"
  8871. }
  8872. },
  8873. maw: {
  8874. height: math.unit(0.43, "meters"),
  8875. name: "Maw",
  8876. image: {
  8877. source: "./media/characters/teal/maw.svg"
  8878. }
  8879. },
  8880. slit: {
  8881. height: math.unit(0.25, "meters"),
  8882. name: "Slit",
  8883. image: {
  8884. source: "./media/characters/teal/slit.svg"
  8885. }
  8886. },
  8887. },
  8888. [
  8889. {
  8890. name: "Normal",
  8891. height: math.unit(2.75, "meters"),
  8892. default: true
  8893. },
  8894. {
  8895. name: "Macro",
  8896. height: math.unit(300, "feet")
  8897. },
  8898. {
  8899. name: "Macro+",
  8900. height: math.unit(2000, "feet")
  8901. },
  8902. ]
  8903. ))
  8904. characterMakers.push(() => makeCharacter(
  8905. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8906. {
  8907. frontCat: {
  8908. height: math.unit(6, "feet"),
  8909. weight: math.unit(180, "lbs"),
  8910. name: "Front (Cat)",
  8911. image: {
  8912. source: "./media/characters/ravin-amulet/front-cat.svg"
  8913. }
  8914. },
  8915. frontCatAlt: {
  8916. height: math.unit(6, "feet"),
  8917. weight: math.unit(180, "lbs"),
  8918. name: "Front (Alt, Cat)",
  8919. image: {
  8920. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8921. }
  8922. },
  8923. frontWerewolf: {
  8924. height: math.unit(6 * 1.2, "feet"),
  8925. weight: math.unit(225, "lbs"),
  8926. name: "Front (Werewolf)",
  8927. image: {
  8928. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8929. }
  8930. },
  8931. backWerewolf: {
  8932. height: math.unit(6 * 1.2, "feet"),
  8933. weight: math.unit(225, "lbs"),
  8934. name: "Back (Werewolf)",
  8935. image: {
  8936. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8937. }
  8938. },
  8939. },
  8940. [
  8941. {
  8942. name: "Nano",
  8943. height: math.unit(1, "micrometer")
  8944. },
  8945. {
  8946. name: "Micro",
  8947. height: math.unit(1, "inch")
  8948. },
  8949. {
  8950. name: "Normal",
  8951. height: math.unit(6, "feet"),
  8952. default: true
  8953. },
  8954. {
  8955. name: "Macro",
  8956. height: math.unit(60, "feet")
  8957. }
  8958. ]
  8959. ))
  8960. characterMakers.push(() => makeCharacter(
  8961. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8962. {
  8963. front: {
  8964. height: math.unit(6, "feet"),
  8965. weight: math.unit(165, "lbs"),
  8966. name: "Front",
  8967. image: {
  8968. source: "./media/characters/fluoresce/front.svg"
  8969. }
  8970. }
  8971. },
  8972. [
  8973. {
  8974. name: "Micro",
  8975. height: math.unit(6, "cm")
  8976. },
  8977. {
  8978. name: "Normal",
  8979. height: math.unit(5 + 7 / 12, "feet"),
  8980. default: true
  8981. },
  8982. {
  8983. name: "Macro",
  8984. height: math.unit(56, "feet")
  8985. },
  8986. {
  8987. name: "Megamacro",
  8988. height: math.unit(1.9, "miles")
  8989. },
  8990. ]
  8991. ))
  8992. characterMakers.push(() => makeCharacter(
  8993. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8994. {
  8995. front: {
  8996. height: math.unit(9 + 6 / 12, "feet"),
  8997. weight: math.unit(523, "lbs"),
  8998. name: "Side",
  8999. image: {
  9000. source: "./media/characters/aurora/side.svg",
  9001. extra: 474/393,
  9002. bottom: 5/479
  9003. }
  9004. }
  9005. },
  9006. [
  9007. {
  9008. name: "Normal",
  9009. height: math.unit(9 + 6 / 12, "feet")
  9010. },
  9011. {
  9012. name: "Macro",
  9013. height: math.unit(96, "feet"),
  9014. default: true
  9015. },
  9016. {
  9017. name: "Macro+",
  9018. height: math.unit(243, "feet")
  9019. },
  9020. ]
  9021. ))
  9022. characterMakers.push(() => makeCharacter(
  9023. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  9024. {
  9025. front: {
  9026. height: math.unit(194, "cm"),
  9027. weight: math.unit(90, "kg"),
  9028. name: "Front",
  9029. image: {
  9030. source: "./media/characters/ranek/front.svg",
  9031. extra: 1862/1791,
  9032. bottom: 80/1942
  9033. }
  9034. },
  9035. back: {
  9036. height: math.unit(194, "cm"),
  9037. weight: math.unit(90, "kg"),
  9038. name: "Back",
  9039. image: {
  9040. source: "./media/characters/ranek/back.svg",
  9041. extra: 1853/1787,
  9042. bottom: 74/1927
  9043. }
  9044. },
  9045. feral: {
  9046. height: math.unit(30, "cm"),
  9047. weight: math.unit(1.6, "lbs"),
  9048. name: "Feral",
  9049. image: {
  9050. source: "./media/characters/ranek/feral.svg",
  9051. extra: 990/631,
  9052. bottom: 29/1019
  9053. }
  9054. },
  9055. },
  9056. [
  9057. {
  9058. name: "Normal",
  9059. height: math.unit(194, "cm"),
  9060. default: true
  9061. },
  9062. {
  9063. name: "Macro",
  9064. height: math.unit(100, "meters")
  9065. },
  9066. ]
  9067. ))
  9068. characterMakers.push(() => makeCharacter(
  9069. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  9070. {
  9071. front: {
  9072. height: math.unit(5 + 6 / 12, "feet"),
  9073. weight: math.unit(153, "lbs"),
  9074. name: "Front",
  9075. image: {
  9076. source: "./media/characters/andrew-cooper/front.svg"
  9077. }
  9078. },
  9079. },
  9080. [
  9081. {
  9082. name: "Nano",
  9083. height: math.unit(1, "mm")
  9084. },
  9085. {
  9086. name: "Micro",
  9087. height: math.unit(2, "inches")
  9088. },
  9089. {
  9090. name: "Normal",
  9091. height: math.unit(5 + 6 / 12, "feet"),
  9092. default: true
  9093. }
  9094. ]
  9095. ))
  9096. characterMakers.push(() => makeCharacter(
  9097. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  9098. {
  9099. front: {
  9100. height: math.unit(6, "feet"),
  9101. weight: math.unit(180, "lbs"),
  9102. name: "Front",
  9103. image: {
  9104. source: "./media/characters/akane-sato/front.svg",
  9105. extra: 1219 / 1140
  9106. }
  9107. },
  9108. back: {
  9109. height: math.unit(6, "feet"),
  9110. weight: math.unit(180, "lbs"),
  9111. name: "Back",
  9112. image: {
  9113. source: "./media/characters/akane-sato/back.svg",
  9114. extra: 1219 / 1170
  9115. }
  9116. },
  9117. },
  9118. [
  9119. {
  9120. name: "Normal",
  9121. height: math.unit(2.5, "meters")
  9122. },
  9123. {
  9124. name: "Macro",
  9125. height: math.unit(250, "meters"),
  9126. default: true
  9127. },
  9128. {
  9129. name: "Megamacro",
  9130. height: math.unit(25, "km")
  9131. },
  9132. ]
  9133. ))
  9134. characterMakers.push(() => makeCharacter(
  9135. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  9136. {
  9137. front: {
  9138. height: math.unit(6, "feet"),
  9139. weight: math.unit(65, "kg"),
  9140. name: "Front",
  9141. image: {
  9142. source: "./media/characters/rook/front.svg",
  9143. extra: 960 / 950
  9144. }
  9145. }
  9146. },
  9147. [
  9148. {
  9149. name: "Normal",
  9150. height: math.unit(8.8, "feet")
  9151. },
  9152. {
  9153. name: "Macro",
  9154. height: math.unit(88, "feet"),
  9155. default: true
  9156. },
  9157. {
  9158. name: "Megamacro",
  9159. height: math.unit(8, "miles")
  9160. },
  9161. ]
  9162. ))
  9163. characterMakers.push(() => makeCharacter(
  9164. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  9165. {
  9166. front: {
  9167. height: math.unit(12 + 2 / 12, "feet"),
  9168. weight: math.unit(808, "lbs"),
  9169. name: "Front",
  9170. image: {
  9171. source: "./media/characters/prodigy/front.svg"
  9172. }
  9173. }
  9174. },
  9175. [
  9176. {
  9177. name: "Normal",
  9178. height: math.unit(12 + 2 / 12, "feet"),
  9179. default: true
  9180. },
  9181. {
  9182. name: "Macro",
  9183. height: math.unit(143, "feet")
  9184. },
  9185. {
  9186. name: "Macro+",
  9187. height: math.unit(400, "feet")
  9188. },
  9189. ]
  9190. ))
  9191. characterMakers.push(() => makeCharacter(
  9192. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  9193. {
  9194. front: {
  9195. height: math.unit(6, "feet"),
  9196. weight: math.unit(225, "lbs"),
  9197. name: "Front",
  9198. image: {
  9199. source: "./media/characters/daniel/front.svg"
  9200. }
  9201. },
  9202. leaning: {
  9203. height: math.unit(6, "feet"),
  9204. weight: math.unit(225, "lbs"),
  9205. name: "Leaning",
  9206. image: {
  9207. source: "./media/characters/daniel/leaning.svg"
  9208. }
  9209. },
  9210. },
  9211. [
  9212. {
  9213. name: "Macro",
  9214. height: math.unit(1000, "feet"),
  9215. default: true
  9216. },
  9217. ]
  9218. ))
  9219. characterMakers.push(() => makeCharacter(
  9220. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  9221. {
  9222. front: {
  9223. height: math.unit(6, "feet"),
  9224. weight: math.unit(88, "lbs"),
  9225. name: "Front",
  9226. image: {
  9227. source: "./media/characters/chiros/front.svg",
  9228. extra: 306 / 226
  9229. }
  9230. },
  9231. side: {
  9232. height: math.unit(6, "feet"),
  9233. weight: math.unit(88, "lbs"),
  9234. name: "Side",
  9235. image: {
  9236. source: "./media/characters/chiros/side.svg",
  9237. extra: 306 / 226
  9238. }
  9239. },
  9240. },
  9241. [
  9242. {
  9243. name: "Normal",
  9244. height: math.unit(6, "cm"),
  9245. default: true
  9246. },
  9247. ]
  9248. ))
  9249. characterMakers.push(() => makeCharacter(
  9250. { name: "Selka", species: ["snake"], tags: ["naga"] },
  9251. {
  9252. front: {
  9253. height: math.unit(6, "feet"),
  9254. weight: math.unit(100, "lbs"),
  9255. name: "Front",
  9256. image: {
  9257. source: "./media/characters/selka/front.svg",
  9258. extra: 947 / 887
  9259. }
  9260. }
  9261. },
  9262. [
  9263. {
  9264. name: "Normal",
  9265. height: math.unit(5, "cm"),
  9266. default: true
  9267. },
  9268. ]
  9269. ))
  9270. characterMakers.push(() => makeCharacter(
  9271. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  9272. {
  9273. front: {
  9274. height: math.unit(8 + 3 / 12, "feet"),
  9275. weight: math.unit(424, "lbs"),
  9276. name: "Front",
  9277. image: {
  9278. source: "./media/characters/verin/front.svg",
  9279. extra: 1845 / 1550
  9280. }
  9281. },
  9282. frontArmored: {
  9283. height: math.unit(8 + 3 / 12, "feet"),
  9284. weight: math.unit(424, "lbs"),
  9285. name: "Front (Armored)",
  9286. image: {
  9287. source: "./media/characters/verin/front-armor.svg",
  9288. extra: 1845 / 1550,
  9289. bottom: 0.01
  9290. }
  9291. },
  9292. back: {
  9293. height: math.unit(8 + 3 / 12, "feet"),
  9294. weight: math.unit(424, "lbs"),
  9295. name: "Back",
  9296. image: {
  9297. source: "./media/characters/verin/back.svg",
  9298. bottom: 0.1,
  9299. extra: 1
  9300. }
  9301. },
  9302. foot: {
  9303. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9304. name: "Foot",
  9305. image: {
  9306. source: "./media/characters/verin/foot.svg"
  9307. }
  9308. },
  9309. },
  9310. [
  9311. {
  9312. name: "Normal",
  9313. height: math.unit(8 + 3 / 12, "feet")
  9314. },
  9315. {
  9316. name: "Minimacro",
  9317. height: math.unit(21, "feet"),
  9318. default: true
  9319. },
  9320. {
  9321. name: "Macro",
  9322. height: math.unit(626, "feet")
  9323. },
  9324. ]
  9325. ))
  9326. characterMakers.push(() => makeCharacter(
  9327. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9328. {
  9329. front: {
  9330. height: math.unit(2.718, "meters"),
  9331. weight: math.unit(150, "lbs"),
  9332. name: "Front",
  9333. image: {
  9334. source: "./media/characters/sovrim-terraquian/front.svg",
  9335. extra: 1752/1689,
  9336. bottom: 36/1788
  9337. }
  9338. },
  9339. back: {
  9340. height: math.unit(2.718, "meters"),
  9341. weight: math.unit(150, "lbs"),
  9342. name: "Back",
  9343. image: {
  9344. source: "./media/characters/sovrim-terraquian/back.svg",
  9345. extra: 1698/1657,
  9346. bottom: 58/1756
  9347. }
  9348. },
  9349. tongue: {
  9350. height: math.unit(2.865, "feet"),
  9351. name: "Tongue",
  9352. image: {
  9353. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9354. }
  9355. },
  9356. hand: {
  9357. height: math.unit(1.61, "feet"),
  9358. name: "Hand",
  9359. image: {
  9360. source: "./media/characters/sovrim-terraquian/hand.svg"
  9361. }
  9362. },
  9363. foot: {
  9364. height: math.unit(1.05, "feet"),
  9365. name: "Foot",
  9366. image: {
  9367. source: "./media/characters/sovrim-terraquian/foot.svg"
  9368. }
  9369. },
  9370. footAlt: {
  9371. height: math.unit(0.88, "feet"),
  9372. name: "Foot (Alt)",
  9373. image: {
  9374. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9375. }
  9376. },
  9377. },
  9378. [
  9379. {
  9380. name: "Micro",
  9381. height: math.unit(2, "inches")
  9382. },
  9383. {
  9384. name: "Small",
  9385. height: math.unit(1, "meter")
  9386. },
  9387. {
  9388. name: "Normal",
  9389. height: math.unit(Math.E, "meters"),
  9390. default: true
  9391. },
  9392. {
  9393. name: "Macro",
  9394. height: math.unit(20, "meters")
  9395. },
  9396. {
  9397. name: "Macro+",
  9398. height: math.unit(400, "meters")
  9399. },
  9400. ]
  9401. ))
  9402. characterMakers.push(() => makeCharacter(
  9403. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9404. {
  9405. front: {
  9406. height: math.unit(7, "feet"),
  9407. weight: math.unit(489, "lbs"),
  9408. name: "Front",
  9409. image: {
  9410. source: "./media/characters/reece-silvermane/front.svg",
  9411. bottom: 0.02,
  9412. extra: 1
  9413. }
  9414. },
  9415. },
  9416. [
  9417. {
  9418. name: "Macro",
  9419. height: math.unit(1.5, "miles"),
  9420. default: true
  9421. },
  9422. ]
  9423. ))
  9424. characterMakers.push(() => makeCharacter(
  9425. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9426. {
  9427. front: {
  9428. height: math.unit(6, "feet"),
  9429. weight: math.unit(78, "kg"),
  9430. name: "Front",
  9431. image: {
  9432. source: "./media/characters/kane/front.svg",
  9433. extra: 978 / 899
  9434. }
  9435. },
  9436. back: {
  9437. height: math.unit(6, "feet"),
  9438. weight: math.unit(78, "kg"),
  9439. name: "Back",
  9440. image: {
  9441. source: "./media/characters/kane/back.svg",
  9442. extra: 1966/1800,
  9443. bottom: 0/1966
  9444. }
  9445. },
  9446. head: {
  9447. height: math.unit(1.4, "feet"),
  9448. name: "Head",
  9449. image: {
  9450. source: "./media/characters/kane/head.svg"
  9451. }
  9452. },
  9453. },
  9454. [
  9455. {
  9456. name: "Normal",
  9457. height: math.unit(2.1, "m"),
  9458. },
  9459. {
  9460. name: "Macro",
  9461. height: math.unit(1, "km"),
  9462. default: true
  9463. },
  9464. ]
  9465. ))
  9466. characterMakers.push(() => makeCharacter(
  9467. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9468. {
  9469. front: {
  9470. height: math.unit(6, "feet"),
  9471. weight: math.unit(200, "kg"),
  9472. name: "Front",
  9473. image: {
  9474. source: "./media/characters/tegon/front.svg",
  9475. bottom: 0.01,
  9476. extra: 1
  9477. }
  9478. },
  9479. },
  9480. [
  9481. {
  9482. name: "Micro",
  9483. height: math.unit(1, "inch")
  9484. },
  9485. {
  9486. name: "Normal",
  9487. height: math.unit(6 + 3 / 12, "feet"),
  9488. default: true
  9489. },
  9490. {
  9491. name: "Macro",
  9492. height: math.unit(300, "feet")
  9493. },
  9494. {
  9495. name: "Megamacro",
  9496. height: math.unit(69, "miles")
  9497. },
  9498. ]
  9499. ))
  9500. characterMakers.push(() => makeCharacter(
  9501. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9502. {
  9503. side: {
  9504. height: math.unit(6, "feet"),
  9505. weight: math.unit(2304, "lbs"),
  9506. name: "Side",
  9507. image: {
  9508. source: "./media/characters/arcturax/side.svg",
  9509. extra: 790 / 376,
  9510. bottom: 0.01
  9511. }
  9512. },
  9513. },
  9514. [
  9515. {
  9516. name: "Micro",
  9517. height: math.unit(2, "inch")
  9518. },
  9519. {
  9520. name: "Normal",
  9521. height: math.unit(6, "feet")
  9522. },
  9523. {
  9524. name: "Macro",
  9525. height: math.unit(39, "feet"),
  9526. default: true
  9527. },
  9528. {
  9529. name: "Megamacro",
  9530. height: math.unit(7, "miles")
  9531. },
  9532. ]
  9533. ))
  9534. characterMakers.push(() => makeCharacter(
  9535. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9536. {
  9537. front: {
  9538. height: math.unit(6, "feet"),
  9539. weight: math.unit(50, "lbs"),
  9540. name: "Front",
  9541. image: {
  9542. source: "./media/characters/sentri/front.svg",
  9543. extra: 1750 / 1570,
  9544. bottom: 0.025
  9545. }
  9546. },
  9547. frontAlt: {
  9548. height: math.unit(6, "feet"),
  9549. weight: math.unit(50, "lbs"),
  9550. name: "Front (Alt)",
  9551. image: {
  9552. source: "./media/characters/sentri/front-alt.svg",
  9553. extra: 1750 / 1570,
  9554. bottom: 0.025
  9555. }
  9556. },
  9557. },
  9558. [
  9559. {
  9560. name: "Normal",
  9561. height: math.unit(15, "feet"),
  9562. default: true
  9563. },
  9564. {
  9565. name: "Macro",
  9566. height: math.unit(2500, "feet")
  9567. }
  9568. ]
  9569. ))
  9570. characterMakers.push(() => makeCharacter(
  9571. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9572. {
  9573. front: {
  9574. height: math.unit(5 + 8 / 12, "feet"),
  9575. weight: math.unit(130, "lbs"),
  9576. name: "Front",
  9577. image: {
  9578. source: "./media/characters/corvin/front.svg",
  9579. extra: 1803 / 1629
  9580. }
  9581. },
  9582. frontShirt: {
  9583. height: math.unit(5 + 8 / 12, "feet"),
  9584. weight: math.unit(130, "lbs"),
  9585. name: "Front (Shirt)",
  9586. image: {
  9587. source: "./media/characters/corvin/front-shirt.svg",
  9588. extra: 1803 / 1629
  9589. }
  9590. },
  9591. frontPoncho: {
  9592. height: math.unit(5 + 8 / 12, "feet"),
  9593. weight: math.unit(130, "lbs"),
  9594. name: "Front (Poncho)",
  9595. image: {
  9596. source: "./media/characters/corvin/front-poncho.svg",
  9597. extra: 1803 / 1629
  9598. }
  9599. },
  9600. side: {
  9601. height: math.unit(5 + 8 / 12, "feet"),
  9602. weight: math.unit(130, "lbs"),
  9603. name: "Side",
  9604. image: {
  9605. source: "./media/characters/corvin/side.svg",
  9606. extra: 1012 / 945
  9607. }
  9608. },
  9609. back: {
  9610. height: math.unit(5 + 8 / 12, "feet"),
  9611. weight: math.unit(130, "lbs"),
  9612. name: "Back",
  9613. image: {
  9614. source: "./media/characters/corvin/back.svg",
  9615. extra: 1803 / 1629
  9616. }
  9617. },
  9618. },
  9619. [
  9620. {
  9621. name: "Micro",
  9622. height: math.unit(3, "inches")
  9623. },
  9624. {
  9625. name: "Normal",
  9626. height: math.unit(5 + 8 / 12, "feet")
  9627. },
  9628. {
  9629. name: "Macro",
  9630. height: math.unit(300, "feet"),
  9631. default: true
  9632. },
  9633. {
  9634. name: "Megamacro",
  9635. height: math.unit(500, "miles")
  9636. }
  9637. ]
  9638. ))
  9639. characterMakers.push(() => makeCharacter(
  9640. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9641. {
  9642. front: {
  9643. height: math.unit(6, "feet"),
  9644. weight: math.unit(135, "lbs"),
  9645. name: "Front",
  9646. image: {
  9647. source: "./media/characters/q/front.svg",
  9648. extra: 854 / 752,
  9649. bottom: 0.005
  9650. }
  9651. },
  9652. back: {
  9653. height: math.unit(6, "feet"),
  9654. weight: math.unit(130, "lbs"),
  9655. name: "Back",
  9656. image: {
  9657. source: "./media/characters/q/back.svg",
  9658. extra: 854 / 752
  9659. }
  9660. },
  9661. },
  9662. [
  9663. {
  9664. name: "Macro",
  9665. height: math.unit(90, "feet"),
  9666. default: true
  9667. },
  9668. {
  9669. name: "Extra Macro",
  9670. height: math.unit(300, "feet"),
  9671. },
  9672. {
  9673. name: "BIG WALF",
  9674. height: math.unit(750, "feet"),
  9675. },
  9676. ]
  9677. ))
  9678. characterMakers.push(() => makeCharacter(
  9679. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9680. {
  9681. front: {
  9682. height: math.unit(3, "feet"),
  9683. weight: math.unit(28, "lbs"),
  9684. name: "Front",
  9685. image: {
  9686. source: "./media/characters/citrine/front.svg"
  9687. }
  9688. }
  9689. },
  9690. [
  9691. {
  9692. name: "Normal",
  9693. height: math.unit(3, "feet"),
  9694. default: true
  9695. }
  9696. ]
  9697. ))
  9698. characterMakers.push(() => makeCharacter(
  9699. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9700. {
  9701. front: {
  9702. height: math.unit(14, "feet"),
  9703. weight: math.unit(1450, "kg"),
  9704. preyCapacity: math.unit(15, "people"),
  9705. name: "Front",
  9706. image: {
  9707. source: "./media/characters/aura-starwind/front.svg",
  9708. extra: 1440/1327,
  9709. bottom: 11/1451
  9710. }
  9711. },
  9712. side: {
  9713. height: math.unit(14, "feet"),
  9714. weight: math.unit(1450, "kg"),
  9715. preyCapacity: math.unit(15, "people"),
  9716. name: "Side",
  9717. image: {
  9718. source: "./media/characters/aura-starwind/side.svg",
  9719. extra: 1654 / 1497
  9720. }
  9721. },
  9722. taur: {
  9723. height: math.unit(18, "feet"),
  9724. weight: math.unit(5500, "kg"),
  9725. preyCapacity: math.unit(50, "people"),
  9726. name: "Taur",
  9727. image: {
  9728. source: "./media/characters/aura-starwind/taur.svg",
  9729. extra: 1760 / 1650
  9730. }
  9731. },
  9732. feral: {
  9733. height: math.unit(46, "feet"),
  9734. weight: math.unit(25000, "kg"),
  9735. preyCapacity: math.unit(120, "people"),
  9736. name: "Feral",
  9737. image: {
  9738. source: "./media/characters/aura-starwind/feral.svg"
  9739. }
  9740. },
  9741. },
  9742. [
  9743. {
  9744. name: "Normal",
  9745. height: math.unit(14, "feet"),
  9746. default: true
  9747. },
  9748. {
  9749. name: "Macro",
  9750. height: math.unit(50, "meters")
  9751. },
  9752. {
  9753. name: "Megamacro",
  9754. height: math.unit(5000, "meters")
  9755. },
  9756. {
  9757. name: "Gigamacro",
  9758. height: math.unit(100000, "kilometers")
  9759. },
  9760. ]
  9761. ))
  9762. characterMakers.push(() => makeCharacter(
  9763. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9764. {
  9765. front: {
  9766. height: math.unit(2 + 7 / 12, "feet"),
  9767. weight: math.unit(32, "lbs"),
  9768. name: "Front",
  9769. image: {
  9770. source: "./media/characters/rivet/front.svg",
  9771. extra: 1716 / 1658,
  9772. bottom: 0.03
  9773. }
  9774. },
  9775. foot: {
  9776. height: math.unit(0.551, "feet"),
  9777. name: "Rivet's Foot",
  9778. image: {
  9779. source: "./media/characters/rivet/foot.svg"
  9780. },
  9781. rename: true
  9782. }
  9783. },
  9784. [
  9785. {
  9786. name: "Micro",
  9787. height: math.unit(1.5, "inches"),
  9788. },
  9789. {
  9790. name: "Normal",
  9791. height: math.unit(2 + 7 / 12, "feet"),
  9792. default: true
  9793. },
  9794. {
  9795. name: "Macro",
  9796. height: math.unit(85, "feet")
  9797. },
  9798. {
  9799. name: "Megamacro",
  9800. height: math.unit(2.2, "km")
  9801. }
  9802. ]
  9803. ))
  9804. characterMakers.push(() => makeCharacter(
  9805. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9806. {
  9807. front: {
  9808. height: math.unit(5 + 9 / 12, "feet"),
  9809. weight: math.unit(150, "lbs"),
  9810. name: "Front",
  9811. image: {
  9812. source: "./media/characters/coffee/front.svg",
  9813. extra: 946/880,
  9814. bottom: 66/1012
  9815. }
  9816. },
  9817. foot: {
  9818. height: math.unit(1.29, "feet"),
  9819. name: "Foot",
  9820. image: {
  9821. source: "./media/characters/coffee/foot.svg"
  9822. }
  9823. },
  9824. },
  9825. [
  9826. {
  9827. name: "Micro",
  9828. height: math.unit(2, "inches"),
  9829. },
  9830. {
  9831. name: "Normal",
  9832. height: math.unit(5 + 9 / 12, "feet"),
  9833. default: true
  9834. },
  9835. {
  9836. name: "Macro",
  9837. height: math.unit(800, "feet")
  9838. },
  9839. {
  9840. name: "Megamacro",
  9841. height: math.unit(25, "miles")
  9842. }
  9843. ]
  9844. ))
  9845. characterMakers.push(() => makeCharacter(
  9846. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9847. {
  9848. front: {
  9849. height: math.unit(6, "feet"),
  9850. weight: math.unit(200, "lbs"),
  9851. name: "Front",
  9852. image: {
  9853. source: "./media/characters/chari-gal/front.svg",
  9854. extra: 735/649,
  9855. bottom: 55/790
  9856. },
  9857. form: "normal",
  9858. default: true
  9859. },
  9860. back: {
  9861. height: math.unit(6, "feet"),
  9862. weight: math.unit(200, "lb"),
  9863. name: "Back",
  9864. image: {
  9865. source: "./media/characters/chari-gal/back.svg",
  9866. extra: 762/666,
  9867. bottom: 31/793
  9868. },
  9869. form: "normal"
  9870. },
  9871. mouth: {
  9872. height: math.unit(1.35, "feet"),
  9873. name: "Mouth",
  9874. image: {
  9875. source: "./media/characters/chari-gal/mouth.svg"
  9876. },
  9877. form: "normal"
  9878. },
  9879. gigantamax: {
  9880. height: math.unit(6 * 16, "feet"),
  9881. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9882. name: "Gigantamax",
  9883. image: {
  9884. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9885. extra: 1507/1149,
  9886. bottom: 254/1761
  9887. },
  9888. form: "gigantamax",
  9889. default: true
  9890. },
  9891. },
  9892. [
  9893. {
  9894. name: "Normal",
  9895. height: math.unit(5 + 7 / 12, "feet"),
  9896. form: "normal",
  9897. },
  9898. {
  9899. name: "Macro",
  9900. height: math.unit(200, "feet"),
  9901. default: true,
  9902. form: "normal"
  9903. },
  9904. {
  9905. name: "Normal",
  9906. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9907. form: "gigantamax",
  9908. },
  9909. {
  9910. name: "Macro",
  9911. height: math.unit(16 * 200, "feet"),
  9912. default: true,
  9913. form: "gigantamax"
  9914. },
  9915. ],
  9916. {
  9917. "normal": {
  9918. name: "Normal",
  9919. default: true
  9920. },
  9921. "gigantamax": {
  9922. name: "Gigantamax",
  9923. },
  9924. }
  9925. ))
  9926. characterMakers.push(() => makeCharacter(
  9927. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9928. {
  9929. front: {
  9930. height: math.unit(6, "feet"),
  9931. weight: math.unit(150, "lbs"),
  9932. name: "Front",
  9933. image: {
  9934. source: "./media/characters/nova/front.svg",
  9935. extra: 5000 / 4722,
  9936. bottom: 0.02
  9937. }
  9938. }
  9939. },
  9940. [
  9941. {
  9942. name: "Micro-",
  9943. height: math.unit(0.8, "inches")
  9944. },
  9945. {
  9946. name: "Micro",
  9947. height: math.unit(2, "inches"),
  9948. default: true
  9949. },
  9950. ]
  9951. ))
  9952. characterMakers.push(() => makeCharacter(
  9953. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9954. {
  9955. koboldFront: {
  9956. height: math.unit(3 + 1 / 12, "feet"),
  9957. weight: math.unit(21.7, "lbs"),
  9958. name: "Front",
  9959. image: {
  9960. source: "./media/characters/argent/kobold-front.svg",
  9961. extra: 1471 / 1331,
  9962. bottom: 100.8 / 1575.5
  9963. },
  9964. form: "kobold",
  9965. default: true
  9966. },
  9967. dragonFront: {
  9968. height: math.unit(75, "inches"),
  9969. name: "Front",
  9970. image: {
  9971. source: "./media/characters/argent/dragon-front.svg",
  9972. extra: 1389/1248,
  9973. bottom: 54/1443
  9974. },
  9975. form: "dragon",
  9976. },
  9977. dragonBack: {
  9978. height: math.unit(75, "inches"),
  9979. name: "Back",
  9980. image: {
  9981. source: "./media/characters/argent/dragon-back.svg",
  9982. extra: 1399/1271,
  9983. bottom: 23/1422
  9984. },
  9985. form: "dragon",
  9986. },
  9987. dragonDressed: {
  9988. height: math.unit(75, "inches"),
  9989. name: "Dressed",
  9990. image: {
  9991. source: "./media/characters/argent/dragon-dressed.svg",
  9992. extra: 1350/1215,
  9993. bottom: 26/1376
  9994. },
  9995. form: "dragon"
  9996. },
  9997. dragonHead: {
  9998. height: math.unit(23.5, "inches"),
  9999. name: "Head",
  10000. image: {
  10001. source: "./media/characters/argent/dragon-head.svg"
  10002. },
  10003. form: "dragon",
  10004. },
  10005. },
  10006. [
  10007. {
  10008. name: "Micro",
  10009. height: math.unit(2, "inches"),
  10010. form: "kobold",
  10011. },
  10012. {
  10013. name: "Normal",
  10014. height: math.unit(3 + 1 / 12, "feet"),
  10015. form: "kobold",
  10016. default: true
  10017. },
  10018. {
  10019. name: "Macro",
  10020. height: math.unit(120, "feet"),
  10021. form: "kobold",
  10022. },
  10023. {
  10024. name: "Speck",
  10025. height: math.unit(1, "mm"),
  10026. form: "dragon",
  10027. },
  10028. {
  10029. name: "Tiny",
  10030. height: math.unit(1, "cm"),
  10031. form: "dragon",
  10032. },
  10033. {
  10034. name: "Micro",
  10035. height: math.unit(5, "cm"),
  10036. form: "dragon",
  10037. },
  10038. {
  10039. name: "Normal",
  10040. height: math.unit(75, "inches"),
  10041. form: "dragon",
  10042. default: true
  10043. },
  10044. {
  10045. name: "Extra Tall",
  10046. height: math.unit(9, "feet"),
  10047. form: "dragon",
  10048. },
  10049. {
  10050. name: "Inconvenient",
  10051. height: math.unit(5, "meters"),
  10052. form: "dragon",
  10053. },
  10054. {
  10055. name: "Macro",
  10056. height: math.unit(70, "meters"),
  10057. form: "dragon",
  10058. },
  10059. {
  10060. name: "Macro+",
  10061. height: math.unit(250, "meters"),
  10062. form: "dragon",
  10063. },
  10064. {
  10065. name: "Megamacro",
  10066. height: math.unit(20, "km"),
  10067. form: "dragon",
  10068. },
  10069. {
  10070. name: "Mountainous",
  10071. height: math.unit(100, "km"),
  10072. form: "dragon",
  10073. },
  10074. {
  10075. name: "Continental",
  10076. height: math.unit(2, "megameters"),
  10077. form: "dragon",
  10078. },
  10079. {
  10080. name: "Too Big",
  10081. height: math.unit(900, "megameters"),
  10082. form: "dragon",
  10083. },
  10084. ],
  10085. {
  10086. "kobold": {
  10087. name: "Kobold",
  10088. default: true
  10089. },
  10090. "dragon": {
  10091. name: "Dragon",
  10092. },
  10093. }
  10094. ))
  10095. characterMakers.push(() => makeCharacter(
  10096. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  10097. {
  10098. lamp: {
  10099. height: math.unit(7 * 1559 / 989, "feet"),
  10100. name: "Magic Lamp",
  10101. image: {
  10102. source: "./media/characters/mira-al-cul/lamp.svg",
  10103. extra: 1617 / 1559
  10104. }
  10105. },
  10106. front: {
  10107. height: math.unit(7, "feet"),
  10108. name: "Front",
  10109. image: {
  10110. source: "./media/characters/mira-al-cul/front.svg",
  10111. extra: 1044 / 990
  10112. }
  10113. },
  10114. },
  10115. [
  10116. {
  10117. name: "Heavily Restricted",
  10118. height: math.unit(7 * 1559 / 989, "feet")
  10119. },
  10120. {
  10121. name: "Freshly Freed",
  10122. height: math.unit(50 * 1559 / 989, "feet")
  10123. },
  10124. {
  10125. name: "World Encompassing",
  10126. height: math.unit(10000 * 1559 / 989, "miles")
  10127. },
  10128. {
  10129. name: "Galactic",
  10130. height: math.unit(1.433 * 1559 / 989, "zettameters")
  10131. },
  10132. {
  10133. name: "Palmed Universe",
  10134. height: math.unit(6000 * 1559 / 989, "yottameters"),
  10135. default: true
  10136. },
  10137. {
  10138. name: "Multiversal Matriarch",
  10139. height: math.unit(8.87e10, "yottameters")
  10140. },
  10141. {
  10142. name: "Void Mother",
  10143. height: math.unit(3.14e110, "yottaparsecs")
  10144. },
  10145. {
  10146. name: "Toying with Transcendence",
  10147. height: math.unit(1e307, "meters")
  10148. },
  10149. ]
  10150. ))
  10151. characterMakers.push(() => makeCharacter(
  10152. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  10153. {
  10154. front: {
  10155. height: math.unit(17 + 1 / 12, "feet"),
  10156. weight: math.unit(476.2 * 5, "lbs"),
  10157. name: "Front",
  10158. image: {
  10159. source: "./media/characters/kuro-shi-uchū/front.svg",
  10160. extra: 2329 / 1835,
  10161. bottom: 0.02
  10162. }
  10163. },
  10164. },
  10165. [
  10166. {
  10167. name: "Micro",
  10168. height: math.unit(2, "inches")
  10169. },
  10170. {
  10171. name: "Normal",
  10172. height: math.unit(12, "meters")
  10173. },
  10174. {
  10175. name: "Planetary",
  10176. height: math.unit(0.00929, "AU"),
  10177. default: true
  10178. },
  10179. {
  10180. name: "Universal",
  10181. height: math.unit(20, "gigaparsecs")
  10182. },
  10183. ]
  10184. ))
  10185. characterMakers.push(() => makeCharacter(
  10186. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  10187. {
  10188. front: {
  10189. height: math.unit(5 + 2 / 12, "feet"),
  10190. weight: math.unit(120, "lbs"),
  10191. name: "Front",
  10192. image: {
  10193. source: "./media/characters/katherine/front.svg",
  10194. extra: 2075 / 1969
  10195. }
  10196. },
  10197. dress: {
  10198. height: math.unit(5 + 2 / 12, "feet"),
  10199. weight: math.unit(120, "lbs"),
  10200. name: "Dress",
  10201. image: {
  10202. source: "./media/characters/katherine/dress.svg",
  10203. extra: 2258 / 2064
  10204. }
  10205. },
  10206. },
  10207. [
  10208. {
  10209. name: "Micro",
  10210. height: math.unit(1, "inches"),
  10211. default: true
  10212. },
  10213. {
  10214. name: "Normal",
  10215. height: math.unit(5 + 2 / 12, "feet")
  10216. },
  10217. {
  10218. name: "Macro",
  10219. height: math.unit(100, "meters")
  10220. },
  10221. {
  10222. name: "Megamacro",
  10223. height: math.unit(80, "miles")
  10224. },
  10225. ]
  10226. ))
  10227. characterMakers.push(() => makeCharacter(
  10228. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  10229. {
  10230. front: {
  10231. height: math.unit(7 + 8 / 12, "feet"),
  10232. weight: math.unit(250, "lbs"),
  10233. name: "Front",
  10234. image: {
  10235. source: "./media/characters/yevis/front.svg",
  10236. extra: 1938 / 1755
  10237. }
  10238. }
  10239. },
  10240. [
  10241. {
  10242. name: "Mortal",
  10243. height: math.unit(7 + 8 / 12, "feet")
  10244. },
  10245. {
  10246. name: "Battle",
  10247. height: math.unit(25 + 11 / 12, "feet")
  10248. },
  10249. {
  10250. name: "Wrath",
  10251. height: math.unit(1654 + 11 / 12, "feet")
  10252. },
  10253. {
  10254. name: "Planet Destroyer",
  10255. height: math.unit(12000, "miles")
  10256. },
  10257. {
  10258. name: "Galaxy Conqueror",
  10259. height: math.unit(1.45, "zettameters"),
  10260. default: true
  10261. },
  10262. {
  10263. name: "Universal War",
  10264. height: math.unit(184, "gigaparsecs")
  10265. },
  10266. {
  10267. name: "Eternity War",
  10268. height: math.unit(1.98e55, "yottaparsecs")
  10269. },
  10270. ]
  10271. ))
  10272. characterMakers.push(() => makeCharacter(
  10273. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  10274. {
  10275. front: {
  10276. height: math.unit(5 + 8 / 12, "feet"),
  10277. weight: math.unit(63, "kg"),
  10278. name: "Front",
  10279. image: {
  10280. source: "./media/characters/xavier/front.svg",
  10281. extra: 944 / 883
  10282. }
  10283. },
  10284. frontStretch: {
  10285. height: math.unit(5 + 8 / 12, "feet"),
  10286. weight: math.unit(63, "kg"),
  10287. name: "Stretching",
  10288. image: {
  10289. source: "./media/characters/xavier/front-stretch.svg",
  10290. extra: 962 / 820
  10291. }
  10292. },
  10293. },
  10294. [
  10295. {
  10296. name: "Normal",
  10297. height: math.unit(5 + 8 / 12, "feet")
  10298. },
  10299. {
  10300. name: "Macro",
  10301. height: math.unit(100, "meters"),
  10302. default: true
  10303. },
  10304. {
  10305. name: "McLargeHuge",
  10306. height: math.unit(10, "miles")
  10307. },
  10308. ]
  10309. ))
  10310. characterMakers.push(() => makeCharacter(
  10311. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10312. {
  10313. front: {
  10314. height: math.unit(5 + 5 / 12, "feet"),
  10315. weight: math.unit(150, "lb"),
  10316. name: "Front",
  10317. image: {
  10318. source: "./media/characters/joshii/front.svg",
  10319. extra: 765 / 653,
  10320. bottom: 51 / 816
  10321. }
  10322. },
  10323. foot: {
  10324. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10325. name: "Foot",
  10326. image: {
  10327. source: "./media/characters/joshii/foot.svg"
  10328. }
  10329. },
  10330. },
  10331. [
  10332. {
  10333. name: "Micro",
  10334. height: math.unit(2, "inches")
  10335. },
  10336. {
  10337. name: "Normal",
  10338. height: math.unit(5 + 5 / 12, "feet")
  10339. },
  10340. {
  10341. name: "Macro",
  10342. height: math.unit(785, "feet"),
  10343. default: true
  10344. },
  10345. {
  10346. name: "Megamacro",
  10347. height: math.unit(24.5, "miles")
  10348. },
  10349. ]
  10350. ))
  10351. characterMakers.push(() => makeCharacter(
  10352. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10353. {
  10354. front: {
  10355. height: math.unit(6, "feet"),
  10356. weight: math.unit(150, "lb"),
  10357. name: "Front",
  10358. image: {
  10359. source: "./media/characters/goddess-elizabeth/front.svg",
  10360. extra: 1800 / 1525,
  10361. bottom: 0.005
  10362. }
  10363. },
  10364. foot: {
  10365. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10366. name: "Foot",
  10367. image: {
  10368. source: "./media/characters/goddess-elizabeth/foot.svg"
  10369. }
  10370. },
  10371. mouth: {
  10372. height: math.unit(6, "feet"),
  10373. name: "Mouth",
  10374. image: {
  10375. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10376. }
  10377. },
  10378. },
  10379. [
  10380. {
  10381. name: "Micro",
  10382. height: math.unit(12, "feet")
  10383. },
  10384. {
  10385. name: "Normal",
  10386. height: math.unit(80, "miles"),
  10387. default: true
  10388. },
  10389. {
  10390. name: "Macro",
  10391. height: math.unit(15000, "parsecs")
  10392. },
  10393. ]
  10394. ))
  10395. characterMakers.push(() => makeCharacter(
  10396. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10397. {
  10398. front: {
  10399. height: math.unit(5 + 9 / 12, "feet"),
  10400. weight: math.unit(144, "lb"),
  10401. name: "Front",
  10402. image: {
  10403. source: "./media/characters/kara/front.svg"
  10404. }
  10405. },
  10406. feet: {
  10407. height: math.unit(6 / 6.765, "feet"),
  10408. name: "Kara's Feet",
  10409. rename: true,
  10410. image: {
  10411. source: "./media/characters/kara/feet.svg"
  10412. }
  10413. },
  10414. },
  10415. [
  10416. {
  10417. name: "Normal",
  10418. height: math.unit(5 + 9 / 12, "feet")
  10419. },
  10420. {
  10421. name: "Macro",
  10422. height: math.unit(174, "feet"),
  10423. default: true
  10424. },
  10425. ]
  10426. ))
  10427. characterMakers.push(() => makeCharacter(
  10428. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10429. {
  10430. front: {
  10431. height: math.unit(18, "feet"),
  10432. weight: math.unit(4050, "lb"),
  10433. name: "Front",
  10434. image: {
  10435. source: "./media/characters/tyrone/front.svg",
  10436. extra: 2405 / 2270,
  10437. bottom: 182 / 2587
  10438. }
  10439. },
  10440. },
  10441. [
  10442. {
  10443. name: "Normal",
  10444. height: math.unit(18, "feet"),
  10445. default: true
  10446. },
  10447. {
  10448. name: "Macro",
  10449. height: math.unit(300, "feet")
  10450. },
  10451. {
  10452. name: "Megamacro",
  10453. height: math.unit(15, "km")
  10454. },
  10455. {
  10456. name: "Gigamacro",
  10457. height: math.unit(500, "km")
  10458. },
  10459. {
  10460. name: "Teramacro",
  10461. height: math.unit(0.5, "gigameters")
  10462. },
  10463. {
  10464. name: "Omnimacro",
  10465. height: math.unit(1e252, "yottauniverse")
  10466. },
  10467. ]
  10468. ))
  10469. characterMakers.push(() => makeCharacter(
  10470. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10471. {
  10472. front: {
  10473. height: math.unit(7 + 8 / 12, "feet"),
  10474. weight: math.unit(120, "lb"),
  10475. name: "Front",
  10476. image: {
  10477. source: "./media/characters/danny/front.svg",
  10478. extra: 1490 / 1350
  10479. }
  10480. },
  10481. back: {
  10482. height: math.unit(7 + 8 / 12, "feet"),
  10483. weight: math.unit(120, "lb"),
  10484. name: "Back",
  10485. image: {
  10486. source: "./media/characters/danny/back.svg",
  10487. extra: 1490 / 1350
  10488. }
  10489. },
  10490. },
  10491. [
  10492. {
  10493. name: "Normal",
  10494. height: math.unit(7 + 8 / 12, "feet"),
  10495. default: true
  10496. },
  10497. ]
  10498. ))
  10499. characterMakers.push(() => makeCharacter(
  10500. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10501. {
  10502. front: {
  10503. height: math.unit(3.5, "inches"),
  10504. weight: math.unit(19, "grams"),
  10505. name: "Front",
  10506. image: {
  10507. source: "./media/characters/mallow/front.svg",
  10508. extra: 471 / 431
  10509. }
  10510. },
  10511. back: {
  10512. height: math.unit(3.5, "inches"),
  10513. weight: math.unit(19, "grams"),
  10514. name: "Back",
  10515. image: {
  10516. source: "./media/characters/mallow/back.svg",
  10517. extra: 471 / 431
  10518. }
  10519. },
  10520. },
  10521. [
  10522. {
  10523. name: "Normal",
  10524. height: math.unit(3.5, "inches"),
  10525. default: true
  10526. },
  10527. ]
  10528. ))
  10529. characterMakers.push(() => makeCharacter(
  10530. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10531. {
  10532. front: {
  10533. height: math.unit(9, "feet"),
  10534. weight: math.unit(230, "kg"),
  10535. name: "Front",
  10536. image: {
  10537. source: "./media/characters/starry-aqua/front.svg"
  10538. }
  10539. },
  10540. back: {
  10541. height: math.unit(9, "feet"),
  10542. weight: math.unit(230, "kg"),
  10543. name: "Back",
  10544. image: {
  10545. source: "./media/characters/starry-aqua/back.svg"
  10546. }
  10547. },
  10548. hand: {
  10549. height: math.unit(9 * 0.1168, "feet"),
  10550. name: "Hand",
  10551. image: {
  10552. source: "./media/characters/starry-aqua/hand.svg"
  10553. }
  10554. },
  10555. foot: {
  10556. height: math.unit(9 * 0.18, "feet"),
  10557. name: "Foot",
  10558. image: {
  10559. source: "./media/characters/starry-aqua/foot.svg"
  10560. }
  10561. }
  10562. },
  10563. [
  10564. {
  10565. name: "Micro",
  10566. height: math.unit(3, "inches")
  10567. },
  10568. {
  10569. name: "Normal",
  10570. height: math.unit(9, "feet")
  10571. },
  10572. {
  10573. name: "Macro",
  10574. height: math.unit(300, "feet"),
  10575. default: true
  10576. },
  10577. {
  10578. name: "Megamacro",
  10579. height: math.unit(3200, "feet")
  10580. }
  10581. ]
  10582. ))
  10583. characterMakers.push(() => makeCharacter(
  10584. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10585. {
  10586. front: {
  10587. height: math.unit(15, "feet"),
  10588. weight: math.unit(5026, "lb"),
  10589. name: "Front",
  10590. image: {
  10591. source: "./media/characters/luka-towers/front.svg",
  10592. extra: 1269/1133,
  10593. bottom: 51/1320
  10594. }
  10595. },
  10596. },
  10597. [
  10598. {
  10599. name: "Normal",
  10600. height: math.unit(15, "feet"),
  10601. default: true
  10602. },
  10603. {
  10604. name: "Minimacro",
  10605. height: math.unit(25, "feet")
  10606. },
  10607. {
  10608. name: "Macro",
  10609. height: math.unit(320, "feet")
  10610. },
  10611. {
  10612. name: "Megamacro",
  10613. height: math.unit(35000, "feet")
  10614. },
  10615. {
  10616. name: "Gigamacro",
  10617. height: math.unit(4000, "miles")
  10618. },
  10619. {
  10620. name: "Teramacro",
  10621. height: math.unit(15000, "miles")
  10622. },
  10623. ]
  10624. ))
  10625. characterMakers.push(() => makeCharacter(
  10626. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10627. {
  10628. front: {
  10629. height: math.unit(6, "feet"),
  10630. weight: math.unit(150, "lb"),
  10631. name: "Front",
  10632. image: {
  10633. source: "./media/characters/natalie-nightring/front.svg",
  10634. extra: 1,
  10635. bottom: 0.06
  10636. }
  10637. },
  10638. },
  10639. [
  10640. {
  10641. name: "Uh Oh",
  10642. height: math.unit(0.1, "mm")
  10643. },
  10644. {
  10645. name: "Small",
  10646. height: math.unit(3, "inches")
  10647. },
  10648. {
  10649. name: "Human Scale",
  10650. height: math.unit(6, "feet")
  10651. },
  10652. {
  10653. name: "Librarian",
  10654. height: math.unit(50, "feet"),
  10655. default: true
  10656. },
  10657. {
  10658. name: "Immense",
  10659. height: math.unit(200, "miles")
  10660. },
  10661. ]
  10662. ))
  10663. characterMakers.push(() => makeCharacter(
  10664. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10665. {
  10666. front: {
  10667. height: math.unit(6, "feet"),
  10668. weight: math.unit(180, "lbs"),
  10669. name: "Front",
  10670. image: {
  10671. source: "./media/characters/danni-rosie/front.svg",
  10672. extra: 1260 / 1128,
  10673. bottom: 0.022
  10674. }
  10675. },
  10676. },
  10677. [
  10678. {
  10679. name: "Micro",
  10680. height: math.unit(2, "inches"),
  10681. default: true
  10682. },
  10683. ]
  10684. ))
  10685. characterMakers.push(() => makeCharacter(
  10686. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10687. {
  10688. front: {
  10689. height: math.unit(5 + 9 / 12, "feet"),
  10690. weight: math.unit(220, "lb"),
  10691. name: "Front",
  10692. image: {
  10693. source: "./media/characters/samantha-kruse/front.svg",
  10694. extra: (985 / 935),
  10695. bottom: 0.03
  10696. }
  10697. },
  10698. frontUndressed: {
  10699. height: math.unit(5 + 9 / 12, "feet"),
  10700. weight: math.unit(220, "lb"),
  10701. name: "Front (Undressed)",
  10702. image: {
  10703. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10704. extra: (973 / 923),
  10705. bottom: 0.025
  10706. }
  10707. },
  10708. fat: {
  10709. height: math.unit(5 + 9 / 12, "feet"),
  10710. weight: math.unit(900, "lb"),
  10711. name: "Front (Fat)",
  10712. image: {
  10713. source: "./media/characters/samantha-kruse/fat.svg",
  10714. extra: 2688 / 2561
  10715. }
  10716. },
  10717. },
  10718. [
  10719. {
  10720. name: "Normal",
  10721. height: math.unit(5 + 9 / 12, "feet"),
  10722. default: true
  10723. }
  10724. ]
  10725. ))
  10726. characterMakers.push(() => makeCharacter(
  10727. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10728. {
  10729. back: {
  10730. height: math.unit(5 + 4 / 12, "feet"),
  10731. weight: math.unit(4963, "lb"),
  10732. name: "Back",
  10733. image: {
  10734. source: "./media/characters/amelia-rosie/back.svg",
  10735. extra: 1113 / 963,
  10736. bottom: 0.01
  10737. }
  10738. },
  10739. },
  10740. [
  10741. {
  10742. name: "Level 0",
  10743. height: math.unit(5 + 4 / 12, "feet")
  10744. },
  10745. {
  10746. name: "Level 1",
  10747. height: math.unit(164597, "feet"),
  10748. default: true
  10749. },
  10750. {
  10751. name: "Level 2",
  10752. height: math.unit(956243, "miles")
  10753. },
  10754. {
  10755. name: "Level 3",
  10756. height: math.unit(29421709423, "miles")
  10757. },
  10758. {
  10759. name: "Level 4",
  10760. height: math.unit(154, "lightyears")
  10761. },
  10762. {
  10763. name: "Level 5",
  10764. height: math.unit(4738272, "lightyears")
  10765. },
  10766. {
  10767. name: "Level 6",
  10768. height: math.unit(145787152896, "lightyears")
  10769. },
  10770. ]
  10771. ))
  10772. characterMakers.push(() => makeCharacter(
  10773. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10774. {
  10775. front: {
  10776. height: math.unit(5 + 11 / 12, "feet"),
  10777. weight: math.unit(65, "kg"),
  10778. name: "Front",
  10779. image: {
  10780. source: "./media/characters/rook-kitara/front.svg",
  10781. extra: 1347 / 1274,
  10782. bottom: 0.005
  10783. }
  10784. },
  10785. },
  10786. [
  10787. {
  10788. name: "Totally Unfair",
  10789. height: math.unit(1.8, "mm")
  10790. },
  10791. {
  10792. name: "Lap Rookie",
  10793. height: math.unit(1.4, "feet")
  10794. },
  10795. {
  10796. name: "Normal",
  10797. height: math.unit(5 + 11 / 12, "feet"),
  10798. default: true
  10799. },
  10800. {
  10801. name: "How Did This Happen",
  10802. height: math.unit(80, "miles")
  10803. }
  10804. ]
  10805. ))
  10806. characterMakers.push(() => makeCharacter(
  10807. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10808. {
  10809. front: {
  10810. height: math.unit(7, "feet"),
  10811. weight: math.unit(300, "lb"),
  10812. name: "Front",
  10813. image: {
  10814. source: "./media/characters/pisces/front.svg",
  10815. extra: 2255 / 2115,
  10816. bottom: 0.03
  10817. }
  10818. },
  10819. back: {
  10820. height: math.unit(7, "feet"),
  10821. weight: math.unit(300, "lb"),
  10822. name: "Back",
  10823. image: {
  10824. source: "./media/characters/pisces/back.svg",
  10825. extra: 2146 / 2055,
  10826. bottom: 0.04
  10827. }
  10828. },
  10829. },
  10830. [
  10831. {
  10832. name: "Normal",
  10833. height: math.unit(7, "feet"),
  10834. default: true
  10835. },
  10836. {
  10837. name: "Swimming Pool",
  10838. height: math.unit(12.2, "meters")
  10839. },
  10840. {
  10841. name: "Olympic Swimming Pool",
  10842. height: math.unit(56.3, "meters")
  10843. },
  10844. {
  10845. name: "Lake Superior",
  10846. height: math.unit(93900, "meters")
  10847. },
  10848. {
  10849. name: "Mediterranean Sea",
  10850. height: math.unit(644457, "meters")
  10851. },
  10852. {
  10853. name: "World's Oceans",
  10854. height: math.unit(4567491, "meters")
  10855. },
  10856. ]
  10857. ))
  10858. characterMakers.push(() => makeCharacter(
  10859. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10860. {
  10861. front: {
  10862. height: math.unit(2.3, "meters"),
  10863. weight: math.unit(120, "kg"),
  10864. name: "Front",
  10865. image: {
  10866. source: "./media/characters/zelas/front.svg"
  10867. }
  10868. },
  10869. side: {
  10870. height: math.unit(2.3, "meters"),
  10871. weight: math.unit(120, "kg"),
  10872. name: "Side",
  10873. image: {
  10874. source: "./media/characters/zelas/side.svg"
  10875. }
  10876. },
  10877. back: {
  10878. height: math.unit(2.3, "meters"),
  10879. weight: math.unit(120, "kg"),
  10880. name: "Back",
  10881. image: {
  10882. source: "./media/characters/zelas/back.svg"
  10883. }
  10884. },
  10885. foot: {
  10886. height: math.unit(1.116, "feet"),
  10887. name: "Foot",
  10888. image: {
  10889. source: "./media/characters/zelas/foot.svg"
  10890. }
  10891. },
  10892. },
  10893. [
  10894. {
  10895. name: "Normal",
  10896. height: math.unit(2.3, "meters")
  10897. },
  10898. {
  10899. name: "Macro",
  10900. height: math.unit(30, "meters"),
  10901. default: true
  10902. },
  10903. ]
  10904. ))
  10905. characterMakers.push(() => makeCharacter(
  10906. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10907. {
  10908. front: {
  10909. height: math.unit(1, "inch"),
  10910. weight: math.unit(0.21, "grams"),
  10911. name: "Front",
  10912. image: {
  10913. source: "./media/characters/talbot/front.svg",
  10914. extra: 594 / 544
  10915. }
  10916. },
  10917. },
  10918. [
  10919. {
  10920. name: "Micro",
  10921. height: math.unit(1, "inch"),
  10922. default: true
  10923. },
  10924. ]
  10925. ))
  10926. characterMakers.push(() => makeCharacter(
  10927. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10928. {
  10929. front: {
  10930. height: math.unit(3 + 3 / 12, "feet"),
  10931. weight: math.unit(51.8, "lb"),
  10932. name: "Front",
  10933. image: {
  10934. source: "./media/characters/fliss/front.svg",
  10935. extra: 840 / 640
  10936. }
  10937. },
  10938. },
  10939. [
  10940. {
  10941. name: "Teeny Tiny",
  10942. height: math.unit(1, "mm")
  10943. },
  10944. {
  10945. name: "Small",
  10946. height: math.unit(1, "inch"),
  10947. default: true
  10948. },
  10949. {
  10950. name: "Standard Sylveon",
  10951. height: math.unit(3 + 3 / 12, "feet")
  10952. },
  10953. {
  10954. name: "Large Nuisance",
  10955. height: math.unit(33, "feet")
  10956. },
  10957. {
  10958. name: "City Filler",
  10959. height: math.unit(3000, "feet")
  10960. },
  10961. {
  10962. name: "New Horizon",
  10963. height: math.unit(6000, "miles")
  10964. },
  10965. ]
  10966. ))
  10967. characterMakers.push(() => makeCharacter(
  10968. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10969. {
  10970. front: {
  10971. height: math.unit(5, "cm"),
  10972. weight: math.unit(1.94, "g"),
  10973. name: "Front",
  10974. image: {
  10975. source: "./media/characters/fleta/front.svg",
  10976. extra: 835 / 803
  10977. }
  10978. },
  10979. back: {
  10980. height: math.unit(5, "cm"),
  10981. weight: math.unit(1.94, "g"),
  10982. name: "Back",
  10983. image: {
  10984. source: "./media/characters/fleta/back.svg",
  10985. extra: 835 / 803
  10986. }
  10987. },
  10988. },
  10989. [
  10990. {
  10991. name: "Micro",
  10992. height: math.unit(5, "cm"),
  10993. default: true
  10994. },
  10995. ]
  10996. ))
  10997. characterMakers.push(() => makeCharacter(
  10998. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10999. {
  11000. front: {
  11001. height: math.unit(6, "feet"),
  11002. weight: math.unit(225, "lb"),
  11003. name: "Front",
  11004. image: {
  11005. source: "./media/characters/dominic/front.svg",
  11006. extra: 1770 / 1620,
  11007. bottom: 0.025
  11008. }
  11009. },
  11010. back: {
  11011. height: math.unit(6, "feet"),
  11012. weight: math.unit(225, "lb"),
  11013. name: "Back",
  11014. image: {
  11015. source: "./media/characters/dominic/back.svg",
  11016. extra: 1745 / 1620,
  11017. bottom: 0.065
  11018. }
  11019. },
  11020. },
  11021. [
  11022. {
  11023. name: "Nano",
  11024. height: math.unit(0.1, "mm")
  11025. },
  11026. {
  11027. name: "Micro-",
  11028. height: math.unit(1, "mm")
  11029. },
  11030. {
  11031. name: "Micro",
  11032. height: math.unit(4, "inches")
  11033. },
  11034. {
  11035. name: "Normal",
  11036. height: math.unit(6 + 4 / 12, "feet"),
  11037. default: true
  11038. },
  11039. {
  11040. name: "Macro",
  11041. height: math.unit(115, "feet")
  11042. },
  11043. {
  11044. name: "Macro+",
  11045. height: math.unit(955, "feet")
  11046. },
  11047. {
  11048. name: "Megamacro",
  11049. height: math.unit(8990, "feet")
  11050. },
  11051. {
  11052. name: "Gigmacro",
  11053. height: math.unit(9310, "miles")
  11054. },
  11055. {
  11056. name: "Teramacro",
  11057. height: math.unit(1567005010, "miles")
  11058. },
  11059. {
  11060. name: "Examacro",
  11061. height: math.unit(1425, "parsecs")
  11062. },
  11063. ]
  11064. ))
  11065. characterMakers.push(() => makeCharacter(
  11066. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  11067. {
  11068. front: {
  11069. height: math.unit(400, "feet"),
  11070. weight: math.unit(44444444, "lb"),
  11071. name: "Front",
  11072. image: {
  11073. source: "./media/characters/major-colonel/front.svg"
  11074. }
  11075. },
  11076. back: {
  11077. height: math.unit(400, "feet"),
  11078. weight: math.unit(44444444, "lb"),
  11079. name: "Back",
  11080. image: {
  11081. source: "./media/characters/major-colonel/back.svg"
  11082. }
  11083. },
  11084. },
  11085. [
  11086. {
  11087. name: "Macro",
  11088. height: math.unit(400, "feet"),
  11089. default: true
  11090. },
  11091. ]
  11092. ))
  11093. characterMakers.push(() => makeCharacter(
  11094. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  11095. {
  11096. catFront: {
  11097. height: math.unit(6, "feet"),
  11098. weight: math.unit(120, "lb"),
  11099. name: "Front (Cat Side)",
  11100. image: {
  11101. source: "./media/characters/axel-lycan/cat-front.svg",
  11102. extra: 430 / 402,
  11103. bottom: 43 / 472.35
  11104. }
  11105. },
  11106. catBack: {
  11107. height: math.unit(6, "feet"),
  11108. weight: math.unit(120, "lb"),
  11109. name: "Back (Cat Side)",
  11110. image: {
  11111. source: "./media/characters/axel-lycan/cat-back.svg",
  11112. extra: 447 / 419,
  11113. bottom: 23.3 / 469
  11114. }
  11115. },
  11116. wolfFront: {
  11117. height: math.unit(6, "feet"),
  11118. weight: math.unit(120, "lb"),
  11119. name: "Front (Wolf Side)",
  11120. image: {
  11121. source: "./media/characters/axel-lycan/wolf-front.svg",
  11122. extra: 485 / 456,
  11123. bottom: 19 / 504
  11124. }
  11125. },
  11126. wolfBack: {
  11127. height: math.unit(6, "feet"),
  11128. weight: math.unit(120, "lb"),
  11129. name: "Back (Wolf Side)",
  11130. image: {
  11131. source: "./media/characters/axel-lycan/wolf-back.svg",
  11132. extra: 475 / 438,
  11133. bottom: 39.2 / 514
  11134. }
  11135. },
  11136. },
  11137. [
  11138. {
  11139. name: "Macro",
  11140. height: math.unit(1, "km"),
  11141. default: true
  11142. },
  11143. ]
  11144. ))
  11145. characterMakers.push(() => makeCharacter(
  11146. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  11147. {
  11148. front: {
  11149. height: math.unit(5 + 9 / 12, "feet"),
  11150. weight: math.unit(175, "lb"),
  11151. name: "Front",
  11152. image: {
  11153. source: "./media/characters/vanrel-hyena/front.svg",
  11154. extra: 1086 / 1010,
  11155. bottom: 0.04
  11156. }
  11157. },
  11158. },
  11159. [
  11160. {
  11161. name: "Normal",
  11162. height: math.unit(5 + 9 / 12, "feet"),
  11163. default: true
  11164. },
  11165. ]
  11166. ))
  11167. characterMakers.push(() => makeCharacter(
  11168. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  11169. {
  11170. front: {
  11171. height: math.unit(6, "feet"),
  11172. weight: math.unit(103, "lb"),
  11173. name: "Front",
  11174. image: {
  11175. source: "./media/characters/abbott-absol/front.svg",
  11176. extra: 765/694,
  11177. bottom: 47/812
  11178. }
  11179. },
  11180. },
  11181. [
  11182. {
  11183. name: "Megamicro",
  11184. height: math.unit(0.1, "mm")
  11185. },
  11186. {
  11187. name: "Micro",
  11188. height: math.unit(1, "inch")
  11189. },
  11190. {
  11191. name: "Normal",
  11192. height: math.unit(6, "feet"),
  11193. default: true
  11194. },
  11195. ]
  11196. ))
  11197. characterMakers.push(() => makeCharacter(
  11198. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  11199. {
  11200. front: {
  11201. height: math.unit(6, "feet"),
  11202. weight: math.unit(264, "lb"),
  11203. name: "Front",
  11204. image: {
  11205. source: "./media/characters/hector/front.svg",
  11206. extra: 2280 / 2130,
  11207. bottom: 0.07
  11208. }
  11209. },
  11210. },
  11211. [
  11212. {
  11213. name: "Normal",
  11214. height: math.unit(12.25, "foot"),
  11215. default: true
  11216. },
  11217. {
  11218. name: "Macro",
  11219. height: math.unit(160, "feet")
  11220. },
  11221. ]
  11222. ))
  11223. characterMakers.push(() => makeCharacter(
  11224. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  11225. {
  11226. front: {
  11227. height: math.unit(6, "feet"),
  11228. weight: math.unit(150, "lb"),
  11229. name: "Front",
  11230. image: {
  11231. source: "./media/characters/sal/front.svg",
  11232. extra: 1846 / 1699,
  11233. bottom: 0.04
  11234. }
  11235. },
  11236. },
  11237. [
  11238. {
  11239. name: "Megamacro",
  11240. height: math.unit(10, "miles"),
  11241. default: true
  11242. },
  11243. ]
  11244. ))
  11245. characterMakers.push(() => makeCharacter(
  11246. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  11247. {
  11248. front: {
  11249. height: math.unit(3, "meters"),
  11250. weight: math.unit(450, "kg"),
  11251. name: "front",
  11252. image: {
  11253. source: "./media/characters/ranger/front.svg",
  11254. extra: 2401 / 2243,
  11255. bottom: 0.05
  11256. }
  11257. },
  11258. },
  11259. [
  11260. {
  11261. name: "Normal",
  11262. height: math.unit(3, "meters"),
  11263. default: true
  11264. },
  11265. ]
  11266. ))
  11267. characterMakers.push(() => makeCharacter(
  11268. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  11269. {
  11270. front: {
  11271. height: math.unit(14, "feet"),
  11272. weight: math.unit(800, "kg"),
  11273. name: "Front",
  11274. image: {
  11275. source: "./media/characters/theresa/front.svg",
  11276. extra: 3575 / 3346,
  11277. bottom: 0.03
  11278. }
  11279. },
  11280. },
  11281. [
  11282. {
  11283. name: "Normal",
  11284. height: math.unit(14, "feet"),
  11285. default: true
  11286. },
  11287. ]
  11288. ))
  11289. characterMakers.push(() => makeCharacter(
  11290. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  11291. {
  11292. front: {
  11293. height: math.unit(6, "feet"),
  11294. weight: math.unit(3, "kg"),
  11295. name: "Front",
  11296. image: {
  11297. source: "./media/characters/ine/front.svg",
  11298. extra: 678 / 539,
  11299. bottom: 0.023
  11300. }
  11301. },
  11302. },
  11303. [
  11304. {
  11305. name: "Normal",
  11306. height: math.unit(2.265, "feet"),
  11307. default: true
  11308. },
  11309. ]
  11310. ))
  11311. characterMakers.push(() => makeCharacter(
  11312. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11313. {
  11314. front: {
  11315. height: math.unit(5, "feet"),
  11316. weight: math.unit(30, "kg"),
  11317. name: "Front",
  11318. image: {
  11319. source: "./media/characters/vial/front.svg",
  11320. extra: 1365 / 1277,
  11321. bottom: 0.04
  11322. }
  11323. },
  11324. },
  11325. [
  11326. {
  11327. name: "Normal",
  11328. height: math.unit(5, "feet"),
  11329. default: true
  11330. },
  11331. ]
  11332. ))
  11333. characterMakers.push(() => makeCharacter(
  11334. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11335. {
  11336. side: {
  11337. height: math.unit(3.4, "meters"),
  11338. weight: math.unit(1000, "lb"),
  11339. name: "Side",
  11340. image: {
  11341. source: "./media/characters/rovoska/side.svg",
  11342. extra: 4403 / 1515
  11343. }
  11344. },
  11345. },
  11346. [
  11347. {
  11348. name: "Normal",
  11349. height: math.unit(3.4, "meters"),
  11350. default: true
  11351. },
  11352. ]
  11353. ))
  11354. characterMakers.push(() => makeCharacter(
  11355. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11356. {
  11357. front: {
  11358. height: math.unit(8, "feet"),
  11359. weight: math.unit(315, "lb"),
  11360. name: "Front",
  11361. image: {
  11362. source: "./media/characters/gunner-rotthbauer/front.svg"
  11363. }
  11364. },
  11365. back: {
  11366. height: math.unit(8, "feet"),
  11367. weight: math.unit(315, "lb"),
  11368. name: "Back",
  11369. image: {
  11370. source: "./media/characters/gunner-rotthbauer/back.svg"
  11371. }
  11372. },
  11373. },
  11374. [
  11375. {
  11376. name: "Micro",
  11377. height: math.unit(3.5, "inches")
  11378. },
  11379. {
  11380. name: "Normal",
  11381. height: math.unit(8, "feet"),
  11382. default: true
  11383. },
  11384. {
  11385. name: "Macro",
  11386. height: math.unit(250, "feet")
  11387. },
  11388. {
  11389. name: "Megamacro",
  11390. height: math.unit(1, "AU")
  11391. },
  11392. ]
  11393. ))
  11394. characterMakers.push(() => makeCharacter(
  11395. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11396. {
  11397. front: {
  11398. height: math.unit(5 + 5 / 12, "feet"),
  11399. weight: math.unit(140, "lb"),
  11400. name: "Front",
  11401. image: {
  11402. source: "./media/characters/allatia/front.svg",
  11403. extra: 1227 / 1180,
  11404. bottom: 0.027
  11405. }
  11406. },
  11407. },
  11408. [
  11409. {
  11410. name: "Normal",
  11411. height: math.unit(5 + 5 / 12, "feet")
  11412. },
  11413. {
  11414. name: "Macro",
  11415. height: math.unit(250, "feet"),
  11416. default: true
  11417. },
  11418. {
  11419. name: "Megamacro",
  11420. height: math.unit(8, "miles")
  11421. }
  11422. ]
  11423. ))
  11424. characterMakers.push(() => makeCharacter(
  11425. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11426. {
  11427. front: {
  11428. height: math.unit(6, "feet"),
  11429. weight: math.unit(120, "lb"),
  11430. name: "Front",
  11431. image: {
  11432. source: "./media/characters/tene/front.svg",
  11433. extra: 814/750,
  11434. bottom: 36/850
  11435. }
  11436. },
  11437. stomping: {
  11438. height: math.unit(2.025, "meters"),
  11439. weight: math.unit(120, "lb"),
  11440. name: "Stomping",
  11441. image: {
  11442. source: "./media/characters/tene/stomping.svg",
  11443. extra: 885/821,
  11444. bottom: 15/900
  11445. }
  11446. },
  11447. sitting: {
  11448. height: math.unit(1, "meter"),
  11449. weight: math.unit(120, "lb"),
  11450. name: "Sitting",
  11451. image: {
  11452. source: "./media/characters/tene/sitting.svg",
  11453. extra: 396/366,
  11454. bottom: 79/475
  11455. }
  11456. },
  11457. smiling: {
  11458. height: math.unit(1.2, "feet"),
  11459. name: "Smiling",
  11460. image: {
  11461. source: "./media/characters/tene/smiling.svg",
  11462. extra: 1364/1071,
  11463. bottom: 0/1364
  11464. }
  11465. },
  11466. smug: {
  11467. height: math.unit(1.3, "feet"),
  11468. name: "Smug",
  11469. image: {
  11470. source: "./media/characters/tene/smug.svg",
  11471. extra: 1323/1082,
  11472. bottom: 0/1323
  11473. }
  11474. },
  11475. feral: {
  11476. height: math.unit(3.9, "feet"),
  11477. weight: math.unit(250, "lb"),
  11478. name: "Feral",
  11479. image: {
  11480. source: "./media/characters/tene/feral.svg",
  11481. extra: 717 / 458,
  11482. bottom: 0.179
  11483. }
  11484. },
  11485. },
  11486. [
  11487. {
  11488. name: "Normal",
  11489. height: math.unit(6, "feet")
  11490. },
  11491. {
  11492. name: "Macro",
  11493. height: math.unit(300, "feet"),
  11494. default: true
  11495. },
  11496. {
  11497. name: "Megamacro",
  11498. height: math.unit(5, "miles")
  11499. },
  11500. ]
  11501. ))
  11502. characterMakers.push(() => makeCharacter(
  11503. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11504. {
  11505. side: {
  11506. height: math.unit(6, "feet"),
  11507. name: "Side",
  11508. image: {
  11509. source: "./media/characters/evander/side.svg",
  11510. extra: 877 / 477
  11511. }
  11512. },
  11513. },
  11514. [
  11515. {
  11516. name: "Normal",
  11517. height: math.unit(0.83, "meters"),
  11518. default: true
  11519. },
  11520. ]
  11521. ))
  11522. characterMakers.push(() => makeCharacter(
  11523. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11524. {
  11525. front: {
  11526. height: math.unit(12, "feet"),
  11527. weight: math.unit(1000, "lb"),
  11528. name: "Front",
  11529. image: {
  11530. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11531. extra: 1762 / 1611
  11532. }
  11533. },
  11534. back: {
  11535. height: math.unit(12, "feet"),
  11536. weight: math.unit(1000, "lb"),
  11537. name: "Back",
  11538. image: {
  11539. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11540. extra: 1762 / 1611
  11541. }
  11542. },
  11543. },
  11544. [
  11545. {
  11546. name: "Normal",
  11547. height: math.unit(12, "feet"),
  11548. default: true
  11549. },
  11550. {
  11551. name: "Kaiju",
  11552. height: math.unit(150, "feet")
  11553. },
  11554. ]
  11555. ))
  11556. characterMakers.push(() => makeCharacter(
  11557. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11558. {
  11559. front: {
  11560. height: math.unit(5 + 11/12, "feet"),
  11561. weight: math.unit(180, "lb"),
  11562. name: "Front",
  11563. image: {
  11564. source: "./media/characters/zero-alurus/front.svg",
  11565. extra: 1032/957,
  11566. bottom: 10/1042
  11567. }
  11568. },
  11569. back: {
  11570. height: math.unit(5 + 11/12, "feet"),
  11571. weight: math.unit(180, "lb"),
  11572. name: "Back",
  11573. image: {
  11574. source: "./media/characters/zero-alurus/back.svg",
  11575. extra: 1027/950,
  11576. bottom: 12/1039
  11577. }
  11578. },
  11579. },
  11580. [
  11581. {
  11582. name: "Normal",
  11583. height: math.unit(5 + 11 / 12, "feet")
  11584. },
  11585. {
  11586. name: "Mini-Macro",
  11587. height: math.unit(25, "feet")
  11588. },
  11589. {
  11590. name: "Macro",
  11591. height: math.unit(90, "feet"),
  11592. default: true
  11593. },
  11594. {
  11595. name: "Macro+",
  11596. height: math.unit(500, "feet")
  11597. },
  11598. {
  11599. name: "Megamacro",
  11600. height: math.unit(1200, "feet")
  11601. },
  11602. ]
  11603. ))
  11604. characterMakers.push(() => makeCharacter(
  11605. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11606. {
  11607. front: {
  11608. height: math.unit(6, "feet"),
  11609. weight: math.unit(200, "lb"),
  11610. name: "Front",
  11611. image: {
  11612. source: "./media/characters/mega-shi/front.svg",
  11613. extra: 1279 / 1250,
  11614. bottom: 0.02
  11615. }
  11616. },
  11617. back: {
  11618. height: math.unit(6, "feet"),
  11619. weight: math.unit(200, "lb"),
  11620. name: "Back",
  11621. image: {
  11622. source: "./media/characters/mega-shi/back.svg",
  11623. extra: 1279 / 1250,
  11624. bottom: 0.02
  11625. }
  11626. },
  11627. },
  11628. [
  11629. {
  11630. name: "Micro",
  11631. height: math.unit(16 + 6 / 12, "feet")
  11632. },
  11633. {
  11634. name: "Third Dimension",
  11635. height: math.unit(40, "meters")
  11636. },
  11637. {
  11638. name: "Normal",
  11639. height: math.unit(660, "feet"),
  11640. default: true
  11641. },
  11642. {
  11643. name: "Megamacro",
  11644. height: math.unit(10, "miles")
  11645. },
  11646. {
  11647. name: "Planetary Launch",
  11648. height: math.unit(500, "miles")
  11649. },
  11650. {
  11651. name: "Interstellar",
  11652. height: math.unit(1e9, "miles")
  11653. },
  11654. {
  11655. name: "Leaving the Universe",
  11656. height: math.unit(1, "gigaparsec")
  11657. },
  11658. {
  11659. name: "Travelling Universes",
  11660. height: math.unit(30e15, "parsecs")
  11661. },
  11662. ]
  11663. ))
  11664. characterMakers.push(() => makeCharacter(
  11665. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11666. {
  11667. front: {
  11668. height: math.unit(5 + 4/12, "feet"),
  11669. weight: math.unit(120, "lb"),
  11670. name: "Front",
  11671. image: {
  11672. source: "./media/characters/odyssey/front.svg",
  11673. extra: 1747/1571,
  11674. bottom: 47/1794
  11675. }
  11676. },
  11677. side: {
  11678. height: math.unit(5.1, "feet"),
  11679. weight: math.unit(120, "lb"),
  11680. name: "Side",
  11681. image: {
  11682. source: "./media/characters/odyssey/side.svg",
  11683. extra: 1847/1619,
  11684. bottom: 47/1894
  11685. }
  11686. },
  11687. lounging: {
  11688. height: math.unit(1.464, "feet"),
  11689. weight: math.unit(120, "lb"),
  11690. name: "Lounging",
  11691. image: {
  11692. source: "./media/characters/odyssey/lounging.svg",
  11693. extra: 1235/837,
  11694. bottom: 551/1786
  11695. }
  11696. },
  11697. },
  11698. [
  11699. {
  11700. name: "Normal",
  11701. height: math.unit(5 + 4 / 12, "feet")
  11702. },
  11703. {
  11704. name: "Macro",
  11705. height: math.unit(1, "km")
  11706. },
  11707. {
  11708. name: "Megamacro",
  11709. height: math.unit(3000, "km")
  11710. },
  11711. {
  11712. name: "Gigamacro",
  11713. height: math.unit(1, "AU"),
  11714. default: true
  11715. },
  11716. {
  11717. name: "Omniversal",
  11718. height: math.unit(100e14, "lightyears")
  11719. },
  11720. ]
  11721. ))
  11722. characterMakers.push(() => makeCharacter(
  11723. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11724. {
  11725. front: {
  11726. height: math.unit(5 + 10/12, "feet"),
  11727. name: "Front",
  11728. image: {
  11729. source: "./media/characters/mekuto/front.svg",
  11730. extra: 875/835,
  11731. bottom: 46/921
  11732. }
  11733. },
  11734. },
  11735. [
  11736. {
  11737. name: "Minimicro",
  11738. height: math.unit(0.2, "inches")
  11739. },
  11740. {
  11741. name: "Micro",
  11742. height: math.unit(1.5, "inches")
  11743. },
  11744. {
  11745. name: "Normal",
  11746. height: math.unit(5 + 10 / 12, "feet"),
  11747. default: true
  11748. },
  11749. {
  11750. name: "Minimacro",
  11751. height: math.unit(17 + 9 / 12, "feet")
  11752. },
  11753. {
  11754. name: "Macro",
  11755. height: math.unit(177.5, "feet")
  11756. },
  11757. {
  11758. name: "Megamacro",
  11759. height: math.unit(152, "miles")
  11760. },
  11761. ]
  11762. ))
  11763. characterMakers.push(() => makeCharacter(
  11764. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11765. {
  11766. front: {
  11767. height: math.unit(6.5, "inches"),
  11768. weight: math.unit(13, "oz"),
  11769. name: "Front",
  11770. image: {
  11771. source: "./media/characters/dafydd-tomos/front.svg",
  11772. extra: 2990 / 2603,
  11773. bottom: 0.03
  11774. }
  11775. },
  11776. },
  11777. [
  11778. {
  11779. name: "Micro",
  11780. height: math.unit(6.5, "inches"),
  11781. default: true
  11782. },
  11783. ]
  11784. ))
  11785. characterMakers.push(() => makeCharacter(
  11786. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11787. {
  11788. front: {
  11789. height: math.unit(6, "feet"),
  11790. weight: math.unit(150, "lb"),
  11791. name: "Front",
  11792. image: {
  11793. source: "./media/characters/splinter/front.svg",
  11794. extra: 2990 / 2882,
  11795. bottom: 0.04
  11796. }
  11797. },
  11798. back: {
  11799. height: math.unit(6, "feet"),
  11800. weight: math.unit(150, "lb"),
  11801. name: "Back",
  11802. image: {
  11803. source: "./media/characters/splinter/back.svg",
  11804. extra: 2990 / 2882,
  11805. bottom: 0.04
  11806. }
  11807. },
  11808. },
  11809. [
  11810. {
  11811. name: "Normal",
  11812. height: math.unit(6, "feet")
  11813. },
  11814. {
  11815. name: "Macro",
  11816. height: math.unit(230, "meters"),
  11817. default: true
  11818. },
  11819. ]
  11820. ))
  11821. characterMakers.push(() => makeCharacter(
  11822. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11823. {
  11824. front: {
  11825. height: math.unit(4 + 10 / 12, "feet"),
  11826. weight: math.unit(480, "lb"),
  11827. name: "Front",
  11828. image: {
  11829. source: "./media/characters/snow-gabumon/front.svg",
  11830. extra: 1140 / 963,
  11831. bottom: 0.058
  11832. }
  11833. },
  11834. back: {
  11835. height: math.unit(4 + 10 / 12, "feet"),
  11836. weight: math.unit(480, "lb"),
  11837. name: "Back",
  11838. image: {
  11839. source: "./media/characters/snow-gabumon/back.svg",
  11840. extra: 1115 / 962,
  11841. bottom: 0.041
  11842. }
  11843. },
  11844. frontUndresed: {
  11845. height: math.unit(4 + 10 / 12, "feet"),
  11846. weight: math.unit(480, "lb"),
  11847. name: "Front (Undressed)",
  11848. image: {
  11849. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11850. extra: 1061 / 960,
  11851. bottom: 0.045
  11852. }
  11853. },
  11854. },
  11855. [
  11856. {
  11857. name: "Micro",
  11858. height: math.unit(1, "inch")
  11859. },
  11860. {
  11861. name: "Normal",
  11862. height: math.unit(4 + 10 / 12, "feet"),
  11863. default: true
  11864. },
  11865. {
  11866. name: "Macro",
  11867. height: math.unit(200, "feet")
  11868. },
  11869. {
  11870. name: "Megamacro",
  11871. height: math.unit(120, "miles")
  11872. },
  11873. {
  11874. name: "Gigamacro",
  11875. height: math.unit(9800, "miles")
  11876. },
  11877. ]
  11878. ))
  11879. characterMakers.push(() => makeCharacter(
  11880. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11881. {
  11882. front: {
  11883. height: math.unit(1.7, "meters"),
  11884. weight: math.unit(140, "lb"),
  11885. name: "Front",
  11886. image: {
  11887. source: "./media/characters/moody/front.svg",
  11888. extra: 3226 / 3007,
  11889. bottom: 0.087
  11890. }
  11891. },
  11892. },
  11893. [
  11894. {
  11895. name: "Micro",
  11896. height: math.unit(1, "mm")
  11897. },
  11898. {
  11899. name: "Normal",
  11900. height: math.unit(1.7, "meters"),
  11901. default: true
  11902. },
  11903. {
  11904. name: "Macro",
  11905. height: math.unit(80, "meters")
  11906. },
  11907. {
  11908. name: "Macro+",
  11909. height: math.unit(500, "meters")
  11910. },
  11911. ]
  11912. ))
  11913. characterMakers.push(() => makeCharacter(
  11914. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11915. {
  11916. front: {
  11917. height: math.unit(6, "feet"),
  11918. weight: math.unit(150, "lb"),
  11919. name: "Front",
  11920. image: {
  11921. source: "./media/characters/zyas/front.svg",
  11922. extra: 1180 / 1120,
  11923. bottom: 0.045
  11924. }
  11925. },
  11926. },
  11927. [
  11928. {
  11929. name: "Normal",
  11930. height: math.unit(10, "feet"),
  11931. default: true
  11932. },
  11933. {
  11934. name: "Macro",
  11935. height: math.unit(500, "feet")
  11936. },
  11937. {
  11938. name: "Megamacro",
  11939. height: math.unit(5, "miles")
  11940. },
  11941. {
  11942. name: "Teramacro",
  11943. height: math.unit(150000, "miles")
  11944. },
  11945. ]
  11946. ))
  11947. characterMakers.push(() => makeCharacter(
  11948. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11949. {
  11950. front: {
  11951. height: math.unit(6, "feet"),
  11952. weight: math.unit(150, "lb"),
  11953. name: "Front",
  11954. image: {
  11955. source: "./media/characters/cuon/front.svg",
  11956. extra: 1390 / 1320,
  11957. bottom: 0.008
  11958. }
  11959. },
  11960. },
  11961. [
  11962. {
  11963. name: "Micro",
  11964. height: math.unit(3, "inches")
  11965. },
  11966. {
  11967. name: "Normal",
  11968. height: math.unit(18 + 9 / 12, "feet"),
  11969. default: true
  11970. },
  11971. {
  11972. name: "Macro",
  11973. height: math.unit(360, "feet")
  11974. },
  11975. {
  11976. name: "Megamacro",
  11977. height: math.unit(360, "miles")
  11978. },
  11979. ]
  11980. ))
  11981. characterMakers.push(() => makeCharacter(
  11982. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11983. {
  11984. front: {
  11985. height: math.unit(2.4, "meters"),
  11986. weight: math.unit(70, "kg"),
  11987. name: "Front",
  11988. image: {
  11989. source: "./media/characters/nyanuxk/front.svg",
  11990. extra: 1172 / 1084,
  11991. bottom: 0.065
  11992. }
  11993. },
  11994. side: {
  11995. height: math.unit(2.4, "meters"),
  11996. weight: math.unit(70, "kg"),
  11997. name: "Side",
  11998. image: {
  11999. source: "./media/characters/nyanuxk/side.svg",
  12000. extra: 1190 / 1132,
  12001. bottom: 0.007
  12002. }
  12003. },
  12004. back: {
  12005. height: math.unit(2.4, "meters"),
  12006. weight: math.unit(70, "kg"),
  12007. name: "Back",
  12008. image: {
  12009. source: "./media/characters/nyanuxk/back.svg",
  12010. extra: 1200 / 1141,
  12011. bottom: 0.015
  12012. }
  12013. },
  12014. foot: {
  12015. height: math.unit(0.52, "meters"),
  12016. name: "Foot",
  12017. image: {
  12018. source: "./media/characters/nyanuxk/foot.svg"
  12019. }
  12020. },
  12021. },
  12022. [
  12023. {
  12024. name: "Micro",
  12025. height: math.unit(2, "cm")
  12026. },
  12027. {
  12028. name: "Normal",
  12029. height: math.unit(2.4, "meters"),
  12030. default: true
  12031. },
  12032. {
  12033. name: "Smaller Macro",
  12034. height: math.unit(120, "meters")
  12035. },
  12036. {
  12037. name: "Bigger Macro",
  12038. height: math.unit(1.2, "km")
  12039. },
  12040. {
  12041. name: "Megamacro",
  12042. height: math.unit(15, "kilometers")
  12043. },
  12044. {
  12045. name: "Gigamacro",
  12046. height: math.unit(2000, "km")
  12047. },
  12048. {
  12049. name: "Teramacro",
  12050. height: math.unit(500000, "km")
  12051. },
  12052. ]
  12053. ))
  12054. characterMakers.push(() => makeCharacter(
  12055. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  12056. {
  12057. side: {
  12058. height: math.unit(6, "feet"),
  12059. name: "Side",
  12060. image: {
  12061. source: "./media/characters/ailbhe/side.svg",
  12062. extra: 757 / 464,
  12063. bottom: 0.041
  12064. }
  12065. },
  12066. },
  12067. [
  12068. {
  12069. name: "Normal",
  12070. height: math.unit(1.07, "meters"),
  12071. default: true
  12072. },
  12073. ]
  12074. ))
  12075. characterMakers.push(() => makeCharacter(
  12076. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  12077. {
  12078. front: {
  12079. height: math.unit(6, "feet"),
  12080. weight: math.unit(120, "kg"),
  12081. name: "Front",
  12082. image: {
  12083. source: "./media/characters/zevulfius/front.svg",
  12084. extra: 965 / 903
  12085. }
  12086. },
  12087. side: {
  12088. height: math.unit(6, "feet"),
  12089. weight: math.unit(120, "kg"),
  12090. name: "Side",
  12091. image: {
  12092. source: "./media/characters/zevulfius/side.svg",
  12093. extra: 939 / 900
  12094. }
  12095. },
  12096. back: {
  12097. height: math.unit(6, "feet"),
  12098. weight: math.unit(120, "kg"),
  12099. name: "Back",
  12100. image: {
  12101. source: "./media/characters/zevulfius/back.svg",
  12102. extra: 918 / 854,
  12103. bottom: 0.005
  12104. }
  12105. },
  12106. foot: {
  12107. height: math.unit(6 / 3.72, "feet"),
  12108. name: "Foot",
  12109. image: {
  12110. source: "./media/characters/zevulfius/foot.svg"
  12111. }
  12112. },
  12113. },
  12114. [
  12115. {
  12116. name: "Macro",
  12117. height: math.unit(750, "meters")
  12118. },
  12119. {
  12120. name: "Megamacro",
  12121. height: math.unit(20, "km"),
  12122. default: true
  12123. },
  12124. {
  12125. name: "Gigamacro",
  12126. height: math.unit(2000, "km")
  12127. },
  12128. {
  12129. name: "Teramacro",
  12130. height: math.unit(250000, "km")
  12131. },
  12132. ]
  12133. ))
  12134. characterMakers.push(() => makeCharacter(
  12135. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  12136. {
  12137. front: {
  12138. height: math.unit(100, "feet"),
  12139. weight: math.unit(350, "kg"),
  12140. name: "Front",
  12141. image: {
  12142. source: "./media/characters/rikes/front.svg",
  12143. extra: 1565 / 1483,
  12144. bottom: 0.017
  12145. }
  12146. },
  12147. },
  12148. [
  12149. {
  12150. name: "Macro",
  12151. height: math.unit(100, "feet"),
  12152. default: true
  12153. },
  12154. ]
  12155. ))
  12156. characterMakers.push(() => makeCharacter(
  12157. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  12158. {
  12159. front: {
  12160. height: math.unit(8, "feet"),
  12161. weight: math.unit(356, "lb"),
  12162. name: "Front",
  12163. image: {
  12164. source: "./media/characters/adam-silver-mane/front.svg",
  12165. extra: 1036/937,
  12166. bottom: 63/1099
  12167. }
  12168. },
  12169. side: {
  12170. height: math.unit(8, "feet"),
  12171. weight: math.unit(356, "lb"),
  12172. name: "Side",
  12173. image: {
  12174. source: "./media/characters/adam-silver-mane/side.svg",
  12175. extra: 997/901,
  12176. bottom: 59/1056
  12177. }
  12178. },
  12179. frontNsfw: {
  12180. height: math.unit(8, "feet"),
  12181. weight: math.unit(356, "lb"),
  12182. name: "Front (NSFW)",
  12183. image: {
  12184. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  12185. extra: 1036/937,
  12186. bottom: 63/1099
  12187. }
  12188. },
  12189. sideNsfw: {
  12190. height: math.unit(8, "feet"),
  12191. weight: math.unit(356, "lb"),
  12192. name: "Side (NSFW)",
  12193. image: {
  12194. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  12195. extra: 997/901,
  12196. bottom: 59/1056
  12197. }
  12198. },
  12199. dick: {
  12200. height: math.unit(2.1, "feet"),
  12201. name: "Dick",
  12202. image: {
  12203. source: "./media/characters/adam-silver-mane/dick.svg"
  12204. }
  12205. },
  12206. taur: {
  12207. height: math.unit(16, "feet"),
  12208. weight: math.unit(1500, "kg"),
  12209. name: "Taur",
  12210. image: {
  12211. source: "./media/characters/adam-silver-mane/taur.svg",
  12212. extra: 1713 / 1571,
  12213. bottom: 0.01
  12214. }
  12215. },
  12216. },
  12217. [
  12218. {
  12219. name: "Normal",
  12220. height: math.unit(8, "feet")
  12221. },
  12222. {
  12223. name: "Minimacro",
  12224. height: math.unit(80, "feet")
  12225. },
  12226. {
  12227. name: "MDA",
  12228. height: math.unit(80, "meters")
  12229. },
  12230. {
  12231. name: "Macro",
  12232. height: math.unit(800, "feet"),
  12233. default: true
  12234. },
  12235. {
  12236. name: "Megamacro",
  12237. height: math.unit(8000, "feet")
  12238. },
  12239. {
  12240. name: "Gigamacro",
  12241. height: math.unit(800, "miles")
  12242. },
  12243. {
  12244. name: "Teramacro",
  12245. height: math.unit(80000, "miles")
  12246. },
  12247. {
  12248. name: "Celestial",
  12249. height: math.unit(8e6, "miles")
  12250. },
  12251. {
  12252. name: "Star Dragon",
  12253. height: math.unit(800000, "parsecs")
  12254. },
  12255. {
  12256. name: "Godly",
  12257. height: math.unit(800, "teraparsecs")
  12258. },
  12259. ]
  12260. ))
  12261. characterMakers.push(() => makeCharacter(
  12262. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  12263. {
  12264. front: {
  12265. height: math.unit(6, "feet"),
  12266. weight: math.unit(150, "lb"),
  12267. name: "Front",
  12268. image: {
  12269. source: "./media/characters/ky'owin/front.svg",
  12270. extra: 3862/3053,
  12271. bottom: 74/3936
  12272. }
  12273. },
  12274. },
  12275. [
  12276. {
  12277. name: "Normal",
  12278. height: math.unit(6 + 8 / 12, "feet")
  12279. },
  12280. {
  12281. name: "Large",
  12282. height: math.unit(68, "feet")
  12283. },
  12284. {
  12285. name: "Macro",
  12286. height: math.unit(132, "feet")
  12287. },
  12288. {
  12289. name: "Macro+",
  12290. height: math.unit(340, "feet")
  12291. },
  12292. {
  12293. name: "Macro++",
  12294. height: math.unit(680, "feet"),
  12295. default: true
  12296. },
  12297. {
  12298. name: "Megamacro",
  12299. height: math.unit(1, "mile")
  12300. },
  12301. {
  12302. name: "Megamacro+",
  12303. height: math.unit(10, "miles")
  12304. },
  12305. ]
  12306. ))
  12307. characterMakers.push(() => makeCharacter(
  12308. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12309. {
  12310. front: {
  12311. height: math.unit(4, "feet"),
  12312. weight: math.unit(50, "lb"),
  12313. name: "Front",
  12314. image: {
  12315. source: "./media/characters/mal/front.svg",
  12316. extra: 785 / 724,
  12317. bottom: 0.07
  12318. }
  12319. },
  12320. },
  12321. [
  12322. {
  12323. name: "Micro",
  12324. height: math.unit(4, "inches")
  12325. },
  12326. {
  12327. name: "Normal",
  12328. height: math.unit(4, "feet"),
  12329. default: true
  12330. },
  12331. {
  12332. name: "Macro",
  12333. height: math.unit(200, "feet")
  12334. },
  12335. ]
  12336. ))
  12337. characterMakers.push(() => makeCharacter(
  12338. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12339. {
  12340. front: {
  12341. height: math.unit(6, "feet"),
  12342. weight: math.unit(150, "lb"),
  12343. name: "Front",
  12344. image: {
  12345. source: "./media/characters/jordan-deware/front.svg",
  12346. extra: 1191 / 1012
  12347. }
  12348. },
  12349. },
  12350. [
  12351. {
  12352. name: "Nano",
  12353. height: math.unit(0.01, "mm")
  12354. },
  12355. {
  12356. name: "Minimicro",
  12357. height: math.unit(1, "mm")
  12358. },
  12359. {
  12360. name: "Micro",
  12361. height: math.unit(0.5, "inches")
  12362. },
  12363. {
  12364. name: "Normal",
  12365. height: math.unit(4, "feet"),
  12366. default: true
  12367. },
  12368. {
  12369. name: "Minimacro",
  12370. height: math.unit(40, "meters")
  12371. },
  12372. {
  12373. name: "Small Macro",
  12374. height: math.unit(400, "meters")
  12375. },
  12376. {
  12377. name: "Macro",
  12378. height: math.unit(4, "miles")
  12379. },
  12380. {
  12381. name: "Megamacro",
  12382. height: math.unit(40, "miles")
  12383. },
  12384. {
  12385. name: "Megamacro+",
  12386. height: math.unit(400, "miles")
  12387. },
  12388. {
  12389. name: "Gigamacro",
  12390. height: math.unit(400000, "miles")
  12391. },
  12392. ]
  12393. ))
  12394. characterMakers.push(() => makeCharacter(
  12395. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12396. {
  12397. front: {
  12398. height: math.unit(15, "feet"),
  12399. weight: math.unit(3000, "kg"),
  12400. preyCapacity: math.unit(450, "people"),
  12401. name: "Front",
  12402. image: {
  12403. source: "./media/characters/kimiko/front.svg",
  12404. extra: 875/832,
  12405. bottom: 36/911
  12406. },
  12407. extraAttributes: {
  12408. "pawSize": {
  12409. name: "Paw Size",
  12410. power: 1,
  12411. type: "length",
  12412. base: math.unit(0.9, "meters")
  12413. },
  12414. }
  12415. },
  12416. side: {
  12417. height: math.unit(15, "feet"),
  12418. weight: math.unit(3000, "kg"),
  12419. preyCapacity: math.unit(400, "people"),
  12420. name: "Side",
  12421. image: {
  12422. source: "./media/characters/kimiko/side.svg",
  12423. extra: 448/270,
  12424. bottom: 7/455
  12425. },
  12426. extraAttributes: {
  12427. "pawSize": {
  12428. name: "Paw Size",
  12429. power: 1,
  12430. type: "length",
  12431. base: math.unit(0.9, "meters")
  12432. },
  12433. }
  12434. },
  12435. maw: {
  12436. height: math.unit(0.81, "feet"),
  12437. name: "Maw",
  12438. image: {
  12439. source: "./media/characters/kimiko/maw.svg"
  12440. }
  12441. },
  12442. },
  12443. [
  12444. {
  12445. name: "Normal",
  12446. height: math.unit(15, "feet"),
  12447. default: true
  12448. },
  12449. {
  12450. name: "Macro",
  12451. height: math.unit(220, "feet")
  12452. },
  12453. {
  12454. name: "Macro+",
  12455. height: math.unit(1450, "feet")
  12456. },
  12457. {
  12458. name: "Megamacro",
  12459. height: math.unit(11500, "feet")
  12460. },
  12461. {
  12462. name: "Gigamacro",
  12463. height: math.unit(9500, "miles")
  12464. },
  12465. {
  12466. name: "Teramacro",
  12467. height: math.unit(2208005005, "miles")
  12468. },
  12469. {
  12470. name: "Examacro",
  12471. height: math.unit(2750, "parsecs")
  12472. },
  12473. {
  12474. name: "Zettamacro",
  12475. height: math.unit(101500, "parsecs")
  12476. },
  12477. ]
  12478. ))
  12479. characterMakers.push(() => makeCharacter(
  12480. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12481. {
  12482. front: {
  12483. height: math.unit(6, "feet"),
  12484. weight: math.unit(70, "kg"),
  12485. name: "Front",
  12486. image: {
  12487. source: "./media/characters/andrew-sleepy/front.svg"
  12488. }
  12489. },
  12490. side: {
  12491. height: math.unit(6, "feet"),
  12492. weight: math.unit(70, "kg"),
  12493. name: "Side",
  12494. image: {
  12495. source: "./media/characters/andrew-sleepy/side.svg"
  12496. }
  12497. },
  12498. },
  12499. [
  12500. {
  12501. name: "Micro",
  12502. height: math.unit(1, "mm"),
  12503. default: true
  12504. },
  12505. ]
  12506. ))
  12507. characterMakers.push(() => makeCharacter(
  12508. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12509. {
  12510. front: {
  12511. height: math.unit(6, "feet"),
  12512. weight: math.unit(150, "lb"),
  12513. name: "Front",
  12514. image: {
  12515. source: "./media/characters/judio/front.svg",
  12516. extra: 1258 / 1110
  12517. }
  12518. },
  12519. },
  12520. [
  12521. {
  12522. name: "Normal",
  12523. height: math.unit(5 + 6 / 12, "feet")
  12524. },
  12525. {
  12526. name: "Macro",
  12527. height: math.unit(1000, "feet"),
  12528. default: true
  12529. },
  12530. {
  12531. name: "Megamacro",
  12532. height: math.unit(10, "miles")
  12533. },
  12534. ]
  12535. ))
  12536. characterMakers.push(() => makeCharacter(
  12537. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12538. {
  12539. frontDressed: {
  12540. height: math.unit(6, "feet"),
  12541. weight: math.unit(68, "kg"),
  12542. name: "Front (Dressed)",
  12543. image: {
  12544. source: "./media/characters/nomaxice/front-dressed.svg",
  12545. extra: 1137/824,
  12546. bottom: 74/1211
  12547. }
  12548. },
  12549. frontShorts: {
  12550. height: math.unit(6, "feet"),
  12551. weight: math.unit(68, "kg"),
  12552. name: "Front (Shorts)",
  12553. image: {
  12554. source: "./media/characters/nomaxice/front-shorts.svg",
  12555. extra: 1137/824,
  12556. bottom: 74/1211
  12557. }
  12558. },
  12559. back: {
  12560. height: math.unit(6, "feet"),
  12561. weight: math.unit(68, "kg"),
  12562. name: "Back",
  12563. image: {
  12564. source: "./media/characters/nomaxice/back.svg",
  12565. extra: 822/786,
  12566. bottom: 39/861
  12567. }
  12568. },
  12569. hand: {
  12570. height: math.unit(0.565, "feet"),
  12571. name: "Hand",
  12572. image: {
  12573. source: "./media/characters/nomaxice/hand.svg"
  12574. }
  12575. },
  12576. foot: {
  12577. height: math.unit(1, "feet"),
  12578. name: "Foot",
  12579. image: {
  12580. source: "./media/characters/nomaxice/foot.svg"
  12581. }
  12582. },
  12583. },
  12584. [
  12585. {
  12586. name: "Micro",
  12587. height: math.unit(8, "cm")
  12588. },
  12589. {
  12590. name: "Norm",
  12591. height: math.unit(1.82, "m")
  12592. },
  12593. {
  12594. name: "Norm+",
  12595. height: math.unit(8.8, "feet"),
  12596. default: true
  12597. },
  12598. {
  12599. name: "Big",
  12600. height: math.unit(8, "meters")
  12601. },
  12602. {
  12603. name: "Macro",
  12604. height: math.unit(18, "meters")
  12605. },
  12606. {
  12607. name: "Macro+",
  12608. height: math.unit(88, "meters")
  12609. },
  12610. ]
  12611. ))
  12612. characterMakers.push(() => makeCharacter(
  12613. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12614. {
  12615. front: {
  12616. height: math.unit(12, "feet"),
  12617. weight: math.unit(1.5, "tons"),
  12618. name: "Front",
  12619. image: {
  12620. source: "./media/characters/dydros/front.svg",
  12621. extra: 863 / 800,
  12622. bottom: 0.015
  12623. }
  12624. },
  12625. back: {
  12626. height: math.unit(12, "feet"),
  12627. weight: math.unit(1.5, "tons"),
  12628. name: "Back",
  12629. image: {
  12630. source: "./media/characters/dydros/back.svg",
  12631. extra: 900 / 843,
  12632. bottom: 0.005
  12633. }
  12634. },
  12635. },
  12636. [
  12637. {
  12638. name: "Normal",
  12639. height: math.unit(12, "feet"),
  12640. default: true
  12641. },
  12642. ]
  12643. ))
  12644. characterMakers.push(() => makeCharacter(
  12645. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12646. {
  12647. front: {
  12648. height: math.unit(6, "feet"),
  12649. weight: math.unit(100, "kg"),
  12650. name: "Front",
  12651. image: {
  12652. source: "./media/characters/riggi/front.svg",
  12653. extra: 5787 / 5303
  12654. }
  12655. },
  12656. hyper: {
  12657. height: math.unit(6 * 5 / 3, "feet"),
  12658. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12659. name: "Hyper",
  12660. image: {
  12661. source: "./media/characters/riggi/hyper.svg",
  12662. extra: 3595 / 3485
  12663. }
  12664. },
  12665. },
  12666. [
  12667. {
  12668. name: "Small Macro",
  12669. height: math.unit(50, "feet")
  12670. },
  12671. {
  12672. name: "Default",
  12673. height: math.unit(200, "feet"),
  12674. default: true
  12675. },
  12676. {
  12677. name: "Loom",
  12678. height: math.unit(10000, "feet")
  12679. },
  12680. {
  12681. name: "Cruising Altitude",
  12682. height: math.unit(30000, "feet")
  12683. },
  12684. {
  12685. name: "Megamacro",
  12686. height: math.unit(100, "miles")
  12687. },
  12688. {
  12689. name: "Continent Sized",
  12690. height: math.unit(2800, "miles")
  12691. },
  12692. {
  12693. name: "Earth Sized",
  12694. height: math.unit(8000, "miles")
  12695. },
  12696. ]
  12697. ))
  12698. characterMakers.push(() => makeCharacter(
  12699. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12700. {
  12701. front: {
  12702. height: math.unit(6, "feet"),
  12703. weight: math.unit(250, "lb"),
  12704. name: "Front",
  12705. image: {
  12706. source: "./media/characters/alexi/front.svg",
  12707. extra: 3483 / 3291,
  12708. bottom: 0.04
  12709. }
  12710. },
  12711. back: {
  12712. height: math.unit(6, "feet"),
  12713. weight: math.unit(250, "lb"),
  12714. name: "Back",
  12715. image: {
  12716. source: "./media/characters/alexi/back.svg",
  12717. extra: 3533 / 3356,
  12718. bottom: 0.021
  12719. }
  12720. },
  12721. frontTransforming: {
  12722. height: math.unit(8.58, "feet"),
  12723. weight: math.unit(1300, "lb"),
  12724. name: "Transforming",
  12725. image: {
  12726. source: "./media/characters/alexi/front-transforming.svg",
  12727. extra: 437 / 409,
  12728. bottom: 19 / 458.66
  12729. }
  12730. },
  12731. frontTransformed: {
  12732. height: math.unit(12.5, "feet"),
  12733. weight: math.unit(4000, "lb"),
  12734. name: "Transformed",
  12735. image: {
  12736. source: "./media/characters/alexi/front-transformed.svg",
  12737. extra: 639 / 614,
  12738. bottom: 30.55 / 671
  12739. }
  12740. },
  12741. },
  12742. [
  12743. {
  12744. name: "Normal",
  12745. height: math.unit(14, "feet"),
  12746. default: true
  12747. },
  12748. {
  12749. name: "Minimacro",
  12750. height: math.unit(30, "meters")
  12751. },
  12752. {
  12753. name: "Macro",
  12754. height: math.unit(500, "meters")
  12755. },
  12756. {
  12757. name: "Megamacro",
  12758. height: math.unit(9000, "km")
  12759. },
  12760. {
  12761. name: "Teramacro",
  12762. height: math.unit(384000, "km")
  12763. },
  12764. ]
  12765. ))
  12766. characterMakers.push(() => makeCharacter(
  12767. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12768. {
  12769. front: {
  12770. height: math.unit(6, "feet"),
  12771. weight: math.unit(150, "lb"),
  12772. name: "Front",
  12773. image: {
  12774. source: "./media/characters/kayroo/front.svg",
  12775. extra: 1153 / 1038,
  12776. bottom: 0.06
  12777. }
  12778. },
  12779. foot: {
  12780. height: math.unit(6, "feet"),
  12781. weight: math.unit(150, "lb"),
  12782. name: "Foot",
  12783. image: {
  12784. source: "./media/characters/kayroo/foot.svg"
  12785. }
  12786. },
  12787. },
  12788. [
  12789. {
  12790. name: "Normal",
  12791. height: math.unit(8, "feet"),
  12792. default: true
  12793. },
  12794. {
  12795. name: "Minimacro",
  12796. height: math.unit(250, "feet")
  12797. },
  12798. {
  12799. name: "Macro",
  12800. height: math.unit(2800, "feet")
  12801. },
  12802. {
  12803. name: "Megamacro",
  12804. height: math.unit(5200, "feet")
  12805. },
  12806. {
  12807. name: "Gigamacro",
  12808. height: math.unit(27000, "feet")
  12809. },
  12810. {
  12811. name: "Omega",
  12812. height: math.unit(45000, "feet")
  12813. },
  12814. ]
  12815. ))
  12816. characterMakers.push(() => makeCharacter(
  12817. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12818. {
  12819. front: {
  12820. height: math.unit(18, "feet"),
  12821. weight: math.unit(5800, "lb"),
  12822. name: "Front",
  12823. image: {
  12824. source: "./media/characters/rhys/front.svg",
  12825. extra: 3386 / 3090,
  12826. bottom: 0.07
  12827. }
  12828. },
  12829. },
  12830. [
  12831. {
  12832. name: "Normal",
  12833. height: math.unit(18, "feet"),
  12834. default: true
  12835. },
  12836. {
  12837. name: "Working Size",
  12838. height: math.unit(200, "feet")
  12839. },
  12840. {
  12841. name: "Demolition Size",
  12842. height: math.unit(2000, "feet")
  12843. },
  12844. {
  12845. name: "Maximum Licensed Size",
  12846. height: math.unit(5, "miles")
  12847. },
  12848. {
  12849. name: "Maximum Observed Size",
  12850. height: math.unit(10, "yottameters")
  12851. },
  12852. ]
  12853. ))
  12854. characterMakers.push(() => makeCharacter(
  12855. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12856. {
  12857. front: {
  12858. height: math.unit(6, "feet"),
  12859. weight: math.unit(250, "lb"),
  12860. name: "Front",
  12861. image: {
  12862. source: "./media/characters/toto/front.svg",
  12863. extra: 527 / 479,
  12864. bottom: 0.05
  12865. }
  12866. },
  12867. },
  12868. [
  12869. {
  12870. name: "Micro",
  12871. height: math.unit(3, "feet")
  12872. },
  12873. {
  12874. name: "Normal",
  12875. height: math.unit(10, "feet")
  12876. },
  12877. {
  12878. name: "Macro",
  12879. height: math.unit(150, "feet"),
  12880. default: true
  12881. },
  12882. {
  12883. name: "Megamacro",
  12884. height: math.unit(1200, "feet")
  12885. },
  12886. ]
  12887. ))
  12888. characterMakers.push(() => makeCharacter(
  12889. { name: "King", species: ["lion"], tags: ["anthro"] },
  12890. {
  12891. back: {
  12892. height: math.unit(6, "feet"),
  12893. weight: math.unit(150, "lb"),
  12894. name: "Back",
  12895. image: {
  12896. source: "./media/characters/king/back.svg"
  12897. }
  12898. },
  12899. },
  12900. [
  12901. {
  12902. name: "Micro",
  12903. height: math.unit(2, "inches")
  12904. },
  12905. {
  12906. name: "Normal",
  12907. height: math.unit(8, "feet")
  12908. },
  12909. {
  12910. name: "Macro",
  12911. height: math.unit(200, "feet"),
  12912. default: true
  12913. },
  12914. {
  12915. name: "Megamacro",
  12916. height: math.unit(50, "miles")
  12917. },
  12918. ]
  12919. ))
  12920. characterMakers.push(() => makeCharacter(
  12921. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12922. {
  12923. front: {
  12924. height: math.unit(11, "feet"),
  12925. weight: math.unit(1400, "lb"),
  12926. name: "Front",
  12927. image: {
  12928. source: "./media/characters/cordite/front.svg",
  12929. extra: 1919/1827,
  12930. bottom: 40/1959
  12931. }
  12932. },
  12933. side: {
  12934. height: math.unit(11, "feet"),
  12935. weight: math.unit(1400, "lb"),
  12936. name: "Side",
  12937. image: {
  12938. source: "./media/characters/cordite/side.svg",
  12939. extra: 1908/1793,
  12940. bottom: 38/1946
  12941. }
  12942. },
  12943. back: {
  12944. height: math.unit(11, "feet"),
  12945. weight: math.unit(1400, "lb"),
  12946. name: "Back",
  12947. image: {
  12948. source: "./media/characters/cordite/back.svg",
  12949. extra: 1938/1837,
  12950. bottom: 10/1948
  12951. }
  12952. },
  12953. feral: {
  12954. height: math.unit(2, "feet"),
  12955. weight: math.unit(90, "lb"),
  12956. name: "Feral",
  12957. image: {
  12958. source: "./media/characters/cordite/feral.svg",
  12959. extra: 1260 / 755,
  12960. bottom: 0.05
  12961. }
  12962. },
  12963. },
  12964. [
  12965. {
  12966. name: "Normal",
  12967. height: math.unit(11, "feet"),
  12968. default: true
  12969. },
  12970. ]
  12971. ))
  12972. characterMakers.push(() => makeCharacter(
  12973. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12974. {
  12975. front: {
  12976. height: math.unit(6, "feet"),
  12977. weight: math.unit(150, "lb"),
  12978. name: "Front",
  12979. image: {
  12980. source: "./media/characters/pianostrong/front.svg",
  12981. extra: 6577 / 6254,
  12982. bottom: 0.02
  12983. }
  12984. },
  12985. side: {
  12986. height: math.unit(6, "feet"),
  12987. weight: math.unit(150, "lb"),
  12988. name: "Side",
  12989. image: {
  12990. source: "./media/characters/pianostrong/side.svg",
  12991. extra: 6106 / 5730
  12992. }
  12993. },
  12994. back: {
  12995. height: math.unit(6, "feet"),
  12996. weight: math.unit(150, "lb"),
  12997. name: "Back",
  12998. image: {
  12999. source: "./media/characters/pianostrong/back.svg",
  13000. extra: 6085 / 5733,
  13001. bottom: 0.01
  13002. }
  13003. },
  13004. },
  13005. [
  13006. {
  13007. name: "Macro",
  13008. height: math.unit(100, "feet")
  13009. },
  13010. {
  13011. name: "Macro+",
  13012. height: math.unit(300, "feet"),
  13013. default: true
  13014. },
  13015. {
  13016. name: "Macro++",
  13017. height: math.unit(1000, "feet")
  13018. },
  13019. ]
  13020. ))
  13021. characterMakers.push(() => makeCharacter(
  13022. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  13023. {
  13024. front: {
  13025. height: math.unit(6, "feet"),
  13026. weight: math.unit(150, "lb"),
  13027. name: "Front",
  13028. image: {
  13029. source: "./media/characters/kona/front.svg",
  13030. extra: 2960 / 2629,
  13031. bottom: 0.005
  13032. }
  13033. },
  13034. },
  13035. [
  13036. {
  13037. name: "Normal",
  13038. height: math.unit(11 + 8 / 12, "feet")
  13039. },
  13040. {
  13041. name: "Macro",
  13042. height: math.unit(850, "feet"),
  13043. default: true
  13044. },
  13045. {
  13046. name: "Macro+",
  13047. height: math.unit(1.5, "km"),
  13048. default: true
  13049. },
  13050. {
  13051. name: "Megamacro",
  13052. height: math.unit(80, "miles")
  13053. },
  13054. {
  13055. name: "Gigamacro",
  13056. height: math.unit(3500, "miles")
  13057. },
  13058. ]
  13059. ))
  13060. characterMakers.push(() => makeCharacter(
  13061. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  13062. {
  13063. side: {
  13064. height: math.unit(1.9, "meters"),
  13065. weight: math.unit(326, "kg"),
  13066. name: "Side",
  13067. image: {
  13068. source: "./media/characters/levi/side.svg",
  13069. extra: 1704 / 1334,
  13070. bottom: 0.02
  13071. }
  13072. },
  13073. },
  13074. [
  13075. {
  13076. name: "Normal",
  13077. height: math.unit(1.9, "meters"),
  13078. default: true
  13079. },
  13080. {
  13081. name: "Macro",
  13082. height: math.unit(20, "meters")
  13083. },
  13084. {
  13085. name: "Macro+",
  13086. height: math.unit(200, "meters")
  13087. },
  13088. {
  13089. name: "Megamacro",
  13090. height: math.unit(2, "km")
  13091. },
  13092. {
  13093. name: "Megamacro+",
  13094. height: math.unit(20, "km")
  13095. },
  13096. {
  13097. name: "Gigamacro",
  13098. height: math.unit(2500, "km")
  13099. },
  13100. {
  13101. name: "Gigamacro+",
  13102. height: math.unit(120000, "km")
  13103. },
  13104. {
  13105. name: "Teramacro",
  13106. height: math.unit(7.77e6, "km")
  13107. },
  13108. ]
  13109. ))
  13110. characterMakers.push(() => makeCharacter(
  13111. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  13112. {
  13113. front: {
  13114. height: math.unit(6 + 4/12, "feet"),
  13115. weight: math.unit(190, "lb"),
  13116. name: "Front",
  13117. image: {
  13118. source: "./media/characters/bmc/front.svg",
  13119. extra: 1626/1472,
  13120. bottom: 79/1705
  13121. }
  13122. },
  13123. back: {
  13124. height: math.unit(6 + 4/12, "feet"),
  13125. weight: math.unit(190, "lb"),
  13126. name: "Back",
  13127. image: {
  13128. source: "./media/characters/bmc/back.svg",
  13129. extra: 1640/1479,
  13130. bottom: 45/1685
  13131. }
  13132. },
  13133. frontArmor: {
  13134. height: math.unit(6 + 4/12, "feet"),
  13135. weight: math.unit(190, "lb"),
  13136. name: "Front-armor",
  13137. image: {
  13138. source: "./media/characters/bmc/front-armor.svg",
  13139. extra: 1538/1468,
  13140. bottom: 79/1617
  13141. }
  13142. },
  13143. },
  13144. [
  13145. {
  13146. name: "Human-sized",
  13147. height: math.unit(6 + 4 / 12, "feet")
  13148. },
  13149. {
  13150. name: "Interactive Size",
  13151. height: math.unit(25, "feet")
  13152. },
  13153. {
  13154. name: "Small",
  13155. height: math.unit(250, "feet")
  13156. },
  13157. {
  13158. name: "Normal",
  13159. height: math.unit(1250, "feet"),
  13160. default: true
  13161. },
  13162. {
  13163. name: "Good Day",
  13164. height: math.unit(88, "miles")
  13165. },
  13166. {
  13167. name: "Largest Measured Size",
  13168. height: math.unit(105.960, "galaxies")
  13169. },
  13170. ]
  13171. ))
  13172. characterMakers.push(() => makeCharacter(
  13173. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  13174. {
  13175. front: {
  13176. height: math.unit(20, "feet"),
  13177. weight: math.unit(2016, "kg"),
  13178. name: "Front",
  13179. image: {
  13180. source: "./media/characters/sven-the-kaiju/front.svg",
  13181. extra: 1277/1250,
  13182. bottom: 35/1312
  13183. }
  13184. },
  13185. mouth: {
  13186. height: math.unit(1.85, "feet"),
  13187. name: "Mouth",
  13188. image: {
  13189. source: "./media/characters/sven-the-kaiju/mouth.svg"
  13190. }
  13191. },
  13192. },
  13193. [
  13194. {
  13195. name: "Fairy",
  13196. height: math.unit(6, "inches")
  13197. },
  13198. {
  13199. name: "Normal",
  13200. height: math.unit(20, "feet"),
  13201. default: true
  13202. },
  13203. {
  13204. name: "Rampage",
  13205. height: math.unit(200, "feet")
  13206. },
  13207. {
  13208. name: "Archfey Forest Guardian",
  13209. height: math.unit(1, "mile")
  13210. },
  13211. ]
  13212. ))
  13213. characterMakers.push(() => makeCharacter(
  13214. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  13215. {
  13216. front: {
  13217. height: math.unit(4, "meters"),
  13218. weight: math.unit(2, "tons"),
  13219. name: "Front",
  13220. image: {
  13221. source: "./media/characters/marik/front.svg",
  13222. extra: 1057 / 1003,
  13223. bottom: 0.08
  13224. }
  13225. },
  13226. },
  13227. [
  13228. {
  13229. name: "Normal",
  13230. height: math.unit(4, "meters"),
  13231. default: true
  13232. },
  13233. {
  13234. name: "Macro",
  13235. height: math.unit(20, "meters")
  13236. },
  13237. {
  13238. name: "Megamacro",
  13239. height: math.unit(50, "km")
  13240. },
  13241. {
  13242. name: "Gigamacro",
  13243. height: math.unit(100, "km")
  13244. },
  13245. {
  13246. name: "Alpha Macro",
  13247. height: math.unit(7.88e7, "yottameters")
  13248. },
  13249. ]
  13250. ))
  13251. characterMakers.push(() => makeCharacter(
  13252. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  13253. {
  13254. front: {
  13255. height: math.unit(6, "feet"),
  13256. weight: math.unit(110, "lb"),
  13257. name: "Front",
  13258. image: {
  13259. source: "./media/characters/mel/front.svg",
  13260. extra: 736 / 617,
  13261. bottom: 0.017
  13262. }
  13263. },
  13264. },
  13265. [
  13266. {
  13267. name: "Pico",
  13268. height: math.unit(3, "pm")
  13269. },
  13270. {
  13271. name: "Nano",
  13272. height: math.unit(3, "nm")
  13273. },
  13274. {
  13275. name: "Micro",
  13276. height: math.unit(0.3, "mm"),
  13277. default: true
  13278. },
  13279. {
  13280. name: "Micro+",
  13281. height: math.unit(3, "mm")
  13282. },
  13283. {
  13284. name: "Normal",
  13285. height: math.unit(5 + 10.5 / 12, "feet")
  13286. },
  13287. ]
  13288. ))
  13289. characterMakers.push(() => makeCharacter(
  13290. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  13291. {
  13292. kaiju: {
  13293. height: math.unit(1.75, "meters"),
  13294. weight: math.unit(55, "kg"),
  13295. name: "Kaiju",
  13296. image: {
  13297. source: "./media/characters/lykonous/kaiju.svg",
  13298. extra: 1055 / 946,
  13299. bottom: 0.135
  13300. }
  13301. },
  13302. },
  13303. [
  13304. {
  13305. name: "Normal",
  13306. height: math.unit(2.5, "meters"),
  13307. default: true
  13308. },
  13309. {
  13310. name: "Kaiju Dragon",
  13311. height: math.unit(60, "meters")
  13312. },
  13313. {
  13314. name: "Mega Kaiju",
  13315. height: math.unit(120, "km")
  13316. },
  13317. {
  13318. name: "Giga Kaiju",
  13319. height: math.unit(200, "megameters")
  13320. },
  13321. {
  13322. name: "Terra Kaiju",
  13323. height: math.unit(400, "gigameters")
  13324. },
  13325. {
  13326. name: "Kaiju Dragon God",
  13327. height: math.unit(13000, "exaparsecs")
  13328. },
  13329. ]
  13330. ))
  13331. characterMakers.push(() => makeCharacter(
  13332. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  13333. {
  13334. front: {
  13335. height: math.unit(6, "feet"),
  13336. weight: math.unit(150, "lb"),
  13337. name: "Front",
  13338. image: {
  13339. source: "./media/characters/blü/front.svg",
  13340. extra: 1883 / 1564,
  13341. bottom: 0.031
  13342. }
  13343. },
  13344. },
  13345. [
  13346. {
  13347. name: "Normal",
  13348. height: math.unit(13, "feet"),
  13349. default: true
  13350. },
  13351. {
  13352. name: "Big Boi",
  13353. height: math.unit(150, "meters")
  13354. },
  13355. {
  13356. name: "Mini Stomper",
  13357. height: math.unit(300, "meters")
  13358. },
  13359. {
  13360. name: "Macro",
  13361. height: math.unit(1000, "meters")
  13362. },
  13363. {
  13364. name: "Megamacro",
  13365. height: math.unit(11000, "meters")
  13366. },
  13367. {
  13368. name: "Gigamacro",
  13369. height: math.unit(11000, "km")
  13370. },
  13371. {
  13372. name: "Teramacro",
  13373. height: math.unit(420000, "km")
  13374. },
  13375. {
  13376. name: "Examacro",
  13377. height: math.unit(120, "parsecs")
  13378. },
  13379. {
  13380. name: "God Tho",
  13381. height: math.unit(98000000000, "parsecs")
  13382. },
  13383. ]
  13384. ))
  13385. characterMakers.push(() => makeCharacter(
  13386. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13387. {
  13388. taurFront: {
  13389. height: math.unit(6, "feet"),
  13390. weight: math.unit(200, "lb"),
  13391. name: "Taur (Front)",
  13392. image: {
  13393. source: "./media/characters/scales/taur-front.svg",
  13394. extra: 1,
  13395. bottom: 0.05
  13396. }
  13397. },
  13398. taurBack: {
  13399. height: math.unit(6, "feet"),
  13400. weight: math.unit(200, "lb"),
  13401. name: "Taur (Back)",
  13402. image: {
  13403. source: "./media/characters/scales/taur-back.svg",
  13404. extra: 1,
  13405. bottom: 0.08
  13406. }
  13407. },
  13408. anthro: {
  13409. height: math.unit(6 * 7 / 12, "feet"),
  13410. weight: math.unit(100, "lb"),
  13411. name: "Anthro",
  13412. image: {
  13413. source: "./media/characters/scales/anthro.svg",
  13414. extra: 1,
  13415. bottom: 0.06
  13416. }
  13417. },
  13418. },
  13419. [
  13420. {
  13421. name: "Normal",
  13422. height: math.unit(12, "feet"),
  13423. default: true
  13424. },
  13425. ]
  13426. ))
  13427. characterMakers.push(() => makeCharacter(
  13428. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13429. {
  13430. front: {
  13431. height: math.unit(6, "feet"),
  13432. weight: math.unit(150, "lb"),
  13433. name: "Front",
  13434. image: {
  13435. source: "./media/characters/koragos/front.svg",
  13436. extra: 841 / 794,
  13437. bottom: 0.035
  13438. }
  13439. },
  13440. back: {
  13441. height: math.unit(6, "feet"),
  13442. weight: math.unit(150, "lb"),
  13443. name: "Back",
  13444. image: {
  13445. source: "./media/characters/koragos/back.svg",
  13446. extra: 841 / 810,
  13447. bottom: 0.022
  13448. }
  13449. },
  13450. },
  13451. [
  13452. {
  13453. name: "Normal",
  13454. height: math.unit(6 + 11 / 12, "feet"),
  13455. default: true
  13456. },
  13457. {
  13458. name: "Macro",
  13459. height: math.unit(490, "feet")
  13460. },
  13461. {
  13462. name: "Megamacro",
  13463. height: math.unit(10, "miles")
  13464. },
  13465. {
  13466. name: "Gigamacro",
  13467. height: math.unit(50, "miles")
  13468. },
  13469. ]
  13470. ))
  13471. characterMakers.push(() => makeCharacter(
  13472. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13473. {
  13474. front: {
  13475. height: math.unit(6, "feet"),
  13476. weight: math.unit(250, "lb"),
  13477. name: "Front",
  13478. image: {
  13479. source: "./media/characters/xylrem/front.svg",
  13480. extra: 3323 / 3050,
  13481. bottom: 0.065
  13482. }
  13483. },
  13484. },
  13485. [
  13486. {
  13487. name: "Micro",
  13488. height: math.unit(4, "feet")
  13489. },
  13490. {
  13491. name: "Normal",
  13492. height: math.unit(16, "feet"),
  13493. default: true
  13494. },
  13495. {
  13496. name: "Macro",
  13497. height: math.unit(2720, "feet")
  13498. },
  13499. {
  13500. name: "Megamacro",
  13501. height: math.unit(25000, "miles")
  13502. },
  13503. ]
  13504. ))
  13505. characterMakers.push(() => makeCharacter(
  13506. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13507. {
  13508. front: {
  13509. height: math.unit(8, "feet"),
  13510. weight: math.unit(250, "kg"),
  13511. name: "Front",
  13512. image: {
  13513. source: "./media/characters/ikideru/front.svg",
  13514. extra: 930 / 870,
  13515. bottom: 0.087
  13516. }
  13517. },
  13518. back: {
  13519. height: math.unit(8, "feet"),
  13520. weight: math.unit(250, "kg"),
  13521. name: "Back",
  13522. image: {
  13523. source: "./media/characters/ikideru/back.svg",
  13524. extra: 919 / 852,
  13525. bottom: 0.055
  13526. }
  13527. },
  13528. },
  13529. [
  13530. {
  13531. name: "Rare",
  13532. height: math.unit(8, "feet"),
  13533. default: true
  13534. },
  13535. {
  13536. name: "Playful Loom",
  13537. height: math.unit(80, "feet")
  13538. },
  13539. {
  13540. name: "City Leaner",
  13541. height: math.unit(230, "feet")
  13542. },
  13543. {
  13544. name: "Megamacro",
  13545. height: math.unit(2500, "feet")
  13546. },
  13547. {
  13548. name: "Gigamacro",
  13549. height: math.unit(26400, "feet")
  13550. },
  13551. {
  13552. name: "Tectonic Shifter",
  13553. height: math.unit(1.7, "megameters")
  13554. },
  13555. {
  13556. name: "Planet Carer",
  13557. height: math.unit(21, "megameters")
  13558. },
  13559. {
  13560. name: "God",
  13561. height: math.unit(11157.22, "parsecs")
  13562. },
  13563. ]
  13564. ))
  13565. characterMakers.push(() => makeCharacter(
  13566. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13567. {
  13568. front: {
  13569. height: math.unit(6, "feet"),
  13570. weight: math.unit(120, "lb"),
  13571. name: "Front",
  13572. image: {
  13573. source: "./media/characters/neo/front.svg"
  13574. }
  13575. },
  13576. },
  13577. [
  13578. {
  13579. name: "Micro",
  13580. height: math.unit(2, "inches"),
  13581. default: true
  13582. },
  13583. {
  13584. name: "Human Size",
  13585. height: math.unit(5 + 8 / 12, "feet")
  13586. },
  13587. ]
  13588. ))
  13589. characterMakers.push(() => makeCharacter(
  13590. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13591. {
  13592. front: {
  13593. height: math.unit(13 + 10 / 12, "feet"),
  13594. weight: math.unit(5320, "lb"),
  13595. name: "Front",
  13596. image: {
  13597. source: "./media/characters/chauncey-chantz/front.svg",
  13598. extra: 1587 / 1435,
  13599. bottom: 0.02
  13600. }
  13601. },
  13602. },
  13603. [
  13604. {
  13605. name: "Normal",
  13606. height: math.unit(13 + 10 / 12, "feet"),
  13607. default: true
  13608. },
  13609. {
  13610. name: "Macro",
  13611. height: math.unit(45, "feet")
  13612. },
  13613. {
  13614. name: "Megamacro",
  13615. height: math.unit(250, "miles")
  13616. },
  13617. {
  13618. name: "Planetary",
  13619. height: math.unit(10000, "miles")
  13620. },
  13621. {
  13622. name: "Galactic",
  13623. height: math.unit(40000, "parsecs")
  13624. },
  13625. {
  13626. name: "Universal",
  13627. height: math.unit(1, "yottameter")
  13628. },
  13629. ]
  13630. ))
  13631. characterMakers.push(() => makeCharacter(
  13632. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13633. {
  13634. front: {
  13635. height: math.unit(6, "feet"),
  13636. weight: math.unit(150, "lb"),
  13637. name: "Front",
  13638. image: {
  13639. source: "./media/characters/epifox/front.svg",
  13640. extra: 1,
  13641. bottom: 0.075
  13642. }
  13643. },
  13644. },
  13645. [
  13646. {
  13647. name: "Micro",
  13648. height: math.unit(6, "inches")
  13649. },
  13650. {
  13651. name: "Normal",
  13652. height: math.unit(12, "feet"),
  13653. default: true
  13654. },
  13655. {
  13656. name: "Macro",
  13657. height: math.unit(3810, "feet")
  13658. },
  13659. {
  13660. name: "Megamacro",
  13661. height: math.unit(500, "miles")
  13662. },
  13663. ]
  13664. ))
  13665. characterMakers.push(() => makeCharacter(
  13666. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13667. {
  13668. front: {
  13669. height: math.unit(1.8796, "m"),
  13670. weight: math.unit(230, "lb"),
  13671. name: "Front",
  13672. image: {
  13673. source: "./media/characters/colin-t/front.svg",
  13674. extra: 1272 / 1193,
  13675. bottom: 0.07
  13676. }
  13677. },
  13678. },
  13679. [
  13680. {
  13681. name: "Micro",
  13682. height: math.unit(0.571, "meters")
  13683. },
  13684. {
  13685. name: "Normal",
  13686. height: math.unit(1.8796, "meters"),
  13687. default: true
  13688. },
  13689. {
  13690. name: "Tall",
  13691. height: math.unit(4, "meters")
  13692. },
  13693. {
  13694. name: "Macro",
  13695. height: math.unit(67.241, "meters")
  13696. },
  13697. {
  13698. name: "Megamacro",
  13699. height: math.unit(371.856, "meters")
  13700. },
  13701. {
  13702. name: "Planetary",
  13703. height: math.unit(12631.5689, "km")
  13704. },
  13705. ]
  13706. ))
  13707. characterMakers.push(() => makeCharacter(
  13708. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13709. {
  13710. front: {
  13711. height: math.unit(1.85, "meters"),
  13712. weight: math.unit(80, "kg"),
  13713. name: "Front",
  13714. image: {
  13715. source: "./media/characters/matvei/front.svg",
  13716. extra: 456/447,
  13717. bottom: 8/464
  13718. }
  13719. },
  13720. back: {
  13721. height: math.unit(1.85, "meters"),
  13722. weight: math.unit(80, "kg"),
  13723. name: "Back",
  13724. image: {
  13725. source: "./media/characters/matvei/back.svg",
  13726. extra: 434/427,
  13727. bottom: 11/445
  13728. }
  13729. },
  13730. },
  13731. [
  13732. {
  13733. name: "Normal",
  13734. height: math.unit(1.85, "meters"),
  13735. default: true
  13736. },
  13737. ]
  13738. ))
  13739. characterMakers.push(() => makeCharacter(
  13740. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13741. {
  13742. front: {
  13743. height: math.unit(5 + 9 / 12, "feet"),
  13744. weight: math.unit(70, "lb"),
  13745. name: "Front",
  13746. image: {
  13747. source: "./media/characters/quincy/front.svg",
  13748. extra: 3041 / 2751
  13749. }
  13750. },
  13751. back: {
  13752. height: math.unit(5 + 9 / 12, "feet"),
  13753. weight: math.unit(70, "lb"),
  13754. name: "Back",
  13755. image: {
  13756. source: "./media/characters/quincy/back.svg",
  13757. extra: 3041 / 2751
  13758. }
  13759. },
  13760. flying: {
  13761. height: math.unit(5 + 4 / 12, "feet"),
  13762. weight: math.unit(70, "lb"),
  13763. name: "Flying",
  13764. image: {
  13765. source: "./media/characters/quincy/flying.svg",
  13766. extra: 1044 / 930
  13767. }
  13768. },
  13769. },
  13770. [
  13771. {
  13772. name: "Micro",
  13773. height: math.unit(3, "cm")
  13774. },
  13775. {
  13776. name: "Normal",
  13777. height: math.unit(5 + 9 / 12, "feet")
  13778. },
  13779. {
  13780. name: "Macro",
  13781. height: math.unit(200, "meters"),
  13782. default: true
  13783. },
  13784. {
  13785. name: "Megamacro",
  13786. height: math.unit(1000, "meters")
  13787. },
  13788. ]
  13789. ))
  13790. characterMakers.push(() => makeCharacter(
  13791. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13792. {
  13793. front: {
  13794. height: math.unit(3 + 11/12, "feet"),
  13795. weight: math.unit(50, "lb"),
  13796. name: "Front",
  13797. image: {
  13798. source: "./media/characters/vanrel/front.svg",
  13799. extra: 1104/949,
  13800. bottom: 52/1156
  13801. }
  13802. },
  13803. back: {
  13804. height: math.unit(3 + 11/12, "feet"),
  13805. weight: math.unit(50, "lb"),
  13806. name: "Back",
  13807. image: {
  13808. source: "./media/characters/vanrel/back.svg",
  13809. extra: 1119/976,
  13810. bottom: 37/1156
  13811. }
  13812. },
  13813. tome: {
  13814. height: math.unit(1.35, "feet"),
  13815. weight: math.unit(10, "lb"),
  13816. name: "Vanrel's Tome",
  13817. rename: true,
  13818. image: {
  13819. source: "./media/characters/vanrel/tome.svg"
  13820. }
  13821. },
  13822. beans: {
  13823. height: math.unit(0.89, "feet"),
  13824. name: "Beans",
  13825. image: {
  13826. source: "./media/characters/vanrel/beans.svg"
  13827. }
  13828. },
  13829. },
  13830. [
  13831. {
  13832. name: "Normal",
  13833. height: math.unit(3 + 11/12, "feet"),
  13834. default: true
  13835. },
  13836. ]
  13837. ))
  13838. characterMakers.push(() => makeCharacter(
  13839. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13840. {
  13841. front: {
  13842. height: math.unit(7 + 5 / 12, "feet"),
  13843. name: "Front",
  13844. image: {
  13845. source: "./media/characters/kuiper-vanrel/front.svg",
  13846. extra: 1219/1169,
  13847. bottom: 69/1288
  13848. }
  13849. },
  13850. back: {
  13851. height: math.unit(7 + 5 / 12, "feet"),
  13852. name: "Back",
  13853. image: {
  13854. source: "./media/characters/kuiper-vanrel/back.svg",
  13855. extra: 1236/1193,
  13856. bottom: 27/1263
  13857. }
  13858. },
  13859. foot: {
  13860. height: math.unit(0.55, "meters"),
  13861. name: "Foot",
  13862. image: {
  13863. source: "./media/characters/kuiper-vanrel/foot.svg",
  13864. }
  13865. },
  13866. battle: {
  13867. height: math.unit(6.824, "feet"),
  13868. name: "Battle",
  13869. image: {
  13870. source: "./media/characters/kuiper-vanrel/battle.svg",
  13871. extra: 1466 / 1327,
  13872. bottom: 29 / 1492.5
  13873. }
  13874. },
  13875. meerkui: {
  13876. height: math.unit(18, "inches"),
  13877. name: "Meerkui",
  13878. image: {
  13879. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13880. extra: 1354/1289,
  13881. bottom: 69/1423
  13882. }
  13883. },
  13884. },
  13885. [
  13886. {
  13887. name: "Normal",
  13888. height: math.unit(7 + 5 / 12, "feet"),
  13889. default: true
  13890. },
  13891. ]
  13892. ))
  13893. characterMakers.push(() => makeCharacter(
  13894. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13895. {
  13896. front: {
  13897. height: math.unit(8 + 5 / 12, "feet"),
  13898. name: "Front",
  13899. image: {
  13900. source: "./media/characters/keset-vanrel/front.svg",
  13901. extra: 1231/1148,
  13902. bottom: 82/1313
  13903. }
  13904. },
  13905. back: {
  13906. height: math.unit(8 + 5 / 12, "feet"),
  13907. name: "Back",
  13908. image: {
  13909. source: "./media/characters/keset-vanrel/back.svg",
  13910. extra: 1240/1174,
  13911. bottom: 33/1273
  13912. }
  13913. },
  13914. hand: {
  13915. height: math.unit(0.6, "meters"),
  13916. name: "Hand",
  13917. image: {
  13918. source: "./media/characters/keset-vanrel/hand.svg"
  13919. }
  13920. },
  13921. foot: {
  13922. height: math.unit(0.94978, "meters"),
  13923. name: "Foot",
  13924. image: {
  13925. source: "./media/characters/keset-vanrel/foot.svg"
  13926. }
  13927. },
  13928. battle: {
  13929. height: math.unit(7.408, "feet"),
  13930. name: "Battle",
  13931. image: {
  13932. source: "./media/characters/keset-vanrel/battle.svg",
  13933. extra: 1890 / 1386,
  13934. bottom: 73.28 / 1970
  13935. }
  13936. },
  13937. },
  13938. [
  13939. {
  13940. name: "Normal",
  13941. height: math.unit(8 + 5 / 12, "feet"),
  13942. default: true
  13943. },
  13944. ]
  13945. ))
  13946. characterMakers.push(() => makeCharacter(
  13947. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13948. {
  13949. front: {
  13950. height: math.unit(6, "feet"),
  13951. weight: math.unit(150, "lb"),
  13952. name: "Front",
  13953. image: {
  13954. source: "./media/characters/neos/front.svg",
  13955. extra: 1696 / 992,
  13956. bottom: 0.14
  13957. }
  13958. },
  13959. },
  13960. [
  13961. {
  13962. name: "Normal",
  13963. height: math.unit(54, "cm"),
  13964. default: true
  13965. },
  13966. {
  13967. name: "Macro",
  13968. height: math.unit(100, "m")
  13969. },
  13970. {
  13971. name: "Megamacro",
  13972. height: math.unit(10, "km")
  13973. },
  13974. {
  13975. name: "Megamacro+",
  13976. height: math.unit(100, "km")
  13977. },
  13978. {
  13979. name: "Gigamacro",
  13980. height: math.unit(100, "Mm")
  13981. },
  13982. {
  13983. name: "Teramacro",
  13984. height: math.unit(100, "Gm")
  13985. },
  13986. {
  13987. name: "Examacro",
  13988. height: math.unit(100, "Em")
  13989. },
  13990. {
  13991. name: "Godly",
  13992. height: math.unit(10000, "Ym")
  13993. },
  13994. {
  13995. name: "Beyond Godly",
  13996. height: math.unit(25, "multiverses")
  13997. },
  13998. ]
  13999. ))
  14000. characterMakers.push(() => makeCharacter(
  14001. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  14002. {
  14003. fluide_tame: {
  14004. height: math.unit(5, "feet"),
  14005. name: "Tame",
  14006. image: {
  14007. source: "./media/characters/sammy-mouse/fluide-tame.svg",
  14008. extra: 1655/1574,
  14009. bottom: 231/1886
  14010. },
  14011. form: "fluide",
  14012. default: true
  14013. },
  14014. fluide_nude: {
  14015. height: math.unit(5, "feet"),
  14016. name: "Nude",
  14017. image: {
  14018. source: "./media/characters/sammy-mouse/fluide-nude.svg",
  14019. extra: 1655/1574,
  14020. bottom: 231/1886
  14021. },
  14022. form: "fluide",
  14023. },
  14024. male_tame: {
  14025. height: math.unit(5, "feet"),
  14026. name: "Tame",
  14027. image: {
  14028. source: "./media/characters/sammy-mouse/male-tame.svg",
  14029. extra: 1655/1574,
  14030. bottom: 231/1886
  14031. },
  14032. form: "male",
  14033. default: true
  14034. },
  14035. male_nude: {
  14036. height: math.unit(5, "feet"),
  14037. name: "Nude",
  14038. image: {
  14039. source: "./media/characters/sammy-mouse/male-nude.svg",
  14040. extra: 1655/1574,
  14041. bottom: 231/1886
  14042. },
  14043. form: "male",
  14044. },
  14045. female_nude: {
  14046. height: math.unit(5, "feet"),
  14047. name: "Nude",
  14048. image: {
  14049. source: "./media/characters/sammy-mouse/female-nude.svg",
  14050. extra: 1655/1574,
  14051. bottom: 231/1886
  14052. },
  14053. form: "female",
  14054. default: true
  14055. },
  14056. mouth: {
  14057. height: math.unit(0.32, "feet"),
  14058. name: "Mouth",
  14059. image: {
  14060. source: "./media/characters/sammy-mouse/mouth.svg"
  14061. },
  14062. allForms: true
  14063. },
  14064. paw: {
  14065. height: math.unit(0.42, "feet"),
  14066. name: "Paw",
  14067. image: {
  14068. source: "./media/characters/sammy-mouse/paw.svg"
  14069. },
  14070. allForms: true
  14071. },
  14072. },
  14073. [
  14074. {
  14075. name: "Micro",
  14076. height: math.unit(5, "inches"),
  14077. allForms: true
  14078. },
  14079. {
  14080. name: "Normal",
  14081. height: math.unit(5, "feet"),
  14082. default: true,
  14083. allForms: true
  14084. },
  14085. {
  14086. name: "Macro",
  14087. height: math.unit(60, "feet"),
  14088. allForms: true
  14089. },
  14090. ],
  14091. {
  14092. "fluide": {
  14093. name: "Fluide",
  14094. default: true
  14095. },
  14096. "male": {
  14097. name: "Male",
  14098. },
  14099. "female": {
  14100. name: "Female",
  14101. },
  14102. }
  14103. ))
  14104. characterMakers.push(() => makeCharacter(
  14105. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  14106. {
  14107. front: {
  14108. height: math.unit(4, "feet"),
  14109. weight: math.unit(50, "lb"),
  14110. name: "Front",
  14111. image: {
  14112. source: "./media/characters/kole/front.svg",
  14113. extra: 1423 / 1303,
  14114. bottom: 0.025
  14115. }
  14116. },
  14117. back: {
  14118. height: math.unit(4, "feet"),
  14119. weight: math.unit(50, "lb"),
  14120. name: "Back",
  14121. image: {
  14122. source: "./media/characters/kole/back.svg",
  14123. extra: 1426 / 1280,
  14124. bottom: 0.02
  14125. }
  14126. },
  14127. },
  14128. [
  14129. {
  14130. name: "Normal",
  14131. height: math.unit(4, "feet"),
  14132. default: true
  14133. },
  14134. ]
  14135. ))
  14136. characterMakers.push(() => makeCharacter(
  14137. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  14138. {
  14139. front: {
  14140. height: math.unit(2.5, "feet"),
  14141. weight: math.unit(32, "lb"),
  14142. name: "Front",
  14143. image: {
  14144. source: "./media/characters/rufran/front.svg",
  14145. extra: 1313/885,
  14146. bottom: 94/1407
  14147. }
  14148. },
  14149. side: {
  14150. height: math.unit(2.5, "feet"),
  14151. weight: math.unit(32, "lb"),
  14152. name: "Side",
  14153. image: {
  14154. source: "./media/characters/rufran/side.svg",
  14155. extra: 1109/852,
  14156. bottom: 118/1227
  14157. }
  14158. },
  14159. back: {
  14160. height: math.unit(2.5, "feet"),
  14161. weight: math.unit(32, "lb"),
  14162. name: "Back",
  14163. image: {
  14164. source: "./media/characters/rufran/back.svg",
  14165. extra: 1280/878,
  14166. bottom: 131/1411
  14167. }
  14168. },
  14169. mouth: {
  14170. height: math.unit(1.13, "feet"),
  14171. name: "Mouth",
  14172. image: {
  14173. source: "./media/characters/rufran/mouth.svg"
  14174. }
  14175. },
  14176. foot: {
  14177. height: math.unit(1.33, "feet"),
  14178. name: "Foot",
  14179. image: {
  14180. source: "./media/characters/rufran/foot.svg"
  14181. }
  14182. },
  14183. koboldFront: {
  14184. height: math.unit(2 + 6 / 12, "feet"),
  14185. weight: math.unit(20, "lb"),
  14186. name: "Front (Kobold)",
  14187. image: {
  14188. source: "./media/characters/rufran/kobold-front.svg",
  14189. extra: 2041 / 1839,
  14190. bottom: 0.055
  14191. }
  14192. },
  14193. koboldBack: {
  14194. height: math.unit(2 + 6 / 12, "feet"),
  14195. weight: math.unit(20, "lb"),
  14196. name: "Back (Kobold)",
  14197. image: {
  14198. source: "./media/characters/rufran/kobold-back.svg",
  14199. extra: 2054 / 1839,
  14200. bottom: 0.01
  14201. }
  14202. },
  14203. koboldHand: {
  14204. height: math.unit(0.2166, "meters"),
  14205. name: "Hand (Kobold)",
  14206. image: {
  14207. source: "./media/characters/rufran/kobold-hand.svg"
  14208. }
  14209. },
  14210. koboldFoot: {
  14211. height: math.unit(0.185, "meters"),
  14212. name: "Foot (Kobold)",
  14213. image: {
  14214. source: "./media/characters/rufran/kobold-foot.svg"
  14215. }
  14216. },
  14217. },
  14218. [
  14219. {
  14220. name: "Micro",
  14221. height: math.unit(1, "inch")
  14222. },
  14223. {
  14224. name: "Normal",
  14225. height: math.unit(2 + 6 / 12, "feet"),
  14226. default: true
  14227. },
  14228. {
  14229. name: "Big",
  14230. height: math.unit(60, "feet")
  14231. },
  14232. {
  14233. name: "Macro",
  14234. height: math.unit(325, "feet")
  14235. },
  14236. ]
  14237. ))
  14238. characterMakers.push(() => makeCharacter(
  14239. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  14240. {
  14241. front: {
  14242. height: math.unit(0.3, "meters"),
  14243. weight: math.unit(3.5, "kg"),
  14244. name: "Front",
  14245. image: {
  14246. source: "./media/characters/chip/front.svg",
  14247. extra: 748 / 674
  14248. }
  14249. },
  14250. },
  14251. [
  14252. {
  14253. name: "Micro",
  14254. height: math.unit(1, "inch"),
  14255. default: true
  14256. },
  14257. ]
  14258. ))
  14259. characterMakers.push(() => makeCharacter(
  14260. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  14261. {
  14262. side: {
  14263. height: math.unit(2.3, "meters"),
  14264. weight: math.unit(3500, "lb"),
  14265. name: "Side",
  14266. image: {
  14267. source: "./media/characters/torvid/side.svg",
  14268. extra: 1972 / 722,
  14269. bottom: 0.035
  14270. }
  14271. },
  14272. },
  14273. [
  14274. {
  14275. name: "Normal",
  14276. height: math.unit(2.3, "meters"),
  14277. default: true
  14278. },
  14279. ]
  14280. ))
  14281. characterMakers.push(() => makeCharacter(
  14282. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  14283. {
  14284. front: {
  14285. height: math.unit(2, "meters"),
  14286. weight: math.unit(150.5, "kg"),
  14287. name: "Front",
  14288. image: {
  14289. source: "./media/characters/susan/front.svg",
  14290. extra: 693 / 635,
  14291. bottom: 0.05
  14292. }
  14293. },
  14294. },
  14295. [
  14296. {
  14297. name: "Megamacro",
  14298. height: math.unit(505, "miles"),
  14299. default: true
  14300. },
  14301. ]
  14302. ))
  14303. characterMakers.push(() => makeCharacter(
  14304. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  14305. {
  14306. front: {
  14307. height: math.unit(6, "feet"),
  14308. weight: math.unit(150, "lb"),
  14309. name: "Front",
  14310. image: {
  14311. source: "./media/characters/raindrops/front.svg",
  14312. extra: 2655 / 2461,
  14313. bottom: 49 / 2705
  14314. }
  14315. },
  14316. back: {
  14317. height: math.unit(6, "feet"),
  14318. weight: math.unit(150, "lb"),
  14319. name: "Back",
  14320. image: {
  14321. source: "./media/characters/raindrops/back.svg",
  14322. extra: 2574 / 2400,
  14323. bottom: 65 / 2634
  14324. }
  14325. },
  14326. },
  14327. [
  14328. {
  14329. name: "Micro",
  14330. height: math.unit(6, "inches")
  14331. },
  14332. {
  14333. name: "Normal",
  14334. height: math.unit(6 + 2 / 12, "feet")
  14335. },
  14336. {
  14337. name: "Macro",
  14338. height: math.unit(131, "feet"),
  14339. default: true
  14340. },
  14341. {
  14342. name: "Megamacro",
  14343. height: math.unit(15, "miles")
  14344. },
  14345. {
  14346. name: "Gigamacro",
  14347. height: math.unit(4000, "miles")
  14348. },
  14349. {
  14350. name: "Teramacro",
  14351. height: math.unit(315000, "miles")
  14352. },
  14353. ]
  14354. ))
  14355. characterMakers.push(() => makeCharacter(
  14356. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  14357. {
  14358. front: {
  14359. height: math.unit(2.794, "meters"),
  14360. weight: math.unit(325, "kg"),
  14361. name: "Front",
  14362. image: {
  14363. source: "./media/characters/tezwa/front.svg",
  14364. extra: 2083 / 1906,
  14365. bottom: 0.031
  14366. }
  14367. },
  14368. foot: {
  14369. height: math.unit(0.687, "meters"),
  14370. name: "Foot",
  14371. image: {
  14372. source: "./media/characters/tezwa/foot.svg"
  14373. }
  14374. },
  14375. },
  14376. [
  14377. {
  14378. name: "Normal",
  14379. height: math.unit(9 + 2 / 12, "feet"),
  14380. default: true
  14381. },
  14382. ]
  14383. ))
  14384. characterMakers.push(() => makeCharacter(
  14385. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  14386. {
  14387. front: {
  14388. height: math.unit(58, "feet"),
  14389. weight: math.unit(89000, "lb"),
  14390. name: "Front",
  14391. image: {
  14392. source: "./media/characters/typhus/front.svg",
  14393. extra: 816 / 800,
  14394. bottom: 0.065
  14395. }
  14396. },
  14397. },
  14398. [
  14399. {
  14400. name: "Macro",
  14401. height: math.unit(58, "feet"),
  14402. default: true
  14403. },
  14404. ]
  14405. ))
  14406. characterMakers.push(() => makeCharacter(
  14407. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14408. {
  14409. front: {
  14410. height: math.unit(12, "feet"),
  14411. weight: math.unit(6, "tonnes"),
  14412. name: "Front",
  14413. image: {
  14414. source: "./media/characters/lyra-von-wulf/front.svg",
  14415. extra: 1,
  14416. bottom: 0.10
  14417. }
  14418. },
  14419. frontMecha: {
  14420. height: math.unit(12, "feet"),
  14421. weight: math.unit(12, "tonnes"),
  14422. name: "Front (Mecha)",
  14423. image: {
  14424. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14425. extra: 1,
  14426. bottom: 0.042
  14427. }
  14428. },
  14429. maw: {
  14430. height: math.unit(2.2, "feet"),
  14431. name: "Maw",
  14432. image: {
  14433. source: "./media/characters/lyra-von-wulf/maw.svg"
  14434. }
  14435. },
  14436. },
  14437. [
  14438. {
  14439. name: "Normal",
  14440. height: math.unit(12, "feet"),
  14441. default: true
  14442. },
  14443. {
  14444. name: "Classic",
  14445. height: math.unit(50, "feet")
  14446. },
  14447. {
  14448. name: "Macro",
  14449. height: math.unit(500, "feet")
  14450. },
  14451. {
  14452. name: "Megamacro",
  14453. height: math.unit(1, "mile")
  14454. },
  14455. {
  14456. name: "Gigamacro",
  14457. height: math.unit(400, "miles")
  14458. },
  14459. {
  14460. name: "Teramacro",
  14461. height: math.unit(22000, "miles")
  14462. },
  14463. {
  14464. name: "Solarmacro",
  14465. height: math.unit(8600000, "miles")
  14466. },
  14467. {
  14468. name: "Galactic",
  14469. height: math.unit(1057000, "lightyears")
  14470. },
  14471. ]
  14472. ))
  14473. characterMakers.push(() => makeCharacter(
  14474. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14475. {
  14476. front: {
  14477. height: math.unit(6 + 10 / 12, "feet"),
  14478. weight: math.unit(150, "lb"),
  14479. name: "Front",
  14480. image: {
  14481. source: "./media/characters/dixon/front.svg",
  14482. extra: 3361 / 3209,
  14483. bottom: 0.01
  14484. }
  14485. },
  14486. },
  14487. [
  14488. {
  14489. name: "Normal",
  14490. height: math.unit(6 + 10 / 12, "feet"),
  14491. default: true
  14492. },
  14493. {
  14494. name: "Big",
  14495. height: math.unit(12, "meters")
  14496. },
  14497. {
  14498. name: "Macro",
  14499. height: math.unit(500, "meters")
  14500. },
  14501. {
  14502. name: "Megamacro",
  14503. height: math.unit(2, "km")
  14504. },
  14505. ]
  14506. ))
  14507. characterMakers.push(() => makeCharacter(
  14508. { name: "Kauko", species: ["wolf", "king-cheetah"], tags: ["anthro"] },
  14509. {
  14510. kingCheetah_front: {
  14511. height: math.unit(1.85, "meters"),
  14512. weight: math.unit(68, "kg"),
  14513. name: "Front",
  14514. image: {
  14515. source: "./media/characters/kauko/king-cheetah-front.svg",
  14516. extra: 1007/972,
  14517. bottom: 35/1042
  14518. },
  14519. form: "king-cheetah",
  14520. default: true
  14521. },
  14522. kingCheetah_back: {
  14523. height: math.unit(1.85, "meters"),
  14524. weight: math.unit(68, "kg"),
  14525. name: "Back",
  14526. image: {
  14527. source: "./media/characters/kauko/king-cheetah-back.svg",
  14528. extra: 1015/980,
  14529. bottom: 11/1026
  14530. },
  14531. form: "king-cheetah",
  14532. },
  14533. kingCheetah_hand: {
  14534. height: math.unit(0.23, "meters"),
  14535. name: "Hand",
  14536. image: {
  14537. source: "./media/characters/kauko/king-cheetah-hand.svg"
  14538. },
  14539. form: "king-cheetah",
  14540. },
  14541. kingCheetah_paw: {
  14542. height: math.unit(0.38, "meters"),
  14543. name: "Paw",
  14544. image: {
  14545. source: "./media/characters/kauko/king-cheetah-paw.svg"
  14546. },
  14547. form: "king-cheetah",
  14548. },
  14549. kingCheetah_nape: {
  14550. height: math.unit(0.23, "meters"),
  14551. name: "Nape",
  14552. image: {
  14553. source: "./media/characters/kauko/king-cheetah-nape.svg"
  14554. },
  14555. form: "king-cheetah",
  14556. },
  14557. wolf_front: {
  14558. height: math.unit(1.88, "meters"),
  14559. weight: math.unit(74, "kg"),
  14560. name: "Front",
  14561. image: {
  14562. source: "./media/characters/kauko/wolf-front.svg",
  14563. extra: 952/908,
  14564. bottom: 64/1016
  14565. },
  14566. form: "wolf",
  14567. default: true
  14568. },
  14569. wolf_dressed: {
  14570. height: math.unit(1.88, "meters"),
  14571. weight: math.unit(74, "kg"),
  14572. name: "Dressed",
  14573. image: {
  14574. source: "./media/characters/kauko/wolf-dressed.svg",
  14575. extra: 963/916,
  14576. bottom: 101/1064
  14577. },
  14578. form: "wolf",
  14579. },
  14580. wolf_hand: {
  14581. height: math.unit(0.3, "meters"),
  14582. name: "Hand",
  14583. image: {
  14584. source: "./media/characters/kauko/wolf-hand.svg"
  14585. },
  14586. form: "wolf",
  14587. },
  14588. wolf_paw: {
  14589. height: math.unit(0.407, "meters"),
  14590. name: "Paw",
  14591. image: {
  14592. source: "./media/characters/kauko/wolf-paw.svg"
  14593. },
  14594. form: "wolf",
  14595. },
  14596. wolf_nape: {
  14597. height: math.unit(0.25, "meters"),
  14598. name: "Nape",
  14599. image: {
  14600. source: "./media/characters/kauko/wolf-nape.svg"
  14601. },
  14602. form: "wolf",
  14603. },
  14604. },
  14605. [
  14606. {
  14607. name: "Normal",
  14608. height: math.unit(1.85, "m"),
  14609. default: true,
  14610. form: "king-cheetah"
  14611. },
  14612. {
  14613. name: "Normal",
  14614. height: math.unit(1.88, "m"),
  14615. default: true,
  14616. form: "wolf"
  14617. },
  14618. ],
  14619. {
  14620. "king-cheetah": {
  14621. name: "King Cheetah",
  14622. default: true
  14623. },
  14624. "wolf": {
  14625. name: "Wolf",
  14626. },
  14627. }
  14628. ))
  14629. characterMakers.push(() => makeCharacter(
  14630. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14631. {
  14632. frontSfw: {
  14633. height: math.unit(5, "meters"),
  14634. weight: math.unit(4250, "lb"),
  14635. name: "Front",
  14636. image: {
  14637. source: "./media/characters/varg/front-sfw.svg",
  14638. extra: 1103/1010,
  14639. bottom: 50/1153
  14640. },
  14641. form: "anthro",
  14642. default: true
  14643. },
  14644. backSfw: {
  14645. height: math.unit(5, "meters"),
  14646. weight: math.unit(4250, "lb"),
  14647. name: "Back",
  14648. image: {
  14649. source: "./media/characters/varg/back-sfw.svg",
  14650. extra: 1038/1022,
  14651. bottom: 36/1074
  14652. },
  14653. form: "anthro"
  14654. },
  14655. frontNsfw: {
  14656. height: math.unit(5, "meters"),
  14657. weight: math.unit(4250, "lb"),
  14658. name: "Front (NSFW)",
  14659. image: {
  14660. source: "./media/characters/varg/front-nsfw.svg",
  14661. extra: 1103/1010,
  14662. bottom: 50/1153
  14663. },
  14664. form: "anthro"
  14665. },
  14666. sheath: {
  14667. height: math.unit(3.8, "feet"),
  14668. weight: math.unit(90, "kilograms"),
  14669. name: "Sheath",
  14670. image: {
  14671. source: "./media/characters/varg/sheath.svg"
  14672. },
  14673. form: "anthro"
  14674. },
  14675. dick: {
  14676. height: math.unit(4.6, "feet"),
  14677. weight: math.unit(451, "kilograms"),
  14678. name: "Dick",
  14679. image: {
  14680. source: "./media/characters/varg/dick.svg"
  14681. },
  14682. form: "anthro"
  14683. },
  14684. feralSfw: {
  14685. height: math.unit(5, "meters"),
  14686. weight: math.unit(100000, "lb"),
  14687. name: "Side",
  14688. image: {
  14689. source: "./media/characters/varg/feral-sfw.svg",
  14690. extra: 1065/511,
  14691. bottom: 211/1276
  14692. },
  14693. form: "feral",
  14694. default: true
  14695. },
  14696. feralNsfw: {
  14697. height: math.unit(5, "meters"),
  14698. weight: math.unit(100000, "lb"),
  14699. name: "Side (NSFW)",
  14700. image: {
  14701. source: "./media/characters/varg/feral-nsfw.svg",
  14702. extra: 1065/511,
  14703. bottom: 211/1276
  14704. },
  14705. form: "feral",
  14706. },
  14707. feralSheath: {
  14708. height: math.unit(9.8, "feet"),
  14709. weight: math.unit(2000, "kilograms"),
  14710. name: "Sheath",
  14711. image: {
  14712. source: "./media/characters/varg/sheath.svg"
  14713. },
  14714. form: "feral"
  14715. },
  14716. feralDick: {
  14717. height: math.unit(13.11, "feet"),
  14718. weight: math.unit(10440, "kilograms"),
  14719. name: "Dick",
  14720. image: {
  14721. source: "./media/characters/varg/dick.svg"
  14722. },
  14723. form: "feral"
  14724. },
  14725. },
  14726. [
  14727. {
  14728. name: "Normal",
  14729. height: math.unit(5, "meters"),
  14730. form: "anthro"
  14731. },
  14732. {
  14733. name: "Macro",
  14734. height: math.unit(200, "meters"),
  14735. form: "anthro"
  14736. },
  14737. {
  14738. name: "Megamacro",
  14739. height: math.unit(20, "kilometers"),
  14740. form: "anthro"
  14741. },
  14742. {
  14743. name: "True Size",
  14744. height: math.unit(211, "km"),
  14745. form: "anthro",
  14746. default: true
  14747. },
  14748. {
  14749. name: "Gigamacro",
  14750. height: math.unit(1000, "km"),
  14751. form: "anthro"
  14752. },
  14753. {
  14754. name: "Gigamacro+",
  14755. height: math.unit(8000, "km"),
  14756. form: "anthro"
  14757. },
  14758. {
  14759. name: "Teramacro",
  14760. height: math.unit(1000000, "km"),
  14761. form: "anthro"
  14762. },
  14763. {
  14764. name: "Normal",
  14765. height: math.unit(5, "meters"),
  14766. form: "feral"
  14767. },
  14768. {
  14769. name: "Macro",
  14770. height: math.unit(200, "meters"),
  14771. form: "feral"
  14772. },
  14773. {
  14774. name: "Megamacro",
  14775. height: math.unit(20, "kilometers"),
  14776. form: "feral"
  14777. },
  14778. {
  14779. name: "True Size",
  14780. height: math.unit(211, "km"),
  14781. form: "feral",
  14782. default: true
  14783. },
  14784. {
  14785. name: "Gigamacro",
  14786. height: math.unit(1000, "km"),
  14787. form: "feral"
  14788. },
  14789. {
  14790. name: "Gigamacro+",
  14791. height: math.unit(8000, "km"),
  14792. form: "feral"
  14793. },
  14794. {
  14795. name: "Teramacro",
  14796. height: math.unit(1000000, "km"),
  14797. form: "feral"
  14798. },
  14799. ],
  14800. {
  14801. "anthro": {
  14802. name: "Anthro",
  14803. default: true
  14804. },
  14805. "feral": {
  14806. name: "Feral",
  14807. },
  14808. }
  14809. ))
  14810. characterMakers.push(() => makeCharacter(
  14811. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14812. {
  14813. front: {
  14814. height: math.unit(7 + 7 / 12, "feet"),
  14815. weight: math.unit(267, "lb"),
  14816. name: "Front",
  14817. image: {
  14818. source: "./media/characters/dayza/front.svg",
  14819. extra: 1262 / 1200,
  14820. bottom: 0.035
  14821. }
  14822. },
  14823. side: {
  14824. height: math.unit(7 + 7 / 12, "feet"),
  14825. weight: math.unit(267, "lb"),
  14826. name: "Side",
  14827. image: {
  14828. source: "./media/characters/dayza/side.svg",
  14829. extra: 1295 / 1245,
  14830. bottom: 0.05
  14831. }
  14832. },
  14833. back: {
  14834. height: math.unit(7 + 7 / 12, "feet"),
  14835. weight: math.unit(267, "lb"),
  14836. name: "Back",
  14837. image: {
  14838. source: "./media/characters/dayza/back.svg",
  14839. extra: 1241 / 1170
  14840. }
  14841. },
  14842. },
  14843. [
  14844. {
  14845. name: "Normal",
  14846. height: math.unit(7 + 7 / 12, "feet"),
  14847. default: true
  14848. },
  14849. {
  14850. name: "Macro",
  14851. height: math.unit(155, "feet")
  14852. },
  14853. ]
  14854. ))
  14855. characterMakers.push(() => makeCharacter(
  14856. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14857. {
  14858. front: {
  14859. height: math.unit(6 + 5 / 12, "feet"),
  14860. weight: math.unit(160, "lb"),
  14861. name: "Front",
  14862. image: {
  14863. source: "./media/characters/xanthos/front.svg",
  14864. extra: 1,
  14865. bottom: 0.04
  14866. }
  14867. },
  14868. back: {
  14869. height: math.unit(6 + 5 / 12, "feet"),
  14870. weight: math.unit(160, "lb"),
  14871. name: "Back",
  14872. image: {
  14873. source: "./media/characters/xanthos/back.svg",
  14874. extra: 1,
  14875. bottom: 0.03
  14876. }
  14877. },
  14878. hand: {
  14879. height: math.unit(0.928, "feet"),
  14880. name: "Hand",
  14881. image: {
  14882. source: "./media/characters/xanthos/hand.svg"
  14883. }
  14884. },
  14885. foot: {
  14886. height: math.unit(1.286, "feet"),
  14887. name: "Foot",
  14888. image: {
  14889. source: "./media/characters/xanthos/foot.svg"
  14890. }
  14891. },
  14892. },
  14893. [
  14894. {
  14895. name: "Normal",
  14896. height: math.unit(6 + 5 / 12, "feet"),
  14897. default: true
  14898. },
  14899. {
  14900. name: "Normal+",
  14901. height: math.unit(6, "meters")
  14902. },
  14903. {
  14904. name: "Macro",
  14905. height: math.unit(40, "feet")
  14906. },
  14907. {
  14908. name: "Macro+",
  14909. height: math.unit(200, "meters")
  14910. },
  14911. {
  14912. name: "Megamacro",
  14913. height: math.unit(20, "km")
  14914. },
  14915. {
  14916. name: "Megamacro+",
  14917. height: math.unit(100, "km")
  14918. },
  14919. {
  14920. name: "Gigamacro",
  14921. height: math.unit(200, "megameters")
  14922. },
  14923. {
  14924. name: "Gigamacro+",
  14925. height: math.unit(1.5, "gigameters")
  14926. },
  14927. ]
  14928. ))
  14929. characterMakers.push(() => makeCharacter(
  14930. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14931. {
  14932. front: {
  14933. height: math.unit(6 + 3 / 12, "feet"),
  14934. weight: math.unit(215, "lb"),
  14935. name: "Front",
  14936. image: {
  14937. source: "./media/characters/grynn/front.svg",
  14938. extra: 4627 / 4209,
  14939. bottom: 0.047
  14940. }
  14941. },
  14942. },
  14943. [
  14944. {
  14945. name: "Micro",
  14946. height: math.unit(6, "inches")
  14947. },
  14948. {
  14949. name: "Normal",
  14950. height: math.unit(6 + 3 / 12, "feet"),
  14951. default: true
  14952. },
  14953. {
  14954. name: "Big",
  14955. height: math.unit(104, "feet")
  14956. },
  14957. {
  14958. name: "Macro",
  14959. height: math.unit(944, "feet")
  14960. },
  14961. {
  14962. name: "Macro+",
  14963. height: math.unit(9480, "feet")
  14964. },
  14965. {
  14966. name: "Megamacro",
  14967. height: math.unit(78752, "feet")
  14968. },
  14969. {
  14970. name: "Megamacro+",
  14971. height: math.unit(630128, "feet")
  14972. },
  14973. {
  14974. name: "Megamacro++",
  14975. height: math.unit(3150695, "feet")
  14976. },
  14977. ]
  14978. ))
  14979. characterMakers.push(() => makeCharacter(
  14980. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14981. {
  14982. front: {
  14983. height: math.unit(7 + 5 / 12, "feet"),
  14984. weight: math.unit(450, "lb"),
  14985. name: "Front",
  14986. image: {
  14987. source: "./media/characters/mocha-aura/front.svg",
  14988. extra: 1907 / 1817,
  14989. bottom: 0.04
  14990. }
  14991. },
  14992. back: {
  14993. height: math.unit(7 + 5 / 12, "feet"),
  14994. weight: math.unit(450, "lb"),
  14995. name: "Back",
  14996. image: {
  14997. source: "./media/characters/mocha-aura/back.svg",
  14998. extra: 1900 / 1825,
  14999. bottom: 0.045
  15000. }
  15001. },
  15002. },
  15003. [
  15004. {
  15005. name: "Nano",
  15006. height: math.unit(1, "nm")
  15007. },
  15008. {
  15009. name: "Megamicro",
  15010. height: math.unit(1, "mm")
  15011. },
  15012. {
  15013. name: "Micro",
  15014. height: math.unit(3, "inches")
  15015. },
  15016. {
  15017. name: "Normal",
  15018. height: math.unit(7 + 5 / 12, "feet"),
  15019. default: true
  15020. },
  15021. {
  15022. name: "Macro",
  15023. height: math.unit(30, "feet")
  15024. },
  15025. {
  15026. name: "Megamacro",
  15027. height: math.unit(3500, "feet")
  15028. },
  15029. {
  15030. name: "Teramacro",
  15031. height: math.unit(500000, "miles")
  15032. },
  15033. {
  15034. name: "Petamacro",
  15035. height: math.unit(50000000000000000, "parsecs")
  15036. },
  15037. ]
  15038. ))
  15039. characterMakers.push(() => makeCharacter(
  15040. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  15041. {
  15042. front: {
  15043. height: math.unit(6, "feet"),
  15044. weight: math.unit(150, "lb"),
  15045. name: "Front",
  15046. image: {
  15047. source: "./media/characters/ilisha-devya/front.svg",
  15048. extra: 1053/1049,
  15049. bottom: 270/1323
  15050. }
  15051. },
  15052. back: {
  15053. height: math.unit(6, "feet"),
  15054. weight: math.unit(150, "lb"),
  15055. name: "Back",
  15056. image: {
  15057. source: "./media/characters/ilisha-devya/back.svg",
  15058. extra: 1131/1128,
  15059. bottom: 39/1170
  15060. }
  15061. },
  15062. },
  15063. [
  15064. {
  15065. name: "Macro",
  15066. height: math.unit(500, "feet"),
  15067. default: true
  15068. },
  15069. {
  15070. name: "Megamacro",
  15071. height: math.unit(10, "miles")
  15072. },
  15073. {
  15074. name: "Gigamacro",
  15075. height: math.unit(100000, "miles")
  15076. },
  15077. {
  15078. name: "Examacro",
  15079. height: math.unit(1e9, "lightyears")
  15080. },
  15081. {
  15082. name: "Omniversal",
  15083. height: math.unit(1e33, "lightyears")
  15084. },
  15085. {
  15086. name: "Beyond Infinite",
  15087. height: math.unit(1e100, "lightyears")
  15088. },
  15089. ]
  15090. ))
  15091. characterMakers.push(() => makeCharacter(
  15092. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  15093. {
  15094. Side: {
  15095. height: math.unit(6, "feet"),
  15096. weight: math.unit(150, "lb"),
  15097. name: "Side",
  15098. image: {
  15099. source: "./media/characters/mira/side.svg",
  15100. extra: 900 / 799,
  15101. bottom: 0.02
  15102. }
  15103. },
  15104. },
  15105. [
  15106. {
  15107. name: "Human Size",
  15108. height: math.unit(6, "feet")
  15109. },
  15110. {
  15111. name: "Macro",
  15112. height: math.unit(100, "feet"),
  15113. default: true
  15114. },
  15115. {
  15116. name: "Megamacro",
  15117. height: math.unit(10, "miles")
  15118. },
  15119. {
  15120. name: "Gigamacro",
  15121. height: math.unit(25000, "miles")
  15122. },
  15123. {
  15124. name: "Teramacro",
  15125. height: math.unit(300, "AU")
  15126. },
  15127. {
  15128. name: "Full Size",
  15129. height: math.unit(4.5e10, "lightyears")
  15130. },
  15131. ]
  15132. ))
  15133. characterMakers.push(() => makeCharacter(
  15134. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  15135. {
  15136. front: {
  15137. height: math.unit(6, "feet"),
  15138. weight: math.unit(150, "lb"),
  15139. name: "Front",
  15140. image: {
  15141. source: "./media/characters/holly/front.svg",
  15142. extra: 639 / 606
  15143. }
  15144. },
  15145. back: {
  15146. height: math.unit(6, "feet"),
  15147. weight: math.unit(150, "lb"),
  15148. name: "Back",
  15149. image: {
  15150. source: "./media/characters/holly/back.svg",
  15151. extra: 623 / 598
  15152. }
  15153. },
  15154. frontWorking: {
  15155. height: math.unit(6, "feet"),
  15156. weight: math.unit(150, "lb"),
  15157. name: "Front (Working)",
  15158. image: {
  15159. source: "./media/characters/holly/front-working.svg",
  15160. extra: 607 / 577,
  15161. bottom: 0.048
  15162. }
  15163. },
  15164. },
  15165. [
  15166. {
  15167. name: "Normal",
  15168. height: math.unit(12 + 3 / 12, "feet"),
  15169. default: true
  15170. },
  15171. ]
  15172. ))
  15173. characterMakers.push(() => makeCharacter(
  15174. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  15175. {
  15176. front: {
  15177. height: math.unit(6, "feet"),
  15178. weight: math.unit(150, "lb"),
  15179. name: "Front",
  15180. image: {
  15181. source: "./media/characters/porter/front.svg",
  15182. extra: 1,
  15183. bottom: 0.01
  15184. }
  15185. },
  15186. frontRobes: {
  15187. height: math.unit(6, "feet"),
  15188. weight: math.unit(150, "lb"),
  15189. name: "Front (Robes)",
  15190. image: {
  15191. source: "./media/characters/porter/front-robes.svg",
  15192. extra: 1.01,
  15193. bottom: 0.01
  15194. }
  15195. },
  15196. },
  15197. [
  15198. {
  15199. name: "Normal",
  15200. height: math.unit(11 + 9 / 12, "feet"),
  15201. default: true
  15202. },
  15203. ]
  15204. ))
  15205. characterMakers.push(() => makeCharacter(
  15206. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  15207. {
  15208. legendary: {
  15209. height: math.unit(6, "feet"),
  15210. weight: math.unit(150, "lb"),
  15211. name: "Legendary",
  15212. image: {
  15213. source: "./media/characters/lucy/legendary.svg",
  15214. extra: 1355 / 1100,
  15215. bottom: 0.045
  15216. }
  15217. },
  15218. },
  15219. [
  15220. {
  15221. name: "Legendary",
  15222. height: math.unit(86882 * 2, "miles"),
  15223. default: true
  15224. },
  15225. ]
  15226. ))
  15227. characterMakers.push(() => makeCharacter(
  15228. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  15229. {
  15230. front: {
  15231. height: math.unit(6, "feet"),
  15232. weight: math.unit(150, "lb"),
  15233. name: "Front",
  15234. image: {
  15235. source: "./media/characters/drusilla/front.svg",
  15236. extra: 678 / 635,
  15237. bottom: 0.03
  15238. }
  15239. },
  15240. back: {
  15241. height: math.unit(6, "feet"),
  15242. weight: math.unit(150, "lb"),
  15243. name: "Back",
  15244. image: {
  15245. source: "./media/characters/drusilla/back.svg",
  15246. extra: 678 / 635,
  15247. bottom: 0.005
  15248. }
  15249. },
  15250. },
  15251. [
  15252. {
  15253. name: "Macro",
  15254. height: math.unit(100, "feet")
  15255. },
  15256. {
  15257. name: "Canon Height",
  15258. height: math.unit(2000, "feet"),
  15259. default: true
  15260. },
  15261. ]
  15262. ))
  15263. characterMakers.push(() => makeCharacter(
  15264. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  15265. {
  15266. front: {
  15267. height: math.unit(6, "feet"),
  15268. weight: math.unit(180, "lb"),
  15269. name: "Front",
  15270. image: {
  15271. source: "./media/characters/renard-thatch/front.svg",
  15272. extra: 2411 / 2275,
  15273. bottom: 0.01
  15274. }
  15275. },
  15276. frontPosing: {
  15277. height: math.unit(6, "feet"),
  15278. weight: math.unit(180, "lb"),
  15279. name: "Front (Posing)",
  15280. image: {
  15281. source: "./media/characters/renard-thatch/front-posing.svg",
  15282. extra: 2381 / 2261,
  15283. bottom: 0.01
  15284. }
  15285. },
  15286. back: {
  15287. height: math.unit(6, "feet"),
  15288. weight: math.unit(180, "lb"),
  15289. name: "Back",
  15290. image: {
  15291. source: "./media/characters/renard-thatch/back.svg",
  15292. extra: 2428 / 2288
  15293. }
  15294. },
  15295. },
  15296. [
  15297. {
  15298. name: "Micro",
  15299. height: math.unit(3, "inches")
  15300. },
  15301. {
  15302. name: "Default",
  15303. height: math.unit(6, "feet"),
  15304. default: true
  15305. },
  15306. {
  15307. name: "Macro",
  15308. height: math.unit(75, "feet")
  15309. },
  15310. ]
  15311. ))
  15312. characterMakers.push(() => makeCharacter(
  15313. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  15314. {
  15315. front: {
  15316. height: math.unit(1450, "feet"),
  15317. weight: math.unit(1.21e6, "tons"),
  15318. name: "Front",
  15319. image: {
  15320. source: "./media/characters/sekvra/front.svg",
  15321. extra: 1193/1190,
  15322. bottom: 78/1271
  15323. }
  15324. },
  15325. side: {
  15326. height: math.unit(1450, "feet"),
  15327. weight: math.unit(1.21e6, "tons"),
  15328. name: "Side",
  15329. image: {
  15330. source: "./media/characters/sekvra/side.svg",
  15331. extra: 1193/1190,
  15332. bottom: 52/1245
  15333. }
  15334. },
  15335. back: {
  15336. height: math.unit(1450, "feet"),
  15337. weight: math.unit(1.21e6, "tons"),
  15338. name: "Back",
  15339. image: {
  15340. source: "./media/characters/sekvra/back.svg",
  15341. extra: 1219/1216,
  15342. bottom: 21/1240
  15343. }
  15344. },
  15345. frontClothed: {
  15346. height: math.unit(1450, "feet"),
  15347. weight: math.unit(1.21e6, "tons"),
  15348. name: "Front (Clothed)",
  15349. image: {
  15350. source: "./media/characters/sekvra/front-clothed.svg",
  15351. extra: 1192/1189,
  15352. bottom: 79/1271
  15353. }
  15354. },
  15355. },
  15356. [
  15357. {
  15358. name: "Macro",
  15359. height: math.unit(1450, "feet"),
  15360. default: true
  15361. },
  15362. {
  15363. name: "Megamacro",
  15364. height: math.unit(15000, "feet")
  15365. },
  15366. ]
  15367. ))
  15368. characterMakers.push(() => makeCharacter(
  15369. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  15370. {
  15371. front: {
  15372. height: math.unit(6, "feet"),
  15373. weight: math.unit(150, "lb"),
  15374. name: "Front",
  15375. image: {
  15376. source: "./media/characters/carmine/front.svg",
  15377. extra: 1557/1538,
  15378. bottom: 68/1625
  15379. }
  15380. },
  15381. frontArmor: {
  15382. height: math.unit(6, "feet"),
  15383. weight: math.unit(150, "lb"),
  15384. name: "Front (Armor)",
  15385. image: {
  15386. source: "./media/characters/carmine/front-armor.svg",
  15387. extra: 1549/1530,
  15388. bottom: 82/1631
  15389. }
  15390. },
  15391. mouth: {
  15392. height: math.unit(0.55, "feet"),
  15393. name: "Mouth",
  15394. image: {
  15395. source: "./media/characters/carmine/mouth.svg"
  15396. }
  15397. },
  15398. hand: {
  15399. height: math.unit(1.05, "feet"),
  15400. name: "Hand",
  15401. image: {
  15402. source: "./media/characters/carmine/hand.svg"
  15403. }
  15404. },
  15405. foot: {
  15406. height: math.unit(0.6, "feet"),
  15407. name: "Foot",
  15408. image: {
  15409. source: "./media/characters/carmine/foot.svg"
  15410. }
  15411. },
  15412. },
  15413. [
  15414. {
  15415. name: "Large",
  15416. height: math.unit(1, "mile")
  15417. },
  15418. {
  15419. name: "Huge",
  15420. height: math.unit(40, "miles"),
  15421. default: true
  15422. },
  15423. {
  15424. name: "Colossal",
  15425. height: math.unit(2500, "miles")
  15426. },
  15427. ]
  15428. ))
  15429. characterMakers.push(() => makeCharacter(
  15430. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  15431. {
  15432. front: {
  15433. height: math.unit(6, "feet"),
  15434. weight: math.unit(150, "lb"),
  15435. name: "Front",
  15436. image: {
  15437. source: "./media/characters/elyssia/front.svg",
  15438. extra: 2201 / 2035,
  15439. bottom: 0.05
  15440. }
  15441. },
  15442. frontClothed: {
  15443. height: math.unit(6, "feet"),
  15444. weight: math.unit(150, "lb"),
  15445. name: "Front (Clothed)",
  15446. image: {
  15447. source: "./media/characters/elyssia/front-clothed.svg",
  15448. extra: 2201 / 2035,
  15449. bottom: 0.05
  15450. }
  15451. },
  15452. back: {
  15453. height: math.unit(6, "feet"),
  15454. weight: math.unit(150, "lb"),
  15455. name: "Back",
  15456. image: {
  15457. source: "./media/characters/elyssia/back.svg",
  15458. extra: 2201 / 2035,
  15459. bottom: 0.013
  15460. }
  15461. },
  15462. },
  15463. [
  15464. {
  15465. name: "Smaller",
  15466. height: math.unit(150, "feet")
  15467. },
  15468. {
  15469. name: "Standard",
  15470. height: math.unit(1400, "feet"),
  15471. default: true
  15472. },
  15473. {
  15474. name: "Distracted",
  15475. height: math.unit(15000, "feet")
  15476. },
  15477. ]
  15478. ))
  15479. characterMakers.push(() => makeCharacter(
  15480. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  15481. {
  15482. front: {
  15483. height: math.unit(7 + 4/12, "feet"),
  15484. weight: math.unit(690, "lb"),
  15485. name: "Front",
  15486. image: {
  15487. source: "./media/characters/geno-maxwell/front.svg",
  15488. extra: 984/856,
  15489. bottom: 87/1071
  15490. }
  15491. },
  15492. back: {
  15493. height: math.unit(7 + 4/12, "feet"),
  15494. weight: math.unit(690, "lb"),
  15495. name: "Back",
  15496. image: {
  15497. source: "./media/characters/geno-maxwell/back.svg",
  15498. extra: 981/854,
  15499. bottom: 57/1038
  15500. }
  15501. },
  15502. frontCostume: {
  15503. height: math.unit(7 + 4/12, "feet"),
  15504. weight: math.unit(690, "lb"),
  15505. name: "Front (Costume)",
  15506. image: {
  15507. source: "./media/characters/geno-maxwell/front-costume.svg",
  15508. extra: 984/856,
  15509. bottom: 87/1071
  15510. }
  15511. },
  15512. backcostume: {
  15513. height: math.unit(7 + 4/12, "feet"),
  15514. weight: math.unit(690, "lb"),
  15515. name: "Back (Costume)",
  15516. image: {
  15517. source: "./media/characters/geno-maxwell/back-costume.svg",
  15518. extra: 981/854,
  15519. bottom: 57/1038
  15520. }
  15521. },
  15522. },
  15523. [
  15524. {
  15525. name: "Micro",
  15526. height: math.unit(3, "inches")
  15527. },
  15528. {
  15529. name: "Normal",
  15530. height: math.unit(7 + 4 / 12, "feet"),
  15531. default: true
  15532. },
  15533. {
  15534. name: "Macro",
  15535. height: math.unit(220, "feet")
  15536. },
  15537. {
  15538. name: "Megamacro",
  15539. height: math.unit(11, "miles")
  15540. },
  15541. ]
  15542. ))
  15543. characterMakers.push(() => makeCharacter(
  15544. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15545. {
  15546. front: {
  15547. height: math.unit(7 + 4/12, "feet"),
  15548. weight: math.unit(750, "lb"),
  15549. name: "Front",
  15550. image: {
  15551. source: "./media/characters/regena-maxwell/front.svg",
  15552. extra: 984/856,
  15553. bottom: 87/1071
  15554. }
  15555. },
  15556. back: {
  15557. height: math.unit(7 + 4/12, "feet"),
  15558. weight: math.unit(750, "lb"),
  15559. name: "Back",
  15560. image: {
  15561. source: "./media/characters/regena-maxwell/back.svg",
  15562. extra: 981/854,
  15563. bottom: 57/1038
  15564. }
  15565. },
  15566. frontCostume: {
  15567. height: math.unit(7 + 4/12, "feet"),
  15568. weight: math.unit(750, "lb"),
  15569. name: "Front (Costume)",
  15570. image: {
  15571. source: "./media/characters/regena-maxwell/front-costume.svg",
  15572. extra: 984/856,
  15573. bottom: 87/1071
  15574. }
  15575. },
  15576. backcostume: {
  15577. height: math.unit(7 + 4/12, "feet"),
  15578. weight: math.unit(750, "lb"),
  15579. name: "Back (Costume)",
  15580. image: {
  15581. source: "./media/characters/regena-maxwell/back-costume.svg",
  15582. extra: 981/854,
  15583. bottom: 57/1038
  15584. }
  15585. },
  15586. },
  15587. [
  15588. {
  15589. name: "Normal",
  15590. height: math.unit(7 + 4 / 12, "feet"),
  15591. default: true
  15592. },
  15593. {
  15594. name: "Macro",
  15595. height: math.unit(220, "feet")
  15596. },
  15597. {
  15598. name: "Megamacro",
  15599. height: math.unit(11, "miles")
  15600. },
  15601. ]
  15602. ))
  15603. characterMakers.push(() => makeCharacter(
  15604. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15605. {
  15606. front: {
  15607. height: math.unit(6, "feet"),
  15608. weight: math.unit(150, "lb"),
  15609. name: "Front",
  15610. image: {
  15611. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15612. extra: 860 / 690,
  15613. bottom: 0.03
  15614. }
  15615. },
  15616. },
  15617. [
  15618. {
  15619. name: "Normal",
  15620. height: math.unit(1.7, "meters"),
  15621. default: true
  15622. },
  15623. ]
  15624. ))
  15625. characterMakers.push(() => makeCharacter(
  15626. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15627. {
  15628. front: {
  15629. height: math.unit(6, "feet"),
  15630. weight: math.unit(150, "lb"),
  15631. name: "Front",
  15632. image: {
  15633. source: "./media/characters/quilly/front.svg",
  15634. extra: 890 / 776
  15635. }
  15636. },
  15637. },
  15638. [
  15639. {
  15640. name: "Gigamacro",
  15641. height: math.unit(404090, "miles"),
  15642. default: true
  15643. },
  15644. ]
  15645. ))
  15646. characterMakers.push(() => makeCharacter(
  15647. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15648. {
  15649. front: {
  15650. height: math.unit(7 + 8 / 12, "feet"),
  15651. weight: math.unit(350, "lb"),
  15652. name: "Front",
  15653. image: {
  15654. source: "./media/characters/tempest/front.svg",
  15655. extra: 1175 / 1086,
  15656. bottom: 0.02
  15657. }
  15658. },
  15659. },
  15660. [
  15661. {
  15662. name: "Normal",
  15663. height: math.unit(7 + 8 / 12, "feet"),
  15664. default: true
  15665. },
  15666. ]
  15667. ))
  15668. characterMakers.push(() => makeCharacter(
  15669. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15670. {
  15671. side: {
  15672. height: math.unit(4 + 5 / 12, "feet"),
  15673. weight: math.unit(80, "lb"),
  15674. name: "Side",
  15675. image: {
  15676. source: "./media/characters/rodger/side.svg",
  15677. extra: 1235 / 1118
  15678. }
  15679. },
  15680. },
  15681. [
  15682. {
  15683. name: "Micro",
  15684. height: math.unit(1, "inch")
  15685. },
  15686. {
  15687. name: "Normal",
  15688. height: math.unit(4 + 5 / 12, "feet"),
  15689. default: true
  15690. },
  15691. {
  15692. name: "Macro",
  15693. height: math.unit(120, "feet")
  15694. },
  15695. ]
  15696. ))
  15697. characterMakers.push(() => makeCharacter(
  15698. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15699. {
  15700. front: {
  15701. height: math.unit(6, "feet"),
  15702. weight: math.unit(150, "lb"),
  15703. name: "Front",
  15704. image: {
  15705. source: "./media/characters/danyel/front.svg",
  15706. extra: 1185 / 1123,
  15707. bottom: 0.05
  15708. }
  15709. },
  15710. },
  15711. [
  15712. {
  15713. name: "Shrunken",
  15714. height: math.unit(0.5, "mm")
  15715. },
  15716. {
  15717. name: "Micro",
  15718. height: math.unit(1, "mm"),
  15719. default: true
  15720. },
  15721. {
  15722. name: "Upsized",
  15723. height: math.unit(5 + 5 / 12, "feet")
  15724. },
  15725. ]
  15726. ))
  15727. characterMakers.push(() => makeCharacter(
  15728. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15729. {
  15730. front: {
  15731. height: math.unit(5 + 6 / 12, "feet"),
  15732. weight: math.unit(200, "lb"),
  15733. name: "Front",
  15734. image: {
  15735. source: "./media/characters/vivian-bijoux/front.svg",
  15736. extra: 1217/1209,
  15737. bottom: 76/1293
  15738. }
  15739. },
  15740. back: {
  15741. height: math.unit(5 + 6 / 12, "feet"),
  15742. weight: math.unit(200, "lb"),
  15743. name: "Back",
  15744. image: {
  15745. source: "./media/characters/vivian-bijoux/back.svg",
  15746. extra: 1214/1208,
  15747. bottom: 51/1265
  15748. }
  15749. },
  15750. dressed: {
  15751. height: math.unit(5 + 6 / 12, "feet"),
  15752. weight: math.unit(200, "lb"),
  15753. name: "Dressed",
  15754. image: {
  15755. source: "./media/characters/vivian-bijoux/dressed.svg",
  15756. extra: 1217/1209,
  15757. bottom: 76/1293
  15758. }
  15759. },
  15760. },
  15761. [
  15762. {
  15763. name: "Normal",
  15764. height: math.unit(5 + 6 / 12, "feet"),
  15765. default: true
  15766. },
  15767. {
  15768. name: "Bad Dream",
  15769. height: math.unit(500, "feet")
  15770. },
  15771. {
  15772. name: "Nightmare",
  15773. height: math.unit(500, "miles")
  15774. },
  15775. ]
  15776. ))
  15777. characterMakers.push(() => makeCharacter(
  15778. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15779. {
  15780. front: {
  15781. height: math.unit(6 + 1 / 12, "feet"),
  15782. weight: math.unit(260, "lb"),
  15783. name: "Front",
  15784. image: {
  15785. source: "./media/characters/zeta/front.svg",
  15786. extra: 1968 / 1889,
  15787. bottom: 0.06
  15788. }
  15789. },
  15790. back: {
  15791. height: math.unit(6 + 1 / 12, "feet"),
  15792. weight: math.unit(260, "lb"),
  15793. name: "Back",
  15794. image: {
  15795. source: "./media/characters/zeta/back.svg",
  15796. extra: 1944 / 1858,
  15797. bottom: 0.03
  15798. }
  15799. },
  15800. hand: {
  15801. height: math.unit(1.112, "feet"),
  15802. name: "Hand",
  15803. image: {
  15804. source: "./media/characters/zeta/hand.svg"
  15805. }
  15806. },
  15807. foot: {
  15808. height: math.unit(1.48, "feet"),
  15809. name: "Foot",
  15810. image: {
  15811. source: "./media/characters/zeta/foot.svg"
  15812. }
  15813. },
  15814. },
  15815. [
  15816. {
  15817. name: "Micro",
  15818. height: math.unit(6, "inches")
  15819. },
  15820. {
  15821. name: "Normal",
  15822. height: math.unit(6 + 1 / 12, "feet"),
  15823. default: true
  15824. },
  15825. {
  15826. name: "Macro",
  15827. height: math.unit(20, "feet")
  15828. },
  15829. ]
  15830. ))
  15831. characterMakers.push(() => makeCharacter(
  15832. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15833. {
  15834. front: {
  15835. height: math.unit(6, "feet"),
  15836. weight: math.unit(150, "lb"),
  15837. name: "Front",
  15838. image: {
  15839. source: "./media/characters/jamie-larsen/front.svg",
  15840. extra: 962 / 933,
  15841. bottom: 0.02
  15842. }
  15843. },
  15844. back: {
  15845. height: math.unit(6, "feet"),
  15846. weight: math.unit(150, "lb"),
  15847. name: "Back",
  15848. image: {
  15849. source: "./media/characters/jamie-larsen/back.svg",
  15850. extra: 997 / 946
  15851. }
  15852. },
  15853. },
  15854. [
  15855. {
  15856. name: "Macro",
  15857. height: math.unit(28 + 7 / 12, "feet"),
  15858. default: true
  15859. },
  15860. {
  15861. name: "Macro+",
  15862. height: math.unit(180, "feet")
  15863. },
  15864. {
  15865. name: "Megamacro",
  15866. height: math.unit(10, "miles")
  15867. },
  15868. {
  15869. name: "Gigamacro",
  15870. height: math.unit(200000, "miles")
  15871. },
  15872. ]
  15873. ))
  15874. characterMakers.push(() => makeCharacter(
  15875. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15876. {
  15877. front: {
  15878. height: math.unit(6, "feet"),
  15879. weight: math.unit(120, "lb"),
  15880. name: "Front",
  15881. image: {
  15882. source: "./media/characters/vance/front.svg",
  15883. extra: 1980 / 1890,
  15884. bottom: 0.09
  15885. }
  15886. },
  15887. back: {
  15888. height: math.unit(6, "feet"),
  15889. weight: math.unit(120, "lb"),
  15890. name: "Back",
  15891. image: {
  15892. source: "./media/characters/vance/back.svg",
  15893. extra: 2081 / 1994,
  15894. bottom: 0.014
  15895. }
  15896. },
  15897. hand: {
  15898. height: math.unit(0.88, "feet"),
  15899. name: "Hand",
  15900. image: {
  15901. source: "./media/characters/vance/hand.svg"
  15902. }
  15903. },
  15904. foot: {
  15905. height: math.unit(0.64, "feet"),
  15906. name: "Foot",
  15907. image: {
  15908. source: "./media/characters/vance/foot.svg"
  15909. }
  15910. },
  15911. },
  15912. [
  15913. {
  15914. name: "Small",
  15915. height: math.unit(90, "feet"),
  15916. default: true
  15917. },
  15918. {
  15919. name: "Macro",
  15920. height: math.unit(100, "meters")
  15921. },
  15922. {
  15923. name: "Megamacro",
  15924. height: math.unit(15, "miles")
  15925. },
  15926. ]
  15927. ))
  15928. characterMakers.push(() => makeCharacter(
  15929. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15930. {
  15931. front: {
  15932. height: math.unit(6, "feet"),
  15933. weight: math.unit(180, "lb"),
  15934. name: "Front",
  15935. image: {
  15936. source: "./media/characters/xochitl/front.svg",
  15937. extra: 2297 / 2261,
  15938. bottom: 0.065
  15939. }
  15940. },
  15941. back: {
  15942. height: math.unit(6, "feet"),
  15943. weight: math.unit(180, "lb"),
  15944. name: "Back",
  15945. image: {
  15946. source: "./media/characters/xochitl/back.svg",
  15947. extra: 2386 / 2354,
  15948. bottom: 0.01
  15949. }
  15950. },
  15951. foot: {
  15952. height: math.unit(6 / 5 * 1.15, "feet"),
  15953. weight: math.unit(150, "lb"),
  15954. name: "Foot",
  15955. image: {
  15956. source: "./media/characters/xochitl/foot.svg"
  15957. }
  15958. },
  15959. },
  15960. [
  15961. {
  15962. name: "Macro",
  15963. height: math.unit(80, "feet")
  15964. },
  15965. {
  15966. name: "Macro+",
  15967. height: math.unit(400, "feet"),
  15968. default: true
  15969. },
  15970. {
  15971. name: "Gigamacro",
  15972. height: math.unit(80000, "miles")
  15973. },
  15974. {
  15975. name: "Gigamacro+",
  15976. height: math.unit(400000, "miles")
  15977. },
  15978. {
  15979. name: "Teramacro",
  15980. height: math.unit(300, "AU")
  15981. },
  15982. ]
  15983. ))
  15984. characterMakers.push(() => makeCharacter(
  15985. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15986. {
  15987. front: {
  15988. height: math.unit(6, "feet"),
  15989. weight: math.unit(150, "lb"),
  15990. name: "Front",
  15991. image: {
  15992. source: "./media/characters/vincent/front.svg",
  15993. extra: 1130 / 1080,
  15994. bottom: 0.055
  15995. }
  15996. },
  15997. beak: {
  15998. height: math.unit(6 * 0.1, "feet"),
  15999. name: "Beak",
  16000. image: {
  16001. source: "./media/characters/vincent/beak.svg"
  16002. }
  16003. },
  16004. hand: {
  16005. height: math.unit(6 * 0.85, "feet"),
  16006. weight: math.unit(150, "lb"),
  16007. name: "Hand",
  16008. image: {
  16009. source: "./media/characters/vincent/hand.svg"
  16010. }
  16011. },
  16012. foot: {
  16013. height: math.unit(6 * 0.19, "feet"),
  16014. weight: math.unit(150, "lb"),
  16015. name: "Foot",
  16016. image: {
  16017. source: "./media/characters/vincent/foot.svg"
  16018. }
  16019. },
  16020. },
  16021. [
  16022. {
  16023. name: "Base",
  16024. height: math.unit(6 + 5 / 12, "feet"),
  16025. default: true
  16026. },
  16027. {
  16028. name: "Macro",
  16029. height: math.unit(300, "feet")
  16030. },
  16031. {
  16032. name: "Megamacro",
  16033. height: math.unit(2, "miles")
  16034. },
  16035. {
  16036. name: "Gigamacro",
  16037. height: math.unit(1000, "miles")
  16038. },
  16039. ]
  16040. ))
  16041. characterMakers.push(() => makeCharacter(
  16042. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  16043. {
  16044. front: {
  16045. height: math.unit(2, "meters"),
  16046. weight: math.unit(500, "kg"),
  16047. name: "Front",
  16048. image: {
  16049. source: "./media/characters/coatl/front.svg",
  16050. extra: 3948 / 3500,
  16051. bottom: 0.082
  16052. }
  16053. },
  16054. },
  16055. [
  16056. {
  16057. name: "Normal",
  16058. height: math.unit(4, "meters")
  16059. },
  16060. {
  16061. name: "Macro",
  16062. height: math.unit(100, "meters"),
  16063. default: true
  16064. },
  16065. {
  16066. name: "Macro+",
  16067. height: math.unit(300, "meters")
  16068. },
  16069. {
  16070. name: "Megamacro",
  16071. height: math.unit(3, "gigameters")
  16072. },
  16073. {
  16074. name: "Megamacro+",
  16075. height: math.unit(300, "terameters")
  16076. },
  16077. {
  16078. name: "Megamacro++",
  16079. height: math.unit(3, "lightyears")
  16080. },
  16081. ]
  16082. ))
  16083. characterMakers.push(() => makeCharacter(
  16084. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  16085. {
  16086. front: {
  16087. height: math.unit(6, "feet"),
  16088. weight: math.unit(50, "kg"),
  16089. name: "front",
  16090. image: {
  16091. source: "./media/characters/shiroryu/front.svg",
  16092. extra: 1990 / 1935
  16093. }
  16094. },
  16095. },
  16096. [
  16097. {
  16098. name: "Mortal Mingling",
  16099. height: math.unit(3, "meters")
  16100. },
  16101. {
  16102. name: "Kaiju-ish",
  16103. height: math.unit(250, "meters")
  16104. },
  16105. {
  16106. name: "Somewhat Godly",
  16107. height: math.unit(400, "km"),
  16108. default: true
  16109. },
  16110. {
  16111. name: "Planetary",
  16112. height: math.unit(300, "megameters")
  16113. },
  16114. {
  16115. name: "Galaxy-dwarfing",
  16116. height: math.unit(450, "kiloparsecs")
  16117. },
  16118. {
  16119. name: "Universe Eater",
  16120. height: math.unit(150, "gigaparsecs")
  16121. },
  16122. {
  16123. name: "Almost Immeasurable",
  16124. height: math.unit(1.3e266, "yottaparsecs")
  16125. },
  16126. ]
  16127. ))
  16128. characterMakers.push(() => makeCharacter(
  16129. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  16130. {
  16131. front: {
  16132. height: math.unit(6, "feet"),
  16133. weight: math.unit(150, "lb"),
  16134. name: "Front",
  16135. image: {
  16136. source: "./media/characters/umeko/front.svg",
  16137. extra: 1,
  16138. bottom: 0.019
  16139. }
  16140. },
  16141. frontArmored: {
  16142. height: math.unit(6, "feet"),
  16143. weight: math.unit(150, "lb"),
  16144. name: "Front (Armored)",
  16145. image: {
  16146. source: "./media/characters/umeko/front-armored.svg",
  16147. extra: 1,
  16148. bottom: 0.021
  16149. }
  16150. },
  16151. },
  16152. [
  16153. {
  16154. name: "Macro",
  16155. height: math.unit(220, "feet"),
  16156. default: true
  16157. },
  16158. {
  16159. name: "Guardian Dragon",
  16160. height: math.unit(50, "miles")
  16161. },
  16162. {
  16163. name: "Cosmic",
  16164. height: math.unit(800000, "miles")
  16165. },
  16166. ]
  16167. ))
  16168. characterMakers.push(() => makeCharacter(
  16169. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  16170. {
  16171. front: {
  16172. height: math.unit(6, "feet"),
  16173. weight: math.unit(150, "lb"),
  16174. name: "Front",
  16175. image: {
  16176. source: "./media/characters/cassidy/front.svg",
  16177. extra: 810/808,
  16178. bottom: 41/851
  16179. }
  16180. },
  16181. },
  16182. [
  16183. {
  16184. name: "Canon Height",
  16185. height: math.unit(120, "feet"),
  16186. default: true
  16187. },
  16188. {
  16189. name: "Macro+",
  16190. height: math.unit(400, "feet")
  16191. },
  16192. {
  16193. name: "Macro++",
  16194. height: math.unit(4000, "feet")
  16195. },
  16196. {
  16197. name: "Megamacro",
  16198. height: math.unit(3, "miles")
  16199. },
  16200. ]
  16201. ))
  16202. characterMakers.push(() => makeCharacter(
  16203. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  16204. {
  16205. front: {
  16206. height: math.unit(6, "feet"),
  16207. weight: math.unit(150, "lb"),
  16208. name: "Front",
  16209. image: {
  16210. source: "./media/characters/isaac/front.svg",
  16211. extra: 896 / 815,
  16212. bottom: 0.11
  16213. }
  16214. },
  16215. },
  16216. [
  16217. {
  16218. name: "Human Size",
  16219. height: math.unit(8, "feet"),
  16220. default: true
  16221. },
  16222. {
  16223. name: "Macro",
  16224. height: math.unit(400, "feet")
  16225. },
  16226. {
  16227. name: "Megamacro",
  16228. height: math.unit(50, "miles")
  16229. },
  16230. {
  16231. name: "Canon Height",
  16232. height: math.unit(200, "AU")
  16233. },
  16234. ]
  16235. ))
  16236. characterMakers.push(() => makeCharacter(
  16237. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  16238. {
  16239. front: {
  16240. height: math.unit(6, "feet"),
  16241. weight: math.unit(72, "kg"),
  16242. name: "Front",
  16243. image: {
  16244. source: "./media/characters/sleekit/front.svg",
  16245. extra: 4693 / 4487,
  16246. bottom: 0.012
  16247. }
  16248. },
  16249. },
  16250. [
  16251. {
  16252. name: "Minimum Height",
  16253. height: math.unit(10, "meters")
  16254. },
  16255. {
  16256. name: "Smaller",
  16257. height: math.unit(25, "meters")
  16258. },
  16259. {
  16260. name: "Larger",
  16261. height: math.unit(38, "meters"),
  16262. default: true
  16263. },
  16264. {
  16265. name: "Maximum height",
  16266. height: math.unit(100, "meters")
  16267. },
  16268. ]
  16269. ))
  16270. characterMakers.push(() => makeCharacter(
  16271. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  16272. {
  16273. front: {
  16274. height: math.unit(6, "feet"),
  16275. weight: math.unit(150, "lb"),
  16276. name: "Front",
  16277. image: {
  16278. source: "./media/characters/nillia/front.svg",
  16279. extra: 719/665,
  16280. bottom: 6/725
  16281. }
  16282. },
  16283. back: {
  16284. height: math.unit(6, "feet"),
  16285. weight: math.unit(150, "lb"),
  16286. name: "Back",
  16287. image: {
  16288. source: "./media/characters/nillia/back.svg",
  16289. extra: 705/651,
  16290. bottom: 5/710
  16291. }
  16292. },
  16293. },
  16294. [
  16295. {
  16296. name: "Canon Height",
  16297. height: math.unit(489, "feet"),
  16298. default: true
  16299. }
  16300. ]
  16301. ))
  16302. characterMakers.push(() => makeCharacter(
  16303. { name: "Mesmyriza", species: ["shark", "dragon", "robot", "deity"], tags: ["anthro"] },
  16304. {
  16305. front: {
  16306. height: math.unit(6, "feet"),
  16307. weight: math.unit(150, "lb"),
  16308. name: "Front",
  16309. image: {
  16310. source: "./media/characters/mesmyriza/front.svg",
  16311. extra: 1541/1291,
  16312. bottom: 87/1628
  16313. }
  16314. },
  16315. foot: {
  16316. height: math.unit(6 / (250 / 35), "feet"),
  16317. name: "Foot",
  16318. image: {
  16319. source: "./media/characters/mesmyriza/foot.svg"
  16320. }
  16321. },
  16322. },
  16323. [
  16324. {
  16325. name: "Macro",
  16326. height: math.unit(457, "meters"),
  16327. default: true
  16328. },
  16329. {
  16330. name: "Megamacro",
  16331. height: math.unit(8, "megameters")
  16332. },
  16333. ]
  16334. ))
  16335. characterMakers.push(() => makeCharacter(
  16336. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  16337. {
  16338. front: {
  16339. height: math.unit(6, "feet"),
  16340. weight: math.unit(250, "lb"),
  16341. name: "Front",
  16342. image: {
  16343. source: "./media/characters/saudade/front.svg",
  16344. extra: 1172 / 1139,
  16345. bottom: 0.035
  16346. }
  16347. },
  16348. },
  16349. [
  16350. {
  16351. name: "Micro",
  16352. height: math.unit(3, "inches")
  16353. },
  16354. {
  16355. name: "Normal",
  16356. height: math.unit(6, "feet"),
  16357. default: true
  16358. },
  16359. {
  16360. name: "Macro",
  16361. height: math.unit(50, "feet")
  16362. },
  16363. {
  16364. name: "Megamacro",
  16365. height: math.unit(2800, "feet")
  16366. },
  16367. ]
  16368. ))
  16369. characterMakers.push(() => makeCharacter(
  16370. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  16371. {
  16372. front: {
  16373. height: math.unit(5 + 4 / 12, "feet"),
  16374. weight: math.unit(100, "lb"),
  16375. name: "Front",
  16376. image: {
  16377. source: "./media/characters/keireer/front.svg",
  16378. extra: 716 / 666,
  16379. bottom: 0.05
  16380. }
  16381. },
  16382. },
  16383. [
  16384. {
  16385. name: "Normal",
  16386. height: math.unit(5 + 4 / 12, "feet"),
  16387. default: true
  16388. },
  16389. ]
  16390. ))
  16391. characterMakers.push(() => makeCharacter(
  16392. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  16393. {
  16394. front: {
  16395. height: math.unit(5.5, "feet"),
  16396. weight: math.unit(90, "kg"),
  16397. name: "Front",
  16398. image: {
  16399. source: "./media/characters/mirja/front.svg",
  16400. extra: 1452/1262,
  16401. bottom: 67/1519
  16402. }
  16403. },
  16404. frontDressed: {
  16405. height: math.unit(5.5, "feet"),
  16406. weight: math.unit(90, "lb"),
  16407. name: "Front (Dressed)",
  16408. image: {
  16409. source: "./media/characters/mirja/dressed.svg",
  16410. extra: 1452/1262,
  16411. bottom: 67/1519
  16412. }
  16413. },
  16414. back: {
  16415. height: math.unit(6, "feet"),
  16416. weight: math.unit(90, "lb"),
  16417. name: "Back",
  16418. image: {
  16419. source: "./media/characters/mirja/back.svg",
  16420. extra: 1892/1795,
  16421. bottom: 48/1940
  16422. }
  16423. },
  16424. maw: {
  16425. height: math.unit(1.312, "feet"),
  16426. name: "Maw",
  16427. image: {
  16428. source: "./media/characters/mirja/maw.svg"
  16429. }
  16430. },
  16431. paw: {
  16432. height: math.unit(1.15, "feet"),
  16433. name: "Paw",
  16434. image: {
  16435. source: "./media/characters/mirja/paw.svg"
  16436. }
  16437. },
  16438. },
  16439. [
  16440. {
  16441. name: "\"Incognito\"",
  16442. height: math.unit(3, "meters")
  16443. },
  16444. {
  16445. name: "Strolling Size",
  16446. height: math.unit(15, "km")
  16447. },
  16448. {
  16449. name: "Larger Strolling Size",
  16450. height: math.unit(400, "km")
  16451. },
  16452. {
  16453. name: "Preferred Size",
  16454. height: math.unit(5000, "km"),
  16455. default: true
  16456. },
  16457. {
  16458. name: "True Size",
  16459. height: math.unit(30657809462086840000000000000000, "parsecs"),
  16460. },
  16461. ]
  16462. ))
  16463. characterMakers.push(() => makeCharacter(
  16464. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  16465. {
  16466. front: {
  16467. height: math.unit(15, "feet"),
  16468. weight: math.unit(880, "kg"),
  16469. name: "Front",
  16470. image: {
  16471. source: "./media/characters/nightraver/front.svg",
  16472. extra: 2444 / 2160,
  16473. bottom: 0.027
  16474. }
  16475. },
  16476. back: {
  16477. height: math.unit(15, "feet"),
  16478. weight: math.unit(880, "kg"),
  16479. name: "Back",
  16480. image: {
  16481. source: "./media/characters/nightraver/back.svg",
  16482. extra: 2309 / 2180,
  16483. bottom: 0.005
  16484. }
  16485. },
  16486. sole: {
  16487. height: math.unit(2.878, "feet"),
  16488. name: "Sole",
  16489. image: {
  16490. source: "./media/characters/nightraver/sole.svg"
  16491. }
  16492. },
  16493. foot: {
  16494. height: math.unit(2.285, "feet"),
  16495. name: "Foot",
  16496. image: {
  16497. source: "./media/characters/nightraver/foot.svg"
  16498. }
  16499. },
  16500. maw: {
  16501. height: math.unit(2.67, "feet"),
  16502. name: "Maw",
  16503. image: {
  16504. source: "./media/characters/nightraver/maw.svg"
  16505. }
  16506. },
  16507. },
  16508. [
  16509. {
  16510. name: "Micro",
  16511. height: math.unit(1, "cm")
  16512. },
  16513. {
  16514. name: "Normal",
  16515. height: math.unit(15, "feet"),
  16516. default: true
  16517. },
  16518. {
  16519. name: "Macro",
  16520. height: math.unit(300, "feet")
  16521. },
  16522. {
  16523. name: "Megamacro",
  16524. height: math.unit(300, "miles")
  16525. },
  16526. {
  16527. name: "Gigamacro",
  16528. height: math.unit(10000, "miles")
  16529. },
  16530. ]
  16531. ))
  16532. characterMakers.push(() => makeCharacter(
  16533. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16534. {
  16535. side: {
  16536. height: math.unit(2, "inches"),
  16537. weight: math.unit(5, "grams"),
  16538. name: "Side",
  16539. image: {
  16540. source: "./media/characters/arc/side.svg"
  16541. }
  16542. },
  16543. },
  16544. [
  16545. {
  16546. name: "Micro",
  16547. height: math.unit(2, "inches"),
  16548. default: true
  16549. },
  16550. ]
  16551. ))
  16552. characterMakers.push(() => makeCharacter(
  16553. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16554. {
  16555. front: {
  16556. height: math.unit(1.1938, "meters"),
  16557. weight: math.unit(54, "kg"),
  16558. name: "Front",
  16559. image: {
  16560. source: "./media/characters/nebula-shahar/front.svg",
  16561. extra: 1642 / 1436,
  16562. bottom: 0.06
  16563. }
  16564. },
  16565. },
  16566. [
  16567. {
  16568. name: "Megamicro",
  16569. height: math.unit(0.3, "mm")
  16570. },
  16571. {
  16572. name: "Micro",
  16573. height: math.unit(3, "cm")
  16574. },
  16575. {
  16576. name: "Normal",
  16577. height: math.unit(138, "cm"),
  16578. default: true
  16579. },
  16580. {
  16581. name: "Macro",
  16582. height: math.unit(30, "m")
  16583. },
  16584. ]
  16585. ))
  16586. characterMakers.push(() => makeCharacter(
  16587. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16588. {
  16589. front: {
  16590. height: math.unit(5.24, "feet"),
  16591. weight: math.unit(150, "lb"),
  16592. name: "Front",
  16593. image: {
  16594. source: "./media/characters/shayla/front.svg",
  16595. extra: 1512 / 1414,
  16596. bottom: 0.01
  16597. }
  16598. },
  16599. back: {
  16600. height: math.unit(5.24, "feet"),
  16601. weight: math.unit(150, "lb"),
  16602. name: "Back",
  16603. image: {
  16604. source: "./media/characters/shayla/back.svg",
  16605. extra: 1512 / 1414
  16606. }
  16607. },
  16608. hand: {
  16609. height: math.unit(0.7781496062992126, "feet"),
  16610. name: "Hand",
  16611. image: {
  16612. source: "./media/characters/shayla/hand.svg"
  16613. }
  16614. },
  16615. foot: {
  16616. height: math.unit(1.4206036745406823, "feet"),
  16617. name: "Foot",
  16618. image: {
  16619. source: "./media/characters/shayla/foot.svg"
  16620. }
  16621. },
  16622. },
  16623. [
  16624. {
  16625. name: "Micro",
  16626. height: math.unit(0.32, "feet")
  16627. },
  16628. {
  16629. name: "Normal",
  16630. height: math.unit(5.24, "feet"),
  16631. default: true
  16632. },
  16633. {
  16634. name: "Macro",
  16635. height: math.unit(492.12, "feet")
  16636. },
  16637. {
  16638. name: "Megamacro",
  16639. height: math.unit(186.41, "miles")
  16640. },
  16641. ]
  16642. ))
  16643. characterMakers.push(() => makeCharacter(
  16644. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16645. {
  16646. front: {
  16647. height: math.unit(2.2, "m"),
  16648. weight: math.unit(120, "kg"),
  16649. name: "Front",
  16650. image: {
  16651. source: "./media/characters/pia-jr/front.svg",
  16652. extra: 1000 / 970,
  16653. bottom: 0.035
  16654. }
  16655. },
  16656. hand: {
  16657. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16658. name: "Hand",
  16659. image: {
  16660. source: "./media/characters/pia-jr/hand.svg"
  16661. }
  16662. },
  16663. paw: {
  16664. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16665. name: "Paw",
  16666. image: {
  16667. source: "./media/characters/pia-jr/paw.svg"
  16668. }
  16669. },
  16670. },
  16671. [
  16672. {
  16673. name: "Micro",
  16674. height: math.unit(1.2, "cm")
  16675. },
  16676. {
  16677. name: "Normal",
  16678. height: math.unit(2.2, "m"),
  16679. default: true
  16680. },
  16681. {
  16682. name: "Macro",
  16683. height: math.unit(180, "m")
  16684. },
  16685. {
  16686. name: "Megamacro",
  16687. height: math.unit(420, "km")
  16688. },
  16689. ]
  16690. ))
  16691. characterMakers.push(() => makeCharacter(
  16692. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16693. {
  16694. front: {
  16695. height: math.unit(2, "m"),
  16696. weight: math.unit(115, "kg"),
  16697. name: "Front",
  16698. image: {
  16699. source: "./media/characters/pia-sr/front.svg",
  16700. extra: 760 / 730,
  16701. bottom: 0.015
  16702. }
  16703. },
  16704. back: {
  16705. height: math.unit(2, "m"),
  16706. weight: math.unit(115, "kg"),
  16707. name: "Back",
  16708. image: {
  16709. source: "./media/characters/pia-sr/back.svg",
  16710. extra: 760 / 730,
  16711. bottom: 0.01
  16712. }
  16713. },
  16714. hand: {
  16715. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16716. name: "Hand",
  16717. image: {
  16718. source: "./media/characters/pia-sr/hand.svg"
  16719. }
  16720. },
  16721. foot: {
  16722. height: math.unit(1.83, "feet"),
  16723. name: "Foot",
  16724. image: {
  16725. source: "./media/characters/pia-sr/foot.svg"
  16726. }
  16727. },
  16728. },
  16729. [
  16730. {
  16731. name: "Micro",
  16732. height: math.unit(88, "mm")
  16733. },
  16734. {
  16735. name: "Normal",
  16736. height: math.unit(2, "m"),
  16737. default: true
  16738. },
  16739. {
  16740. name: "Macro",
  16741. height: math.unit(200, "m")
  16742. },
  16743. {
  16744. name: "Megamacro",
  16745. height: math.unit(420, "km")
  16746. },
  16747. ]
  16748. ))
  16749. characterMakers.push(() => makeCharacter(
  16750. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16751. {
  16752. front: {
  16753. height: math.unit(8 + 2 / 12, "feet"),
  16754. weight: math.unit(300, "lb"),
  16755. name: "Front",
  16756. image: {
  16757. source: "./media/characters/kibibyte/front.svg",
  16758. extra: 2221 / 2098,
  16759. bottom: 0.04
  16760. }
  16761. },
  16762. },
  16763. [
  16764. {
  16765. name: "Normal",
  16766. height: math.unit(8 + 2 / 12, "feet"),
  16767. default: true
  16768. },
  16769. {
  16770. name: "Socialable Macro",
  16771. height: math.unit(50, "feet")
  16772. },
  16773. {
  16774. name: "Macro",
  16775. height: math.unit(300, "feet")
  16776. },
  16777. {
  16778. name: "Megamacro",
  16779. height: math.unit(500, "miles")
  16780. },
  16781. ]
  16782. ))
  16783. characterMakers.push(() => makeCharacter(
  16784. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16785. {
  16786. front: {
  16787. height: math.unit(6, "feet"),
  16788. weight: math.unit(150, "lb"),
  16789. name: "Front",
  16790. image: {
  16791. source: "./media/characters/felix/front.svg",
  16792. extra: 762 / 722,
  16793. bottom: 0.02
  16794. }
  16795. },
  16796. frontClothed: {
  16797. height: math.unit(6, "feet"),
  16798. weight: math.unit(150, "lb"),
  16799. name: "Front (Clothed)",
  16800. image: {
  16801. source: "./media/characters/felix/front-clothed.svg",
  16802. extra: 762 / 722,
  16803. bottom: 0.02
  16804. }
  16805. },
  16806. },
  16807. [
  16808. {
  16809. name: "Normal",
  16810. height: math.unit(6 + 8 / 12, "feet"),
  16811. default: true
  16812. },
  16813. {
  16814. name: "Macro",
  16815. height: math.unit(2600, "feet")
  16816. },
  16817. {
  16818. name: "Megamacro",
  16819. height: math.unit(450, "miles")
  16820. },
  16821. ]
  16822. ))
  16823. characterMakers.push(() => makeCharacter(
  16824. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16825. {
  16826. front: {
  16827. height: math.unit(6 + 1 / 12, "feet"),
  16828. weight: math.unit(250, "lb"),
  16829. name: "Front",
  16830. image: {
  16831. source: "./media/characters/tobo/front.svg",
  16832. extra: 608 / 586,
  16833. bottom: 0.023
  16834. }
  16835. },
  16836. back: {
  16837. height: math.unit(6 + 1 / 12, "feet"),
  16838. weight: math.unit(250, "lb"),
  16839. name: "Back",
  16840. image: {
  16841. source: "./media/characters/tobo/back.svg",
  16842. extra: 608 / 586
  16843. }
  16844. },
  16845. },
  16846. [
  16847. {
  16848. name: "Nano",
  16849. height: math.unit(2, "nm")
  16850. },
  16851. {
  16852. name: "Megamicro",
  16853. height: math.unit(0.1, "mm")
  16854. },
  16855. {
  16856. name: "Micro",
  16857. height: math.unit(1, "inch"),
  16858. default: true
  16859. },
  16860. {
  16861. name: "Human-sized",
  16862. height: math.unit(6 + 1 / 12, "feet")
  16863. },
  16864. {
  16865. name: "Macro",
  16866. height: math.unit(250, "feet")
  16867. },
  16868. {
  16869. name: "Megamacro",
  16870. height: math.unit(75, "miles")
  16871. },
  16872. {
  16873. name: "Texas-sized",
  16874. height: math.unit(750, "miles")
  16875. },
  16876. {
  16877. name: "Teramacro",
  16878. height: math.unit(50000, "miles")
  16879. },
  16880. ]
  16881. ))
  16882. characterMakers.push(() => makeCharacter(
  16883. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16884. {
  16885. front: {
  16886. height: math.unit(6, "feet"),
  16887. weight: math.unit(269, "lb"),
  16888. name: "Front",
  16889. image: {
  16890. source: "./media/characters/danny-kapowsky/front.svg",
  16891. extra: 766 / 736,
  16892. bottom: 0.044
  16893. }
  16894. },
  16895. back: {
  16896. height: math.unit(6, "feet"),
  16897. weight: math.unit(269, "lb"),
  16898. name: "Back",
  16899. image: {
  16900. source: "./media/characters/danny-kapowsky/back.svg",
  16901. extra: 797 / 760,
  16902. bottom: 0.025
  16903. }
  16904. },
  16905. },
  16906. [
  16907. {
  16908. name: "Macro",
  16909. height: math.unit(150, "feet"),
  16910. default: true
  16911. },
  16912. {
  16913. name: "Macro+",
  16914. height: math.unit(200, "feet")
  16915. },
  16916. {
  16917. name: "Macro++",
  16918. height: math.unit(300, "feet")
  16919. },
  16920. {
  16921. name: "Macro+++",
  16922. height: math.unit(400, "feet")
  16923. },
  16924. ]
  16925. ))
  16926. characterMakers.push(() => makeCharacter(
  16927. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16928. {
  16929. side: {
  16930. height: math.unit(6, "feet"),
  16931. weight: math.unit(170, "lb"),
  16932. name: "Side",
  16933. image: {
  16934. source: "./media/characters/finn/side.svg",
  16935. extra: 1953 / 1807,
  16936. bottom: 0.057
  16937. }
  16938. },
  16939. },
  16940. [
  16941. {
  16942. name: "Megamacro",
  16943. height: math.unit(14445, "feet"),
  16944. default: true
  16945. },
  16946. ]
  16947. ))
  16948. characterMakers.push(() => makeCharacter(
  16949. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16950. {
  16951. front: {
  16952. height: math.unit(5 + 6 / 12, "feet"),
  16953. weight: math.unit(125, "lb"),
  16954. name: "Front",
  16955. image: {
  16956. source: "./media/characters/roy/front.svg",
  16957. extra: 1,
  16958. bottom: 0.11
  16959. }
  16960. },
  16961. },
  16962. [
  16963. {
  16964. name: "Micro",
  16965. height: math.unit(3, "inches"),
  16966. default: true
  16967. },
  16968. {
  16969. name: "Normal",
  16970. height: math.unit(5 + 6 / 12, "feet")
  16971. },
  16972. {
  16973. name: "Lesser Macro",
  16974. height: math.unit(60, "feet")
  16975. },
  16976. {
  16977. name: "Greater Macro",
  16978. height: math.unit(120, "feet")
  16979. },
  16980. ]
  16981. ))
  16982. characterMakers.push(() => makeCharacter(
  16983. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16984. {
  16985. front: {
  16986. height: math.unit(6, "feet"),
  16987. weight: math.unit(100, "lb"),
  16988. name: "Front",
  16989. image: {
  16990. source: "./media/characters/aevsivs/front.svg",
  16991. extra: 1,
  16992. bottom: 0.03
  16993. }
  16994. },
  16995. back: {
  16996. height: math.unit(6, "feet"),
  16997. weight: math.unit(100, "lb"),
  16998. name: "Back",
  16999. image: {
  17000. source: "./media/characters/aevsivs/back.svg"
  17001. }
  17002. },
  17003. },
  17004. [
  17005. {
  17006. name: "Micro",
  17007. height: math.unit(2, "inches"),
  17008. default: true
  17009. },
  17010. {
  17011. name: "Normal",
  17012. height: math.unit(5, "feet")
  17013. },
  17014. ]
  17015. ))
  17016. characterMakers.push(() => makeCharacter(
  17017. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  17018. {
  17019. front: {
  17020. height: math.unit(5 + 7 / 12, "feet"),
  17021. weight: math.unit(159, "lb"),
  17022. name: "Front",
  17023. image: {
  17024. source: "./media/characters/hildegard/front.svg",
  17025. extra: 289 / 269,
  17026. bottom: 7.63 / 297.8
  17027. }
  17028. },
  17029. back: {
  17030. height: math.unit(5 + 7 / 12, "feet"),
  17031. weight: math.unit(159, "lb"),
  17032. name: "Back",
  17033. image: {
  17034. source: "./media/characters/hildegard/back.svg",
  17035. extra: 280 / 260,
  17036. bottom: 2.3 / 282
  17037. }
  17038. },
  17039. },
  17040. [
  17041. {
  17042. name: "Normal",
  17043. height: math.unit(5 + 7 / 12, "feet"),
  17044. default: true
  17045. },
  17046. ]
  17047. ))
  17048. characterMakers.push(() => makeCharacter(
  17049. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  17050. {
  17051. bernard: {
  17052. height: math.unit(2 + 7 / 12, "feet"),
  17053. weight: math.unit(66, "lb"),
  17054. name: "Bernard",
  17055. rename: true,
  17056. image: {
  17057. source: "./media/characters/bernard-wilder/bernard.svg",
  17058. extra: 192 / 128,
  17059. bottom: 0.05
  17060. }
  17061. },
  17062. wilder: {
  17063. height: math.unit(5 + 8 / 12, "feet"),
  17064. weight: math.unit(143, "lb"),
  17065. name: "Wilder",
  17066. rename: true,
  17067. image: {
  17068. source: "./media/characters/bernard-wilder/wilder.svg",
  17069. extra: 361 / 312,
  17070. bottom: 0.02
  17071. }
  17072. },
  17073. },
  17074. [
  17075. {
  17076. name: "Normal",
  17077. height: math.unit(2 + 7 / 12, "feet"),
  17078. default: true
  17079. },
  17080. ]
  17081. ))
  17082. characterMakers.push(() => makeCharacter(
  17083. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  17084. {
  17085. anthro: {
  17086. height: math.unit(6 + 1 / 12, "feet"),
  17087. weight: math.unit(155, "lb"),
  17088. name: "Anthro",
  17089. image: {
  17090. source: "./media/characters/hearth/anthro.svg",
  17091. extra: 1178/1136,
  17092. bottom: 28/1206
  17093. }
  17094. },
  17095. feral: {
  17096. height: math.unit(3.78, "feet"),
  17097. weight: math.unit(35, "kg"),
  17098. name: "Feral",
  17099. image: {
  17100. source: "./media/characters/hearth/feral.svg",
  17101. extra: 153 / 135,
  17102. bottom: 0.03
  17103. }
  17104. },
  17105. },
  17106. [
  17107. {
  17108. name: "Normal",
  17109. height: math.unit(6 + 1 / 12, "feet"),
  17110. default: true
  17111. },
  17112. ]
  17113. ))
  17114. characterMakers.push(() => makeCharacter(
  17115. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  17116. {
  17117. front: {
  17118. height: math.unit(6, "feet"),
  17119. weight: math.unit(182, "lb"),
  17120. name: "Front",
  17121. image: {
  17122. source: "./media/characters/ingrid/front.svg",
  17123. extra: 294 / 268,
  17124. bottom: 0.027
  17125. }
  17126. },
  17127. },
  17128. [
  17129. {
  17130. name: "Normal",
  17131. height: math.unit(6, "feet"),
  17132. default: true
  17133. },
  17134. ]
  17135. ))
  17136. characterMakers.push(() => makeCharacter(
  17137. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  17138. {
  17139. eevee: {
  17140. height: math.unit(2 + 10 / 12, "feet"),
  17141. weight: math.unit(86, "lb"),
  17142. name: "Malgam",
  17143. image: {
  17144. source: "./media/characters/malgam/eevee.svg",
  17145. extra: 952/784,
  17146. bottom: 38/990
  17147. }
  17148. },
  17149. sylveon: {
  17150. height: math.unit(4, "feet"),
  17151. weight: math.unit(101, "lb"),
  17152. name: "Future Malgam",
  17153. rename: true,
  17154. image: {
  17155. source: "./media/characters/malgam/sylveon.svg",
  17156. extra: 371 / 325,
  17157. bottom: 0.015
  17158. }
  17159. },
  17160. gigantamax: {
  17161. height: math.unit(50, "feet"),
  17162. name: "Gigantamax Malgam",
  17163. rename: true,
  17164. image: {
  17165. source: "./media/characters/malgam/gigantamax.svg"
  17166. }
  17167. },
  17168. },
  17169. [
  17170. {
  17171. name: "Normal",
  17172. height: math.unit(2 + 10 / 12, "feet"),
  17173. default: true
  17174. },
  17175. ]
  17176. ))
  17177. characterMakers.push(() => makeCharacter(
  17178. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  17179. {
  17180. front: {
  17181. height: math.unit(5 + 11 / 12, "feet"),
  17182. weight: math.unit(188, "lb"),
  17183. name: "Front",
  17184. image: {
  17185. source: "./media/characters/fleur/front.svg",
  17186. extra: 309 / 283,
  17187. bottom: 0.007
  17188. }
  17189. },
  17190. },
  17191. [
  17192. {
  17193. name: "Normal",
  17194. height: math.unit(5 + 11 / 12, "feet"),
  17195. default: true
  17196. },
  17197. ]
  17198. ))
  17199. characterMakers.push(() => makeCharacter(
  17200. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  17201. {
  17202. front: {
  17203. height: math.unit(5 + 4 / 12, "feet"),
  17204. weight: math.unit(122, "lb"),
  17205. name: "Front",
  17206. image: {
  17207. source: "./media/characters/jude/front.svg",
  17208. extra: 288 / 273,
  17209. bottom: 0.03
  17210. }
  17211. },
  17212. },
  17213. [
  17214. {
  17215. name: "Normal",
  17216. height: math.unit(5 + 4 / 12, "feet"),
  17217. default: true
  17218. },
  17219. ]
  17220. ))
  17221. characterMakers.push(() => makeCharacter(
  17222. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  17223. {
  17224. front: {
  17225. height: math.unit(5 + 11 / 12, "feet"),
  17226. weight: math.unit(190, "lb"),
  17227. name: "Front",
  17228. image: {
  17229. source: "./media/characters/seara/front.svg",
  17230. extra: 1,
  17231. bottom: 0.05
  17232. }
  17233. },
  17234. },
  17235. [
  17236. {
  17237. name: "Normal",
  17238. height: math.unit(5 + 11 / 12, "feet"),
  17239. default: true
  17240. },
  17241. ]
  17242. ))
  17243. characterMakers.push(() => makeCharacter(
  17244. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  17245. {
  17246. front: {
  17247. height: math.unit(16 + 5 / 12, "feet"),
  17248. weight: math.unit(524, "lb"),
  17249. name: "Front",
  17250. image: {
  17251. source: "./media/characters/caspian-lugia/front.svg",
  17252. extra: 1,
  17253. bottom: 0.04
  17254. }
  17255. },
  17256. },
  17257. [
  17258. {
  17259. name: "Normal",
  17260. height: math.unit(16 + 5 / 12, "feet"),
  17261. default: true
  17262. },
  17263. ]
  17264. ))
  17265. characterMakers.push(() => makeCharacter(
  17266. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  17267. {
  17268. front: {
  17269. height: math.unit(5 + 7 / 12, "feet"),
  17270. weight: math.unit(170, "lb"),
  17271. name: "Front",
  17272. image: {
  17273. source: "./media/characters/mika/front.svg",
  17274. extra: 1,
  17275. bottom: 0.016
  17276. }
  17277. },
  17278. },
  17279. [
  17280. {
  17281. name: "Normal",
  17282. height: math.unit(5 + 7 / 12, "feet"),
  17283. default: true
  17284. },
  17285. ]
  17286. ))
  17287. characterMakers.push(() => makeCharacter(
  17288. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  17289. {
  17290. front: {
  17291. height: math.unit(6 + 2 / 12, "feet"),
  17292. weight: math.unit(268, "lb"),
  17293. name: "Front",
  17294. image: {
  17295. source: "./media/characters/sol/front.svg",
  17296. extra: 247 / 231,
  17297. bottom: 0.05
  17298. }
  17299. },
  17300. },
  17301. [
  17302. {
  17303. name: "Normal",
  17304. height: math.unit(6 + 2 / 12, "feet"),
  17305. default: true
  17306. },
  17307. ]
  17308. ))
  17309. characterMakers.push(() => makeCharacter(
  17310. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  17311. {
  17312. buizel: {
  17313. height: math.unit(2 + 5 / 12, "feet"),
  17314. weight: math.unit(87, "lb"),
  17315. name: "Front",
  17316. image: {
  17317. source: "./media/characters/umiko/buizel.svg",
  17318. extra: 172 / 157,
  17319. bottom: 0.01
  17320. },
  17321. form: "buizel",
  17322. default: true
  17323. },
  17324. floatzel: {
  17325. height: math.unit(5 + 9 / 12, "feet"),
  17326. weight: math.unit(250, "lb"),
  17327. name: "Front",
  17328. image: {
  17329. source: "./media/characters/umiko/floatzel.svg",
  17330. extra: 1076/1006,
  17331. bottom: 15/1091
  17332. },
  17333. form: "floatzel",
  17334. default: true
  17335. },
  17336. },
  17337. [
  17338. {
  17339. name: "Normal",
  17340. height: math.unit(2 + 5 / 12, "feet"),
  17341. form: "buizel",
  17342. default: true
  17343. },
  17344. {
  17345. name: "Normal",
  17346. height: math.unit(5 + 9 / 12, "feet"),
  17347. form: "floatzel",
  17348. default: true
  17349. },
  17350. ],
  17351. {
  17352. "buizel": {
  17353. name: "Buizel"
  17354. },
  17355. "floatzel": {
  17356. name: "Floatzel",
  17357. default: true
  17358. }
  17359. }
  17360. ))
  17361. characterMakers.push(() => makeCharacter(
  17362. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  17363. {
  17364. front: {
  17365. height: math.unit(6 + 2 / 12, "feet"),
  17366. weight: math.unit(146, "lb"),
  17367. name: "Front",
  17368. image: {
  17369. source: "./media/characters/iliac/front.svg",
  17370. extra: 389 / 365,
  17371. bottom: 0.035
  17372. }
  17373. },
  17374. },
  17375. [
  17376. {
  17377. name: "Normal",
  17378. height: math.unit(6 + 2 / 12, "feet"),
  17379. default: true
  17380. },
  17381. ]
  17382. ))
  17383. characterMakers.push(() => makeCharacter(
  17384. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  17385. {
  17386. front: {
  17387. height: math.unit(6, "feet"),
  17388. weight: math.unit(170, "lb"),
  17389. name: "Front",
  17390. image: {
  17391. source: "./media/characters/topaz/front.svg",
  17392. extra: 317 / 303,
  17393. bottom: 0.055
  17394. }
  17395. },
  17396. },
  17397. [
  17398. {
  17399. name: "Normal",
  17400. height: math.unit(6, "feet"),
  17401. default: true
  17402. },
  17403. ]
  17404. ))
  17405. characterMakers.push(() => makeCharacter(
  17406. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  17407. {
  17408. front: {
  17409. height: math.unit(5 + 11 / 12, "feet"),
  17410. weight: math.unit(144, "lb"),
  17411. name: "Front",
  17412. image: {
  17413. source: "./media/characters/gabriel/front.svg",
  17414. extra: 285 / 262,
  17415. bottom: 0.004
  17416. }
  17417. },
  17418. },
  17419. [
  17420. {
  17421. name: "Normal",
  17422. height: math.unit(5 + 11 / 12, "feet"),
  17423. default: true
  17424. },
  17425. ]
  17426. ))
  17427. characterMakers.push(() => makeCharacter(
  17428. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  17429. {
  17430. side: {
  17431. height: math.unit(6 + 5 / 12, "feet"),
  17432. weight: math.unit(300, "lb"),
  17433. name: "Side",
  17434. image: {
  17435. source: "./media/characters/tempest-suicune/side.svg",
  17436. extra: 195 / 154,
  17437. bottom: 0.04
  17438. }
  17439. },
  17440. },
  17441. [
  17442. {
  17443. name: "Normal",
  17444. height: math.unit(6 + 5 / 12, "feet"),
  17445. default: true
  17446. },
  17447. ]
  17448. ))
  17449. characterMakers.push(() => makeCharacter(
  17450. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  17451. {
  17452. front: {
  17453. height: math.unit(7 + 2 / 12, "feet"),
  17454. weight: math.unit(322, "lb"),
  17455. name: "Front",
  17456. image: {
  17457. source: "./media/characters/vulcan/front.svg",
  17458. extra: 154 / 147,
  17459. bottom: 0.04
  17460. }
  17461. },
  17462. },
  17463. [
  17464. {
  17465. name: "Normal",
  17466. height: math.unit(7 + 2 / 12, "feet"),
  17467. default: true
  17468. },
  17469. ]
  17470. ))
  17471. characterMakers.push(() => makeCharacter(
  17472. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  17473. {
  17474. front: {
  17475. height: math.unit(5 + 10 / 12, "feet"),
  17476. weight: math.unit(264, "lb"),
  17477. name: "Front",
  17478. image: {
  17479. source: "./media/characters/gault/front.svg",
  17480. extra: 161 / 140,
  17481. bottom: 0.028
  17482. }
  17483. },
  17484. },
  17485. [
  17486. {
  17487. name: "Normal",
  17488. height: math.unit(5 + 10 / 12, "feet"),
  17489. default: true
  17490. },
  17491. ]
  17492. ))
  17493. characterMakers.push(() => makeCharacter(
  17494. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  17495. {
  17496. front: {
  17497. height: math.unit(6, "feet"),
  17498. weight: math.unit(150, "lb"),
  17499. name: "Front",
  17500. image: {
  17501. source: "./media/characters/shard/front.svg",
  17502. extra: 273 / 238,
  17503. bottom: 0.02
  17504. }
  17505. },
  17506. },
  17507. [
  17508. {
  17509. name: "Normal",
  17510. height: math.unit(3 + 6 / 12, "feet"),
  17511. default: true
  17512. },
  17513. ]
  17514. ))
  17515. characterMakers.push(() => makeCharacter(
  17516. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17517. {
  17518. front: {
  17519. height: math.unit(5 + 11 / 12, "feet"),
  17520. weight: math.unit(146, "lb"),
  17521. name: "Front",
  17522. image: {
  17523. source: "./media/characters/ashe/front.svg",
  17524. extra: 400 / 373,
  17525. bottom: 0.01
  17526. }
  17527. },
  17528. },
  17529. [
  17530. {
  17531. name: "Normal",
  17532. height: math.unit(5 + 11 / 12, "feet"),
  17533. default: true
  17534. },
  17535. ]
  17536. ))
  17537. characterMakers.push(() => makeCharacter(
  17538. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17539. {
  17540. front: {
  17541. height: math.unit(5 + 5 / 12, "feet"),
  17542. weight: math.unit(135, "lb"),
  17543. name: "Front",
  17544. image: {
  17545. source: "./media/characters/beatrix/front.svg",
  17546. extra: 392 / 379,
  17547. bottom: 0.01
  17548. }
  17549. },
  17550. },
  17551. [
  17552. {
  17553. name: "Normal",
  17554. height: math.unit(6, "feet"),
  17555. default: true
  17556. },
  17557. ]
  17558. ))
  17559. characterMakers.push(() => makeCharacter(
  17560. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17561. {
  17562. front: {
  17563. height: math.unit(6 + 2/12, "feet"),
  17564. weight: math.unit(135, "lb"),
  17565. name: "Front",
  17566. image: {
  17567. source: "./media/characters/ignatius/front.svg",
  17568. extra: 1380/1259,
  17569. bottom: 27/1407
  17570. }
  17571. },
  17572. },
  17573. [
  17574. {
  17575. name: "Normal",
  17576. height: math.unit(6 + 2/12, "feet"),
  17577. default: true
  17578. },
  17579. ]
  17580. ))
  17581. characterMakers.push(() => makeCharacter(
  17582. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17583. {
  17584. front: {
  17585. height: math.unit(6 + 2 / 12, "feet"),
  17586. weight: math.unit(138, "lb"),
  17587. name: "Front",
  17588. image: {
  17589. source: "./media/characters/mei-li/front.svg",
  17590. extra: 237 / 229,
  17591. bottom: 0.03
  17592. }
  17593. },
  17594. },
  17595. [
  17596. {
  17597. name: "Normal",
  17598. height: math.unit(6 + 2 / 12, "feet"),
  17599. default: true
  17600. },
  17601. ]
  17602. ))
  17603. characterMakers.push(() => makeCharacter(
  17604. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17605. {
  17606. front: {
  17607. height: math.unit(2 + 4 / 12, "feet"),
  17608. weight: math.unit(62, "lb"),
  17609. name: "Front",
  17610. image: {
  17611. source: "./media/characters/puru/front.svg",
  17612. extra: 206 / 149,
  17613. bottom: 0.06
  17614. }
  17615. },
  17616. },
  17617. [
  17618. {
  17619. name: "Normal",
  17620. height: math.unit(2 + 4 / 12, "feet"),
  17621. default: true
  17622. },
  17623. ]
  17624. ))
  17625. characterMakers.push(() => makeCharacter(
  17626. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17627. {
  17628. anthro: {
  17629. height: math.unit(5 + 8/12, "feet"),
  17630. weight: math.unit(200, "lb"),
  17631. energyNeed: math.unit(2000, "kcal"),
  17632. name: "Anthro",
  17633. image: {
  17634. source: "./media/characters/kee/anthro.svg",
  17635. extra: 3251/3184,
  17636. bottom: 250/3501
  17637. }
  17638. },
  17639. taur: {
  17640. height: math.unit(11, "feet"),
  17641. weight: math.unit(500, "lb"),
  17642. energyNeed: math.unit(5000, "kcal"),
  17643. name: "Taur",
  17644. image: {
  17645. source: "./media/characters/kee/taur.svg",
  17646. extra: 1362/1320,
  17647. bottom: 83/1445
  17648. }
  17649. },
  17650. },
  17651. [
  17652. {
  17653. name: "Normal",
  17654. height: math.unit(5 + 8/12, "feet"),
  17655. default: true
  17656. },
  17657. {
  17658. name: "Macro",
  17659. height: math.unit(35, "feet")
  17660. },
  17661. ]
  17662. ))
  17663. characterMakers.push(() => makeCharacter(
  17664. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17665. {
  17666. anthro: {
  17667. height: math.unit(7, "feet"),
  17668. weight: math.unit(190, "lb"),
  17669. name: "Anthro",
  17670. image: {
  17671. source: "./media/characters/cobalt-dracha/anthro.svg",
  17672. extra: 231 / 225,
  17673. bottom: 0.04
  17674. }
  17675. },
  17676. feral: {
  17677. height: math.unit(9 + 7 / 12, "feet"),
  17678. weight: math.unit(294, "lb"),
  17679. name: "Feral",
  17680. image: {
  17681. source: "./media/characters/cobalt-dracha/feral.svg",
  17682. extra: 692 / 633,
  17683. bottom: 0.05
  17684. }
  17685. },
  17686. },
  17687. [
  17688. {
  17689. name: "Normal",
  17690. height: math.unit(7, "feet"),
  17691. default: true
  17692. },
  17693. ]
  17694. ))
  17695. characterMakers.push(() => makeCharacter(
  17696. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17697. {
  17698. fallen: {
  17699. height: math.unit(11 + 8 / 12, "feet"),
  17700. weight: math.unit(485, "lb"),
  17701. name: "Java (Fallen)",
  17702. rename: true,
  17703. image: {
  17704. source: "./media/characters/java/fallen.svg",
  17705. extra: 226 / 208,
  17706. bottom: 0.005
  17707. }
  17708. },
  17709. godkin: {
  17710. height: math.unit(10 + 6 / 12, "feet"),
  17711. weight: math.unit(328, "lb"),
  17712. name: "Java (Godkin)",
  17713. rename: true,
  17714. image: {
  17715. source: "./media/characters/java/godkin.svg",
  17716. extra: 1104/1068,
  17717. bottom: 36/1140
  17718. }
  17719. },
  17720. },
  17721. [
  17722. {
  17723. name: "Normal",
  17724. height: math.unit(11 + 8 / 12, "feet"),
  17725. default: true
  17726. },
  17727. ]
  17728. ))
  17729. characterMakers.push(() => makeCharacter(
  17730. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17731. {
  17732. front: {
  17733. height: math.unit(5 + 9 / 12, "feet"),
  17734. weight: math.unit(170, "lb"),
  17735. name: "Front",
  17736. image: {
  17737. source: "./media/characters/purna/front.svg",
  17738. extra: 239 / 229,
  17739. bottom: 0.01
  17740. }
  17741. },
  17742. },
  17743. [
  17744. {
  17745. name: "Normal",
  17746. height: math.unit(5 + 9 / 12, "feet"),
  17747. default: true
  17748. },
  17749. ]
  17750. ))
  17751. characterMakers.push(() => makeCharacter(
  17752. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17753. {
  17754. front: {
  17755. height: math.unit(5 + 9 / 12, "feet"),
  17756. weight: math.unit(142, "lb"),
  17757. name: "Front",
  17758. image: {
  17759. source: "./media/characters/kuva/front.svg",
  17760. extra: 281 / 271,
  17761. bottom: 0.006
  17762. }
  17763. },
  17764. },
  17765. [
  17766. {
  17767. name: "Normal",
  17768. height: math.unit(5 + 9 / 12, "feet"),
  17769. default: true
  17770. },
  17771. ]
  17772. ))
  17773. characterMakers.push(() => makeCharacter(
  17774. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17775. {
  17776. anthro: {
  17777. height: math.unit(9 + 2 / 12, "feet"),
  17778. weight: math.unit(270, "lb"),
  17779. name: "Anthro",
  17780. image: {
  17781. source: "./media/characters/embra/anthro.svg",
  17782. extra: 200 / 187,
  17783. bottom: 0.02
  17784. }
  17785. },
  17786. feral: {
  17787. height: math.unit(18 + 8 / 12, "feet"),
  17788. weight: math.unit(576, "lb"),
  17789. name: "Feral",
  17790. image: {
  17791. source: "./media/characters/embra/feral.svg",
  17792. extra: 152 / 137,
  17793. bottom: 0.037
  17794. }
  17795. },
  17796. },
  17797. [
  17798. {
  17799. name: "Normal",
  17800. height: math.unit(9 + 2 / 12, "feet"),
  17801. default: true
  17802. },
  17803. ]
  17804. ))
  17805. characterMakers.push(() => makeCharacter(
  17806. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17807. {
  17808. anthro: {
  17809. height: math.unit(10 + 9 / 12, "feet"),
  17810. weight: math.unit(224, "lb"),
  17811. name: "Anthro",
  17812. image: {
  17813. source: "./media/characters/grottos/anthro.svg",
  17814. extra: 350 / 332,
  17815. bottom: 0.045
  17816. }
  17817. },
  17818. feral: {
  17819. height: math.unit(20 + 7 / 12, "feet"),
  17820. weight: math.unit(629, "lb"),
  17821. name: "Feral",
  17822. image: {
  17823. source: "./media/characters/grottos/feral.svg",
  17824. extra: 207 / 190,
  17825. bottom: 0.05
  17826. }
  17827. },
  17828. },
  17829. [
  17830. {
  17831. name: "Normal",
  17832. height: math.unit(10 + 9 / 12, "feet"),
  17833. default: true
  17834. },
  17835. ]
  17836. ))
  17837. characterMakers.push(() => makeCharacter(
  17838. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17839. {
  17840. anthro: {
  17841. height: math.unit(9 + 6 / 12, "feet"),
  17842. weight: math.unit(298, "lb"),
  17843. name: "Anthro",
  17844. image: {
  17845. source: "./media/characters/frifna/anthro.svg",
  17846. extra: 282 / 269,
  17847. bottom: 0.015
  17848. }
  17849. },
  17850. feral: {
  17851. height: math.unit(16 + 2 / 12, "feet"),
  17852. weight: math.unit(624, "lb"),
  17853. name: "Feral",
  17854. image: {
  17855. source: "./media/characters/frifna/feral.svg"
  17856. }
  17857. },
  17858. },
  17859. [
  17860. {
  17861. name: "Normal",
  17862. height: math.unit(9 + 6 / 12, "feet"),
  17863. default: true
  17864. },
  17865. ]
  17866. ))
  17867. characterMakers.push(() => makeCharacter(
  17868. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17869. {
  17870. front: {
  17871. height: math.unit(6 + 2 / 12, "feet"),
  17872. weight: math.unit(168, "lb"),
  17873. name: "Front",
  17874. image: {
  17875. source: "./media/characters/elise/front.svg",
  17876. extra: 276 / 271
  17877. }
  17878. },
  17879. },
  17880. [
  17881. {
  17882. name: "Normal",
  17883. height: math.unit(6 + 2 / 12, "feet"),
  17884. default: true
  17885. },
  17886. ]
  17887. ))
  17888. characterMakers.push(() => makeCharacter(
  17889. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17890. {
  17891. front: {
  17892. height: math.unit(5 + 10 / 12, "feet"),
  17893. weight: math.unit(210, "lb"),
  17894. name: "Front",
  17895. image: {
  17896. source: "./media/characters/glade/front.svg",
  17897. extra: 258 / 247,
  17898. bottom: 0.008
  17899. }
  17900. },
  17901. },
  17902. [
  17903. {
  17904. name: "Normal",
  17905. height: math.unit(5 + 10 / 12, "feet"),
  17906. default: true
  17907. },
  17908. ]
  17909. ))
  17910. characterMakers.push(() => makeCharacter(
  17911. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17912. {
  17913. front: {
  17914. height: math.unit(5 + 10 / 12, "feet"),
  17915. weight: math.unit(129, "lb"),
  17916. name: "Front",
  17917. image: {
  17918. source: "./media/characters/rina/front.svg",
  17919. extra: 266 / 255,
  17920. bottom: 0.005
  17921. }
  17922. },
  17923. },
  17924. [
  17925. {
  17926. name: "Normal",
  17927. height: math.unit(5 + 10 / 12, "feet"),
  17928. default: true
  17929. },
  17930. ]
  17931. ))
  17932. characterMakers.push(() => makeCharacter(
  17933. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17934. {
  17935. front: {
  17936. height: math.unit(6 + 1 / 12, "feet"),
  17937. weight: math.unit(192, "lb"),
  17938. name: "Front",
  17939. image: {
  17940. source: "./media/characters/veronica/front.svg",
  17941. extra: 319 / 309,
  17942. bottom: 0.005
  17943. }
  17944. },
  17945. },
  17946. [
  17947. {
  17948. name: "Normal",
  17949. height: math.unit(6 + 1 / 12, "feet"),
  17950. default: true
  17951. },
  17952. ]
  17953. ))
  17954. characterMakers.push(() => makeCharacter(
  17955. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17956. {
  17957. front: {
  17958. height: math.unit(9 + 3 / 12, "feet"),
  17959. weight: math.unit(1100, "lb"),
  17960. name: "Front",
  17961. image: {
  17962. source: "./media/characters/braxton/front.svg",
  17963. extra: 1057 / 984,
  17964. bottom: 0.05
  17965. }
  17966. },
  17967. },
  17968. [
  17969. {
  17970. name: "Normal",
  17971. height: math.unit(9 + 3 / 12, "feet")
  17972. },
  17973. {
  17974. name: "Giant",
  17975. height: math.unit(300, "feet"),
  17976. default: true
  17977. },
  17978. {
  17979. name: "Macro",
  17980. height: math.unit(700, "feet")
  17981. },
  17982. {
  17983. name: "Megamacro",
  17984. height: math.unit(6000, "feet")
  17985. },
  17986. ]
  17987. ))
  17988. characterMakers.push(() => makeCharacter(
  17989. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17990. {
  17991. front: {
  17992. height: math.unit(6 + 7 / 12, "feet"),
  17993. weight: math.unit(150, "lb"),
  17994. name: "Front",
  17995. image: {
  17996. source: "./media/characters/blue-feyonics/front.svg",
  17997. extra: 1403 / 1306,
  17998. bottom: 0.047
  17999. }
  18000. },
  18001. },
  18002. [
  18003. {
  18004. name: "Normal",
  18005. height: math.unit(6 + 7 / 12, "feet"),
  18006. default: true
  18007. },
  18008. ]
  18009. ))
  18010. characterMakers.push(() => makeCharacter(
  18011. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  18012. {
  18013. front: {
  18014. height: math.unit(1.8, "meters"),
  18015. weight: math.unit(60, "kg"),
  18016. name: "Front",
  18017. image: {
  18018. source: "./media/characters/maxwell/front.svg",
  18019. extra: 2060 / 1873
  18020. }
  18021. },
  18022. },
  18023. [
  18024. {
  18025. name: "Micro",
  18026. height: math.unit(1, "mm")
  18027. },
  18028. {
  18029. name: "Normal",
  18030. height: math.unit(1.8, "meter"),
  18031. default: true
  18032. },
  18033. {
  18034. name: "Macro",
  18035. height: math.unit(30, "meters")
  18036. },
  18037. {
  18038. name: "Megamacro",
  18039. height: math.unit(10, "km")
  18040. },
  18041. ]
  18042. ))
  18043. characterMakers.push(() => makeCharacter(
  18044. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  18045. {
  18046. front: {
  18047. height: math.unit(6, "feet"),
  18048. weight: math.unit(150, "lb"),
  18049. name: "Front",
  18050. image: {
  18051. source: "./media/characters/jack/front.svg",
  18052. extra: 1754 / 1640,
  18053. bottom: 0.01
  18054. }
  18055. },
  18056. },
  18057. [
  18058. {
  18059. name: "Normal",
  18060. height: math.unit(80000, "feet"),
  18061. default: true
  18062. },
  18063. {
  18064. name: "Max size",
  18065. height: math.unit(10, "lightyears")
  18066. },
  18067. ]
  18068. ))
  18069. characterMakers.push(() => makeCharacter(
  18070. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  18071. {
  18072. urban: {
  18073. height: math.unit(5, "feet"),
  18074. weight: math.unit(240, "lb"),
  18075. name: "Urban",
  18076. image: {
  18077. source: "./media/characters/cafat/urban.svg",
  18078. extra: 1223/1126,
  18079. bottom: 205/1428
  18080. }
  18081. },
  18082. summer: {
  18083. height: math.unit(5, "feet"),
  18084. weight: math.unit(240, "lb"),
  18085. name: "Summer",
  18086. image: {
  18087. source: "./media/characters/cafat/summer.svg",
  18088. extra: 1223/1126,
  18089. bottom: 205/1428
  18090. }
  18091. },
  18092. winter: {
  18093. height: math.unit(5, "feet"),
  18094. weight: math.unit(240, "lb"),
  18095. name: "Winter",
  18096. image: {
  18097. source: "./media/characters/cafat/winter.svg",
  18098. extra: 1223/1126,
  18099. bottom: 205/1428
  18100. }
  18101. },
  18102. lingerie: {
  18103. height: math.unit(5, "feet"),
  18104. weight: math.unit(240, "lb"),
  18105. name: "Lingerie",
  18106. image: {
  18107. source: "./media/characters/cafat/lingerie.svg",
  18108. extra: 1223/1126,
  18109. bottom: 205/1428
  18110. }
  18111. },
  18112. upright: {
  18113. height: math.unit(6.3, "feet"),
  18114. weight: math.unit(240, "lb"),
  18115. name: "Upright",
  18116. image: {
  18117. source: "./media/characters/cafat/upright.svg",
  18118. bottom: 0.01
  18119. }
  18120. },
  18121. uprightFull: {
  18122. height: math.unit(6.3, "feet"),
  18123. weight: math.unit(240, "lb"),
  18124. name: "Upright (Full)",
  18125. image: {
  18126. source: "./media/characters/cafat/upright-full.svg",
  18127. bottom: 0.01
  18128. }
  18129. },
  18130. },
  18131. [
  18132. {
  18133. name: "Small",
  18134. height: math.unit(5, "feet"),
  18135. default: true
  18136. },
  18137. {
  18138. name: "Large",
  18139. height: math.unit(13, "feet")
  18140. },
  18141. ]
  18142. ))
  18143. characterMakers.push(() => makeCharacter(
  18144. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  18145. {
  18146. front: {
  18147. height: math.unit(6, "feet"),
  18148. weight: math.unit(150, "lb"),
  18149. name: "Front",
  18150. image: {
  18151. source: "./media/characters/verin-raharra/front.svg",
  18152. extra: 5019 / 4835,
  18153. bottom: 0.023
  18154. }
  18155. },
  18156. },
  18157. [
  18158. {
  18159. name: "Normal",
  18160. height: math.unit(7 + 5 / 12, "feet"),
  18161. default: true
  18162. },
  18163. {
  18164. name: "Upsized",
  18165. height: math.unit(20, "feet")
  18166. },
  18167. ]
  18168. ))
  18169. characterMakers.push(() => makeCharacter(
  18170. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  18171. {
  18172. front: {
  18173. height: math.unit(7, "feet"),
  18174. weight: math.unit(230, "lb"),
  18175. name: "Front",
  18176. image: {
  18177. source: "./media/characters/nakata/front.svg",
  18178. extra: 1.005,
  18179. bottom: 0.01
  18180. }
  18181. },
  18182. },
  18183. [
  18184. {
  18185. name: "Normal",
  18186. height: math.unit(7, "feet"),
  18187. default: true
  18188. },
  18189. {
  18190. name: "Big",
  18191. height: math.unit(14, "feet")
  18192. },
  18193. {
  18194. name: "Macro",
  18195. height: math.unit(400, "feet")
  18196. },
  18197. ]
  18198. ))
  18199. characterMakers.push(() => makeCharacter(
  18200. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  18201. {
  18202. front: {
  18203. height: math.unit(4.91, "feet"),
  18204. weight: math.unit(100, "lb"),
  18205. name: "Front",
  18206. image: {
  18207. source: "./media/characters/lily/front.svg",
  18208. extra: 1585 / 1415,
  18209. bottom: 0.02
  18210. }
  18211. },
  18212. },
  18213. [
  18214. {
  18215. name: "Normal",
  18216. height: math.unit(4.91, "feet"),
  18217. default: true
  18218. },
  18219. ]
  18220. ))
  18221. characterMakers.push(() => makeCharacter(
  18222. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  18223. {
  18224. laying: {
  18225. height: math.unit(4 + 4 / 12, "feet"),
  18226. weight: math.unit(600, "lb"),
  18227. name: "Laying",
  18228. image: {
  18229. source: "./media/characters/sheila/laying.svg",
  18230. extra: 1333 / 1265,
  18231. bottom: 0.16
  18232. }
  18233. },
  18234. },
  18235. [
  18236. {
  18237. name: "Normal",
  18238. height: math.unit(4 + 4 / 12, "feet"),
  18239. default: true
  18240. },
  18241. ]
  18242. ))
  18243. characterMakers.push(() => makeCharacter(
  18244. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  18245. {
  18246. front: {
  18247. height: math.unit(6, "feet"),
  18248. weight: math.unit(190, "lb"),
  18249. name: "Front",
  18250. image: {
  18251. source: "./media/characters/sax/front.svg",
  18252. extra: 1187 / 973,
  18253. bottom: 0.042
  18254. }
  18255. },
  18256. },
  18257. [
  18258. {
  18259. name: "Micro",
  18260. height: math.unit(4, "inches"),
  18261. default: true
  18262. },
  18263. ]
  18264. ))
  18265. characterMakers.push(() => makeCharacter(
  18266. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  18267. {
  18268. front: {
  18269. height: math.unit(6, "feet"),
  18270. weight: math.unit(150, "lb"),
  18271. name: "Front",
  18272. image: {
  18273. source: "./media/characters/pandora/front.svg",
  18274. extra: 2720 / 2556,
  18275. bottom: 0.015
  18276. }
  18277. },
  18278. back: {
  18279. height: math.unit(6, "feet"),
  18280. weight: math.unit(150, "lb"),
  18281. name: "Back",
  18282. image: {
  18283. source: "./media/characters/pandora/back.svg",
  18284. extra: 2720 / 2556,
  18285. bottom: 0.01
  18286. }
  18287. },
  18288. beans: {
  18289. height: math.unit(6 / 8, "feet"),
  18290. name: "Beans",
  18291. image: {
  18292. source: "./media/characters/pandora/beans.svg"
  18293. }
  18294. },
  18295. collar: {
  18296. height: math.unit(0.31, "feet"),
  18297. name: "Collar",
  18298. image: {
  18299. source: "./media/characters/pandora/collar.svg"
  18300. }
  18301. },
  18302. skirt: {
  18303. height: math.unit(6, "feet"),
  18304. weight: math.unit(150, "lb"),
  18305. name: "Skirt",
  18306. image: {
  18307. source: "./media/characters/pandora/skirt.svg",
  18308. extra: 1622 / 1525,
  18309. bottom: 0.015
  18310. }
  18311. },
  18312. hoodie: {
  18313. height: math.unit(6, "feet"),
  18314. weight: math.unit(150, "lb"),
  18315. name: "Hoodie",
  18316. image: {
  18317. source: "./media/characters/pandora/hoodie.svg",
  18318. extra: 1622 / 1525,
  18319. bottom: 0.015
  18320. }
  18321. },
  18322. casual: {
  18323. height: math.unit(6, "feet"),
  18324. weight: math.unit(150, "lb"),
  18325. name: "Casual",
  18326. image: {
  18327. source: "./media/characters/pandora/casual.svg",
  18328. extra: 1622 / 1525,
  18329. bottom: 0.015
  18330. }
  18331. },
  18332. },
  18333. [
  18334. {
  18335. name: "Normal",
  18336. height: math.unit(6, "feet")
  18337. },
  18338. {
  18339. name: "Big Steppy",
  18340. height: math.unit(1, "km"),
  18341. default: true
  18342. },
  18343. {
  18344. name: "Galactic Steppy",
  18345. height: math.unit(2, "gigameters")
  18346. },
  18347. ]
  18348. ))
  18349. characterMakers.push(() => makeCharacter(
  18350. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  18351. {
  18352. side: {
  18353. height: math.unit(10, "feet"),
  18354. weight: math.unit(800, "kg"),
  18355. name: "Side",
  18356. image: {
  18357. source: "./media/characters/venio-darcony/side.svg",
  18358. extra: 1373 / 1003,
  18359. bottom: 0.037
  18360. }
  18361. },
  18362. front: {
  18363. height: math.unit(19, "feet"),
  18364. weight: math.unit(800, "kg"),
  18365. name: "Front",
  18366. image: {
  18367. source: "./media/characters/venio-darcony/front.svg"
  18368. }
  18369. },
  18370. back: {
  18371. height: math.unit(19, "feet"),
  18372. weight: math.unit(800, "kg"),
  18373. name: "Back",
  18374. image: {
  18375. source: "./media/characters/venio-darcony/back.svg"
  18376. }
  18377. },
  18378. sideNsfw: {
  18379. height: math.unit(10, "feet"),
  18380. weight: math.unit(800, "kg"),
  18381. name: "Side (NSFW)",
  18382. image: {
  18383. source: "./media/characters/venio-darcony/side-nsfw.svg",
  18384. extra: 1373 / 1003,
  18385. bottom: 0.037
  18386. }
  18387. },
  18388. frontNsfw: {
  18389. height: math.unit(19, "feet"),
  18390. weight: math.unit(800, "kg"),
  18391. name: "Front (NSFW)",
  18392. image: {
  18393. source: "./media/characters/venio-darcony/front-nsfw.svg"
  18394. }
  18395. },
  18396. backNsfw: {
  18397. height: math.unit(19, "feet"),
  18398. weight: math.unit(800, "kg"),
  18399. name: "Back (NSFW)",
  18400. image: {
  18401. source: "./media/characters/venio-darcony/back-nsfw.svg"
  18402. }
  18403. },
  18404. sideArmored: {
  18405. height: math.unit(10, "feet"),
  18406. weight: math.unit(800, "kg"),
  18407. name: "Side (Armored)",
  18408. image: {
  18409. source: "./media/characters/venio-darcony/side-armored.svg",
  18410. extra: 1373 / 1003,
  18411. bottom: 0.037
  18412. }
  18413. },
  18414. frontArmored: {
  18415. height: math.unit(19, "feet"),
  18416. weight: math.unit(900, "kg"),
  18417. name: "Front (Armored)",
  18418. image: {
  18419. source: "./media/characters/venio-darcony/front-armored.svg"
  18420. }
  18421. },
  18422. backArmored: {
  18423. height: math.unit(19, "feet"),
  18424. weight: math.unit(900, "kg"),
  18425. name: "Back (Armored)",
  18426. image: {
  18427. source: "./media/characters/venio-darcony/back-armored.svg"
  18428. }
  18429. },
  18430. sword: {
  18431. height: math.unit(10, "feet"),
  18432. weight: math.unit(50, "lb"),
  18433. name: "Sword",
  18434. image: {
  18435. source: "./media/characters/venio-darcony/sword.svg"
  18436. }
  18437. },
  18438. },
  18439. [
  18440. {
  18441. name: "Normal",
  18442. height: math.unit(10, "feet")
  18443. },
  18444. {
  18445. name: "Macro",
  18446. height: math.unit(130, "feet"),
  18447. default: true
  18448. },
  18449. {
  18450. name: "Macro+",
  18451. height: math.unit(240, "feet")
  18452. },
  18453. ]
  18454. ))
  18455. characterMakers.push(() => makeCharacter(
  18456. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  18457. {
  18458. front: {
  18459. height: math.unit(6, "feet"),
  18460. weight: math.unit(150, "lb"),
  18461. name: "Front",
  18462. image: {
  18463. source: "./media/characters/veski/front.svg",
  18464. extra: 1299 / 1225,
  18465. bottom: 0.04
  18466. }
  18467. },
  18468. back: {
  18469. height: math.unit(6, "feet"),
  18470. weight: math.unit(150, "lb"),
  18471. name: "Back",
  18472. image: {
  18473. source: "./media/characters/veski/back.svg",
  18474. extra: 1299 / 1225,
  18475. bottom: 0.008
  18476. }
  18477. },
  18478. maw: {
  18479. height: math.unit(1.5 * 1.21, "feet"),
  18480. name: "Maw",
  18481. image: {
  18482. source: "./media/characters/veski/maw.svg"
  18483. }
  18484. },
  18485. },
  18486. [
  18487. {
  18488. name: "Macro",
  18489. height: math.unit(2, "km"),
  18490. default: true
  18491. },
  18492. ]
  18493. ))
  18494. characterMakers.push(() => makeCharacter(
  18495. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18496. {
  18497. front: {
  18498. height: math.unit(5 + 7 / 12, "feet"),
  18499. name: "Front",
  18500. image: {
  18501. source: "./media/characters/isabelle/front.svg",
  18502. extra: 2130 / 1976,
  18503. bottom: 0.05
  18504. }
  18505. },
  18506. },
  18507. [
  18508. {
  18509. name: "Supermicro",
  18510. height: math.unit(10, "micrometers")
  18511. },
  18512. {
  18513. name: "Micro",
  18514. height: math.unit(1, "inch")
  18515. },
  18516. {
  18517. name: "Tiny",
  18518. height: math.unit(5, "inches")
  18519. },
  18520. {
  18521. name: "Standard",
  18522. height: math.unit(5 + 7 / 12, "inches")
  18523. },
  18524. {
  18525. name: "Macro",
  18526. height: math.unit(80, "meters"),
  18527. default: true
  18528. },
  18529. {
  18530. name: "Megamacro",
  18531. height: math.unit(250, "meters")
  18532. },
  18533. {
  18534. name: "Gigamacro",
  18535. height: math.unit(5, "km")
  18536. },
  18537. {
  18538. name: "Cosmic",
  18539. height: math.unit(2.5e6, "miles")
  18540. },
  18541. ]
  18542. ))
  18543. characterMakers.push(() => makeCharacter(
  18544. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18545. {
  18546. front: {
  18547. height: math.unit(6, "feet"),
  18548. weight: math.unit(150, "lb"),
  18549. name: "Front",
  18550. image: {
  18551. source: "./media/characters/hanzo/front.svg",
  18552. extra: 374 / 344,
  18553. bottom: 0.02
  18554. }
  18555. },
  18556. },
  18557. [
  18558. {
  18559. name: "Normal",
  18560. height: math.unit(8, "feet"),
  18561. default: true
  18562. },
  18563. ]
  18564. ))
  18565. characterMakers.push(() => makeCharacter(
  18566. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18567. {
  18568. front: {
  18569. height: math.unit(7, "feet"),
  18570. weight: math.unit(130, "lb"),
  18571. name: "Front",
  18572. image: {
  18573. source: "./media/characters/anna/front.svg",
  18574. extra: 169 / 145,
  18575. bottom: 0.06
  18576. }
  18577. },
  18578. full: {
  18579. height: math.unit(4.96, "feet"),
  18580. weight: math.unit(220, "lb"),
  18581. name: "Full",
  18582. image: {
  18583. source: "./media/characters/anna/full.svg",
  18584. extra: 138 / 114,
  18585. bottom: 0.15
  18586. }
  18587. },
  18588. tongue: {
  18589. height: math.unit(2.53, "feet"),
  18590. name: "Tongue",
  18591. image: {
  18592. source: "./media/characters/anna/tongue.svg"
  18593. }
  18594. },
  18595. },
  18596. [
  18597. {
  18598. name: "Normal",
  18599. height: math.unit(7, "feet"),
  18600. default: true
  18601. },
  18602. ]
  18603. ))
  18604. characterMakers.push(() => makeCharacter(
  18605. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18606. {
  18607. front: {
  18608. height: math.unit(7 + 1/12, "feet"),
  18609. weight: math.unit(150, "lb"),
  18610. name: "Front",
  18611. image: {
  18612. source: "./media/characters/ian-corvid/front.svg",
  18613. extra: 621/591,
  18614. bottom: 14/635
  18615. }
  18616. },
  18617. back: {
  18618. height: math.unit(7 + 1/12, "feet"),
  18619. weight: math.unit(150, "lb"),
  18620. name: "Back",
  18621. image: {
  18622. source: "./media/characters/ian-corvid/back.svg",
  18623. extra: 621/600,
  18624. bottom: 10/631
  18625. }
  18626. },
  18627. stomping: {
  18628. height: math.unit(7 + 1/12, "feet"),
  18629. weight: math.unit(150, "lb"),
  18630. name: "Stomping",
  18631. image: {
  18632. source: "./media/characters/ian-corvid/stomping.svg",
  18633. extra: 309/291,
  18634. bottom: 7/316
  18635. }
  18636. },
  18637. tongue: {
  18638. height: math.unit(3.9, "feet"),
  18639. name: "Tongue",
  18640. image: {
  18641. source: "./media/characters/ian-corvid/tongue.svg"
  18642. }
  18643. },
  18644. beak: {
  18645. height: math.unit(0.9, "feet"),
  18646. name: "Beak",
  18647. image: {
  18648. source: "./media/characters/ian-corvid/beak.svg"
  18649. }
  18650. },
  18651. sitting: {
  18652. height: math.unit(7 / 1.8, "feet"),
  18653. weight: math.unit(150, "lb"),
  18654. name: "Sitting",
  18655. image: {
  18656. source: "./media/characters/ian-corvid/sitting.svg",
  18657. extra: 1400 / 1269,
  18658. bottom: 0.15
  18659. }
  18660. },
  18661. },
  18662. [
  18663. {
  18664. name: "Tiny Microw",
  18665. height: math.unit(1, "inch")
  18666. },
  18667. {
  18668. name: "Microw",
  18669. height: math.unit(6, "inches")
  18670. },
  18671. {
  18672. name: "Crow",
  18673. height: math.unit(7 + 1 / 12, "feet"),
  18674. default: true
  18675. },
  18676. {
  18677. name: "Macrow",
  18678. height: math.unit(176, "feet")
  18679. },
  18680. ]
  18681. ))
  18682. characterMakers.push(() => makeCharacter(
  18683. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18684. {
  18685. front: {
  18686. height: math.unit(5 + 7 / 12, "feet"),
  18687. weight: math.unit(147, "lb"),
  18688. name: "Front",
  18689. image: {
  18690. source: "./media/characters/natalie-kellon/front.svg",
  18691. extra: 1214 / 1141,
  18692. bottom: 0.02
  18693. }
  18694. },
  18695. },
  18696. [
  18697. {
  18698. name: "Micro",
  18699. height: math.unit(1 / 16, "inch")
  18700. },
  18701. {
  18702. name: "Tiny",
  18703. height: math.unit(4, "inches")
  18704. },
  18705. {
  18706. name: "Normal",
  18707. height: math.unit(5 + 7 / 12, "feet"),
  18708. default: true
  18709. },
  18710. {
  18711. name: "Amazon",
  18712. height: math.unit(12, "feet")
  18713. },
  18714. {
  18715. name: "Giantess",
  18716. height: math.unit(160, "meters")
  18717. },
  18718. {
  18719. name: "Titaness",
  18720. height: math.unit(800, "meters")
  18721. },
  18722. ]
  18723. ))
  18724. characterMakers.push(() => makeCharacter(
  18725. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18726. {
  18727. front: {
  18728. height: math.unit(6, "feet"),
  18729. weight: math.unit(150, "lb"),
  18730. name: "Front",
  18731. image: {
  18732. source: "./media/characters/alluria/front.svg",
  18733. extra: 806 / 738,
  18734. bottom: 0.01
  18735. }
  18736. },
  18737. side: {
  18738. height: math.unit(6, "feet"),
  18739. weight: math.unit(150, "lb"),
  18740. name: "Side",
  18741. image: {
  18742. source: "./media/characters/alluria/side.svg",
  18743. extra: 800 / 750,
  18744. }
  18745. },
  18746. back: {
  18747. height: math.unit(6, "feet"),
  18748. weight: math.unit(150, "lb"),
  18749. name: "Back",
  18750. image: {
  18751. source: "./media/characters/alluria/back.svg",
  18752. extra: 806 / 738,
  18753. }
  18754. },
  18755. frontMaid: {
  18756. height: math.unit(6, "feet"),
  18757. weight: math.unit(150, "lb"),
  18758. name: "Front (Maid)",
  18759. image: {
  18760. source: "./media/characters/alluria/front-maid.svg",
  18761. extra: 806 / 738,
  18762. bottom: 0.01
  18763. }
  18764. },
  18765. sideMaid: {
  18766. height: math.unit(6, "feet"),
  18767. weight: math.unit(150, "lb"),
  18768. name: "Side (Maid)",
  18769. image: {
  18770. source: "./media/characters/alluria/side-maid.svg",
  18771. extra: 800 / 750,
  18772. bottom: 0.005
  18773. }
  18774. },
  18775. backMaid: {
  18776. height: math.unit(6, "feet"),
  18777. weight: math.unit(150, "lb"),
  18778. name: "Back (Maid)",
  18779. image: {
  18780. source: "./media/characters/alluria/back-maid.svg",
  18781. extra: 806 / 738,
  18782. }
  18783. },
  18784. },
  18785. [
  18786. {
  18787. name: "Micro",
  18788. height: math.unit(6, "inches"),
  18789. default: true
  18790. },
  18791. ]
  18792. ))
  18793. characterMakers.push(() => makeCharacter(
  18794. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18795. {
  18796. front: {
  18797. height: math.unit(6, "feet"),
  18798. weight: math.unit(150, "lb"),
  18799. name: "Front",
  18800. image: {
  18801. source: "./media/characters/kyle/front.svg",
  18802. extra: 1069 / 962,
  18803. bottom: 77.228 / 1727.45
  18804. }
  18805. },
  18806. },
  18807. [
  18808. {
  18809. name: "Macro",
  18810. height: math.unit(150, "feet"),
  18811. default: true
  18812. },
  18813. ]
  18814. ))
  18815. characterMakers.push(() => makeCharacter(
  18816. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18817. {
  18818. front: {
  18819. height: math.unit(6, "feet"),
  18820. weight: math.unit(300, "lb"),
  18821. name: "Front",
  18822. image: {
  18823. source: "./media/characters/duncan/front.svg",
  18824. extra: 1650 / 1482,
  18825. bottom: 0.05
  18826. }
  18827. },
  18828. },
  18829. [
  18830. {
  18831. name: "Macro",
  18832. height: math.unit(100, "feet"),
  18833. default: true
  18834. },
  18835. ]
  18836. ))
  18837. characterMakers.push(() => makeCharacter(
  18838. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18839. {
  18840. front: {
  18841. height: math.unit(5 + 4 / 12, "feet"),
  18842. weight: math.unit(220, "lb"),
  18843. name: "Front",
  18844. image: {
  18845. source: "./media/characters/memory/front.svg",
  18846. extra: 3641 / 3545,
  18847. bottom: 0.03
  18848. }
  18849. },
  18850. back: {
  18851. height: math.unit(5 + 4 / 12, "feet"),
  18852. weight: math.unit(220, "lb"),
  18853. name: "Back",
  18854. image: {
  18855. source: "./media/characters/memory/back.svg",
  18856. extra: 3641 / 3545,
  18857. bottom: 0.025
  18858. }
  18859. },
  18860. frontSkirt: {
  18861. height: math.unit(5 + 4 / 12, "feet"),
  18862. weight: math.unit(220, "lb"),
  18863. name: "Front (Skirt)",
  18864. image: {
  18865. source: "./media/characters/memory/front-skirt.svg",
  18866. extra: 3641 / 3545,
  18867. bottom: 0.03
  18868. }
  18869. },
  18870. frontDress: {
  18871. height: math.unit(5 + 4 / 12, "feet"),
  18872. weight: math.unit(220, "lb"),
  18873. name: "Front (Dress)",
  18874. image: {
  18875. source: "./media/characters/memory/front-dress.svg",
  18876. extra: 3641 / 3545,
  18877. bottom: 0.03
  18878. }
  18879. },
  18880. },
  18881. [
  18882. {
  18883. name: "Micro",
  18884. height: math.unit(6, "inches"),
  18885. default: true
  18886. },
  18887. {
  18888. name: "Normal",
  18889. height: math.unit(5 + 4 / 12, "feet")
  18890. },
  18891. ]
  18892. ))
  18893. characterMakers.push(() => makeCharacter(
  18894. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18895. {
  18896. front: {
  18897. height: math.unit(4 + 11 / 12, "feet"),
  18898. weight: math.unit(100, "lb"),
  18899. name: "Front",
  18900. image: {
  18901. source: "./media/characters/luno/front.svg",
  18902. extra: 1535 / 1487,
  18903. bottom: 0.03
  18904. }
  18905. },
  18906. },
  18907. [
  18908. {
  18909. name: "Micro",
  18910. height: math.unit(3, "inches")
  18911. },
  18912. {
  18913. name: "Normal",
  18914. height: math.unit(4 + 11 / 12, "feet"),
  18915. default: true
  18916. },
  18917. {
  18918. name: "Macro",
  18919. height: math.unit(300, "feet")
  18920. },
  18921. {
  18922. name: "Megamacro",
  18923. height: math.unit(700, "miles")
  18924. },
  18925. ]
  18926. ))
  18927. characterMakers.push(() => makeCharacter(
  18928. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18929. {
  18930. front: {
  18931. height: math.unit(6 + 2 / 12, "feet"),
  18932. weight: math.unit(170, "lb"),
  18933. name: "Front",
  18934. image: {
  18935. source: "./media/characters/jamesy/front.svg",
  18936. extra: 440 / 382,
  18937. bottom: 0.005
  18938. }
  18939. },
  18940. },
  18941. [
  18942. {
  18943. name: "Micro",
  18944. height: math.unit(3, "inches")
  18945. },
  18946. {
  18947. name: "Normal",
  18948. height: math.unit(6 + 2 / 12, "feet"),
  18949. default: true
  18950. },
  18951. {
  18952. name: "Macro",
  18953. height: math.unit(300, "feet")
  18954. },
  18955. {
  18956. name: "Megamacro",
  18957. height: math.unit(700, "miles")
  18958. },
  18959. ]
  18960. ))
  18961. characterMakers.push(() => makeCharacter(
  18962. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18963. {
  18964. front: {
  18965. height: math.unit(6, "feet"),
  18966. weight: math.unit(160, "lb"),
  18967. name: "Front",
  18968. image: {
  18969. source: "./media/characters/mark/front.svg",
  18970. extra: 3300 / 3100,
  18971. bottom: 136.42 / 3440.47
  18972. }
  18973. },
  18974. },
  18975. [
  18976. {
  18977. name: "Macro",
  18978. height: math.unit(120, "meters")
  18979. },
  18980. {
  18981. name: "Bigger Macro",
  18982. height: math.unit(350, "meters")
  18983. },
  18984. {
  18985. name: "Megamacro",
  18986. height: math.unit(8, "km"),
  18987. default: true
  18988. },
  18989. {
  18990. name: "Continental",
  18991. height: math.unit(4550, "km")
  18992. },
  18993. {
  18994. name: "Planetary",
  18995. height: math.unit(65000, "km")
  18996. },
  18997. ]
  18998. ))
  18999. characterMakers.push(() => makeCharacter(
  19000. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  19001. {
  19002. front: {
  19003. height: math.unit(6, "feet"),
  19004. weight: math.unit(400, "lb"),
  19005. name: "Front",
  19006. image: {
  19007. source: "./media/characters/mac/front.svg",
  19008. extra: 1048 / 987.7,
  19009. bottom: 60 / 1107.6,
  19010. }
  19011. },
  19012. },
  19013. [
  19014. {
  19015. name: "Macro",
  19016. height: math.unit(500, "feet"),
  19017. default: true
  19018. },
  19019. ]
  19020. ))
  19021. characterMakers.push(() => makeCharacter(
  19022. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  19023. {
  19024. front: {
  19025. height: math.unit(5 + 2 / 12, "feet"),
  19026. weight: math.unit(190, "lb"),
  19027. name: "Front",
  19028. image: {
  19029. source: "./media/characters/bari/front.svg",
  19030. extra: 3156 / 2880,
  19031. bottom: 0.03
  19032. }
  19033. },
  19034. back: {
  19035. height: math.unit(5 + 2 / 12, "feet"),
  19036. weight: math.unit(190, "lb"),
  19037. name: "Back",
  19038. image: {
  19039. source: "./media/characters/bari/back.svg",
  19040. extra: 3260 / 2834,
  19041. bottom: 0.025
  19042. }
  19043. },
  19044. frontPlush: {
  19045. height: math.unit(5 + 2 / 12, "feet"),
  19046. weight: math.unit(190, "lb"),
  19047. name: "Front (Plush)",
  19048. image: {
  19049. source: "./media/characters/bari/front-plush.svg",
  19050. extra: 1112 / 1061,
  19051. bottom: 0.002
  19052. }
  19053. },
  19054. },
  19055. [
  19056. {
  19057. name: "Micro",
  19058. height: math.unit(3, "inches")
  19059. },
  19060. {
  19061. name: "Normal",
  19062. height: math.unit(5 + 2 / 12, "feet"),
  19063. default: true
  19064. },
  19065. {
  19066. name: "Macro",
  19067. height: math.unit(20, "feet")
  19068. },
  19069. ]
  19070. ))
  19071. characterMakers.push(() => makeCharacter(
  19072. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  19073. {
  19074. front: {
  19075. height: math.unit(6 + 1 / 12, "feet"),
  19076. weight: math.unit(275, "lb"),
  19077. name: "Front",
  19078. image: {
  19079. source: "./media/characters/hunter-misha-raven/front.svg"
  19080. }
  19081. },
  19082. },
  19083. [
  19084. {
  19085. name: "Mortal",
  19086. height: math.unit(6 + 1 / 12, "feet")
  19087. },
  19088. {
  19089. name: "Divine",
  19090. height: math.unit(1.12134e34, "parsecs"),
  19091. default: true
  19092. },
  19093. ]
  19094. ))
  19095. characterMakers.push(() => makeCharacter(
  19096. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  19097. {
  19098. front: {
  19099. height: math.unit(6 + 3 / 12, "feet"),
  19100. weight: math.unit(220, "lb"),
  19101. name: "Front",
  19102. image: {
  19103. source: "./media/characters/max-calore/front.svg",
  19104. extra: 1700 / 1648,
  19105. bottom: 0.01
  19106. }
  19107. },
  19108. back: {
  19109. height: math.unit(6 + 3 / 12, "feet"),
  19110. weight: math.unit(220, "lb"),
  19111. name: "Back",
  19112. image: {
  19113. source: "./media/characters/max-calore/back.svg",
  19114. extra: 1700 / 1648,
  19115. bottom: 0.01
  19116. }
  19117. },
  19118. },
  19119. [
  19120. {
  19121. name: "Normal",
  19122. height: math.unit(6 + 3 / 12, "feet"),
  19123. default: true
  19124. },
  19125. ]
  19126. ))
  19127. characterMakers.push(() => makeCharacter(
  19128. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  19129. {
  19130. side: {
  19131. height: math.unit(2 + 8 / 12, "feet"),
  19132. weight: math.unit(99, "lb"),
  19133. name: "Side",
  19134. image: {
  19135. source: "./media/characters/aspen/side.svg",
  19136. extra: 152 / 138,
  19137. bottom: 0.032
  19138. }
  19139. },
  19140. },
  19141. [
  19142. {
  19143. name: "Normal",
  19144. height: math.unit(2 + 8 / 12, "feet"),
  19145. default: true
  19146. },
  19147. ]
  19148. ))
  19149. characterMakers.push(() => makeCharacter(
  19150. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  19151. {
  19152. side: {
  19153. height: math.unit(3 + 2 / 12, "feet"),
  19154. weight: math.unit(224, "lb"),
  19155. name: "Side",
  19156. image: {
  19157. source: "./media/characters/sheila-feral-wolf/side.svg",
  19158. extra: 179 / 166,
  19159. bottom: 0.03
  19160. }
  19161. },
  19162. },
  19163. [
  19164. {
  19165. name: "Normal",
  19166. height: math.unit(3 + 2 / 12, "feet"),
  19167. default: true
  19168. },
  19169. ]
  19170. ))
  19171. characterMakers.push(() => makeCharacter(
  19172. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  19173. {
  19174. side: {
  19175. height: math.unit(1 + 9 / 12, "feet"),
  19176. weight: math.unit(38, "lb"),
  19177. name: "Side",
  19178. image: {
  19179. source: "./media/characters/michelle/side.svg",
  19180. extra: 147 / 136.7,
  19181. bottom: 0.03
  19182. }
  19183. },
  19184. },
  19185. [
  19186. {
  19187. name: "Normal",
  19188. height: math.unit(1 + 9 / 12, "feet"),
  19189. default: true
  19190. },
  19191. ]
  19192. ))
  19193. characterMakers.push(() => makeCharacter(
  19194. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  19195. {
  19196. front: {
  19197. height: math.unit(1.54, "feet"),
  19198. weight: math.unit(50, "lb"),
  19199. name: "Front",
  19200. image: {
  19201. source: "./media/characters/nino/front.svg"
  19202. }
  19203. },
  19204. },
  19205. [
  19206. {
  19207. name: "Normal",
  19208. height: math.unit(1.54, "feet"),
  19209. default: true
  19210. },
  19211. ]
  19212. ))
  19213. characterMakers.push(() => makeCharacter(
  19214. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  19215. {
  19216. front: {
  19217. height: math.unit(1.49, "feet"),
  19218. weight: math.unit(45, "lb"),
  19219. name: "Front",
  19220. image: {
  19221. source: "./media/characters/viola/front.svg"
  19222. }
  19223. },
  19224. },
  19225. [
  19226. {
  19227. name: "Normal",
  19228. height: math.unit(1.49, "feet"),
  19229. default: true
  19230. },
  19231. ]
  19232. ))
  19233. characterMakers.push(() => makeCharacter(
  19234. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  19235. {
  19236. front: {
  19237. height: math.unit(6 + 5 / 12, "feet"),
  19238. weight: math.unit(580, "lb"),
  19239. name: "Front",
  19240. image: {
  19241. source: "./media/characters/atlas/front.svg",
  19242. extra: 298.5 / 290,
  19243. bottom: 0.015
  19244. }
  19245. },
  19246. },
  19247. [
  19248. {
  19249. name: "Normal",
  19250. height: math.unit(6 + 5 / 12, "feet"),
  19251. default: true
  19252. },
  19253. ]
  19254. ))
  19255. characterMakers.push(() => makeCharacter(
  19256. { name: "Davy", species: ["cat"], tags: ["feral"] },
  19257. {
  19258. side: {
  19259. height: math.unit(15.6, "inches"),
  19260. weight: math.unit(10, "lb"),
  19261. name: "Side",
  19262. image: {
  19263. source: "./media/characters/davy/side.svg",
  19264. extra: 200 / 170,
  19265. bottom: 0.01
  19266. }
  19267. },
  19268. },
  19269. [
  19270. {
  19271. name: "Normal",
  19272. height: math.unit(15.6, "inches"),
  19273. default: true
  19274. },
  19275. ]
  19276. ))
  19277. characterMakers.push(() => makeCharacter(
  19278. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  19279. {
  19280. side: {
  19281. height: math.unit(4 + 8 / 12, "feet"),
  19282. weight: math.unit(166, "lb"),
  19283. name: "Side",
  19284. image: {
  19285. source: "./media/characters/fiona/side.svg",
  19286. extra: 232 / 220,
  19287. bottom: 0.03
  19288. }
  19289. },
  19290. },
  19291. [
  19292. {
  19293. name: "Normal",
  19294. height: math.unit(4 + 8 / 12, "feet"),
  19295. default: true
  19296. },
  19297. ]
  19298. ))
  19299. characterMakers.push(() => makeCharacter(
  19300. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  19301. {
  19302. front: {
  19303. height: math.unit(26, "inches"),
  19304. weight: math.unit(35, "lb"),
  19305. name: "Front",
  19306. image: {
  19307. source: "./media/characters/lyla/front.svg",
  19308. bottom: 0.1
  19309. }
  19310. },
  19311. },
  19312. [
  19313. {
  19314. name: "Normal",
  19315. height: math.unit(3, "feet"),
  19316. default: true
  19317. },
  19318. ]
  19319. ))
  19320. characterMakers.push(() => makeCharacter(
  19321. { name: "Perseus", species: ["monitor-lizard", "deity"], tags: ["feral"] },
  19322. {
  19323. side: {
  19324. height: math.unit(1.8, "feet"),
  19325. weight: math.unit(44, "lb"),
  19326. name: "Side",
  19327. image: {
  19328. source: "./media/characters/perseus/side.svg",
  19329. bottom: 0.21
  19330. }
  19331. },
  19332. },
  19333. [
  19334. {
  19335. name: "Normal",
  19336. height: math.unit(1.8, "feet"),
  19337. default: true
  19338. },
  19339. ]
  19340. ))
  19341. characterMakers.push(() => makeCharacter(
  19342. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  19343. {
  19344. side: {
  19345. height: math.unit(4 + 2 / 12, "feet"),
  19346. weight: math.unit(20, "lb"),
  19347. name: "Side",
  19348. image: {
  19349. source: "./media/characters/remus/side.svg"
  19350. }
  19351. },
  19352. },
  19353. [
  19354. {
  19355. name: "Normal",
  19356. height: math.unit(4 + 2 / 12, "feet"),
  19357. default: true
  19358. },
  19359. ]
  19360. ))
  19361. characterMakers.push(() => makeCharacter(
  19362. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  19363. {
  19364. front: {
  19365. height: math.unit(4 + 11 / 12, "feet"),
  19366. weight: math.unit(114, "lb"),
  19367. name: "Front",
  19368. image: {
  19369. source: "./media/characters/raf/front.svg",
  19370. extra: 1504/1339,
  19371. bottom: 26/1530
  19372. }
  19373. },
  19374. side: {
  19375. height: math.unit(4 + 11 / 12, "feet"),
  19376. weight: math.unit(114, "lb"),
  19377. name: "Side",
  19378. image: {
  19379. source: "./media/characters/raf/side.svg",
  19380. extra: 1466/1316,
  19381. bottom: 29/1495
  19382. }
  19383. },
  19384. paw: {
  19385. height: math.unit(1.45, "feet"),
  19386. name: "Paw",
  19387. image: {
  19388. source: "./media/characters/raf/paw.svg"
  19389. },
  19390. extraAttributes: {
  19391. "toeSize": {
  19392. name: "Toe Size",
  19393. power: 2,
  19394. type: "area",
  19395. base: math.unit(0.004, "m^2")
  19396. },
  19397. "padSize": {
  19398. name: "Pad Size",
  19399. power: 2,
  19400. type: "area",
  19401. base: math.unit(0.04, "m^2")
  19402. },
  19403. "footSize": {
  19404. name: "Foot Size",
  19405. power: 2,
  19406. type: "area",
  19407. base: math.unit(0.08, "m^2")
  19408. },
  19409. }
  19410. },
  19411. },
  19412. [
  19413. {
  19414. name: "Micro",
  19415. height: math.unit(2, "inches")
  19416. },
  19417. {
  19418. name: "Normal",
  19419. height: math.unit(4 + 11 / 12, "feet"),
  19420. default: true
  19421. },
  19422. {
  19423. name: "Macro",
  19424. height: math.unit(70, "feet")
  19425. },
  19426. ]
  19427. ))
  19428. characterMakers.push(() => makeCharacter(
  19429. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  19430. {
  19431. front: {
  19432. height: math.unit(1.5, "meters"),
  19433. weight: math.unit(68, "kg"),
  19434. name: "Front",
  19435. image: {
  19436. source: "./media/characters/liam-einarr/front.svg",
  19437. extra: 2822 / 2666
  19438. }
  19439. },
  19440. back: {
  19441. height: math.unit(1.5, "meters"),
  19442. weight: math.unit(68, "kg"),
  19443. name: "Back",
  19444. image: {
  19445. source: "./media/characters/liam-einarr/back.svg",
  19446. extra: 2822 / 2666,
  19447. bottom: 0.015
  19448. }
  19449. },
  19450. },
  19451. [
  19452. {
  19453. name: "Normal",
  19454. height: math.unit(1.5, "meters"),
  19455. default: true
  19456. },
  19457. {
  19458. name: "Macro",
  19459. height: math.unit(150, "meters")
  19460. },
  19461. {
  19462. name: "Megamacro",
  19463. height: math.unit(35, "km")
  19464. },
  19465. ]
  19466. ))
  19467. characterMakers.push(() => makeCharacter(
  19468. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  19469. {
  19470. front: {
  19471. height: math.unit(6, "feet"),
  19472. weight: math.unit(75, "kg"),
  19473. name: "Front",
  19474. image: {
  19475. source: "./media/characters/linda/front.svg",
  19476. extra: 930 / 874,
  19477. bottom: 0.004
  19478. }
  19479. },
  19480. },
  19481. [
  19482. {
  19483. name: "Normal",
  19484. height: math.unit(6, "feet"),
  19485. default: true
  19486. },
  19487. ]
  19488. ))
  19489. characterMakers.push(() => makeCharacter(
  19490. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  19491. {
  19492. front: {
  19493. height: math.unit(6 + 8 / 12, "feet"),
  19494. weight: math.unit(220, "lb"),
  19495. name: "Front",
  19496. image: {
  19497. source: "./media/characters/caylex/front.svg",
  19498. extra: 821 / 772,
  19499. bottom: 0.07
  19500. }
  19501. },
  19502. back: {
  19503. height: math.unit(6 + 8 / 12, "feet"),
  19504. weight: math.unit(220, "lb"),
  19505. name: "Back",
  19506. image: {
  19507. source: "./media/characters/caylex/back.svg",
  19508. extra: 821 / 772,
  19509. bottom: 0.022
  19510. }
  19511. },
  19512. hand: {
  19513. height: math.unit(1.25, "feet"),
  19514. name: "Hand",
  19515. image: {
  19516. source: "./media/characters/caylex/hand.svg"
  19517. }
  19518. },
  19519. foot: {
  19520. height: math.unit(1.6, "feet"),
  19521. name: "Foot",
  19522. image: {
  19523. source: "./media/characters/caylex/foot.svg"
  19524. }
  19525. },
  19526. armored: {
  19527. height: math.unit(6 + 8 / 12, "feet"),
  19528. weight: math.unit(250, "lb"),
  19529. name: "Armored",
  19530. image: {
  19531. source: "./media/characters/caylex/armored.svg",
  19532. extra: 1420 / 1310,
  19533. bottom: 0.045
  19534. }
  19535. },
  19536. },
  19537. [
  19538. {
  19539. name: "Normal",
  19540. height: math.unit(6 + 8 / 12, "feet"),
  19541. default: true
  19542. },
  19543. {
  19544. name: "Normal+",
  19545. height: math.unit(12, "feet")
  19546. },
  19547. ]
  19548. ))
  19549. characterMakers.push(() => makeCharacter(
  19550. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19551. {
  19552. front: {
  19553. height: math.unit(7 + 6 / 12, "feet"),
  19554. weight: math.unit(288, "lb"),
  19555. name: "Front",
  19556. image: {
  19557. source: "./media/characters/alana/front.svg",
  19558. extra: 679 / 653,
  19559. bottom: 22.5 / 701
  19560. }
  19561. },
  19562. },
  19563. [
  19564. {
  19565. name: "Normal",
  19566. height: math.unit(7 + 6 / 12, "feet")
  19567. },
  19568. {
  19569. name: "Large",
  19570. height: math.unit(50, "feet")
  19571. },
  19572. {
  19573. name: "Macro",
  19574. height: math.unit(100, "feet"),
  19575. default: true
  19576. },
  19577. {
  19578. name: "Macro+",
  19579. height: math.unit(200, "feet")
  19580. },
  19581. ]
  19582. ))
  19583. characterMakers.push(() => makeCharacter(
  19584. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19585. {
  19586. front: {
  19587. height: math.unit(6 + 1 / 12, "feet"),
  19588. weight: math.unit(210, "lb"),
  19589. name: "Front",
  19590. image: {
  19591. source: "./media/characters/hasani/front.svg",
  19592. extra: 244 / 232,
  19593. bottom: 0.01
  19594. }
  19595. },
  19596. back: {
  19597. height: math.unit(6 + 1 / 12, "feet"),
  19598. weight: math.unit(210, "lb"),
  19599. name: "Back",
  19600. image: {
  19601. source: "./media/characters/hasani/back.svg",
  19602. extra: 244 / 232,
  19603. bottom: 0.01
  19604. }
  19605. },
  19606. },
  19607. [
  19608. {
  19609. name: "Normal",
  19610. height: math.unit(6 + 1 / 12, "feet")
  19611. },
  19612. {
  19613. name: "Macro",
  19614. height: math.unit(175, "feet"),
  19615. default: true
  19616. },
  19617. ]
  19618. ))
  19619. characterMakers.push(() => makeCharacter(
  19620. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19621. {
  19622. front: {
  19623. height: math.unit(1.82, "meters"),
  19624. weight: math.unit(140, "lb"),
  19625. name: "Front",
  19626. image: {
  19627. source: "./media/characters/nita/front.svg",
  19628. extra: 2473 / 2363,
  19629. bottom: 0.01
  19630. }
  19631. },
  19632. },
  19633. [
  19634. {
  19635. name: "Normal",
  19636. height: math.unit(1.82, "m")
  19637. },
  19638. {
  19639. name: "Macro",
  19640. height: math.unit(300, "m")
  19641. },
  19642. {
  19643. name: "Mistake Canon",
  19644. height: math.unit(0.5, "miles"),
  19645. default: true
  19646. },
  19647. {
  19648. name: "Big Mistake",
  19649. height: math.unit(13, "miles")
  19650. },
  19651. {
  19652. name: "Playing God",
  19653. height: math.unit(2450, "miles")
  19654. },
  19655. ]
  19656. ))
  19657. characterMakers.push(() => makeCharacter(
  19658. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19659. {
  19660. front: {
  19661. height: math.unit(4, "feet"),
  19662. weight: math.unit(120, "lb"),
  19663. name: "Front",
  19664. image: {
  19665. source: "./media/characters/shiriko/front.svg",
  19666. extra: 970/934,
  19667. bottom: 5/975
  19668. }
  19669. },
  19670. },
  19671. [
  19672. {
  19673. name: "Normal",
  19674. height: math.unit(4, "feet"),
  19675. default: true
  19676. },
  19677. ]
  19678. ))
  19679. characterMakers.push(() => makeCharacter(
  19680. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19681. {
  19682. front: {
  19683. height: math.unit(6, "feet"),
  19684. name: "front",
  19685. image: {
  19686. source: "./media/characters/deja/front.svg",
  19687. extra: 926 / 840,
  19688. bottom: 0.07
  19689. }
  19690. },
  19691. },
  19692. [
  19693. {
  19694. name: "Planck Length",
  19695. height: math.unit(1.6e-35, "meters")
  19696. },
  19697. {
  19698. name: "Normal",
  19699. height: math.unit(30.48, "meters"),
  19700. default: true
  19701. },
  19702. {
  19703. name: "Universal",
  19704. height: math.unit(8.8e26, "meters")
  19705. },
  19706. ]
  19707. ))
  19708. characterMakers.push(() => makeCharacter(
  19709. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19710. {
  19711. side: {
  19712. height: math.unit(8, "feet"),
  19713. weight: math.unit(6300, "lb"),
  19714. name: "Side",
  19715. image: {
  19716. source: "./media/characters/anima/side.svg",
  19717. bottom: 0.035
  19718. }
  19719. },
  19720. },
  19721. [
  19722. {
  19723. name: "Normal",
  19724. height: math.unit(8, "feet"),
  19725. default: true
  19726. },
  19727. ]
  19728. ))
  19729. characterMakers.push(() => makeCharacter(
  19730. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19731. {
  19732. front: {
  19733. height: math.unit(8, "feet"),
  19734. weight: math.unit(350, "lb"),
  19735. name: "Front",
  19736. image: {
  19737. source: "./media/characters/bianca/front.svg",
  19738. extra: 234 / 225,
  19739. bottom: 0.03
  19740. }
  19741. },
  19742. },
  19743. [
  19744. {
  19745. name: "Normal",
  19746. height: math.unit(8, "feet"),
  19747. default: true
  19748. },
  19749. ]
  19750. ))
  19751. characterMakers.push(() => makeCharacter(
  19752. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19753. {
  19754. front: {
  19755. height: math.unit(11 + 5/12, "feet"),
  19756. weight: math.unit(1200, "lb"),
  19757. name: "Front",
  19758. image: {
  19759. source: "./media/characters/adinia/front.svg",
  19760. extra: 1767/1641,
  19761. bottom: 44/1811
  19762. },
  19763. extraAttributes: {
  19764. "energyIntake": {
  19765. name: "Energy Intake",
  19766. power: 3,
  19767. type: "energy",
  19768. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19769. },
  19770. }
  19771. },
  19772. back: {
  19773. height: math.unit(11 + 5/12, "feet"),
  19774. weight: math.unit(1200, "lb"),
  19775. name: "Back",
  19776. image: {
  19777. source: "./media/characters/adinia/back.svg",
  19778. extra: 1834/1684,
  19779. bottom: 14/1848
  19780. },
  19781. extraAttributes: {
  19782. "energyIntake": {
  19783. name: "Energy Intake",
  19784. power: 3,
  19785. type: "energy",
  19786. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19787. },
  19788. }
  19789. },
  19790. maw: {
  19791. height: math.unit(3.79, "feet"),
  19792. name: "Maw",
  19793. image: {
  19794. source: "./media/characters/adinia/maw.svg"
  19795. }
  19796. },
  19797. rump: {
  19798. height: math.unit(4.6, "feet"),
  19799. name: "Rump",
  19800. image: {
  19801. source: "./media/characters/adinia/rump.svg"
  19802. }
  19803. },
  19804. },
  19805. [
  19806. {
  19807. name: "Normal",
  19808. height: math.unit(11 + 5 / 12, "feet"),
  19809. default: true
  19810. },
  19811. ]
  19812. ))
  19813. characterMakers.push(() => makeCharacter(
  19814. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19815. {
  19816. front: {
  19817. height: math.unit(3, "meters"),
  19818. weight: math.unit(200, "kg"),
  19819. name: "Front",
  19820. image: {
  19821. source: "./media/characters/lykasa/front.svg",
  19822. extra: 1076 / 976,
  19823. bottom: 0.06
  19824. }
  19825. },
  19826. },
  19827. [
  19828. {
  19829. name: "Normal",
  19830. height: math.unit(3, "meters")
  19831. },
  19832. {
  19833. name: "Kaiju",
  19834. height: math.unit(120, "meters"),
  19835. default: true
  19836. },
  19837. {
  19838. name: "Mega Kaiju",
  19839. height: math.unit(240, "km")
  19840. },
  19841. {
  19842. name: "Giga Kaiju",
  19843. height: math.unit(400, "megameters")
  19844. },
  19845. {
  19846. name: "Tera Kaiju",
  19847. height: math.unit(800, "gigameters")
  19848. },
  19849. {
  19850. name: "Kaiju Dragon Goddess",
  19851. height: math.unit(26, "zettaparsecs")
  19852. },
  19853. ]
  19854. ))
  19855. characterMakers.push(() => makeCharacter(
  19856. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19857. {
  19858. side: {
  19859. height: math.unit(283 / 124 * 6, "feet"),
  19860. weight: math.unit(35000, "lb"),
  19861. name: "Side",
  19862. image: {
  19863. source: "./media/characters/malfaren/side.svg",
  19864. extra: 1310/529,
  19865. bottom: 24/1334
  19866. }
  19867. },
  19868. front: {
  19869. height: math.unit(22.36, "feet"),
  19870. weight: math.unit(35000, "lb"),
  19871. name: "Front",
  19872. image: {
  19873. source: "./media/characters/malfaren/front.svg",
  19874. extra: 1237/1115,
  19875. bottom: 32/1269
  19876. }
  19877. },
  19878. maw: {
  19879. height: math.unit(6.9, "feet"),
  19880. name: "Maw",
  19881. image: {
  19882. source: "./media/characters/malfaren/maw.svg"
  19883. }
  19884. },
  19885. dick: {
  19886. height: math.unit(6.19, "feet"),
  19887. name: "Dick",
  19888. image: {
  19889. source: "./media/characters/malfaren/dick.svg"
  19890. }
  19891. },
  19892. eye: {
  19893. height: math.unit(0.69, "feet"),
  19894. name: "Eye",
  19895. image: {
  19896. source: "./media/characters/malfaren/eye.svg"
  19897. }
  19898. },
  19899. },
  19900. [
  19901. {
  19902. name: "Big",
  19903. height: math.unit(283 / 162 * 6, "feet"),
  19904. },
  19905. {
  19906. name: "Bigger",
  19907. height: math.unit(283 / 124 * 6, "feet")
  19908. },
  19909. {
  19910. name: "Massive",
  19911. height: math.unit(283 / 92 * 6, "feet"),
  19912. default: true
  19913. },
  19914. {
  19915. name: "👀💦",
  19916. height: math.unit(283 / 73 * 6, "feet"),
  19917. },
  19918. ]
  19919. ))
  19920. characterMakers.push(() => makeCharacter(
  19921. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19922. {
  19923. front: {
  19924. height: math.unit(1.7, "m"),
  19925. weight: math.unit(70, "kg"),
  19926. name: "Front",
  19927. image: {
  19928. source: "./media/characters/kernel/front.svg",
  19929. extra: 1960/1821,
  19930. bottom: 17/1977
  19931. }
  19932. },
  19933. },
  19934. [
  19935. {
  19936. name: "Nano",
  19937. height: math.unit(17, "micrometers")
  19938. },
  19939. {
  19940. name: "Micro",
  19941. height: math.unit(1.7, "mm")
  19942. },
  19943. {
  19944. name: "Small",
  19945. height: math.unit(1.7, "cm")
  19946. },
  19947. {
  19948. name: "Normal",
  19949. height: math.unit(1.7, "m"),
  19950. default: true
  19951. },
  19952. ]
  19953. ))
  19954. characterMakers.push(() => makeCharacter(
  19955. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19956. {
  19957. front: {
  19958. height: math.unit(1.75, "meters"),
  19959. weight: math.unit(65, "kg"),
  19960. name: "Front",
  19961. image: {
  19962. source: "./media/characters/jayne-folest/front.svg",
  19963. extra: 2115 / 2007,
  19964. bottom: 0.02
  19965. }
  19966. },
  19967. back: {
  19968. height: math.unit(1.75, "meters"),
  19969. weight: math.unit(65, "kg"),
  19970. name: "Back",
  19971. image: {
  19972. source: "./media/characters/jayne-folest/back.svg",
  19973. extra: 2115 / 2007,
  19974. bottom: 0.005
  19975. }
  19976. },
  19977. frontClothed: {
  19978. height: math.unit(1.75, "meters"),
  19979. weight: math.unit(65, "kg"),
  19980. name: "Front (Clothed)",
  19981. image: {
  19982. source: "./media/characters/jayne-folest/front-clothed.svg",
  19983. extra: 2115 / 2007,
  19984. bottom: 0.035
  19985. }
  19986. },
  19987. hand: {
  19988. height: math.unit(1 / 1.260, "feet"),
  19989. name: "Hand",
  19990. image: {
  19991. source: "./media/characters/jayne-folest/hand.svg"
  19992. }
  19993. },
  19994. foot: {
  19995. height: math.unit(1 / 0.918, "feet"),
  19996. name: "Foot",
  19997. image: {
  19998. source: "./media/characters/jayne-folest/foot.svg"
  19999. }
  20000. },
  20001. },
  20002. [
  20003. {
  20004. name: "Micro",
  20005. height: math.unit(4, "cm")
  20006. },
  20007. {
  20008. name: "Normal",
  20009. height: math.unit(1.75, "meters")
  20010. },
  20011. {
  20012. name: "Macro",
  20013. height: math.unit(47.5, "meters"),
  20014. default: true
  20015. },
  20016. ]
  20017. ))
  20018. characterMakers.push(() => makeCharacter(
  20019. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  20020. {
  20021. front: {
  20022. height: math.unit(180, "cm"),
  20023. weight: math.unit(70, "kg"),
  20024. name: "Front",
  20025. image: {
  20026. source: "./media/characters/algier/front.svg",
  20027. extra: 596 / 572,
  20028. bottom: 0.04
  20029. }
  20030. },
  20031. back: {
  20032. height: math.unit(180, "cm"),
  20033. weight: math.unit(70, "kg"),
  20034. name: "Back",
  20035. image: {
  20036. source: "./media/characters/algier/back.svg",
  20037. extra: 596 / 572,
  20038. bottom: 0.025
  20039. }
  20040. },
  20041. frontdressed: {
  20042. height: math.unit(180, "cm"),
  20043. weight: math.unit(150, "kg"),
  20044. name: "Front-dressed",
  20045. image: {
  20046. source: "./media/characters/algier/front-dressed.svg",
  20047. extra: 596 / 572,
  20048. bottom: 0.038
  20049. }
  20050. },
  20051. },
  20052. [
  20053. {
  20054. name: "Micro",
  20055. height: math.unit(5, "cm")
  20056. },
  20057. {
  20058. name: "Normal",
  20059. height: math.unit(180, "cm"),
  20060. default: true
  20061. },
  20062. {
  20063. name: "Macro",
  20064. height: math.unit(64, "m")
  20065. },
  20066. ]
  20067. ))
  20068. characterMakers.push(() => makeCharacter(
  20069. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  20070. {
  20071. upright: {
  20072. height: math.unit(7, "feet"),
  20073. weight: math.unit(300, "lb"),
  20074. name: "Upright",
  20075. image: {
  20076. source: "./media/characters/pretzel/upright.svg",
  20077. extra: 534 / 522,
  20078. bottom: 0.065
  20079. }
  20080. },
  20081. sprawling: {
  20082. height: math.unit(3.75, "feet"),
  20083. weight: math.unit(300, "lb"),
  20084. name: "Sprawling",
  20085. image: {
  20086. source: "./media/characters/pretzel/sprawling.svg",
  20087. extra: 314 / 281,
  20088. bottom: 0.1
  20089. }
  20090. },
  20091. tongue: {
  20092. height: math.unit(2, "feet"),
  20093. name: "Tongue",
  20094. image: {
  20095. source: "./media/characters/pretzel/tongue.svg"
  20096. }
  20097. },
  20098. },
  20099. [
  20100. {
  20101. name: "Normal",
  20102. height: math.unit(7, "feet"),
  20103. default: true
  20104. },
  20105. {
  20106. name: "Oversized",
  20107. height: math.unit(15, "feet")
  20108. },
  20109. {
  20110. name: "Huge",
  20111. height: math.unit(30, "feet")
  20112. },
  20113. {
  20114. name: "Macro",
  20115. height: math.unit(250, "feet")
  20116. },
  20117. ]
  20118. ))
  20119. characterMakers.push(() => makeCharacter(
  20120. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  20121. {
  20122. sideFront: {
  20123. height: math.unit(5 + 2 / 12, "feet"),
  20124. weight: math.unit(120, "lb"),
  20125. name: "Front Side",
  20126. image: {
  20127. source: "./media/characters/roxi/side-front.svg",
  20128. extra: 2924 / 2717,
  20129. bottom: 0.08
  20130. }
  20131. },
  20132. sideBack: {
  20133. height: math.unit(5 + 2 / 12, "feet"),
  20134. weight: math.unit(120, "lb"),
  20135. name: "Back Side",
  20136. image: {
  20137. source: "./media/characters/roxi/side-back.svg",
  20138. extra: 2904 / 2693,
  20139. bottom: 0.06
  20140. }
  20141. },
  20142. front: {
  20143. height: math.unit(5 + 2 / 12, "feet"),
  20144. weight: math.unit(120, "lb"),
  20145. name: "Front",
  20146. image: {
  20147. source: "./media/characters/roxi/front.svg",
  20148. extra: 2028 / 1907,
  20149. bottom: 0.01
  20150. }
  20151. },
  20152. frontAlt: {
  20153. height: math.unit(5 + 2 / 12, "feet"),
  20154. weight: math.unit(120, "lb"),
  20155. name: "Front (Alt)",
  20156. image: {
  20157. source: "./media/characters/roxi/front-alt.svg",
  20158. extra: 1828 / 1798,
  20159. bottom: 0.01
  20160. }
  20161. },
  20162. sitting: {
  20163. height: math.unit(2.8, "feet"),
  20164. weight: math.unit(120, "lb"),
  20165. name: "Sitting",
  20166. image: {
  20167. source: "./media/characters/roxi/sitting.svg",
  20168. extra: 2660 / 2462,
  20169. bottom: 0.1
  20170. }
  20171. },
  20172. },
  20173. [
  20174. {
  20175. name: "Normal",
  20176. height: math.unit(5 + 2 / 12, "feet"),
  20177. default: true
  20178. },
  20179. ]
  20180. ))
  20181. characterMakers.push(() => makeCharacter(
  20182. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  20183. {
  20184. side: {
  20185. height: math.unit(55, "feet"),
  20186. weight: math.unit(153, "tons"),
  20187. name: "Side",
  20188. image: {
  20189. source: "./media/characters/shadow/side.svg",
  20190. extra: 701 / 628,
  20191. bottom: 0.02
  20192. }
  20193. },
  20194. flying: {
  20195. height: math.unit(145, "feet"),
  20196. weight: math.unit(153, "tons"),
  20197. name: "Flying",
  20198. image: {
  20199. source: "./media/characters/shadow/flying.svg"
  20200. }
  20201. },
  20202. },
  20203. [
  20204. {
  20205. name: "Normal",
  20206. height: math.unit(55, "feet"),
  20207. default: true
  20208. },
  20209. ]
  20210. ))
  20211. characterMakers.push(() => makeCharacter(
  20212. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  20213. {
  20214. front: {
  20215. height: math.unit(6, "feet"),
  20216. weight: math.unit(200, "lb"),
  20217. name: "Front",
  20218. image: {
  20219. source: "./media/characters/marcie/front.svg",
  20220. extra: 960 / 876,
  20221. bottom: 58 / 1017.87
  20222. }
  20223. },
  20224. },
  20225. [
  20226. {
  20227. name: "Macro",
  20228. height: math.unit(1, "mile"),
  20229. default: true
  20230. },
  20231. ]
  20232. ))
  20233. characterMakers.push(() => makeCharacter(
  20234. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  20235. {
  20236. front: {
  20237. height: math.unit(7, "feet"),
  20238. weight: math.unit(200, "lb"),
  20239. name: "Front",
  20240. image: {
  20241. source: "./media/characters/kachina/front.svg",
  20242. extra: 3206/2764,
  20243. bottom: 140/3346
  20244. }
  20245. },
  20246. },
  20247. [
  20248. {
  20249. name: "Normal",
  20250. height: math.unit(7, "feet"),
  20251. default: true
  20252. },
  20253. ]
  20254. ))
  20255. characterMakers.push(() => makeCharacter(
  20256. { name: "Kash", species: ["canine"], tags: ["feral"] },
  20257. {
  20258. looking: {
  20259. height: math.unit(2, "meters"),
  20260. weight: math.unit(300, "kg"),
  20261. name: "Looking",
  20262. image: {
  20263. source: "./media/characters/kash/looking.svg",
  20264. extra: 474 / 344,
  20265. bottom: 0.03
  20266. }
  20267. },
  20268. side: {
  20269. height: math.unit(2, "meters"),
  20270. weight: math.unit(300, "kg"),
  20271. name: "Side",
  20272. image: {
  20273. source: "./media/characters/kash/side.svg",
  20274. extra: 302 / 251,
  20275. bottom: 0.03
  20276. }
  20277. },
  20278. front: {
  20279. height: math.unit(2, "meters"),
  20280. weight: math.unit(300, "kg"),
  20281. name: "Front",
  20282. image: {
  20283. source: "./media/characters/kash/front.svg",
  20284. extra: 495 / 360,
  20285. bottom: 0.015
  20286. }
  20287. },
  20288. },
  20289. [
  20290. {
  20291. name: "Normal",
  20292. height: math.unit(2, "meters"),
  20293. default: true
  20294. },
  20295. {
  20296. name: "Big",
  20297. height: math.unit(3, "meters")
  20298. },
  20299. {
  20300. name: "Large",
  20301. height: math.unit(5, "meters")
  20302. },
  20303. ]
  20304. ))
  20305. characterMakers.push(() => makeCharacter(
  20306. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  20307. {
  20308. feeding: {
  20309. height: math.unit(6.7, "feet"),
  20310. weight: math.unit(350, "lb"),
  20311. name: "Feeding",
  20312. image: {
  20313. source: "./media/characters/lalim/feeding.svg",
  20314. }
  20315. },
  20316. },
  20317. [
  20318. {
  20319. name: "Normal",
  20320. height: math.unit(6.7, "feet"),
  20321. default: true
  20322. },
  20323. ]
  20324. ))
  20325. characterMakers.push(() => makeCharacter(
  20326. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  20327. {
  20328. front: {
  20329. height: math.unit(9.5, "feet"),
  20330. weight: math.unit(600, "lb"),
  20331. name: "Front",
  20332. image: {
  20333. source: "./media/characters/de'vout/front.svg",
  20334. extra: 1443 / 1328,
  20335. bottom: 0.025
  20336. }
  20337. },
  20338. back: {
  20339. height: math.unit(9.5, "feet"),
  20340. weight: math.unit(600, "lb"),
  20341. name: "Back",
  20342. image: {
  20343. source: "./media/characters/de'vout/back.svg",
  20344. extra: 1443 / 1328
  20345. }
  20346. },
  20347. frontDressed: {
  20348. height: math.unit(9.5, "feet"),
  20349. weight: math.unit(600, "lb"),
  20350. name: "Front (Dressed",
  20351. image: {
  20352. source: "./media/characters/de'vout/front-dressed.svg",
  20353. extra: 1443 / 1328,
  20354. bottom: 0.025
  20355. }
  20356. },
  20357. backDressed: {
  20358. height: math.unit(9.5, "feet"),
  20359. weight: math.unit(600, "lb"),
  20360. name: "Back (Dressed",
  20361. image: {
  20362. source: "./media/characters/de'vout/back-dressed.svg",
  20363. extra: 1443 / 1328
  20364. }
  20365. },
  20366. },
  20367. [
  20368. {
  20369. name: "Normal",
  20370. height: math.unit(9.5, "feet"),
  20371. default: true
  20372. },
  20373. ]
  20374. ))
  20375. characterMakers.push(() => makeCharacter(
  20376. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  20377. {
  20378. front: {
  20379. height: math.unit(8, "feet"),
  20380. weight: math.unit(225, "lb"),
  20381. name: "Front",
  20382. image: {
  20383. source: "./media/characters/talana/front.svg",
  20384. extra: 1410 / 1300,
  20385. bottom: 0.015
  20386. }
  20387. },
  20388. frontDressed: {
  20389. height: math.unit(8, "feet"),
  20390. weight: math.unit(225, "lb"),
  20391. name: "Front (Dressed",
  20392. image: {
  20393. source: "./media/characters/talana/front-dressed.svg",
  20394. extra: 1410 / 1300,
  20395. bottom: 0.015
  20396. }
  20397. },
  20398. },
  20399. [
  20400. {
  20401. name: "Normal",
  20402. height: math.unit(8, "feet"),
  20403. default: true
  20404. },
  20405. ]
  20406. ))
  20407. characterMakers.push(() => makeCharacter(
  20408. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  20409. {
  20410. side: {
  20411. height: math.unit(7.2, "feet"),
  20412. weight: math.unit(150, "lb"),
  20413. name: "Side",
  20414. image: {
  20415. source: "./media/characters/xeauvok/side.svg",
  20416. extra: 1975 / 1523,
  20417. bottom: 0.07
  20418. }
  20419. },
  20420. },
  20421. [
  20422. {
  20423. name: "Normal",
  20424. height: math.unit(7.2, "feet"),
  20425. default: true
  20426. },
  20427. ]
  20428. ))
  20429. characterMakers.push(() => makeCharacter(
  20430. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  20431. {
  20432. side: {
  20433. height: math.unit(4, "meters"),
  20434. weight: math.unit(2200, "kg"),
  20435. name: "Side",
  20436. image: {
  20437. source: "./media/characters/zara/side.svg",
  20438. extra: 765/744,
  20439. bottom: 156/921
  20440. }
  20441. },
  20442. },
  20443. [
  20444. {
  20445. name: "Normal",
  20446. height: math.unit(4, "meters"),
  20447. default: true
  20448. },
  20449. ]
  20450. ))
  20451. characterMakers.push(() => makeCharacter(
  20452. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  20453. {
  20454. side: {
  20455. height: math.unit(6, "feet"),
  20456. weight: math.unit(150, "lb"),
  20457. name: "Side",
  20458. image: {
  20459. source: "./media/characters/richard-dragon/side.svg",
  20460. extra: 845 / 340,
  20461. bottom: 0.017
  20462. }
  20463. },
  20464. maw: {
  20465. height: math.unit(2.97, "feet"),
  20466. name: "Maw",
  20467. image: {
  20468. source: "./media/characters/richard-dragon/maw.svg"
  20469. }
  20470. },
  20471. },
  20472. [
  20473. ]
  20474. ))
  20475. characterMakers.push(() => makeCharacter(
  20476. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  20477. {
  20478. front: {
  20479. height: math.unit(4, "feet"),
  20480. weight: math.unit(100, "lb"),
  20481. name: "Front",
  20482. image: {
  20483. source: "./media/characters/richard-smeargle/front.svg",
  20484. extra: 2952 / 2820,
  20485. bottom: 0.028
  20486. }
  20487. },
  20488. },
  20489. [
  20490. {
  20491. name: "Normal",
  20492. height: math.unit(4, "feet"),
  20493. default: true
  20494. },
  20495. {
  20496. name: "Dynamax",
  20497. height: math.unit(20, "meters")
  20498. },
  20499. ]
  20500. ))
  20501. characterMakers.push(() => makeCharacter(
  20502. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  20503. {
  20504. front: {
  20505. height: math.unit(6, "feet"),
  20506. weight: math.unit(110, "lb"),
  20507. name: "Front",
  20508. image: {
  20509. source: "./media/characters/klay/front.svg",
  20510. extra: 962 / 883,
  20511. bottom: 0.04
  20512. }
  20513. },
  20514. back: {
  20515. height: math.unit(6, "feet"),
  20516. weight: math.unit(110, "lb"),
  20517. name: "Back",
  20518. image: {
  20519. source: "./media/characters/klay/back.svg",
  20520. extra: 962 / 883
  20521. }
  20522. },
  20523. beans: {
  20524. height: math.unit(1.15, "feet"),
  20525. name: "Beans",
  20526. image: {
  20527. source: "./media/characters/klay/beans.svg"
  20528. }
  20529. },
  20530. },
  20531. [
  20532. {
  20533. name: "Micro",
  20534. height: math.unit(6, "inches")
  20535. },
  20536. {
  20537. name: "Mini",
  20538. height: math.unit(3, "feet")
  20539. },
  20540. {
  20541. name: "Normal",
  20542. height: math.unit(6, "feet"),
  20543. default: true
  20544. },
  20545. {
  20546. name: "Big",
  20547. height: math.unit(25, "feet")
  20548. },
  20549. {
  20550. name: "Macro",
  20551. height: math.unit(100, "feet")
  20552. },
  20553. {
  20554. name: "Megamacro",
  20555. height: math.unit(400, "feet")
  20556. },
  20557. ]
  20558. ))
  20559. characterMakers.push(() => makeCharacter(
  20560. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20561. {
  20562. front: {
  20563. height: math.unit(6, "feet"),
  20564. weight: math.unit(160, "lb"),
  20565. name: "Front",
  20566. image: {
  20567. source: "./media/characters/marcus/front.svg",
  20568. extra: 734 / 676,
  20569. bottom: 0.03
  20570. }
  20571. },
  20572. },
  20573. [
  20574. {
  20575. name: "Little",
  20576. height: math.unit(6, "feet")
  20577. },
  20578. {
  20579. name: "Normal",
  20580. height: math.unit(110, "feet"),
  20581. default: true
  20582. },
  20583. {
  20584. name: "Macro",
  20585. height: math.unit(250, "feet")
  20586. },
  20587. {
  20588. name: "Megamacro",
  20589. height: math.unit(1000, "feet")
  20590. },
  20591. ]
  20592. ))
  20593. characterMakers.push(() => makeCharacter(
  20594. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20595. {
  20596. front: {
  20597. height: math.unit(7, "feet"),
  20598. weight: math.unit(275, "lb"),
  20599. name: "Front",
  20600. image: {
  20601. source: "./media/characters/claude-delroute/front.svg",
  20602. extra: 902/827,
  20603. bottom: 26/928
  20604. }
  20605. },
  20606. side: {
  20607. height: math.unit(7, "feet"),
  20608. weight: math.unit(275, "lb"),
  20609. name: "Side",
  20610. image: {
  20611. source: "./media/characters/claude-delroute/side.svg",
  20612. extra: 908/853,
  20613. bottom: 16/924
  20614. }
  20615. },
  20616. back: {
  20617. height: math.unit(7, "feet"),
  20618. weight: math.unit(275, "lb"),
  20619. name: "Back",
  20620. image: {
  20621. source: "./media/characters/claude-delroute/back.svg",
  20622. extra: 911/829,
  20623. bottom: 18/929
  20624. }
  20625. },
  20626. maw: {
  20627. height: math.unit(0.6407, "meters"),
  20628. name: "Maw",
  20629. image: {
  20630. source: "./media/characters/claude-delroute/maw.svg"
  20631. }
  20632. },
  20633. },
  20634. [
  20635. {
  20636. name: "Normal",
  20637. height: math.unit(7, "feet"),
  20638. default: true
  20639. },
  20640. {
  20641. name: "Lorge",
  20642. height: math.unit(20, "feet")
  20643. },
  20644. ]
  20645. ))
  20646. characterMakers.push(() => makeCharacter(
  20647. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20648. {
  20649. front: {
  20650. height: math.unit(8 + 4 / 12, "feet"),
  20651. weight: math.unit(600, "lb"),
  20652. name: "Front",
  20653. image: {
  20654. source: "./media/characters/dragonien/front.svg",
  20655. extra: 100 / 94,
  20656. bottom: 3.3 / 103.3445
  20657. }
  20658. },
  20659. back: {
  20660. height: math.unit(8 + 4 / 12, "feet"),
  20661. weight: math.unit(600, "lb"),
  20662. name: "Back",
  20663. image: {
  20664. source: "./media/characters/dragonien/back.svg",
  20665. extra: 776 / 746,
  20666. bottom: 6.4 / 782.0616
  20667. }
  20668. },
  20669. foot: {
  20670. height: math.unit(1.54, "feet"),
  20671. name: "Foot",
  20672. image: {
  20673. source: "./media/characters/dragonien/foot.svg",
  20674. }
  20675. },
  20676. },
  20677. [
  20678. {
  20679. name: "Normal",
  20680. height: math.unit(8 + 4 / 12, "feet"),
  20681. default: true
  20682. },
  20683. {
  20684. name: "Macro",
  20685. height: math.unit(200, "feet")
  20686. },
  20687. {
  20688. name: "Megamacro",
  20689. height: math.unit(1, "mile")
  20690. },
  20691. {
  20692. name: "Gigamacro",
  20693. height: math.unit(1000, "miles")
  20694. },
  20695. ]
  20696. ))
  20697. characterMakers.push(() => makeCharacter(
  20698. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20699. {
  20700. front: {
  20701. height: math.unit(5 + 2 / 12, "feet"),
  20702. weight: math.unit(110, "lb"),
  20703. name: "Front",
  20704. image: {
  20705. source: "./media/characters/desta/front.svg",
  20706. extra: 767 / 726,
  20707. bottom: 11.7 / 779
  20708. }
  20709. },
  20710. back: {
  20711. height: math.unit(5 + 2 / 12, "feet"),
  20712. weight: math.unit(110, "lb"),
  20713. name: "Back",
  20714. image: {
  20715. source: "./media/characters/desta/back.svg",
  20716. extra: 777 / 728,
  20717. bottom: 6 / 784
  20718. }
  20719. },
  20720. frontAlt: {
  20721. height: math.unit(5 + 2 / 12, "feet"),
  20722. weight: math.unit(110, "lb"),
  20723. name: "Front",
  20724. image: {
  20725. source: "./media/characters/desta/front-alt.svg",
  20726. extra: 1482 / 1417
  20727. }
  20728. },
  20729. side: {
  20730. height: math.unit(5 + 2 / 12, "feet"),
  20731. weight: math.unit(110, "lb"),
  20732. name: "Side",
  20733. image: {
  20734. source: "./media/characters/desta/side.svg",
  20735. extra: 2579 / 2491,
  20736. bottom: 0.053
  20737. }
  20738. },
  20739. },
  20740. [
  20741. {
  20742. name: "Micro",
  20743. height: math.unit(6, "inches")
  20744. },
  20745. {
  20746. name: "Normal",
  20747. height: math.unit(5 + 2 / 12, "feet"),
  20748. default: true
  20749. },
  20750. {
  20751. name: "Macro",
  20752. height: math.unit(62, "feet")
  20753. },
  20754. {
  20755. name: "Megamacro",
  20756. height: math.unit(1800, "feet")
  20757. },
  20758. ]
  20759. ))
  20760. characterMakers.push(() => makeCharacter(
  20761. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20762. {
  20763. front: {
  20764. height: math.unit(10, "feet"),
  20765. weight: math.unit(700, "lb"),
  20766. name: "Front",
  20767. image: {
  20768. source: "./media/characters/storm-alystar/front.svg",
  20769. extra: 2112 / 1898,
  20770. bottom: 0.034
  20771. }
  20772. },
  20773. },
  20774. [
  20775. {
  20776. name: "Micro",
  20777. height: math.unit(3.5, "inches")
  20778. },
  20779. {
  20780. name: "Normal",
  20781. height: math.unit(10, "feet"),
  20782. default: true
  20783. },
  20784. {
  20785. name: "Macro",
  20786. height: math.unit(400, "feet")
  20787. },
  20788. {
  20789. name: "Deific",
  20790. height: math.unit(60, "miles")
  20791. },
  20792. ]
  20793. ))
  20794. characterMakers.push(() => makeCharacter(
  20795. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20796. {
  20797. front: {
  20798. height: math.unit(2.35, "meters"),
  20799. weight: math.unit(119, "kg"),
  20800. name: "Front",
  20801. image: {
  20802. source: "./media/characters/ilia/front.svg",
  20803. extra: 1285 / 1255,
  20804. bottom: 0.06
  20805. }
  20806. },
  20807. },
  20808. [
  20809. {
  20810. name: "Normal",
  20811. height: math.unit(2.35, "meters")
  20812. },
  20813. {
  20814. name: "Macro",
  20815. height: math.unit(140, "meters"),
  20816. default: true
  20817. },
  20818. {
  20819. name: "Megamacro",
  20820. height: math.unit(100, "miles")
  20821. },
  20822. ]
  20823. ))
  20824. characterMakers.push(() => makeCharacter(
  20825. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20826. {
  20827. front: {
  20828. height: math.unit(6 + 5 / 12, "feet"),
  20829. weight: math.unit(190, "lb"),
  20830. name: "Front",
  20831. image: {
  20832. source: "./media/characters/kingdead/front.svg",
  20833. extra: 1228 / 1177
  20834. }
  20835. },
  20836. },
  20837. [
  20838. {
  20839. name: "Micro",
  20840. height: math.unit(7, "inches")
  20841. },
  20842. {
  20843. name: "Normal",
  20844. height: math.unit(6 + 5 / 12, "feet")
  20845. },
  20846. {
  20847. name: "Macro",
  20848. height: math.unit(150, "feet"),
  20849. default: true
  20850. },
  20851. {
  20852. name: "Megamacro",
  20853. height: math.unit(200, "miles")
  20854. },
  20855. ]
  20856. ))
  20857. characterMakers.push(() => makeCharacter(
  20858. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20859. {
  20860. front: {
  20861. height: math.unit(8, "feet"),
  20862. weight: math.unit(600, "lb"),
  20863. name: "Front",
  20864. image: {
  20865. source: "./media/characters/kyrehx/front.svg",
  20866. extra: 1195 / 1095,
  20867. bottom: 0.034
  20868. }
  20869. },
  20870. },
  20871. [
  20872. {
  20873. name: "Micro",
  20874. height: math.unit(2, "inches")
  20875. },
  20876. {
  20877. name: "Normal",
  20878. height: math.unit(8, "feet"),
  20879. default: true
  20880. },
  20881. {
  20882. name: "Macro",
  20883. height: math.unit(255, "feet")
  20884. },
  20885. ]
  20886. ))
  20887. characterMakers.push(() => makeCharacter(
  20888. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20889. {
  20890. front: {
  20891. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20892. weight: math.unit(184, "lb"),
  20893. name: "Front",
  20894. image: {
  20895. source: "./media/characters/xang/front.svg",
  20896. extra: 845 / 755
  20897. }
  20898. },
  20899. },
  20900. [
  20901. {
  20902. name: "Normal",
  20903. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20904. default: true
  20905. },
  20906. {
  20907. name: "Macro",
  20908. height: math.unit(0.935 * 146, "feet")
  20909. },
  20910. {
  20911. name: "Megamacro",
  20912. height: math.unit(0.935 * 3, "miles")
  20913. },
  20914. ]
  20915. ))
  20916. characterMakers.push(() => makeCharacter(
  20917. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20918. {
  20919. frontDressed: {
  20920. height: math.unit(5 + 7 / 12, "feet"),
  20921. weight: math.unit(140, "lb"),
  20922. name: "Front (Dressed)",
  20923. image: {
  20924. source: "./media/characters/doc-weardno/front-dressed.svg",
  20925. extra: 263 / 234
  20926. }
  20927. },
  20928. backDressed: {
  20929. height: math.unit(5 + 7 / 12, "feet"),
  20930. weight: math.unit(140, "lb"),
  20931. name: "Back (Dressed)",
  20932. image: {
  20933. source: "./media/characters/doc-weardno/back-dressed.svg",
  20934. extra: 266 / 238
  20935. }
  20936. },
  20937. front: {
  20938. height: math.unit(5 + 7 / 12, "feet"),
  20939. weight: math.unit(140, "lb"),
  20940. name: "Front",
  20941. image: {
  20942. source: "./media/characters/doc-weardno/front.svg",
  20943. extra: 254 / 233
  20944. }
  20945. },
  20946. },
  20947. [
  20948. {
  20949. name: "Micro",
  20950. height: math.unit(3, "inches")
  20951. },
  20952. {
  20953. name: "Normal",
  20954. height: math.unit(5 + 7 / 12, "feet"),
  20955. default: true
  20956. },
  20957. {
  20958. name: "Macro",
  20959. height: math.unit(25, "feet")
  20960. },
  20961. {
  20962. name: "Megamacro",
  20963. height: math.unit(2, "miles")
  20964. },
  20965. ]
  20966. ))
  20967. characterMakers.push(() => makeCharacter(
  20968. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20969. {
  20970. front: {
  20971. height: math.unit(6 + 2 / 12, "feet"),
  20972. weight: math.unit(153, "lb"),
  20973. name: "Front",
  20974. image: {
  20975. source: "./media/characters/seth-whilst/front.svg",
  20976. bottom: 0.07
  20977. }
  20978. },
  20979. },
  20980. [
  20981. {
  20982. name: "Micro",
  20983. height: math.unit(5, "inches")
  20984. },
  20985. {
  20986. name: "Normal",
  20987. height: math.unit(6 + 2 / 12, "feet"),
  20988. default: true
  20989. },
  20990. ]
  20991. ))
  20992. characterMakers.push(() => makeCharacter(
  20993. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20994. {
  20995. front: {
  20996. height: math.unit(3, "inches"),
  20997. weight: math.unit(8, "grams"),
  20998. name: "Front",
  20999. image: {
  21000. source: "./media/characters/pocket-jabari/front.svg",
  21001. extra: 1024 / 974,
  21002. bottom: 0.039
  21003. }
  21004. },
  21005. },
  21006. [
  21007. {
  21008. name: "Minimicro",
  21009. height: math.unit(8, "mm")
  21010. },
  21011. {
  21012. name: "Micro",
  21013. height: math.unit(3, "inches"),
  21014. default: true
  21015. },
  21016. {
  21017. name: "Normal",
  21018. height: math.unit(3, "feet")
  21019. },
  21020. ]
  21021. ))
  21022. characterMakers.push(() => makeCharacter(
  21023. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  21024. {
  21025. frontDressed: {
  21026. height: math.unit(15, "feet"),
  21027. weight: math.unit(3280, "lb"),
  21028. name: "Front (Dressed)",
  21029. image: {
  21030. source: "./media/characters/sapphy/front-dressed.svg",
  21031. extra: 1951/1654,
  21032. bottom: 194/2145
  21033. },
  21034. form: "anthro",
  21035. default: true
  21036. },
  21037. backDressed: {
  21038. height: math.unit(15, "feet"),
  21039. weight: math.unit(3280, "lb"),
  21040. name: "Back (Dressed)",
  21041. image: {
  21042. source: "./media/characters/sapphy/back-dressed.svg",
  21043. extra: 2058/1918,
  21044. bottom: 125/2183
  21045. },
  21046. form: "anthro"
  21047. },
  21048. frontNude: {
  21049. height: math.unit(15, "feet"),
  21050. weight: math.unit(3280, "lb"),
  21051. name: "Front (Nude)",
  21052. image: {
  21053. source: "./media/characters/sapphy/front-nude.svg",
  21054. extra: 1951/1654,
  21055. bottom: 194/2145
  21056. },
  21057. form: "anthro"
  21058. },
  21059. backNude: {
  21060. height: math.unit(15, "feet"),
  21061. weight: math.unit(3280, "lb"),
  21062. name: "Back (Nude)",
  21063. image: {
  21064. source: "./media/characters/sapphy/back-nude.svg",
  21065. extra: 2058/1918,
  21066. bottom: 125/2183
  21067. },
  21068. form: "anthro"
  21069. },
  21070. full: {
  21071. height: math.unit(15, "feet"),
  21072. weight: math.unit(3280, "lb"),
  21073. name: "Full",
  21074. image: {
  21075. source: "./media/characters/sapphy/full.svg",
  21076. extra: 1396/1317,
  21077. bottom: 44/1440
  21078. },
  21079. form: "anthro"
  21080. },
  21081. dick: {
  21082. height: math.unit(3.8, "feet"),
  21083. name: "Dick",
  21084. image: {
  21085. source: "./media/characters/sapphy/dick.svg"
  21086. },
  21087. form: "anthro"
  21088. },
  21089. feral: {
  21090. height: math.unit(35, "feet"),
  21091. weight: math.unit(160, "tons"),
  21092. name: "Feral",
  21093. image: {
  21094. source: "./media/characters/sapphy/feral.svg",
  21095. extra: 1050/573,
  21096. bottom: 60/1110
  21097. },
  21098. form: "feral",
  21099. default: true
  21100. },
  21101. },
  21102. [
  21103. {
  21104. name: "Normal",
  21105. height: math.unit(15, "feet"),
  21106. form: "anthro"
  21107. },
  21108. {
  21109. name: "Casual Macro",
  21110. height: math.unit(120, "feet"),
  21111. form: "anthro"
  21112. },
  21113. {
  21114. name: "Macro",
  21115. height: math.unit(2150, "feet"),
  21116. default: true,
  21117. form: "anthro"
  21118. },
  21119. {
  21120. name: "Megamacro",
  21121. height: math.unit(8, "miles"),
  21122. form: "anthro"
  21123. },
  21124. {
  21125. name: "Galaxy Mom",
  21126. height: math.unit(6, "megalightyears"),
  21127. form: "anthro"
  21128. },
  21129. {
  21130. name: "Normal",
  21131. height: math.unit(35, "feet"),
  21132. form: "feral",
  21133. default: true
  21134. },
  21135. {
  21136. name: "Macro",
  21137. height: math.unit(300, "feet"),
  21138. form: "feral"
  21139. },
  21140. {
  21141. name: "Galaxy Mom",
  21142. height: math.unit(10, "megalightyears"),
  21143. form: "feral"
  21144. },
  21145. ],
  21146. {
  21147. "anthro": {
  21148. name: "Anthro",
  21149. default: true
  21150. },
  21151. "feral": {
  21152. name: "Feral"
  21153. }
  21154. }
  21155. ))
  21156. characterMakers.push(() => makeCharacter(
  21157. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  21158. {
  21159. hyenaFront: {
  21160. height: math.unit(6, "feet"),
  21161. weight: math.unit(190, "lb"),
  21162. name: "Front",
  21163. image: {
  21164. source: "./media/characters/kiro/hyena-front.svg",
  21165. extra: 927/839,
  21166. bottom: 91/1018
  21167. },
  21168. form: "hyena",
  21169. default: true
  21170. },
  21171. front: {
  21172. height: math.unit(6, "feet"),
  21173. weight: math.unit(170, "lb"),
  21174. name: "Front",
  21175. image: {
  21176. source: "./media/characters/kiro/front.svg",
  21177. extra: 1064 / 1012,
  21178. bottom: 0.052
  21179. },
  21180. form: "folf",
  21181. default: true
  21182. },
  21183. },
  21184. [
  21185. {
  21186. name: "Micro",
  21187. height: math.unit(6, "inches"),
  21188. form: "folf"
  21189. },
  21190. {
  21191. name: "Normal",
  21192. height: math.unit(6, "feet"),
  21193. form: "folf",
  21194. default: true
  21195. },
  21196. {
  21197. name: "Macro",
  21198. height: math.unit(72, "feet"),
  21199. form: "folf"
  21200. },
  21201. {
  21202. name: "Micro",
  21203. height: math.unit(6, "inches"),
  21204. form: "hyena"
  21205. },
  21206. {
  21207. name: "Normal",
  21208. height: math.unit(6, "feet"),
  21209. form: "hyena",
  21210. default: true
  21211. },
  21212. {
  21213. name: "Macro",
  21214. height: math.unit(72, "feet"),
  21215. form: "hyena"
  21216. },
  21217. ],
  21218. {
  21219. "hyena": {
  21220. name: "Hyena",
  21221. default: true
  21222. },
  21223. "folf": {
  21224. name: "Folf",
  21225. },
  21226. }
  21227. ))
  21228. characterMakers.push(() => makeCharacter(
  21229. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  21230. {
  21231. front: {
  21232. height: math.unit(5 + 9 / 12, "feet"),
  21233. weight: math.unit(175, "lb"),
  21234. name: "Front",
  21235. image: {
  21236. source: "./media/characters/irishfox/front.svg",
  21237. extra: 1912 / 1680,
  21238. bottom: 0.02
  21239. }
  21240. },
  21241. },
  21242. [
  21243. {
  21244. name: "Nano",
  21245. height: math.unit(1, "mm")
  21246. },
  21247. {
  21248. name: "Micro",
  21249. height: math.unit(2, "inches")
  21250. },
  21251. {
  21252. name: "Normal",
  21253. height: math.unit(5 + 9 / 12, "feet"),
  21254. default: true
  21255. },
  21256. {
  21257. name: "Macro",
  21258. height: math.unit(45, "feet")
  21259. },
  21260. ]
  21261. ))
  21262. characterMakers.push(() => makeCharacter(
  21263. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  21264. {
  21265. front: {
  21266. height: math.unit(6 + 1 / 12, "feet"),
  21267. weight: math.unit(75, "lb"),
  21268. name: "Front",
  21269. image: {
  21270. source: "./media/characters/aronai-sieyes/front.svg",
  21271. extra: 1532/1450,
  21272. bottom: 42/1574
  21273. }
  21274. },
  21275. side: {
  21276. height: math.unit(6 + 1 / 12, "feet"),
  21277. weight: math.unit(75, "lb"),
  21278. name: "Side",
  21279. image: {
  21280. source: "./media/characters/aronai-sieyes/side.svg",
  21281. extra: 1422/1365,
  21282. bottom: 148/1570
  21283. }
  21284. },
  21285. back: {
  21286. height: math.unit(6 + 1 / 12, "feet"),
  21287. weight: math.unit(75, "lb"),
  21288. name: "Back",
  21289. image: {
  21290. source: "./media/characters/aronai-sieyes/back.svg",
  21291. extra: 1526/1464,
  21292. bottom: 51/1577
  21293. }
  21294. },
  21295. dressed: {
  21296. height: math.unit(6 + 1 / 12, "feet"),
  21297. weight: math.unit(75, "lb"),
  21298. name: "Dressed",
  21299. image: {
  21300. source: "./media/characters/aronai-sieyes/dressed.svg",
  21301. extra: 1559/1483,
  21302. bottom: 39/1598
  21303. }
  21304. },
  21305. slit: {
  21306. height: math.unit(1.3, "feet"),
  21307. name: "Slit",
  21308. image: {
  21309. source: "./media/characters/aronai-sieyes/slit.svg"
  21310. }
  21311. },
  21312. slitSpread: {
  21313. height: math.unit(0.9, "feet"),
  21314. name: "Slit (Spread)",
  21315. image: {
  21316. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  21317. }
  21318. },
  21319. rump: {
  21320. height: math.unit(1.3, "feet"),
  21321. name: "Rump",
  21322. image: {
  21323. source: "./media/characters/aronai-sieyes/rump.svg"
  21324. }
  21325. },
  21326. maw: {
  21327. height: math.unit(1.25, "feet"),
  21328. name: "Maw",
  21329. image: {
  21330. source: "./media/characters/aronai-sieyes/maw.svg"
  21331. }
  21332. },
  21333. feral: {
  21334. height: math.unit(18, "feet"),
  21335. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  21336. name: "Feral",
  21337. image: {
  21338. source: "./media/characters/aronai-sieyes/feral.svg",
  21339. extra: 1530 / 1240,
  21340. bottom: 0.035
  21341. }
  21342. },
  21343. },
  21344. [
  21345. {
  21346. name: "Micro",
  21347. height: math.unit(2, "inches")
  21348. },
  21349. {
  21350. name: "Normal",
  21351. height: math.unit(6 + 1 / 12, "feet"),
  21352. default: true
  21353. }
  21354. ]
  21355. ))
  21356. characterMakers.push(() => makeCharacter(
  21357. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  21358. {
  21359. front: {
  21360. height: math.unit(12, "feet"),
  21361. weight: math.unit(410, "kg"),
  21362. name: "Front",
  21363. image: {
  21364. source: "./media/characters/xuna/front.svg",
  21365. extra: 2184 / 1980
  21366. }
  21367. },
  21368. side: {
  21369. height: math.unit(12, "feet"),
  21370. weight: math.unit(410, "kg"),
  21371. name: "Side",
  21372. image: {
  21373. source: "./media/characters/xuna/side.svg",
  21374. extra: 2184 / 1980
  21375. }
  21376. },
  21377. back: {
  21378. height: math.unit(12, "feet"),
  21379. weight: math.unit(410, "kg"),
  21380. name: "Back",
  21381. image: {
  21382. source: "./media/characters/xuna/back.svg",
  21383. extra: 2184 / 1980
  21384. }
  21385. },
  21386. },
  21387. [
  21388. {
  21389. name: "Nano glow",
  21390. height: math.unit(10, "nm")
  21391. },
  21392. {
  21393. name: "Micro floof",
  21394. height: math.unit(0.3, "m")
  21395. },
  21396. {
  21397. name: "Huggable softy boi",
  21398. height: math.unit(3.6576, "m"),
  21399. default: true
  21400. },
  21401. {
  21402. name: "Admirable floof",
  21403. height: math.unit(80, "meters")
  21404. },
  21405. {
  21406. name: "Gentle macro",
  21407. height: math.unit(300, "meters")
  21408. },
  21409. {
  21410. name: "Very careful floof",
  21411. height: math.unit(3200, "meters")
  21412. },
  21413. {
  21414. name: "The mega floof",
  21415. height: math.unit(36000, "meters")
  21416. },
  21417. {
  21418. name: "Giga-fur-Wicker",
  21419. height: math.unit(4800000, "meters")
  21420. },
  21421. {
  21422. name: "Licky world",
  21423. height: math.unit(20000000, "meters")
  21424. },
  21425. {
  21426. name: "Floofy cyan sun",
  21427. height: math.unit(1500000000, "meters")
  21428. },
  21429. {
  21430. name: "Milky Wicker",
  21431. height: math.unit(1000000000000000000000, "meters")
  21432. },
  21433. {
  21434. name: "The observing Wicker",
  21435. height: math.unit(999999999999999999999999999, "meters")
  21436. },
  21437. ]
  21438. ))
  21439. characterMakers.push(() => makeCharacter(
  21440. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21441. {
  21442. front: {
  21443. height: math.unit(5 + 9 / 12, "feet"),
  21444. weight: math.unit(150, "lb"),
  21445. name: "Front",
  21446. image: {
  21447. source: "./media/characters/arokha-sieyes/front.svg",
  21448. extra: 1425 / 1284,
  21449. bottom: 0.05
  21450. }
  21451. },
  21452. },
  21453. [
  21454. {
  21455. name: "Normal",
  21456. height: math.unit(5 + 9 / 12, "feet")
  21457. },
  21458. {
  21459. name: "Macro",
  21460. height: math.unit(30, "meters"),
  21461. default: true
  21462. },
  21463. ]
  21464. ))
  21465. characterMakers.push(() => makeCharacter(
  21466. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21467. {
  21468. front: {
  21469. height: math.unit(6, "feet"),
  21470. weight: math.unit(180, "lb"),
  21471. name: "Front",
  21472. image: {
  21473. source: "./media/characters/arokh-sieyes/front.svg",
  21474. extra: 1830 / 1769,
  21475. bottom: 0.01
  21476. }
  21477. },
  21478. },
  21479. [
  21480. {
  21481. name: "Normal",
  21482. height: math.unit(6, "feet")
  21483. },
  21484. {
  21485. name: "Macro",
  21486. height: math.unit(30, "meters"),
  21487. default: true
  21488. },
  21489. ]
  21490. ))
  21491. characterMakers.push(() => makeCharacter(
  21492. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  21493. {
  21494. side: {
  21495. height: math.unit(13 + 1 / 12, "feet"),
  21496. weight: math.unit(8.5, "tonnes"),
  21497. preyCapacity: math.unit(36, "people"),
  21498. name: "Side",
  21499. image: {
  21500. source: "./media/characters/goldeneye/side.svg",
  21501. extra: 1139/741,
  21502. bottom: 98/1237
  21503. }
  21504. },
  21505. front: {
  21506. height: math.unit(5.1, "feet"),
  21507. weight: math.unit(8.5, "tonnes"),
  21508. preyCapacity: math.unit(36, "people"),
  21509. name: "Front",
  21510. image: {
  21511. source: "./media/characters/goldeneye/front.svg",
  21512. extra: 635/365,
  21513. bottom: 598/1233
  21514. }
  21515. },
  21516. maw: {
  21517. height: math.unit(6.6, "feet"),
  21518. name: "Maw",
  21519. image: {
  21520. source: "./media/characters/goldeneye/maw.svg"
  21521. }
  21522. },
  21523. headFront: {
  21524. height: math.unit(8, "feet"),
  21525. name: "Head (Front)",
  21526. image: {
  21527. source: "./media/characters/goldeneye/head-front.svg"
  21528. }
  21529. },
  21530. headSide: {
  21531. height: math.unit(6, "feet"),
  21532. name: "Head (Side)",
  21533. image: {
  21534. source: "./media/characters/goldeneye/head-side.svg"
  21535. }
  21536. },
  21537. headBack: {
  21538. height: math.unit(8, "feet"),
  21539. name: "Head (Back)",
  21540. image: {
  21541. source: "./media/characters/goldeneye/head-back.svg"
  21542. }
  21543. },
  21544. paw: {
  21545. height: math.unit(3.4, "feet"),
  21546. name: "Paw",
  21547. image: {
  21548. source: "./media/characters/goldeneye/paw.svg"
  21549. }
  21550. },
  21551. toering: {
  21552. height: math.unit(0.45, "feet"),
  21553. name: "Toering",
  21554. image: {
  21555. source: "./media/characters/goldeneye/toering.svg"
  21556. }
  21557. },
  21558. eyes: {
  21559. height: math.unit(0.5, "feet"),
  21560. name: "Eyes",
  21561. image: {
  21562. source: "./media/characters/goldeneye/eyes.svg"
  21563. }
  21564. },
  21565. },
  21566. [
  21567. {
  21568. name: "Normal",
  21569. height: math.unit(13 + 1 / 12, "feet"),
  21570. default: true
  21571. },
  21572. ]
  21573. ))
  21574. characterMakers.push(() => makeCharacter(
  21575. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21576. {
  21577. front: {
  21578. height: math.unit(6 + 1 / 12, "feet"),
  21579. weight: math.unit(210, "lb"),
  21580. name: "Front",
  21581. image: {
  21582. source: "./media/characters/leonardo-lycheborne/front.svg",
  21583. extra: 776/723,
  21584. bottom: 34/810
  21585. }
  21586. },
  21587. side: {
  21588. height: math.unit(6 + 1 / 12, "feet"),
  21589. weight: math.unit(210, "lb"),
  21590. name: "Side",
  21591. image: {
  21592. source: "./media/characters/leonardo-lycheborne/side.svg",
  21593. extra: 780/728,
  21594. bottom: 12/792
  21595. }
  21596. },
  21597. back: {
  21598. height: math.unit(6 + 1 / 12, "feet"),
  21599. weight: math.unit(210, "lb"),
  21600. name: "Back",
  21601. image: {
  21602. source: "./media/characters/leonardo-lycheborne/back.svg",
  21603. extra: 775/721,
  21604. bottom: 17/792
  21605. }
  21606. },
  21607. hand: {
  21608. height: math.unit(1.08, "feet"),
  21609. name: "Hand",
  21610. image: {
  21611. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21612. }
  21613. },
  21614. foot: {
  21615. height: math.unit(1.32, "feet"),
  21616. name: "Foot",
  21617. image: {
  21618. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21619. }
  21620. },
  21621. maw: {
  21622. height: math.unit(1, "feet"),
  21623. name: "Maw",
  21624. image: {
  21625. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21626. }
  21627. },
  21628. were: {
  21629. height: math.unit(20, "feet"),
  21630. weight: math.unit(7800, "lb"),
  21631. name: "Were",
  21632. image: {
  21633. source: "./media/characters/leonardo-lycheborne/were.svg",
  21634. extra: 1224/1165,
  21635. bottom: 72/1296
  21636. }
  21637. },
  21638. feral: {
  21639. height: math.unit(7.5, "feet"),
  21640. weight: math.unit(600, "lb"),
  21641. name: "Feral",
  21642. image: {
  21643. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21644. extra: 797/702,
  21645. bottom: 139/936
  21646. }
  21647. },
  21648. taur: {
  21649. height: math.unit(11, "feet"),
  21650. weight: math.unit(3300, "lb"),
  21651. name: "Taur",
  21652. image: {
  21653. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21654. extra: 1271/1197,
  21655. bottom: 47/1318
  21656. }
  21657. },
  21658. barghest: {
  21659. height: math.unit(11, "feet"),
  21660. weight: math.unit(1300, "lb"),
  21661. name: "Barghest",
  21662. image: {
  21663. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21664. extra: 1291/1204,
  21665. bottom: 37/1328
  21666. }
  21667. },
  21668. dick: {
  21669. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21670. name: "Dick",
  21671. image: {
  21672. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21673. }
  21674. },
  21675. dickWere: {
  21676. height: math.unit((20) / 3.8, "feet"),
  21677. name: "Dick (Were)",
  21678. image: {
  21679. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21680. }
  21681. },
  21682. },
  21683. [
  21684. {
  21685. name: "Normal",
  21686. height: math.unit(6 + 1 / 12, "feet"),
  21687. default: true
  21688. },
  21689. ]
  21690. ))
  21691. characterMakers.push(() => makeCharacter(
  21692. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21693. {
  21694. front: {
  21695. height: math.unit(10, "feet"),
  21696. weight: math.unit(350, "lb"),
  21697. name: "Front",
  21698. image: {
  21699. source: "./media/characters/jet/front.svg",
  21700. extra: 2050 / 1980,
  21701. bottom: 0.013
  21702. }
  21703. },
  21704. back: {
  21705. height: math.unit(10, "feet"),
  21706. weight: math.unit(350, "lb"),
  21707. name: "Back",
  21708. image: {
  21709. source: "./media/characters/jet/back.svg",
  21710. extra: 2050 / 1980,
  21711. bottom: 0.013
  21712. }
  21713. },
  21714. },
  21715. [
  21716. {
  21717. name: "Micro",
  21718. height: math.unit(6, "inches")
  21719. },
  21720. {
  21721. name: "Normal",
  21722. height: math.unit(10, "feet"),
  21723. default: true
  21724. },
  21725. {
  21726. name: "Macro",
  21727. height: math.unit(100, "feet")
  21728. },
  21729. ]
  21730. ))
  21731. characterMakers.push(() => makeCharacter(
  21732. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21733. {
  21734. front: {
  21735. height: math.unit(15, "feet"),
  21736. weight: math.unit(2800, "lb"),
  21737. name: "Front",
  21738. image: {
  21739. source: "./media/characters/tanarath/front.svg",
  21740. extra: 2392 / 2220,
  21741. bottom: 0.03
  21742. }
  21743. },
  21744. back: {
  21745. height: math.unit(15, "feet"),
  21746. weight: math.unit(2800, "lb"),
  21747. name: "Back",
  21748. image: {
  21749. source: "./media/characters/tanarath/back.svg",
  21750. extra: 2392 / 2220,
  21751. bottom: 0.03
  21752. }
  21753. },
  21754. },
  21755. [
  21756. {
  21757. name: "Normal",
  21758. height: math.unit(15, "feet"),
  21759. default: true
  21760. },
  21761. ]
  21762. ))
  21763. characterMakers.push(() => makeCharacter(
  21764. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21765. {
  21766. front: {
  21767. height: math.unit(7 + 1 / 12, "feet"),
  21768. weight: math.unit(175, "lb"),
  21769. name: "Front",
  21770. image: {
  21771. source: "./media/characters/patty-cattybatty/front.svg",
  21772. extra: 908 / 874,
  21773. bottom: 0.025
  21774. }
  21775. },
  21776. },
  21777. [
  21778. {
  21779. name: "Micro",
  21780. height: math.unit(1, "inch")
  21781. },
  21782. {
  21783. name: "Normal",
  21784. height: math.unit(7 + 1 / 12, "feet")
  21785. },
  21786. {
  21787. name: "Mini Macro",
  21788. height: math.unit(155, "feet")
  21789. },
  21790. {
  21791. name: "Macro",
  21792. height: math.unit(1077, "feet")
  21793. },
  21794. {
  21795. name: "Mega Macro",
  21796. height: math.unit(47650, "feet"),
  21797. default: true
  21798. },
  21799. {
  21800. name: "Giga Macro",
  21801. height: math.unit(440, "miles")
  21802. },
  21803. {
  21804. name: "Tera Macro",
  21805. height: math.unit(8700, "miles")
  21806. },
  21807. {
  21808. name: "Planetary Macro",
  21809. height: math.unit(32700, "miles")
  21810. },
  21811. {
  21812. name: "Solar Macro",
  21813. height: math.unit(550000, "miles")
  21814. },
  21815. {
  21816. name: "Celestial Macro",
  21817. height: math.unit(2.5, "AU")
  21818. },
  21819. ]
  21820. ))
  21821. characterMakers.push(() => makeCharacter(
  21822. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21823. {
  21824. front: {
  21825. height: math.unit(4 + 5 / 12, "feet"),
  21826. weight: math.unit(90, "lb"),
  21827. name: "Front",
  21828. image: {
  21829. source: "./media/characters/cappu/front.svg",
  21830. extra: 1247 / 1152,
  21831. bottom: 0.012
  21832. }
  21833. },
  21834. },
  21835. [
  21836. {
  21837. name: "Normal",
  21838. height: math.unit(4 + 5 / 12, "feet"),
  21839. default: true
  21840. },
  21841. ]
  21842. ))
  21843. characterMakers.push(() => makeCharacter(
  21844. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21845. {
  21846. frontDressed: {
  21847. height: math.unit(70, "cm"),
  21848. weight: math.unit(6, "kg"),
  21849. name: "Front (Dressed)",
  21850. image: {
  21851. source: "./media/characters/sebi/front-dressed.svg",
  21852. extra: 713.5 / 686.5,
  21853. bottom: 0.003
  21854. }
  21855. },
  21856. front: {
  21857. height: math.unit(70, "cm"),
  21858. weight: math.unit(5, "kg"),
  21859. name: "Front",
  21860. image: {
  21861. source: "./media/characters/sebi/front.svg",
  21862. extra: 713.5 / 686.5,
  21863. bottom: 0.003
  21864. }
  21865. }
  21866. },
  21867. [
  21868. {
  21869. name: "Normal",
  21870. height: math.unit(70, "cm"),
  21871. default: true
  21872. },
  21873. {
  21874. name: "Macro",
  21875. height: math.unit(8, "meters")
  21876. },
  21877. ]
  21878. ))
  21879. characterMakers.push(() => makeCharacter(
  21880. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21881. {
  21882. front: {
  21883. height: math.unit(6, "feet"),
  21884. weight: math.unit(150, "lb"),
  21885. name: "Front",
  21886. image: {
  21887. source: "./media/characters/typhek/front.svg",
  21888. extra: 1948 / 1929,
  21889. bottom: 0.025
  21890. }
  21891. },
  21892. side: {
  21893. height: math.unit(6, "feet"),
  21894. weight: math.unit(150, "lb"),
  21895. name: "Side",
  21896. image: {
  21897. source: "./media/characters/typhek/side.svg",
  21898. extra: 2034 / 2010,
  21899. bottom: 0.003
  21900. }
  21901. },
  21902. back: {
  21903. height: math.unit(6, "feet"),
  21904. weight: math.unit(150, "lb"),
  21905. name: "Back",
  21906. image: {
  21907. source: "./media/characters/typhek/back.svg",
  21908. extra: 2005 / 1978,
  21909. bottom: 0.004
  21910. }
  21911. },
  21912. palm: {
  21913. height: math.unit(1.2, "feet"),
  21914. name: "Palm",
  21915. image: {
  21916. source: "./media/characters/typhek/palm.svg"
  21917. }
  21918. },
  21919. fist: {
  21920. height: math.unit(1.1, "feet"),
  21921. name: "Fist",
  21922. image: {
  21923. source: "./media/characters/typhek/fist.svg"
  21924. }
  21925. },
  21926. foot: {
  21927. height: math.unit(1.57, "feet"),
  21928. name: "Foot",
  21929. image: {
  21930. source: "./media/characters/typhek/foot.svg"
  21931. }
  21932. },
  21933. sole: {
  21934. height: math.unit(2.05, "feet"),
  21935. name: "Sole",
  21936. image: {
  21937. source: "./media/characters/typhek/sole.svg"
  21938. }
  21939. },
  21940. },
  21941. [
  21942. {
  21943. name: "Macro",
  21944. height: math.unit(40, "stories"),
  21945. default: true
  21946. },
  21947. {
  21948. name: "Megamacro",
  21949. height: math.unit(1, "mile")
  21950. },
  21951. {
  21952. name: "Gigamacro",
  21953. height: math.unit(4000, "solarradii")
  21954. },
  21955. {
  21956. name: "Universal",
  21957. height: math.unit(1.1, "universes")
  21958. }
  21959. ]
  21960. ))
  21961. characterMakers.push(() => makeCharacter(
  21962. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21963. {
  21964. side: {
  21965. height: math.unit(5 + 7 / 12, "feet"),
  21966. weight: math.unit(150, "lb"),
  21967. name: "Side",
  21968. image: {
  21969. source: "./media/characters/kassy/side.svg",
  21970. extra: 1280 / 1225,
  21971. bottom: 0.002
  21972. }
  21973. },
  21974. front: {
  21975. height: math.unit(5 + 7 / 12, "feet"),
  21976. weight: math.unit(150, "lb"),
  21977. name: "Front",
  21978. image: {
  21979. source: "./media/characters/kassy/front.svg",
  21980. extra: 1280 / 1225,
  21981. bottom: 0.025
  21982. }
  21983. },
  21984. back: {
  21985. height: math.unit(5 + 7 / 12, "feet"),
  21986. weight: math.unit(150, "lb"),
  21987. name: "Back",
  21988. image: {
  21989. source: "./media/characters/kassy/back.svg",
  21990. extra: 1280 / 1225,
  21991. bottom: 0.002
  21992. }
  21993. },
  21994. foot: {
  21995. height: math.unit(1.266, "feet"),
  21996. name: "Foot",
  21997. image: {
  21998. source: "./media/characters/kassy/foot.svg"
  21999. }
  22000. },
  22001. },
  22002. [
  22003. {
  22004. name: "Normal",
  22005. height: math.unit(5 + 7 / 12, "feet")
  22006. },
  22007. {
  22008. name: "Macro",
  22009. height: math.unit(137, "feet"),
  22010. default: true
  22011. },
  22012. {
  22013. name: "Megamacro",
  22014. height: math.unit(1, "mile")
  22015. },
  22016. ]
  22017. ))
  22018. characterMakers.push(() => makeCharacter(
  22019. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  22020. {
  22021. front: {
  22022. height: math.unit(6 + 1 / 12, "feet"),
  22023. weight: math.unit(200, "lb"),
  22024. name: "Front",
  22025. image: {
  22026. source: "./media/characters/neil/front.svg",
  22027. extra: 1326 / 1250,
  22028. bottom: 0.023
  22029. }
  22030. },
  22031. },
  22032. [
  22033. {
  22034. name: "Normal",
  22035. height: math.unit(6 + 1 / 12, "feet"),
  22036. default: true
  22037. },
  22038. {
  22039. name: "Macro",
  22040. height: math.unit(200, "feet")
  22041. },
  22042. ]
  22043. ))
  22044. characterMakers.push(() => makeCharacter(
  22045. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  22046. {
  22047. front: {
  22048. height: math.unit(5 + 9 / 12, "feet"),
  22049. weight: math.unit(190, "lb"),
  22050. name: "Front",
  22051. image: {
  22052. source: "./media/characters/atticus/front.svg",
  22053. extra: 2934 / 2785,
  22054. bottom: 0.025
  22055. }
  22056. },
  22057. },
  22058. [
  22059. {
  22060. name: "Normal",
  22061. height: math.unit(5 + 9 / 12, "feet"),
  22062. default: true
  22063. },
  22064. {
  22065. name: "Macro",
  22066. height: math.unit(180, "feet")
  22067. },
  22068. ]
  22069. ))
  22070. characterMakers.push(() => makeCharacter(
  22071. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  22072. {
  22073. side: {
  22074. height: math.unit(9, "feet"),
  22075. weight: math.unit(650, "lb"),
  22076. name: "Side",
  22077. image: {
  22078. source: "./media/characters/milo/side.svg",
  22079. extra: 2644 / 2310,
  22080. bottom: 0.032
  22081. }
  22082. },
  22083. },
  22084. [
  22085. {
  22086. name: "Normal",
  22087. height: math.unit(9, "feet"),
  22088. default: true
  22089. },
  22090. {
  22091. name: "Macro",
  22092. height: math.unit(300, "feet")
  22093. },
  22094. ]
  22095. ))
  22096. characterMakers.push(() => makeCharacter(
  22097. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  22098. {
  22099. side: {
  22100. height: math.unit(8, "meters"),
  22101. weight: math.unit(90000, "kg"),
  22102. name: "Side",
  22103. image: {
  22104. source: "./media/characters/ijzer/side.svg",
  22105. extra: 2756 / 1600,
  22106. bottom: 0.01
  22107. }
  22108. },
  22109. },
  22110. [
  22111. {
  22112. name: "Small",
  22113. height: math.unit(3, "meters")
  22114. },
  22115. {
  22116. name: "Normal",
  22117. height: math.unit(8, "meters"),
  22118. default: true
  22119. },
  22120. {
  22121. name: "Normal+",
  22122. height: math.unit(10, "meters")
  22123. },
  22124. {
  22125. name: "Bigger",
  22126. height: math.unit(24, "meters")
  22127. },
  22128. {
  22129. name: "Huge",
  22130. height: math.unit(80, "meters")
  22131. },
  22132. ]
  22133. ))
  22134. characterMakers.push(() => makeCharacter(
  22135. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  22136. {
  22137. front: {
  22138. height: math.unit(6 + 2 / 12, "feet"),
  22139. weight: math.unit(153, "lb"),
  22140. name: "Front",
  22141. image: {
  22142. source: "./media/characters/luca-cervicum/front.svg",
  22143. extra: 370 / 327,
  22144. bottom: 0.015
  22145. }
  22146. },
  22147. back: {
  22148. height: math.unit(6 + 2 / 12, "feet"),
  22149. weight: math.unit(153, "lb"),
  22150. name: "Back",
  22151. image: {
  22152. source: "./media/characters/luca-cervicum/back.svg",
  22153. extra: 367 / 333,
  22154. bottom: 0.005
  22155. }
  22156. },
  22157. frontGear: {
  22158. height: math.unit(6 + 2 / 12, "feet"),
  22159. weight: math.unit(173, "lb"),
  22160. name: "Front (Gear)",
  22161. image: {
  22162. source: "./media/characters/luca-cervicum/front-gear.svg",
  22163. extra: 377 / 333,
  22164. bottom: 0.006
  22165. }
  22166. },
  22167. },
  22168. [
  22169. {
  22170. name: "Normal",
  22171. height: math.unit(6 + 2 / 12, "feet"),
  22172. default: true
  22173. },
  22174. ]
  22175. ))
  22176. characterMakers.push(() => makeCharacter(
  22177. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  22178. {
  22179. front: {
  22180. height: math.unit(6 + 1 / 12, "feet"),
  22181. weight: math.unit(304, "lb"),
  22182. name: "Front",
  22183. image: {
  22184. source: "./media/characters/oliver/front.svg",
  22185. extra: 157 / 143,
  22186. bottom: 0.08
  22187. }
  22188. },
  22189. },
  22190. [
  22191. {
  22192. name: "Normal",
  22193. height: math.unit(6 + 1 / 12, "feet"),
  22194. default: true
  22195. },
  22196. ]
  22197. ))
  22198. characterMakers.push(() => makeCharacter(
  22199. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  22200. {
  22201. front: {
  22202. height: math.unit(5 + 7 / 12, "feet"),
  22203. weight: math.unit(140, "lb"),
  22204. name: "Front",
  22205. image: {
  22206. source: "./media/characters/shane/front.svg",
  22207. extra: 304 / 289,
  22208. bottom: 0.005
  22209. }
  22210. },
  22211. },
  22212. [
  22213. {
  22214. name: "Normal",
  22215. height: math.unit(5 + 7 / 12, "feet"),
  22216. default: true
  22217. },
  22218. ]
  22219. ))
  22220. characterMakers.push(() => makeCharacter(
  22221. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  22222. {
  22223. front: {
  22224. height: math.unit(5 + 9 / 12, "feet"),
  22225. weight: math.unit(178, "lb"),
  22226. name: "Front",
  22227. image: {
  22228. source: "./media/characters/shin/front.svg",
  22229. extra: 159 / 151,
  22230. bottom: 0.015
  22231. }
  22232. },
  22233. },
  22234. [
  22235. {
  22236. name: "Normal",
  22237. height: math.unit(5 + 9 / 12, "feet"),
  22238. default: true
  22239. },
  22240. ]
  22241. ))
  22242. characterMakers.push(() => makeCharacter(
  22243. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  22244. {
  22245. front: {
  22246. height: math.unit(5 + 10 / 12, "feet"),
  22247. weight: math.unit(168, "lb"),
  22248. name: "Front",
  22249. image: {
  22250. source: "./media/characters/xerxes/front.svg",
  22251. extra: 282 / 260,
  22252. bottom: 0.045
  22253. }
  22254. },
  22255. },
  22256. [
  22257. {
  22258. name: "Normal",
  22259. height: math.unit(5 + 10 / 12, "feet"),
  22260. default: true
  22261. },
  22262. ]
  22263. ))
  22264. characterMakers.push(() => makeCharacter(
  22265. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  22266. {
  22267. front: {
  22268. height: math.unit(6 + 7 / 12, "feet"),
  22269. weight: math.unit(208, "lb"),
  22270. name: "Front",
  22271. image: {
  22272. source: "./media/characters/chaska/front.svg",
  22273. extra: 332 / 319,
  22274. bottom: 0.015
  22275. }
  22276. },
  22277. },
  22278. [
  22279. {
  22280. name: "Normal",
  22281. height: math.unit(6 + 7 / 12, "feet"),
  22282. default: true
  22283. },
  22284. ]
  22285. ))
  22286. characterMakers.push(() => makeCharacter(
  22287. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  22288. {
  22289. front: {
  22290. height: math.unit(5 + 8 / 12, "feet"),
  22291. weight: math.unit(208, "lb"),
  22292. name: "Front",
  22293. image: {
  22294. source: "./media/characters/enuk/front.svg",
  22295. extra: 437 / 406,
  22296. bottom: 0.02
  22297. }
  22298. },
  22299. },
  22300. [
  22301. {
  22302. name: "Normal",
  22303. height: math.unit(5 + 8 / 12, "feet"),
  22304. default: true
  22305. },
  22306. ]
  22307. ))
  22308. characterMakers.push(() => makeCharacter(
  22309. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  22310. {
  22311. front: {
  22312. height: math.unit(5 + 10 / 12, "feet"),
  22313. weight: math.unit(252, "lb"),
  22314. name: "Front",
  22315. image: {
  22316. source: "./media/characters/bruun/front.svg",
  22317. extra: 197 / 187,
  22318. bottom: 0.012
  22319. }
  22320. },
  22321. },
  22322. [
  22323. {
  22324. name: "Normal",
  22325. height: math.unit(5 + 10 / 12, "feet"),
  22326. default: true
  22327. },
  22328. ]
  22329. ))
  22330. characterMakers.push(() => makeCharacter(
  22331. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  22332. {
  22333. front: {
  22334. height: math.unit(6 + 10 / 12, "feet"),
  22335. weight: math.unit(255, "lb"),
  22336. name: "Front",
  22337. image: {
  22338. source: "./media/characters/alexeev/front.svg",
  22339. extra: 213 / 200,
  22340. bottom: 0.05
  22341. }
  22342. },
  22343. },
  22344. [
  22345. {
  22346. name: "Normal",
  22347. height: math.unit(6 + 10 / 12, "feet"),
  22348. default: true
  22349. },
  22350. ]
  22351. ))
  22352. characterMakers.push(() => makeCharacter(
  22353. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  22354. {
  22355. front: {
  22356. height: math.unit(2 + 8 / 12, "feet"),
  22357. weight: math.unit(22, "lb"),
  22358. name: "Front",
  22359. image: {
  22360. source: "./media/characters/evelyn/front.svg",
  22361. extra: 208 / 180
  22362. }
  22363. },
  22364. },
  22365. [
  22366. {
  22367. name: "Normal",
  22368. height: math.unit(2 + 8 / 12, "feet"),
  22369. default: true
  22370. },
  22371. ]
  22372. ))
  22373. characterMakers.push(() => makeCharacter(
  22374. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  22375. {
  22376. front: {
  22377. height: math.unit(5 + 9 / 12, "feet"),
  22378. weight: math.unit(139, "lb"),
  22379. name: "Front",
  22380. image: {
  22381. source: "./media/characters/inca/front.svg",
  22382. extra: 294 / 291,
  22383. bottom: 0.03
  22384. }
  22385. },
  22386. },
  22387. [
  22388. {
  22389. name: "Normal",
  22390. height: math.unit(5 + 9 / 12, "feet"),
  22391. default: true
  22392. },
  22393. ]
  22394. ))
  22395. characterMakers.push(() => makeCharacter(
  22396. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  22397. {
  22398. front: {
  22399. height: math.unit(6 + 3 / 12, "feet"),
  22400. weight: math.unit(185, "lb"),
  22401. name: "Front",
  22402. image: {
  22403. source: "./media/characters/mera/front.svg",
  22404. extra: 291 / 277,
  22405. bottom: 0.03
  22406. }
  22407. },
  22408. },
  22409. [
  22410. {
  22411. name: "Normal",
  22412. height: math.unit(6 + 3 / 12, "feet"),
  22413. default: true
  22414. },
  22415. ]
  22416. ))
  22417. characterMakers.push(() => makeCharacter(
  22418. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  22419. {
  22420. front: {
  22421. height: math.unit(6 + 7 / 12, "feet"),
  22422. weight: math.unit(160, "lb"),
  22423. name: "Front",
  22424. image: {
  22425. source: "./media/characters/ceres/front.svg",
  22426. extra: 1023 / 950,
  22427. bottom: 0.027
  22428. }
  22429. },
  22430. back: {
  22431. height: math.unit(6 + 7 / 12, "feet"),
  22432. weight: math.unit(160, "lb"),
  22433. name: "Back",
  22434. image: {
  22435. source: "./media/characters/ceres/back.svg",
  22436. extra: 1023 / 950
  22437. }
  22438. },
  22439. },
  22440. [
  22441. {
  22442. name: "Normal",
  22443. height: math.unit(6 + 7 / 12, "feet"),
  22444. default: true
  22445. },
  22446. ]
  22447. ))
  22448. characterMakers.push(() => makeCharacter(
  22449. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  22450. {
  22451. front: {
  22452. height: math.unit(5 + 10 / 12, "feet"),
  22453. weight: math.unit(150, "lb"),
  22454. name: "Front",
  22455. image: {
  22456. source: "./media/characters/kris/front.svg",
  22457. extra: 885 / 803,
  22458. bottom: 0.03
  22459. }
  22460. },
  22461. },
  22462. [
  22463. {
  22464. name: "Normal",
  22465. height: math.unit(5 + 10 / 12, "feet"),
  22466. default: true
  22467. },
  22468. ]
  22469. ))
  22470. characterMakers.push(() => makeCharacter(
  22471. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  22472. {
  22473. dragon_front: {
  22474. height: math.unit(5, "feet"),
  22475. name: "Front",
  22476. image: {
  22477. source: "./media/characters/taluthus/dragon-front.svg",
  22478. extra: 1203/1098,
  22479. bottom: 46/1249
  22480. },
  22481. form: "dragon",
  22482. default: true
  22483. },
  22484. dragon_maw: {
  22485. height: math.unit(2.35, "feet"),
  22486. name: "Maw",
  22487. image: {
  22488. source: "./media/characters/taluthus/dragon-maw.svg"
  22489. },
  22490. form: "dragon",
  22491. },
  22492. kitsune_front: {
  22493. height: math.unit(7, "feet"),
  22494. name: "Front",
  22495. image: {
  22496. source: "./media/characters/taluthus/kitsune-front.svg",
  22497. extra: 900/841,
  22498. bottom: 65/965
  22499. },
  22500. form: "kitsune",
  22501. default: true
  22502. },
  22503. },
  22504. [
  22505. {
  22506. name: "Normal",
  22507. height: math.unit(5, "feet"),
  22508. form: "dragon",
  22509. default: true,
  22510. },
  22511. {
  22512. name: "Normal",
  22513. height: math.unit(7, "feet"),
  22514. form: "kitsune",
  22515. default: true
  22516. },
  22517. {
  22518. name: "Macro",
  22519. height: math.unit(300, "feet"),
  22520. allForms: true
  22521. },
  22522. ],
  22523. {
  22524. "dragon": {
  22525. name: "Dragon",
  22526. default: true
  22527. },
  22528. "kitsune": {
  22529. name: "Kitsune",
  22530. },
  22531. }
  22532. ))
  22533. characterMakers.push(() => makeCharacter(
  22534. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22535. {
  22536. front: {
  22537. height: math.unit(5 + 9 / 12, "feet"),
  22538. weight: math.unit(145, "lb"),
  22539. name: "Front",
  22540. image: {
  22541. source: "./media/characters/dawn/front.svg",
  22542. extra: 2094 / 2016,
  22543. bottom: 0.025
  22544. }
  22545. },
  22546. back: {
  22547. height: math.unit(5 + 9 / 12, "feet"),
  22548. weight: math.unit(160, "lb"),
  22549. name: "Back",
  22550. image: {
  22551. source: "./media/characters/dawn/back.svg",
  22552. extra: 2112 / 2080,
  22553. bottom: 0.005
  22554. }
  22555. },
  22556. },
  22557. [
  22558. {
  22559. name: "Normal",
  22560. height: math.unit(6 + 7 / 12, "feet"),
  22561. default: true
  22562. },
  22563. ]
  22564. ))
  22565. characterMakers.push(() => makeCharacter(
  22566. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22567. {
  22568. anthro: {
  22569. height: math.unit(8 + 3 / 12, "feet"),
  22570. weight: math.unit(450, "lb"),
  22571. name: "Anthro",
  22572. image: {
  22573. source: "./media/characters/arador/anthro.svg",
  22574. extra: 1835 / 1718,
  22575. bottom: 0.025
  22576. }
  22577. },
  22578. feral: {
  22579. height: math.unit(4, "feet"),
  22580. weight: math.unit(200, "lb"),
  22581. name: "Feral",
  22582. image: {
  22583. source: "./media/characters/arador/feral.svg",
  22584. extra: 1683 / 1514,
  22585. bottom: 0.07
  22586. }
  22587. },
  22588. },
  22589. [
  22590. {
  22591. name: "Normal",
  22592. height: math.unit(8 + 3 / 12, "feet")
  22593. },
  22594. {
  22595. name: "Macro",
  22596. height: math.unit(82.5, "feet"),
  22597. default: true
  22598. },
  22599. ]
  22600. ))
  22601. characterMakers.push(() => makeCharacter(
  22602. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22603. {
  22604. front: {
  22605. height: math.unit(5 + 10 / 12, "feet"),
  22606. weight: math.unit(125, "lb"),
  22607. name: "Front",
  22608. image: {
  22609. source: "./media/characters/dharsi/front.svg",
  22610. extra: 716 / 630,
  22611. bottom: 0.035
  22612. }
  22613. },
  22614. },
  22615. [
  22616. {
  22617. name: "Nano",
  22618. height: math.unit(100, "nm")
  22619. },
  22620. {
  22621. name: "Micro",
  22622. height: math.unit(2, "inches")
  22623. },
  22624. {
  22625. name: "Normal",
  22626. height: math.unit(5 + 10 / 12, "feet"),
  22627. default: true
  22628. },
  22629. {
  22630. name: "Macro",
  22631. height: math.unit(1000, "feet")
  22632. },
  22633. {
  22634. name: "Megamacro",
  22635. height: math.unit(10, "miles")
  22636. },
  22637. {
  22638. name: "Gigamacro",
  22639. height: math.unit(3000, "miles")
  22640. },
  22641. {
  22642. name: "Teramacro",
  22643. height: math.unit(500000, "miles")
  22644. },
  22645. {
  22646. name: "Teramacro+",
  22647. height: math.unit(30, "galaxies")
  22648. },
  22649. ]
  22650. ))
  22651. characterMakers.push(() => makeCharacter(
  22652. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22653. {
  22654. front: {
  22655. height: math.unit(6, "feet"),
  22656. weight: math.unit(150, "lb"),
  22657. name: "Front",
  22658. image: {
  22659. source: "./media/characters/deathy/front.svg",
  22660. extra: 1552 / 1463,
  22661. bottom: 0.025
  22662. }
  22663. },
  22664. side: {
  22665. height: math.unit(6, "feet"),
  22666. weight: math.unit(150, "lb"),
  22667. name: "Side",
  22668. image: {
  22669. source: "./media/characters/deathy/side.svg",
  22670. extra: 1604 / 1455,
  22671. bottom: 0.025
  22672. }
  22673. },
  22674. back: {
  22675. height: math.unit(6, "feet"),
  22676. weight: math.unit(150, "lb"),
  22677. name: "Back",
  22678. image: {
  22679. source: "./media/characters/deathy/back.svg",
  22680. extra: 1580 / 1463,
  22681. bottom: 0.005
  22682. }
  22683. },
  22684. },
  22685. [
  22686. {
  22687. name: "Micro",
  22688. height: math.unit(5, "millimeters")
  22689. },
  22690. {
  22691. name: "Normal",
  22692. height: math.unit(6 + 5 / 12, "feet"),
  22693. default: true
  22694. },
  22695. ]
  22696. ))
  22697. characterMakers.push(() => makeCharacter(
  22698. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22699. {
  22700. front: {
  22701. height: math.unit(16, "feet"),
  22702. weight: math.unit(4000, "lb"),
  22703. name: "Front",
  22704. image: {
  22705. source: "./media/characters/juniper/front.svg",
  22706. bottom: 0.04
  22707. }
  22708. },
  22709. },
  22710. [
  22711. {
  22712. name: "Normal",
  22713. height: math.unit(16, "feet"),
  22714. default: true
  22715. },
  22716. ]
  22717. ))
  22718. characterMakers.push(() => makeCharacter(
  22719. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22720. {
  22721. front: {
  22722. height: math.unit(6, "feet"),
  22723. weight: math.unit(150, "lb"),
  22724. name: "Front",
  22725. image: {
  22726. source: "./media/characters/hipster/front.svg",
  22727. extra: 1312 / 1209,
  22728. bottom: 0.025
  22729. }
  22730. },
  22731. back: {
  22732. height: math.unit(6, "feet"),
  22733. weight: math.unit(150, "lb"),
  22734. name: "Back",
  22735. image: {
  22736. source: "./media/characters/hipster/back.svg",
  22737. extra: 1281 / 1196,
  22738. bottom: 0.01
  22739. }
  22740. },
  22741. },
  22742. [
  22743. {
  22744. name: "Micro",
  22745. height: math.unit(1, "mm")
  22746. },
  22747. {
  22748. name: "Normal",
  22749. height: math.unit(4, "inches"),
  22750. default: true
  22751. },
  22752. {
  22753. name: "Macro",
  22754. height: math.unit(500, "feet")
  22755. },
  22756. {
  22757. name: "Megamacro",
  22758. height: math.unit(1000, "miles")
  22759. },
  22760. ]
  22761. ))
  22762. characterMakers.push(() => makeCharacter(
  22763. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22764. {
  22765. front: {
  22766. height: math.unit(6, "feet"),
  22767. weight: math.unit(150, "lb"),
  22768. name: "Front",
  22769. image: {
  22770. source: "./media/characters/tendirmuldr/front.svg",
  22771. extra: 1878 / 1772,
  22772. bottom: 0.015
  22773. }
  22774. },
  22775. },
  22776. [
  22777. {
  22778. name: "Megamacro",
  22779. height: math.unit(1500, "miles"),
  22780. default: true
  22781. },
  22782. ]
  22783. ))
  22784. characterMakers.push(() => makeCharacter(
  22785. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22786. {
  22787. front: {
  22788. height: math.unit(14, "feet"),
  22789. weight: math.unit(12000, "lb"),
  22790. name: "Front",
  22791. image: {
  22792. source: "./media/characters/mort/front.svg",
  22793. extra: 365 / 318,
  22794. bottom: 0.01
  22795. }
  22796. },
  22797. side: {
  22798. height: math.unit(14, "feet"),
  22799. weight: math.unit(12000, "lb"),
  22800. name: "Side",
  22801. image: {
  22802. source: "./media/characters/mort/side.svg",
  22803. extra: 365 / 318,
  22804. bottom: 0.052
  22805. },
  22806. default: true
  22807. },
  22808. back: {
  22809. height: math.unit(14, "feet"),
  22810. weight: math.unit(12000, "lb"),
  22811. name: "Back",
  22812. image: {
  22813. source: "./media/characters/mort/back.svg",
  22814. extra: 371 / 332,
  22815. bottom: 0.18
  22816. }
  22817. },
  22818. },
  22819. [
  22820. {
  22821. name: "Normal",
  22822. height: math.unit(14, "feet"),
  22823. default: true
  22824. },
  22825. ]
  22826. ))
  22827. characterMakers.push(() => makeCharacter(
  22828. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22829. {
  22830. front: {
  22831. height: math.unit(8, "feet"),
  22832. weight: math.unit(1, "ton"),
  22833. name: "Front",
  22834. image: {
  22835. source: "./media/characters/lycoa/front.svg",
  22836. extra: 1836/1728,
  22837. bottom: 81/1917
  22838. }
  22839. },
  22840. back: {
  22841. height: math.unit(8, "feet"),
  22842. weight: math.unit(1, "ton"),
  22843. name: "Back",
  22844. image: {
  22845. source: "./media/characters/lycoa/back.svg",
  22846. extra: 1785/1720,
  22847. bottom: 91/1876
  22848. }
  22849. },
  22850. head: {
  22851. height: math.unit(1.6243, "feet"),
  22852. name: "Head",
  22853. image: {
  22854. source: "./media/characters/lycoa/head.svg",
  22855. extra: 1011/782,
  22856. bottom: 0/1011
  22857. }
  22858. },
  22859. tailmaw: {
  22860. height: math.unit(1.9, "feet"),
  22861. name: "Tailmaw",
  22862. image: {
  22863. source: "./media/characters/lycoa/tailmaw.svg"
  22864. }
  22865. },
  22866. tentacles: {
  22867. height: math.unit(2.1, "feet"),
  22868. name: "Tentacles",
  22869. image: {
  22870. source: "./media/characters/lycoa/tentacles.svg"
  22871. }
  22872. },
  22873. dick: {
  22874. height: math.unit(1.73, "feet"),
  22875. name: "Dick",
  22876. image: {
  22877. source: "./media/characters/lycoa/dick.svg"
  22878. }
  22879. },
  22880. },
  22881. [
  22882. {
  22883. name: "Normal",
  22884. height: math.unit(8, "feet"),
  22885. default: true
  22886. },
  22887. {
  22888. name: "Macro",
  22889. height: math.unit(30, "feet")
  22890. },
  22891. ]
  22892. ))
  22893. characterMakers.push(() => makeCharacter(
  22894. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22895. {
  22896. front: {
  22897. height: math.unit(4 + 2 / 12, "feet"),
  22898. weight: math.unit(70, "lb"),
  22899. name: "Front",
  22900. image: {
  22901. source: "./media/characters/naldara/front.svg",
  22902. extra: 1664/1387,
  22903. bottom: 81/1745
  22904. },
  22905. form: "anthro",
  22906. default: true
  22907. },
  22908. naga: {
  22909. height: math.unit(20, "feet"),
  22910. weight: math.unit(15000, "kg"),
  22911. name: "Front",
  22912. image: {
  22913. source: "./media/characters/naldara/naga.svg",
  22914. extra: 1590/1396,
  22915. bottom: 285/1875
  22916. },
  22917. form: "naga",
  22918. default: true
  22919. },
  22920. },
  22921. [
  22922. {
  22923. name: "Normal",
  22924. height: math.unit(4 + 2 / 12, "feet"),
  22925. form: "anthro",
  22926. default: true
  22927. },
  22928. {
  22929. name: "Normal",
  22930. height: math.unit(20, "feet"),
  22931. form: "naga",
  22932. default: true
  22933. },
  22934. ],
  22935. {
  22936. "anthro": {
  22937. name: "Anthro",
  22938. default: true
  22939. },
  22940. "naga": {
  22941. name: "Naga"
  22942. }
  22943. }
  22944. ))
  22945. characterMakers.push(() => makeCharacter(
  22946. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22947. {
  22948. front: {
  22949. height: math.unit(13 + 7 / 12, "feet"),
  22950. weight: math.unit(1500, "lb"),
  22951. name: "Front",
  22952. image: {
  22953. source: "./media/characters/briar/front.svg",
  22954. extra: 1223/1157,
  22955. bottom: 123/1346
  22956. }
  22957. },
  22958. },
  22959. [
  22960. {
  22961. name: "Normal",
  22962. height: math.unit(13 + 7 / 12, "feet"),
  22963. default: true
  22964. },
  22965. ]
  22966. ))
  22967. characterMakers.push(() => makeCharacter(
  22968. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22969. {
  22970. side: {
  22971. height: math.unit(16, "feet"),
  22972. weight: math.unit(500, "lb"),
  22973. name: "Side",
  22974. image: {
  22975. source: "./media/characters/vanguard/side.svg",
  22976. extra: 1022/914,
  22977. bottom: 30/1052
  22978. }
  22979. },
  22980. sideAlt: {
  22981. height: math.unit(10, "feet"),
  22982. weight: math.unit(500, "lb"),
  22983. name: "Side (Alt)",
  22984. image: {
  22985. source: "./media/characters/vanguard/side-alt.svg",
  22986. extra: 502 / 425,
  22987. bottom: 0.087
  22988. }
  22989. },
  22990. },
  22991. [
  22992. {
  22993. name: "Normal",
  22994. height: math.unit(17.71, "feet"),
  22995. default: true
  22996. },
  22997. ]
  22998. ))
  22999. characterMakers.push(() => makeCharacter(
  23000. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  23001. {
  23002. front: {
  23003. height: math.unit(7.5, "feet"),
  23004. weight: math.unit(2, "lb"),
  23005. name: "Front",
  23006. image: {
  23007. source: "./media/characters/artemis/work-safe-front.svg",
  23008. extra: 1192 / 1075,
  23009. bottom: 0.07
  23010. },
  23011. form: "work-safe",
  23012. default: true
  23013. },
  23014. frontNsfw: {
  23015. height: math.unit(7.5, "feet"),
  23016. weight: math.unit(2, "lb"),
  23017. name: "Front",
  23018. image: {
  23019. source: "./media/characters/artemis/calibrating-front.svg",
  23020. extra: 1192 / 1075,
  23021. bottom: 0.07
  23022. },
  23023. form: "calibrating",
  23024. default: true
  23025. },
  23026. frontNsfwer: {
  23027. height: math.unit(7.5, "feet"),
  23028. weight: math.unit(2, "lb"),
  23029. name: "Front",
  23030. image: {
  23031. source: "./media/characters/artemis/oversize-load-front.svg",
  23032. extra: 1192 / 1075,
  23033. bottom: 0.07
  23034. },
  23035. form: "oversize-load",
  23036. default: true
  23037. },
  23038. side: {
  23039. height: math.unit(7.5, "feet"),
  23040. weight: math.unit(2, "lb"),
  23041. name: "Side",
  23042. image: {
  23043. source: "./media/characters/artemis/work-safe-side.svg",
  23044. extra: 1192 / 1075,
  23045. bottom: 0.07
  23046. },
  23047. form: "work-safe"
  23048. },
  23049. sideNsfw: {
  23050. height: math.unit(7.5, "feet"),
  23051. weight: math.unit(2, "lb"),
  23052. name: "Side",
  23053. image: {
  23054. source: "./media/characters/artemis/calibrating-side.svg",
  23055. extra: 1192 / 1075,
  23056. bottom: 0.07
  23057. },
  23058. form: "calibrating"
  23059. },
  23060. sideNsfwer: {
  23061. height: math.unit(7.5, "feet"),
  23062. weight: math.unit(2, "lb"),
  23063. name: "Side",
  23064. image: {
  23065. source: "./media/characters/artemis/oversize-load-side.svg",
  23066. extra: 1192 / 1075,
  23067. bottom: 0.07
  23068. },
  23069. form: "oversize-load"
  23070. },
  23071. maw: {
  23072. height: math.unit(1.1, "feet"),
  23073. name: "Maw",
  23074. image: {
  23075. source: "./media/characters/artemis/maw.svg"
  23076. },
  23077. form: "work-safe"
  23078. },
  23079. stomach: {
  23080. height: math.unit(0.95, "feet"),
  23081. name: "Stomach",
  23082. image: {
  23083. source: "./media/characters/artemis/stomach.svg"
  23084. },
  23085. form: "work-safe"
  23086. },
  23087. dickCanine: {
  23088. height: math.unit(1, "feet"),
  23089. name: "Dick (Canine)",
  23090. image: {
  23091. source: "./media/characters/artemis/dick-canine.svg"
  23092. },
  23093. form: "calibrating"
  23094. },
  23095. dickEquine: {
  23096. height: math.unit(0.85, "feet"),
  23097. name: "Dick (Equine)",
  23098. image: {
  23099. source: "./media/characters/artemis/dick-equine.svg"
  23100. },
  23101. form: "calibrating"
  23102. },
  23103. dickExotic: {
  23104. height: math.unit(0.85, "feet"),
  23105. name: "Dick (Exotic)",
  23106. image: {
  23107. source: "./media/characters/artemis/dick-exotic.svg"
  23108. },
  23109. form: "calibrating"
  23110. },
  23111. dickCanineBigger: {
  23112. height: math.unit(1 * 1.33, "feet"),
  23113. name: "Dick (Canine)",
  23114. image: {
  23115. source: "./media/characters/artemis/dick-canine.svg"
  23116. },
  23117. form: "oversize-load"
  23118. },
  23119. dickEquineBigger: {
  23120. height: math.unit(0.85 * 1.33, "feet"),
  23121. name: "Dick (Equine)",
  23122. image: {
  23123. source: "./media/characters/artemis/dick-equine.svg"
  23124. },
  23125. form: "oversize-load"
  23126. },
  23127. dickExoticBigger: {
  23128. height: math.unit(0.85 * 1.33, "feet"),
  23129. name: "Dick (Exotic)",
  23130. image: {
  23131. source: "./media/characters/artemis/dick-exotic.svg"
  23132. },
  23133. form: "oversize-load"
  23134. },
  23135. },
  23136. [
  23137. {
  23138. name: "Normal",
  23139. height: math.unit(7.5, "feet"),
  23140. form: "work-safe",
  23141. default: true
  23142. },
  23143. {
  23144. name: "Normal",
  23145. height: math.unit(7.5, "feet"),
  23146. form: "calibrating",
  23147. default: true
  23148. },
  23149. {
  23150. name: "Normal",
  23151. height: math.unit(7.5, "feet"),
  23152. form: "oversize-load",
  23153. default: true
  23154. },
  23155. {
  23156. name: "Enlarged",
  23157. height: math.unit(12, "feet"),
  23158. form: "work-safe",
  23159. },
  23160. {
  23161. name: "Enlarged",
  23162. height: math.unit(12, "feet"),
  23163. form: "calibrating",
  23164. },
  23165. {
  23166. name: "Enlarged",
  23167. height: math.unit(12, "feet"),
  23168. form: "oversize-load",
  23169. },
  23170. ],
  23171. {
  23172. "work-safe": {
  23173. name: "Work-Safe",
  23174. default: true
  23175. },
  23176. "calibrating": {
  23177. name: "Calibrating"
  23178. },
  23179. "oversize-load": {
  23180. name: "Oversize Load"
  23181. }
  23182. }
  23183. ))
  23184. characterMakers.push(() => makeCharacter(
  23185. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  23186. {
  23187. front: {
  23188. height: math.unit(5 + 3 / 12, "feet"),
  23189. weight: math.unit(160, "lb"),
  23190. name: "Front",
  23191. image: {
  23192. source: "./media/characters/kira/front.svg",
  23193. extra: 906 / 786,
  23194. bottom: 0.01
  23195. }
  23196. },
  23197. back: {
  23198. height: math.unit(5 + 3 / 12, "feet"),
  23199. weight: math.unit(160, "lb"),
  23200. name: "Back",
  23201. image: {
  23202. source: "./media/characters/kira/back.svg",
  23203. extra: 882 / 757,
  23204. bottom: 0.005
  23205. }
  23206. },
  23207. frontDressed: {
  23208. height: math.unit(5 + 3 / 12, "feet"),
  23209. weight: math.unit(160, "lb"),
  23210. name: "Front (Dressed)",
  23211. image: {
  23212. source: "./media/characters/kira/front-dressed.svg",
  23213. extra: 906 / 786,
  23214. bottom: 0.01
  23215. }
  23216. },
  23217. beans: {
  23218. height: math.unit(0.92, "feet"),
  23219. name: "Beans",
  23220. image: {
  23221. source: "./media/characters/kira/beans.svg"
  23222. }
  23223. },
  23224. },
  23225. [
  23226. {
  23227. name: "Normal",
  23228. height: math.unit(5 + 3 / 12, "feet"),
  23229. default: true
  23230. },
  23231. ]
  23232. ))
  23233. characterMakers.push(() => makeCharacter(
  23234. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  23235. {
  23236. front: {
  23237. height: math.unit(5 + 4 / 12, "feet"),
  23238. weight: math.unit(145, "lb"),
  23239. name: "Front",
  23240. image: {
  23241. source: "./media/characters/scramble/front.svg",
  23242. extra: 763 / 727,
  23243. bottom: 0.05
  23244. }
  23245. },
  23246. back: {
  23247. height: math.unit(5 + 4 / 12, "feet"),
  23248. weight: math.unit(145, "lb"),
  23249. name: "Back",
  23250. image: {
  23251. source: "./media/characters/scramble/back.svg",
  23252. extra: 826 / 737,
  23253. bottom: 0.002
  23254. }
  23255. },
  23256. },
  23257. [
  23258. {
  23259. name: "Normal",
  23260. height: math.unit(5 + 4 / 12, "feet"),
  23261. default: true
  23262. },
  23263. ]
  23264. ))
  23265. characterMakers.push(() => makeCharacter(
  23266. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  23267. {
  23268. side: {
  23269. height: math.unit(6 + 2 / 12, "feet"),
  23270. weight: math.unit(190, "lb"),
  23271. name: "Side",
  23272. image: {
  23273. source: "./media/characters/biscuit/side.svg",
  23274. extra: 858 / 791,
  23275. bottom: 0.044
  23276. }
  23277. },
  23278. },
  23279. [
  23280. {
  23281. name: "Normal",
  23282. height: math.unit(6 + 2 / 12, "feet"),
  23283. default: true
  23284. },
  23285. ]
  23286. ))
  23287. characterMakers.push(() => makeCharacter(
  23288. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  23289. {
  23290. front: {
  23291. height: math.unit(5 + 2 / 12, "feet"),
  23292. weight: math.unit(120, "lb"),
  23293. name: "Front",
  23294. image: {
  23295. source: "./media/characters/poffin/front.svg",
  23296. extra: 786 / 680,
  23297. bottom: 0.005
  23298. }
  23299. },
  23300. },
  23301. [
  23302. {
  23303. name: "Normal",
  23304. height: math.unit(5 + 2 / 12, "feet"),
  23305. default: true
  23306. },
  23307. ]
  23308. ))
  23309. characterMakers.push(() => makeCharacter(
  23310. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  23311. {
  23312. front: {
  23313. height: math.unit(6 + 3 / 12, "feet"),
  23314. weight: math.unit(519, "lb"),
  23315. name: "Front",
  23316. image: {
  23317. source: "./media/characters/dhari/front.svg",
  23318. extra: 1048 / 946,
  23319. bottom: 0.015
  23320. }
  23321. },
  23322. back: {
  23323. height: math.unit(6 + 3 / 12, "feet"),
  23324. weight: math.unit(519, "lb"),
  23325. name: "Back",
  23326. image: {
  23327. source: "./media/characters/dhari/back.svg",
  23328. extra: 1048 / 931,
  23329. bottom: 0.005
  23330. }
  23331. },
  23332. frontDressed: {
  23333. height: math.unit(6 + 3 / 12, "feet"),
  23334. weight: math.unit(519, "lb"),
  23335. name: "Front (Dressed)",
  23336. image: {
  23337. source: "./media/characters/dhari/front-dressed.svg",
  23338. extra: 1713 / 1546,
  23339. bottom: 0.02
  23340. }
  23341. },
  23342. backDressed: {
  23343. height: math.unit(6 + 3 / 12, "feet"),
  23344. weight: math.unit(519, "lb"),
  23345. name: "Back (Dressed)",
  23346. image: {
  23347. source: "./media/characters/dhari/back-dressed.svg",
  23348. extra: 1699 / 1537,
  23349. bottom: 0.01
  23350. }
  23351. },
  23352. maw: {
  23353. height: math.unit(0.95, "feet"),
  23354. name: "Maw",
  23355. image: {
  23356. source: "./media/characters/dhari/maw.svg"
  23357. }
  23358. },
  23359. wereFront: {
  23360. height: math.unit(12 + 8 / 12, "feet"),
  23361. weight: math.unit(4000, "lb"),
  23362. name: "Front (Were)",
  23363. image: {
  23364. source: "./media/characters/dhari/were-front.svg",
  23365. extra: 1065 / 969,
  23366. bottom: 0.015
  23367. }
  23368. },
  23369. wereBack: {
  23370. height: math.unit(12 + 8 / 12, "feet"),
  23371. weight: math.unit(4000, "lb"),
  23372. name: "Back (Were)",
  23373. image: {
  23374. source: "./media/characters/dhari/were-back.svg",
  23375. extra: 1065 / 969,
  23376. bottom: 0.012
  23377. }
  23378. },
  23379. wereMaw: {
  23380. height: math.unit(0.625, "meters"),
  23381. name: "Maw (Were)",
  23382. image: {
  23383. source: "./media/characters/dhari/were-maw.svg"
  23384. }
  23385. },
  23386. },
  23387. [
  23388. {
  23389. name: "Normal",
  23390. height: math.unit(6 + 3 / 12, "feet"),
  23391. default: true
  23392. },
  23393. ]
  23394. ))
  23395. characterMakers.push(() => makeCharacter(
  23396. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  23397. {
  23398. anthro: {
  23399. height: math.unit(5 + 7 / 12, "feet"),
  23400. weight: math.unit(175, "lb"),
  23401. name: "Anthro",
  23402. image: {
  23403. source: "./media/characters/rena-dyne/anthro.svg",
  23404. extra: 1849 / 1785,
  23405. bottom: 0.005
  23406. }
  23407. },
  23408. taur: {
  23409. height: math.unit(15 + 6 / 12, "feet"),
  23410. weight: math.unit(8000, "lb"),
  23411. name: "Taur",
  23412. image: {
  23413. source: "./media/characters/rena-dyne/taur.svg",
  23414. extra: 2315 / 2234,
  23415. bottom: 0.033
  23416. }
  23417. },
  23418. },
  23419. [
  23420. {
  23421. name: "Normal",
  23422. height: math.unit(5 + 7 / 12, "feet"),
  23423. default: true
  23424. },
  23425. ]
  23426. ))
  23427. characterMakers.push(() => makeCharacter(
  23428. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  23429. {
  23430. front: {
  23431. height: math.unit(8, "feet"),
  23432. weight: math.unit(600, "lb"),
  23433. name: "Front",
  23434. image: {
  23435. source: "./media/characters/weremeep/front.svg",
  23436. extra: 970/849,
  23437. bottom: 7/977
  23438. }
  23439. },
  23440. },
  23441. [
  23442. {
  23443. name: "Normal",
  23444. height: math.unit(8, "feet"),
  23445. default: true
  23446. },
  23447. {
  23448. name: "Lorg",
  23449. height: math.unit(12, "feet")
  23450. },
  23451. {
  23452. name: "Oh Lawd She Comin'",
  23453. height: math.unit(20, "feet")
  23454. },
  23455. ]
  23456. ))
  23457. characterMakers.push(() => makeCharacter(
  23458. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  23459. {
  23460. front: {
  23461. height: math.unit(4, "feet"),
  23462. weight: math.unit(90, "lb"),
  23463. name: "Front",
  23464. image: {
  23465. source: "./media/characters/reza/front.svg",
  23466. extra: 1183 / 1111,
  23467. bottom: 0.017
  23468. }
  23469. },
  23470. back: {
  23471. height: math.unit(4, "feet"),
  23472. weight: math.unit(90, "lb"),
  23473. name: "Back",
  23474. image: {
  23475. source: "./media/characters/reza/back.svg",
  23476. extra: 1183 / 1111,
  23477. bottom: 0.01
  23478. }
  23479. },
  23480. drake: {
  23481. height: math.unit(30, "feet"),
  23482. weight: math.unit(246960, "lb"),
  23483. name: "Drake",
  23484. image: {
  23485. source: "./media/characters/reza/drake.svg",
  23486. extra: 2350 / 2024,
  23487. bottom: 60.7 / 2403
  23488. }
  23489. },
  23490. },
  23491. [
  23492. {
  23493. name: "Normal",
  23494. height: math.unit(4, "feet"),
  23495. default: true
  23496. },
  23497. ]
  23498. ))
  23499. characterMakers.push(() => makeCharacter(
  23500. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  23501. {
  23502. side: {
  23503. height: math.unit(15, "feet"),
  23504. weight: math.unit(14, "tons"),
  23505. name: "Side",
  23506. image: {
  23507. source: "./media/characters/athea/side.svg",
  23508. extra: 960 / 540,
  23509. bottom: 0.003
  23510. }
  23511. },
  23512. sitting: {
  23513. height: math.unit(6 * 2.85, "feet"),
  23514. weight: math.unit(14, "tons"),
  23515. name: "Sitting",
  23516. image: {
  23517. source: "./media/characters/athea/sitting.svg",
  23518. extra: 621 / 581,
  23519. bottom: 0.075
  23520. }
  23521. },
  23522. maw: {
  23523. height: math.unit(7.59498031496063, "feet"),
  23524. name: "Maw",
  23525. image: {
  23526. source: "./media/characters/athea/maw.svg"
  23527. }
  23528. },
  23529. },
  23530. [
  23531. {
  23532. name: "Lap Cat",
  23533. height: math.unit(2.5, "feet")
  23534. },
  23535. {
  23536. name: "Minimacro",
  23537. height: math.unit(15, "feet"),
  23538. default: true
  23539. },
  23540. {
  23541. name: "Macro",
  23542. height: math.unit(120, "feet")
  23543. },
  23544. {
  23545. name: "Macro+",
  23546. height: math.unit(640, "feet")
  23547. },
  23548. {
  23549. name: "Colossus",
  23550. height: math.unit(2.2, "miles")
  23551. },
  23552. ]
  23553. ))
  23554. characterMakers.push(() => makeCharacter(
  23555. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23556. {
  23557. front: {
  23558. height: math.unit(8 + 8 / 12, "feet"),
  23559. weight: math.unit(130, "kg"),
  23560. name: "Front",
  23561. image: {
  23562. source: "./media/characters/seroko/front.svg",
  23563. extra: 1385 / 1280,
  23564. bottom: 0.025
  23565. }
  23566. },
  23567. back: {
  23568. height: math.unit(8 + 8 / 12, "feet"),
  23569. weight: math.unit(130, "kg"),
  23570. name: "Back",
  23571. image: {
  23572. source: "./media/characters/seroko/back.svg",
  23573. extra: 1369 / 1238,
  23574. bottom: 0.018
  23575. }
  23576. },
  23577. frontDressed: {
  23578. height: math.unit(8 + 8 / 12, "feet"),
  23579. weight: math.unit(130, "kg"),
  23580. name: "Front (Dressed)",
  23581. image: {
  23582. source: "./media/characters/seroko/front-dressed.svg",
  23583. extra: 1366 / 1275,
  23584. bottom: 0.03
  23585. }
  23586. },
  23587. },
  23588. [
  23589. {
  23590. name: "Normal",
  23591. height: math.unit(8 + 8 / 12, "feet"),
  23592. default: true
  23593. },
  23594. ]
  23595. ))
  23596. characterMakers.push(() => makeCharacter(
  23597. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23598. {
  23599. front: {
  23600. height: math.unit(5.5, "feet"),
  23601. weight: math.unit(160, "lb"),
  23602. name: "Front",
  23603. image: {
  23604. source: "./media/characters/quatzi/front.svg",
  23605. extra: 2346 / 2242,
  23606. bottom: 0.015
  23607. }
  23608. },
  23609. },
  23610. [
  23611. {
  23612. name: "Normal",
  23613. height: math.unit(5.5, "feet"),
  23614. default: true
  23615. },
  23616. {
  23617. name: "Big",
  23618. height: math.unit(7.7, "feet")
  23619. },
  23620. ]
  23621. ))
  23622. characterMakers.push(() => makeCharacter(
  23623. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23624. {
  23625. front: {
  23626. height: math.unit(5 + 11 / 12, "feet"),
  23627. weight: math.unit(180, "lb"),
  23628. name: "Front",
  23629. image: {
  23630. source: "./media/characters/sen/front.svg",
  23631. extra: 1321 / 1254,
  23632. bottom: 0.015
  23633. }
  23634. },
  23635. side: {
  23636. height: math.unit(5 + 11 / 12, "feet"),
  23637. weight: math.unit(180, "lb"),
  23638. name: "Side",
  23639. image: {
  23640. source: "./media/characters/sen/side.svg",
  23641. extra: 1321 / 1254,
  23642. bottom: 0.007
  23643. }
  23644. },
  23645. back: {
  23646. height: math.unit(5 + 11 / 12, "feet"),
  23647. weight: math.unit(180, "lb"),
  23648. name: "Back",
  23649. image: {
  23650. source: "./media/characters/sen/back.svg",
  23651. extra: 1321 / 1254
  23652. }
  23653. },
  23654. },
  23655. [
  23656. {
  23657. name: "Normal",
  23658. height: math.unit(5 + 11 / 12, "feet"),
  23659. default: true
  23660. },
  23661. ]
  23662. ))
  23663. characterMakers.push(() => makeCharacter(
  23664. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23665. {
  23666. front: {
  23667. height: math.unit(166.6, "cm"),
  23668. weight: math.unit(66.6, "kg"),
  23669. name: "Front",
  23670. image: {
  23671. source: "./media/characters/fruity/front.svg",
  23672. extra: 1510 / 1386,
  23673. bottom: 0.04
  23674. }
  23675. },
  23676. back: {
  23677. height: math.unit(166.6, "cm"),
  23678. weight: math.unit(66.6, "lb"),
  23679. name: "Back",
  23680. image: {
  23681. source: "./media/characters/fruity/back.svg",
  23682. extra: 1563 / 1435,
  23683. bottom: 0.005
  23684. }
  23685. },
  23686. },
  23687. [
  23688. {
  23689. name: "Normal",
  23690. height: math.unit(166.6, "cm"),
  23691. default: true
  23692. },
  23693. {
  23694. name: "Demonic",
  23695. height: math.unit(166.6, "feet")
  23696. },
  23697. ]
  23698. ))
  23699. characterMakers.push(() => makeCharacter(
  23700. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23701. {
  23702. side: {
  23703. height: math.unit(10, "feet"),
  23704. weight: math.unit(500, "lb"),
  23705. name: "Side",
  23706. image: {
  23707. source: "./media/characters/zost/side.svg",
  23708. extra: 2870/2533,
  23709. bottom: 252/3122
  23710. }
  23711. },
  23712. mawFront: {
  23713. height: math.unit(1.08, "meters"),
  23714. name: "Maw (Front)",
  23715. image: {
  23716. source: "./media/characters/zost/maw-front.svg"
  23717. }
  23718. },
  23719. mawSide: {
  23720. height: math.unit(2.66, "feet"),
  23721. name: "Maw (Side)",
  23722. image: {
  23723. source: "./media/characters/zost/maw-side.svg"
  23724. }
  23725. },
  23726. wingspan: {
  23727. height: math.unit(7.4, "feet"),
  23728. name: "Wingspan",
  23729. image: {
  23730. source: "./media/characters/zost/wingspan.svg"
  23731. }
  23732. },
  23733. },
  23734. [
  23735. {
  23736. name: "Normal",
  23737. height: math.unit(10, "feet"),
  23738. default: true
  23739. },
  23740. ]
  23741. ))
  23742. characterMakers.push(() => makeCharacter(
  23743. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23744. {
  23745. front: {
  23746. height: math.unit(5 + 4 / 12, "feet"),
  23747. weight: math.unit(120, "lb"),
  23748. name: "Front",
  23749. image: {
  23750. source: "./media/characters/luci/front.svg",
  23751. extra: 1985 / 1884,
  23752. bottom: 0.04
  23753. }
  23754. },
  23755. back: {
  23756. height: math.unit(5 + 4 / 12, "feet"),
  23757. weight: math.unit(120, "lb"),
  23758. name: "Back",
  23759. image: {
  23760. source: "./media/characters/luci/back.svg",
  23761. extra: 1892 / 1791,
  23762. bottom: 0.002
  23763. }
  23764. },
  23765. },
  23766. [
  23767. {
  23768. name: "Normal",
  23769. height: math.unit(5 + 4 / 12, "feet"),
  23770. default: true
  23771. },
  23772. ]
  23773. ))
  23774. characterMakers.push(() => makeCharacter(
  23775. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23776. {
  23777. front: {
  23778. height: math.unit(1500, "feet"),
  23779. weight: math.unit(3.8e6, "tons"),
  23780. name: "Front",
  23781. image: {
  23782. source: "./media/characters/2th/front.svg",
  23783. extra: 3489 / 3350,
  23784. bottom: 0.1
  23785. }
  23786. },
  23787. foot: {
  23788. height: math.unit(461, "feet"),
  23789. name: "Foot",
  23790. image: {
  23791. source: "./media/characters/2th/foot.svg"
  23792. }
  23793. },
  23794. },
  23795. [
  23796. {
  23797. name: "\"Micro\"",
  23798. height: math.unit(15 + 7 / 12, "feet")
  23799. },
  23800. {
  23801. name: "Normal",
  23802. height: math.unit(1500, "feet"),
  23803. default: true
  23804. },
  23805. {
  23806. name: "Macro",
  23807. height: math.unit(5000, "feet")
  23808. },
  23809. {
  23810. name: "Megamacro",
  23811. height: math.unit(15, "miles")
  23812. },
  23813. {
  23814. name: "Gigamacro",
  23815. height: math.unit(4000, "miles")
  23816. },
  23817. {
  23818. name: "Galactic",
  23819. height: math.unit(50, "AU")
  23820. },
  23821. ]
  23822. ))
  23823. characterMakers.push(() => makeCharacter(
  23824. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23825. {
  23826. front: {
  23827. height: math.unit(5 + 6 / 12, "feet"),
  23828. weight: math.unit(220, "lb"),
  23829. name: "Front",
  23830. image: {
  23831. source: "./media/characters/amethyst/front.svg",
  23832. extra: 2078 / 2040,
  23833. bottom: 0.045
  23834. }
  23835. },
  23836. back: {
  23837. height: math.unit(5 + 6 / 12, "feet"),
  23838. weight: math.unit(220, "lb"),
  23839. name: "Back",
  23840. image: {
  23841. source: "./media/characters/amethyst/back.svg",
  23842. extra: 2021 / 1989,
  23843. bottom: 0.02
  23844. }
  23845. },
  23846. },
  23847. [
  23848. {
  23849. name: "Normal",
  23850. height: math.unit(5 + 6 / 12, "feet"),
  23851. default: true
  23852. },
  23853. ]
  23854. ))
  23855. characterMakers.push(() => makeCharacter(
  23856. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23857. {
  23858. front: {
  23859. height: math.unit(4 + 11 / 12, "feet"),
  23860. weight: math.unit(120, "lb"),
  23861. name: "Front",
  23862. image: {
  23863. source: "./media/characters/yumi-akiyama/front.svg",
  23864. extra: 2638/2432,
  23865. bottom: 70/2708
  23866. }
  23867. },
  23868. back: {
  23869. height: math.unit(4 + 11 / 12, "feet"),
  23870. weight: math.unit(120, "lb"),
  23871. name: "Back",
  23872. image: {
  23873. source: "./media/characters/yumi-akiyama/back.svg",
  23874. extra: 2502/2397,
  23875. bottom: 80/2582
  23876. }
  23877. },
  23878. casual: {
  23879. height: math.unit(4 + 11 / 12, "feet"),
  23880. weight: math.unit(120, "lb"),
  23881. name: "Casual",
  23882. image: {
  23883. source: "./media/characters/yumi-akiyama/casual.svg",
  23884. extra: 958/887,
  23885. bottom: 41/999
  23886. }
  23887. },
  23888. jammies: {
  23889. height: math.unit(4 + 11 / 12, "feet"),
  23890. weight: math.unit(120, "lb"),
  23891. name: "Jammies",
  23892. image: {
  23893. source: "./media/characters/yumi-akiyama/jammies.svg",
  23894. extra: 958/894,
  23895. bottom: 37/995
  23896. }
  23897. },
  23898. warmWeather: {
  23899. height: math.unit(4 + 11 / 12, "feet"),
  23900. weight: math.unit(120, "lb"),
  23901. name: "Warm Weather",
  23902. image: {
  23903. source: "./media/characters/yumi-akiyama/warm-weather.svg",
  23904. extra: 929/865,
  23905. bottom: 76/1005
  23906. }
  23907. },
  23908. mouth: {
  23909. height: math.unit(0.35, "feet"),
  23910. name: "Mouth",
  23911. image: {
  23912. source: "./media/characters/yumi-akiyama/mouth.svg"
  23913. }
  23914. },
  23915. paws: {
  23916. height: math.unit(1.05, "feet"),
  23917. name: "Paws",
  23918. image: {
  23919. source: "./media/characters/yumi-akiyama/paws.svg"
  23920. }
  23921. },
  23922. cockRing: {
  23923. height: math.unit(0.225, "feet"),
  23924. name: "Cock Ring",
  23925. image: {
  23926. source: "./media/characters/yumi-akiyama/cock-ring.svg"
  23927. }
  23928. },
  23929. },
  23930. [
  23931. {
  23932. name: "Galactic",
  23933. height: math.unit(50, "galaxies"),
  23934. default: true
  23935. },
  23936. {
  23937. name: "Universal",
  23938. height: math.unit(100, "universes")
  23939. },
  23940. ]
  23941. ))
  23942. characterMakers.push(() => makeCharacter(
  23943. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23944. {
  23945. front: {
  23946. height: math.unit(8, "feet"),
  23947. weight: math.unit(500, "lb"),
  23948. name: "Front",
  23949. image: {
  23950. source: "./media/characters/rifter-yrmori/front.svg",
  23951. extra: 1180 / 1125,
  23952. bottom: 0.02
  23953. }
  23954. },
  23955. back: {
  23956. height: math.unit(8, "feet"),
  23957. weight: math.unit(500, "lb"),
  23958. name: "Back",
  23959. image: {
  23960. source: "./media/characters/rifter-yrmori/back.svg",
  23961. extra: 1190 / 1145,
  23962. bottom: 0.001
  23963. }
  23964. },
  23965. wings: {
  23966. height: math.unit(7.75, "feet"),
  23967. weight: math.unit(500, "lb"),
  23968. name: "Wings",
  23969. image: {
  23970. source: "./media/characters/rifter-yrmori/wings.svg",
  23971. extra: 1357 / 1285
  23972. }
  23973. },
  23974. maw: {
  23975. height: math.unit(0.8, "feet"),
  23976. name: "Maw",
  23977. image: {
  23978. source: "./media/characters/rifter-yrmori/maw.svg"
  23979. }
  23980. },
  23981. mawfront: {
  23982. height: math.unit(1.45, "feet"),
  23983. name: "Maw (Front)",
  23984. image: {
  23985. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23986. }
  23987. },
  23988. },
  23989. [
  23990. {
  23991. name: "Normal",
  23992. height: math.unit(8, "feet"),
  23993. default: true
  23994. },
  23995. {
  23996. name: "Macro",
  23997. height: math.unit(42, "meters")
  23998. },
  23999. ]
  24000. ))
  24001. characterMakers.push(() => makeCharacter(
  24002. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  24003. {
  24004. were: {
  24005. height: math.unit(25 + 6 / 12, "feet"),
  24006. weight: math.unit(10000, "lb"),
  24007. name: "Were",
  24008. image: {
  24009. source: "./media/characters/tahajin/were.svg",
  24010. extra: 801 / 770,
  24011. bottom: 0.042
  24012. }
  24013. },
  24014. aquatic: {
  24015. height: math.unit(6 + 4 / 12, "feet"),
  24016. weight: math.unit(160, "lb"),
  24017. name: "Aquatic",
  24018. image: {
  24019. source: "./media/characters/tahajin/aquatic.svg",
  24020. extra: 572 / 542,
  24021. bottom: 0.04
  24022. }
  24023. },
  24024. chow: {
  24025. height: math.unit(8 + 11 / 12, "feet"),
  24026. weight: math.unit(450, "lb"),
  24027. name: "Chow",
  24028. image: {
  24029. source: "./media/characters/tahajin/chow.svg",
  24030. extra: 660 / 640,
  24031. bottom: 0.015
  24032. }
  24033. },
  24034. demiNaga: {
  24035. height: math.unit(6 + 8 / 12, "feet"),
  24036. weight: math.unit(300, "lb"),
  24037. name: "Demi Naga",
  24038. image: {
  24039. source: "./media/characters/tahajin/demi-naga.svg",
  24040. extra: 643 / 615,
  24041. bottom: 0.1
  24042. }
  24043. },
  24044. data: {
  24045. height: math.unit(5, "inches"),
  24046. weight: math.unit(0.1, "lb"),
  24047. name: "Data",
  24048. image: {
  24049. source: "./media/characters/tahajin/data.svg"
  24050. }
  24051. },
  24052. fluu: {
  24053. height: math.unit(5 + 7 / 12, "feet"),
  24054. weight: math.unit(140, "lb"),
  24055. name: "Fluu",
  24056. image: {
  24057. source: "./media/characters/tahajin/fluu.svg",
  24058. extra: 628 / 592,
  24059. bottom: 0.02
  24060. }
  24061. },
  24062. starWarrior: {
  24063. height: math.unit(4 + 5 / 12, "feet"),
  24064. weight: math.unit(50, "lb"),
  24065. name: "Star Warrior",
  24066. image: {
  24067. source: "./media/characters/tahajin/star-warrior.svg"
  24068. }
  24069. },
  24070. },
  24071. [
  24072. {
  24073. name: "Normal",
  24074. height: math.unit(25 + 6 / 12, "feet"),
  24075. default: true
  24076. },
  24077. ]
  24078. ))
  24079. characterMakers.push(() => makeCharacter(
  24080. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  24081. {
  24082. front: {
  24083. height: math.unit(8, "feet"),
  24084. weight: math.unit(350, "lb"),
  24085. name: "Front",
  24086. image: {
  24087. source: "./media/characters/gabira/front.svg",
  24088. extra: 1261/1154,
  24089. bottom: 51/1312
  24090. }
  24091. },
  24092. back: {
  24093. height: math.unit(8, "feet"),
  24094. weight: math.unit(350, "lb"),
  24095. name: "Back",
  24096. image: {
  24097. source: "./media/characters/gabira/back.svg",
  24098. extra: 1265/1163,
  24099. bottom: 46/1311
  24100. }
  24101. },
  24102. head: {
  24103. height: math.unit(2.85, "feet"),
  24104. name: "Head",
  24105. image: {
  24106. source: "./media/characters/gabira/head.svg"
  24107. }
  24108. },
  24109. },
  24110. [
  24111. {
  24112. name: "Normal",
  24113. height: math.unit(8, "feet"),
  24114. default: true
  24115. },
  24116. ]
  24117. ))
  24118. characterMakers.push(() => makeCharacter(
  24119. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  24120. {
  24121. front: {
  24122. height: math.unit(5 + 3 / 12, "feet"),
  24123. weight: math.unit(137, "lb"),
  24124. name: "Front",
  24125. image: {
  24126. source: "./media/characters/sasha-katraine/front.svg",
  24127. extra: 1745/1694,
  24128. bottom: 37/1782
  24129. }
  24130. },
  24131. back: {
  24132. height: math.unit(5 + 3 / 12, "feet"),
  24133. weight: math.unit(137, "lb"),
  24134. name: "Back",
  24135. image: {
  24136. source: "./media/characters/sasha-katraine/back.svg",
  24137. extra: 1776/1699,
  24138. bottom: 26/1802
  24139. }
  24140. },
  24141. },
  24142. [
  24143. {
  24144. name: "Micro",
  24145. height: math.unit(5, "inches")
  24146. },
  24147. {
  24148. name: "Normal",
  24149. height: math.unit(5 + 3 / 12, "feet"),
  24150. default: true
  24151. },
  24152. ]
  24153. ))
  24154. characterMakers.push(() => makeCharacter(
  24155. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  24156. {
  24157. side: {
  24158. height: math.unit(4, "inches"),
  24159. weight: math.unit(200, "grams"),
  24160. name: "Side",
  24161. image: {
  24162. source: "./media/characters/der/side.svg",
  24163. extra: 719 / 400,
  24164. bottom: 30.6 / 749.9187
  24165. }
  24166. },
  24167. },
  24168. [
  24169. {
  24170. name: "Micro",
  24171. height: math.unit(4, "inches"),
  24172. default: true
  24173. },
  24174. ]
  24175. ))
  24176. characterMakers.push(() => makeCharacter(
  24177. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  24178. {
  24179. side: {
  24180. height: math.unit(30, "meters"),
  24181. weight: math.unit(700, "tonnes"),
  24182. name: "Side",
  24183. image: {
  24184. source: "./media/characters/fixerdragon/side.svg",
  24185. extra: (1293.0514 - 116.03) / 1106.86,
  24186. bottom: 116.03 / 1293.0514
  24187. }
  24188. },
  24189. },
  24190. [
  24191. {
  24192. name: "Planck",
  24193. height: math.unit(1.6e-35, "meters")
  24194. },
  24195. {
  24196. name: "Micro",
  24197. height: math.unit(0.4, "meters")
  24198. },
  24199. {
  24200. name: "Normal",
  24201. height: math.unit(30, "meters"),
  24202. default: true
  24203. },
  24204. {
  24205. name: "Megamacro",
  24206. height: math.unit(1.2, "megameters")
  24207. },
  24208. {
  24209. name: "Teramacro",
  24210. height: math.unit(130, "terameters")
  24211. },
  24212. {
  24213. name: "Yottamacro",
  24214. height: math.unit(6200, "yottameters")
  24215. },
  24216. ]
  24217. ));
  24218. characterMakers.push(() => makeCharacter(
  24219. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  24220. {
  24221. front: {
  24222. height: math.unit(8, "feet"),
  24223. weight: math.unit(250, "lb"),
  24224. name: "Front",
  24225. image: {
  24226. source: "./media/characters/kite/front.svg",
  24227. extra: 2796 / 2659,
  24228. bottom: 0.002
  24229. }
  24230. },
  24231. },
  24232. [
  24233. {
  24234. name: "Normal",
  24235. height: math.unit(8, "feet"),
  24236. default: true
  24237. },
  24238. {
  24239. name: "Macro",
  24240. height: math.unit(360, "feet")
  24241. },
  24242. {
  24243. name: "Megamacro",
  24244. height: math.unit(1500, "feet")
  24245. },
  24246. ]
  24247. ))
  24248. characterMakers.push(() => makeCharacter(
  24249. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  24250. {
  24251. anthro_front: {
  24252. height: math.unit(5 + 11/12, "feet"),
  24253. weight: math.unit(170, "lb"),
  24254. name: "Front",
  24255. image: {
  24256. source: "./media/characters/poojawa-vynar/anthro-front.svg",
  24257. extra: 1735/1585,
  24258. bottom: 96/1831
  24259. },
  24260. form: "anthro",
  24261. default: true
  24262. },
  24263. anthro_back: {
  24264. height: math.unit(5 + 11/12, "feet"),
  24265. weight: math.unit(170, "lb"),
  24266. name: "Back",
  24267. image: {
  24268. source: "./media/characters/poojawa-vynar/anthro-back.svg",
  24269. extra: 1749/1607,
  24270. bottom: 28/1777
  24271. },
  24272. form: "anthro"
  24273. },
  24274. anthro_male: {
  24275. height: math.unit(5 + 11/12, "feet"),
  24276. weight: math.unit(170, "lb"),
  24277. name: "Male",
  24278. image: {
  24279. source: "./media/characters/poojawa-vynar/anthro-front-male.svg",
  24280. extra: 1855/1713,
  24281. bottom: 63/1918
  24282. },
  24283. form: "anthro"
  24284. },
  24285. taur_front: {
  24286. height: math.unit(5 + 7/12, "feet"),
  24287. weight: math.unit(170, "lb"),
  24288. name: "Front",
  24289. image: {
  24290. source: "./media/characters/poojawa-vynar/taur-front.svg",
  24291. extra: 1151/1059,
  24292. bottom: 356/1507
  24293. },
  24294. form: "taur",
  24295. default: true
  24296. },
  24297. anthro_frontDressed: {
  24298. height: math.unit(5 + 11/12, "feet"),
  24299. weight: math.unit(170, "lb"),
  24300. name: "Front (Dressed)",
  24301. image: {
  24302. source: "./media/characters/poojawa-vynar/anthro-front-dressed.svg",
  24303. extra: 1735/1585,
  24304. bottom: 96/1831
  24305. },
  24306. form: "anthro"
  24307. },
  24308. anthro_backDressed: {
  24309. height: math.unit(5 + 11/12, "feet"),
  24310. weight: math.unit(170, "lb"),
  24311. name: "Back (Dressed)",
  24312. image: {
  24313. source: "./media/characters/poojawa-vynar/anthro-back-dressed.svg",
  24314. extra: 1749/1607,
  24315. bottom: 28/1777
  24316. },
  24317. form: "anthro"
  24318. },
  24319. anthro_maleDressed: {
  24320. height: math.unit(5 + 11/12, "feet"),
  24321. weight: math.unit(170, "lb"),
  24322. name: "Male (Dressed)",
  24323. image: {
  24324. source: "./media/characters/poojawa-vynar/anthro-front-male-dressed.svg",
  24325. extra: 1855/1713,
  24326. bottom: 63/1918
  24327. },
  24328. form: "anthro"
  24329. },
  24330. taur_frontDressed: {
  24331. height: math.unit(5 + 7/12, "feet"),
  24332. weight: math.unit(170, "lb"),
  24333. name: "Front (Dressed)",
  24334. image: {
  24335. source: "./media/characters/poojawa-vynar/taur-front-dressed.svg",
  24336. extra: 1151/1059,
  24337. bottom: 356/1507
  24338. },
  24339. form: "taur"
  24340. },
  24341. maw: {
  24342. height: math.unit(1.46, "feet"),
  24343. name: "Maw",
  24344. image: {
  24345. source: "./media/characters/poojawa-vynar/maw.svg"
  24346. },
  24347. allForms: true
  24348. },
  24349. head: {
  24350. height: math.unit(2.34, "feet"),
  24351. name: "Head",
  24352. image: {
  24353. source: "./media/characters/poojawa-vynar/head.svg"
  24354. },
  24355. allForms: true
  24356. },
  24357. leftPaw: {
  24358. height: math.unit(1.72, "feet"),
  24359. name: "Left Paw",
  24360. image: {
  24361. source: "./media/characters/poojawa-vynar/paw-left.svg"
  24362. },
  24363. allForms: true
  24364. },
  24365. rightPaw: {
  24366. height: math.unit(1.61, "feet"),
  24367. name: "Right Paw",
  24368. image: {
  24369. source: "./media/characters/poojawa-vynar/paw-right.svg"
  24370. },
  24371. allForms: true
  24372. },
  24373. toering: {
  24374. height: math.unit(2.9, "inches"),
  24375. name: "Toering",
  24376. image: {
  24377. source: "./media/characters/poojawa-vynar/toering.svg"
  24378. },
  24379. allForms: true
  24380. },
  24381. shaft: {
  24382. height: math.unit(0.625, "feet"),
  24383. name: "Shaft",
  24384. image: {
  24385. source: "./media/characters/poojawa-vynar/shaft.svg"
  24386. },
  24387. allForms: true
  24388. },
  24389. spade: {
  24390. height: math.unit(0.42, "feet"),
  24391. name: "Spade",
  24392. image: {
  24393. source: "./media/characters/poojawa-vynar/spade.svg"
  24394. },
  24395. allForms: true
  24396. },
  24397. },
  24398. [
  24399. {
  24400. name: "Shortstack",
  24401. height: math.unit(4, "feet"),
  24402. form: "anthro"
  24403. },
  24404. {
  24405. name: "Normal",
  24406. height: math.unit(5 + 11 / 12, "feet"),
  24407. form: "anthro",
  24408. default: true
  24409. },
  24410. {
  24411. name: "Tauric",
  24412. height: math.unit(4, "meters"),
  24413. form: "taur",
  24414. default: true
  24415. },
  24416. ],
  24417. {
  24418. "anthro": {
  24419. name: "Anthro",
  24420. default: true
  24421. },
  24422. "taur": {
  24423. name: "Taur",
  24424. },
  24425. }
  24426. ))
  24427. characterMakers.push(() => makeCharacter(
  24428. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  24429. {
  24430. front: {
  24431. height: math.unit(293, "meters"),
  24432. weight: math.unit(70400, "tons"),
  24433. name: "Front",
  24434. image: {
  24435. source: "./media/characters/violette/front.svg",
  24436. extra: 1227 / 1180,
  24437. bottom: 0.005
  24438. }
  24439. },
  24440. back: {
  24441. height: math.unit(293, "meters"),
  24442. weight: math.unit(70400, "tons"),
  24443. name: "Back",
  24444. image: {
  24445. source: "./media/characters/violette/back.svg",
  24446. extra: 1227 / 1180,
  24447. bottom: 0.005
  24448. }
  24449. },
  24450. },
  24451. [
  24452. {
  24453. name: "Macro",
  24454. height: math.unit(293, "meters"),
  24455. default: true
  24456. },
  24457. ]
  24458. ))
  24459. characterMakers.push(() => makeCharacter(
  24460. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  24461. {
  24462. front: {
  24463. height: math.unit(1050, "feet"),
  24464. weight: math.unit(200000, "tons"),
  24465. name: "Front",
  24466. image: {
  24467. source: "./media/characters/alessandra/front.svg",
  24468. extra: 960 / 912,
  24469. bottom: 0.06
  24470. }
  24471. },
  24472. },
  24473. [
  24474. {
  24475. name: "Macro",
  24476. height: math.unit(1050, "feet")
  24477. },
  24478. {
  24479. name: "Macro+",
  24480. height: math.unit(900, "meters"),
  24481. default: true
  24482. },
  24483. ]
  24484. ))
  24485. characterMakers.push(() => makeCharacter(
  24486. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  24487. {
  24488. front: {
  24489. height: math.unit(5, "feet"),
  24490. weight: math.unit(187, "lb"),
  24491. name: "Front",
  24492. image: {
  24493. source: "./media/characters/person/front.svg",
  24494. extra: 3087 / 2945,
  24495. bottom: 91 / 3181
  24496. }
  24497. },
  24498. },
  24499. [
  24500. {
  24501. name: "Micro",
  24502. height: math.unit(3, "inches")
  24503. },
  24504. {
  24505. name: "Normal",
  24506. height: math.unit(5, "feet"),
  24507. default: true
  24508. },
  24509. {
  24510. name: "Macro",
  24511. height: math.unit(90, "feet")
  24512. },
  24513. {
  24514. name: "Max Size",
  24515. height: math.unit(280, "feet")
  24516. },
  24517. ]
  24518. ))
  24519. characterMakers.push(() => makeCharacter(
  24520. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  24521. {
  24522. front: {
  24523. height: math.unit(4.5, "meters"),
  24524. weight: math.unit(3200, "lb"),
  24525. name: "Front",
  24526. image: {
  24527. source: "./media/characters/ty/front.svg",
  24528. extra: 1038 / 960,
  24529. bottom: 31.156 / 1068
  24530. }
  24531. },
  24532. back: {
  24533. height: math.unit(4.5, "meters"),
  24534. weight: math.unit(3200, "lb"),
  24535. name: "Back",
  24536. image: {
  24537. source: "./media/characters/ty/back.svg",
  24538. extra: 1044 / 966,
  24539. bottom: 7.48 / 1049
  24540. }
  24541. },
  24542. },
  24543. [
  24544. {
  24545. name: "Normal",
  24546. height: math.unit(4.5, "meters"),
  24547. default: true
  24548. },
  24549. ]
  24550. ))
  24551. characterMakers.push(() => makeCharacter(
  24552. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  24553. {
  24554. front: {
  24555. height: math.unit(5 + 4 / 12, "feet"),
  24556. weight: math.unit(115, "lb"),
  24557. name: "Front",
  24558. image: {
  24559. source: "./media/characters/rocky/front.svg",
  24560. extra: 1012 / 975,
  24561. bottom: 54 / 1066
  24562. }
  24563. },
  24564. },
  24565. [
  24566. {
  24567. name: "Normal",
  24568. height: math.unit(5 + 4 / 12, "feet"),
  24569. default: true
  24570. },
  24571. ]
  24572. ))
  24573. characterMakers.push(() => makeCharacter(
  24574. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  24575. {
  24576. upright: {
  24577. height: math.unit(6, "meters"),
  24578. weight: math.unit(4000, "kg"),
  24579. name: "Upright",
  24580. image: {
  24581. source: "./media/characters/ruin/upright.svg",
  24582. extra: 668 / 661,
  24583. bottom: 42 / 799.8396
  24584. }
  24585. },
  24586. },
  24587. [
  24588. {
  24589. name: "Normal",
  24590. height: math.unit(6, "meters"),
  24591. default: true
  24592. },
  24593. ]
  24594. ))
  24595. characterMakers.push(() => makeCharacter(
  24596. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24597. {
  24598. front: {
  24599. height: math.unit(5, "feet"),
  24600. weight: math.unit(106, "lb"),
  24601. name: "Front",
  24602. image: {
  24603. source: "./media/characters/robin/front.svg",
  24604. extra: 862 / 799,
  24605. bottom: 42.4 / 914.8856
  24606. }
  24607. },
  24608. },
  24609. [
  24610. {
  24611. name: "Normal",
  24612. height: math.unit(5, "feet"),
  24613. default: true
  24614. },
  24615. ]
  24616. ))
  24617. characterMakers.push(() => makeCharacter(
  24618. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24619. {
  24620. side: {
  24621. height: math.unit(3, "feet"),
  24622. weight: math.unit(225, "lb"),
  24623. name: "Side",
  24624. image: {
  24625. source: "./media/characters/saian/side.svg",
  24626. extra: 566 / 356,
  24627. bottom: 79.7 / 643
  24628. }
  24629. },
  24630. maw: {
  24631. height: math.unit(2.85, "feet"),
  24632. name: "Maw",
  24633. image: {
  24634. source: "./media/characters/saian/maw.svg"
  24635. }
  24636. },
  24637. },
  24638. [
  24639. {
  24640. name: "Normal",
  24641. height: math.unit(3, "feet"),
  24642. default: true
  24643. },
  24644. ]
  24645. ))
  24646. characterMakers.push(() => makeCharacter(
  24647. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24648. {
  24649. side: {
  24650. height: math.unit(8, "feet"),
  24651. weight: math.unit(300, "lb"),
  24652. name: "Side",
  24653. image: {
  24654. source: "./media/characters/equus-silvermane/side.svg",
  24655. extra: 2176 / 2050,
  24656. bottom: 65.7 / 2245
  24657. }
  24658. },
  24659. front: {
  24660. height: math.unit(8, "feet"),
  24661. weight: math.unit(300, "lb"),
  24662. name: "Front",
  24663. image: {
  24664. source: "./media/characters/equus-silvermane/front.svg",
  24665. extra: 4633 / 4400,
  24666. bottom: 71.3 / 4706.915
  24667. }
  24668. },
  24669. sideStepping: {
  24670. height: math.unit(8, "feet"),
  24671. weight: math.unit(300, "lb"),
  24672. name: "Side (Stepping)",
  24673. image: {
  24674. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24675. extra: 1968 / 1860,
  24676. bottom: 16.4 / 1989
  24677. }
  24678. },
  24679. },
  24680. [
  24681. {
  24682. name: "Normal",
  24683. height: math.unit(8, "feet")
  24684. },
  24685. {
  24686. name: "Minimacro",
  24687. height: math.unit(75, "feet"),
  24688. default: true
  24689. },
  24690. {
  24691. name: "Macro",
  24692. height: math.unit(150, "feet")
  24693. },
  24694. {
  24695. name: "Macro+",
  24696. height: math.unit(1000, "feet")
  24697. },
  24698. {
  24699. name: "Megamacro",
  24700. height: math.unit(1, "mile")
  24701. },
  24702. ]
  24703. ))
  24704. characterMakers.push(() => makeCharacter(
  24705. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24706. {
  24707. side: {
  24708. height: math.unit(20, "feet"),
  24709. weight: math.unit(30000, "kg"),
  24710. name: "Side",
  24711. image: {
  24712. source: "./media/characters/windar/side.svg",
  24713. extra: 1491 / 1248,
  24714. bottom: 82.56 / 1568
  24715. }
  24716. },
  24717. },
  24718. [
  24719. {
  24720. name: "Normal",
  24721. height: math.unit(20, "feet"),
  24722. default: true
  24723. },
  24724. ]
  24725. ))
  24726. characterMakers.push(() => makeCharacter(
  24727. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24728. {
  24729. side: {
  24730. height: math.unit(15.66, "feet"),
  24731. weight: math.unit(150, "lb"),
  24732. name: "Side",
  24733. image: {
  24734. source: "./media/characters/melody/side.svg",
  24735. extra: 1097 / 944,
  24736. bottom: 11.8 / 1109
  24737. }
  24738. },
  24739. sideOutfit: {
  24740. height: math.unit(15.66, "feet"),
  24741. weight: math.unit(150, "lb"),
  24742. name: "Side (Outfit)",
  24743. image: {
  24744. source: "./media/characters/melody/side-outfit.svg",
  24745. extra: 1097 / 944,
  24746. bottom: 11.8 / 1109
  24747. }
  24748. },
  24749. },
  24750. [
  24751. {
  24752. name: "Normal",
  24753. height: math.unit(15.66, "feet"),
  24754. default: true
  24755. },
  24756. ]
  24757. ))
  24758. characterMakers.push(() => makeCharacter(
  24759. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24760. {
  24761. armoredFront: {
  24762. height: math.unit(8, "feet"),
  24763. weight: math.unit(325, "lb"),
  24764. name: "Front",
  24765. image: {
  24766. source: "./media/characters/windera/armored-front.svg",
  24767. extra: 1830/1598,
  24768. bottom: 151/1981
  24769. },
  24770. form: "armored",
  24771. default: true
  24772. },
  24773. macroFront: {
  24774. height: math.unit(70, "feet"),
  24775. weight: math.unit(315453, "lb"),
  24776. name: "Front",
  24777. image: {
  24778. source: "./media/characters/windera/macro-front.svg",
  24779. extra: 963/883,
  24780. bottom: 23/986
  24781. },
  24782. form: "macro",
  24783. default: true
  24784. },
  24785. },
  24786. [
  24787. {
  24788. name: "Normal",
  24789. height: math.unit(8, "feet"),
  24790. default: true,
  24791. form: "armored"
  24792. },
  24793. {
  24794. name: "Normal",
  24795. height: math.unit(70, "feet"),
  24796. default: true,
  24797. form: "macro"
  24798. },
  24799. ],
  24800. {
  24801. "armored": {
  24802. name: "Armored",
  24803. default: true
  24804. },
  24805. "macro": {
  24806. name: "Macro",
  24807. },
  24808. }
  24809. ))
  24810. characterMakers.push(() => makeCharacter(
  24811. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24812. {
  24813. front: {
  24814. height: math.unit(28.75, "feet"),
  24815. weight: math.unit(2000, "kg"),
  24816. name: "Front",
  24817. image: {
  24818. source: "./media/characters/sonear/front.svg",
  24819. extra: 1041.1 / 964.9,
  24820. bottom: 53.7 / 1096.6
  24821. }
  24822. },
  24823. },
  24824. [
  24825. {
  24826. name: "Normal",
  24827. height: math.unit(28.75, "feet"),
  24828. default: true
  24829. },
  24830. ]
  24831. ))
  24832. characterMakers.push(() => makeCharacter(
  24833. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24834. {
  24835. side: {
  24836. height: math.unit(25.5, "feet"),
  24837. weight: math.unit(23000, "kg"),
  24838. name: "Side",
  24839. image: {
  24840. source: "./media/characters/kanara/side.svg"
  24841. }
  24842. },
  24843. },
  24844. [
  24845. {
  24846. name: "Normal",
  24847. height: math.unit(25.5, "feet"),
  24848. default: true
  24849. },
  24850. ]
  24851. ))
  24852. characterMakers.push(() => makeCharacter(
  24853. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24854. {
  24855. side: {
  24856. height: math.unit(10, "feet"),
  24857. weight: math.unit(1000, "kg"),
  24858. name: "Side",
  24859. image: {
  24860. source: "./media/characters/ereus/side.svg",
  24861. extra: 1157 / 959,
  24862. bottom: 153 / 1312.5
  24863. }
  24864. },
  24865. },
  24866. [
  24867. {
  24868. name: "Normal",
  24869. height: math.unit(10, "feet"),
  24870. default: true
  24871. },
  24872. ]
  24873. ))
  24874. characterMakers.push(() => makeCharacter(
  24875. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24876. {
  24877. side: {
  24878. height: math.unit(4.5, "feet"),
  24879. weight: math.unit(500, "lb"),
  24880. name: "Side",
  24881. image: {
  24882. source: "./media/characters/e-ter/side.svg",
  24883. extra: 1550 / 1248,
  24884. bottom: 146 / 1694
  24885. }
  24886. },
  24887. },
  24888. [
  24889. {
  24890. name: "Normal",
  24891. height: math.unit(4.5, "feet"),
  24892. default: true
  24893. },
  24894. ]
  24895. ))
  24896. characterMakers.push(() => makeCharacter(
  24897. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24898. {
  24899. side: {
  24900. height: math.unit(9.7, "feet"),
  24901. weight: math.unit(4000, "kg"),
  24902. name: "Side",
  24903. image: {
  24904. source: "./media/characters/yamie/side.svg"
  24905. }
  24906. },
  24907. },
  24908. [
  24909. {
  24910. name: "Normal",
  24911. height: math.unit(9.7, "feet"),
  24912. default: true
  24913. },
  24914. ]
  24915. ))
  24916. characterMakers.push(() => makeCharacter(
  24917. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24918. {
  24919. front: {
  24920. height: math.unit(50, "feet"),
  24921. weight: math.unit(50000, "kg"),
  24922. name: "Front",
  24923. image: {
  24924. source: "./media/characters/anders/front.svg",
  24925. extra: 570 / 539,
  24926. bottom: 14.7 / 586.7
  24927. }
  24928. },
  24929. },
  24930. [
  24931. {
  24932. name: "Large",
  24933. height: math.unit(50, "feet")
  24934. },
  24935. {
  24936. name: "Macro",
  24937. height: math.unit(2000, "feet"),
  24938. default: true
  24939. },
  24940. {
  24941. name: "Megamacro",
  24942. height: math.unit(12, "miles")
  24943. },
  24944. ]
  24945. ))
  24946. characterMakers.push(() => makeCharacter(
  24947. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24948. {
  24949. front: {
  24950. height: math.unit(7 + 2 / 12, "feet"),
  24951. weight: math.unit(300, "lb"),
  24952. name: "Front",
  24953. image: {
  24954. source: "./media/characters/reban/front.svg",
  24955. extra: 1287/1212,
  24956. bottom: 148/1435
  24957. }
  24958. },
  24959. head: {
  24960. height: math.unit(1.95, "feet"),
  24961. name: "Head",
  24962. image: {
  24963. source: "./media/characters/reban/head.svg"
  24964. }
  24965. },
  24966. maw: {
  24967. height: math.unit(0.95, "feet"),
  24968. name: "Maw",
  24969. image: {
  24970. source: "./media/characters/reban/maw.svg"
  24971. }
  24972. },
  24973. foot: {
  24974. height: math.unit(1.65, "feet"),
  24975. name: "Foot",
  24976. image: {
  24977. source: "./media/characters/reban/foot.svg"
  24978. }
  24979. },
  24980. dick: {
  24981. height: math.unit(7 / 5, "feet"),
  24982. name: "Dick",
  24983. image: {
  24984. source: "./media/characters/reban/dick.svg"
  24985. }
  24986. },
  24987. },
  24988. [
  24989. {
  24990. name: "Natural Height",
  24991. height: math.unit(7 + 2 / 12, "feet")
  24992. },
  24993. {
  24994. name: "Macro",
  24995. height: math.unit(500, "feet"),
  24996. default: true
  24997. },
  24998. {
  24999. name: "Canon Height",
  25000. height: math.unit(50, "AU")
  25001. },
  25002. ]
  25003. ))
  25004. characterMakers.push(() => makeCharacter(
  25005. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  25006. {
  25007. front: {
  25008. height: math.unit(6, "feet"),
  25009. weight: math.unit(150, "lb"),
  25010. name: "Front",
  25011. image: {
  25012. source: "./media/characters/terrance-keayes/front.svg",
  25013. extra: 1.005,
  25014. bottom: 151 / 1615
  25015. }
  25016. },
  25017. side: {
  25018. height: math.unit(6, "feet"),
  25019. weight: math.unit(150, "lb"),
  25020. name: "Side",
  25021. image: {
  25022. source: "./media/characters/terrance-keayes/side.svg",
  25023. extra: 1.005,
  25024. bottom: 129.4 / 1544
  25025. }
  25026. },
  25027. back: {
  25028. height: math.unit(6, "feet"),
  25029. weight: math.unit(150, "lb"),
  25030. name: "Back",
  25031. image: {
  25032. source: "./media/characters/terrance-keayes/back.svg",
  25033. extra: 1.005,
  25034. bottom: 58.4 / 1557.3
  25035. }
  25036. },
  25037. dick: {
  25038. height: math.unit(6 * 0.208, "feet"),
  25039. name: "Dick",
  25040. image: {
  25041. source: "./media/characters/terrance-keayes/dick.svg"
  25042. }
  25043. },
  25044. },
  25045. [
  25046. {
  25047. name: "Canon Height",
  25048. height: math.unit(35, "miles"),
  25049. default: true
  25050. },
  25051. ]
  25052. ))
  25053. characterMakers.push(() => makeCharacter(
  25054. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  25055. {
  25056. front: {
  25057. height: math.unit(6, "feet"),
  25058. weight: math.unit(150, "lb"),
  25059. name: "Front",
  25060. image: {
  25061. source: "./media/characters/ofelia/front.svg",
  25062. extra: 1130/1117,
  25063. bottom: 91/1221
  25064. }
  25065. },
  25066. back: {
  25067. height: math.unit(6, "feet"),
  25068. weight: math.unit(150, "lb"),
  25069. name: "Back",
  25070. image: {
  25071. source: "./media/characters/ofelia/back.svg",
  25072. extra: 1172/1159,
  25073. bottom: 28/1200
  25074. }
  25075. },
  25076. maw: {
  25077. height: math.unit(1, "feet"),
  25078. name: "Maw",
  25079. image: {
  25080. source: "./media/characters/ofelia/maw.svg"
  25081. }
  25082. },
  25083. foot: {
  25084. height: math.unit(1.949, "feet"),
  25085. name: "Foot",
  25086. image: {
  25087. source: "./media/characters/ofelia/foot.svg"
  25088. }
  25089. },
  25090. },
  25091. [
  25092. {
  25093. name: "Canon Height",
  25094. height: math.unit(2000, "miles"),
  25095. default: true
  25096. },
  25097. ]
  25098. ))
  25099. characterMakers.push(() => makeCharacter(
  25100. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  25101. {
  25102. front: {
  25103. height: math.unit(6, "feet"),
  25104. weight: math.unit(150, "lb"),
  25105. name: "Front",
  25106. image: {
  25107. source: "./media/characters/samuel/front.svg",
  25108. extra: 265 / 258,
  25109. bottom: 2 / 266.1566
  25110. }
  25111. },
  25112. },
  25113. [
  25114. {
  25115. name: "Macro",
  25116. height: math.unit(100, "feet"),
  25117. default: true
  25118. },
  25119. {
  25120. name: "Full Size",
  25121. height: math.unit(1000, "miles")
  25122. },
  25123. ]
  25124. ))
  25125. characterMakers.push(() => makeCharacter(
  25126. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  25127. {
  25128. front: {
  25129. height: math.unit(6, "feet"),
  25130. weight: math.unit(300, "lb"),
  25131. name: "Front",
  25132. image: {
  25133. source: "./media/characters/beishir-kiel/front.svg",
  25134. extra: 569 / 547,
  25135. bottom: 41.9 / 609
  25136. }
  25137. },
  25138. maw: {
  25139. height: math.unit(6 * 0.202, "feet"),
  25140. name: "Maw",
  25141. image: {
  25142. source: "./media/characters/beishir-kiel/maw.svg"
  25143. }
  25144. },
  25145. },
  25146. [
  25147. {
  25148. name: "Macro",
  25149. height: math.unit(300, "feet"),
  25150. default: true
  25151. },
  25152. ]
  25153. ))
  25154. characterMakers.push(() => makeCharacter(
  25155. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  25156. {
  25157. front: {
  25158. height: math.unit(5 + 7/12, "feet"),
  25159. weight: math.unit(120, "lb"),
  25160. name: "Front",
  25161. image: {
  25162. source: "./media/characters/logan-grey/front.svg",
  25163. extra: 1836/1738,
  25164. bottom: 108/1944
  25165. }
  25166. },
  25167. back: {
  25168. height: math.unit(5 + 7/12, "feet"),
  25169. weight: math.unit(120, "lb"),
  25170. name: "Back",
  25171. image: {
  25172. source: "./media/characters/logan-grey/back.svg",
  25173. extra: 1880/1794,
  25174. bottom: 24/1904
  25175. }
  25176. },
  25177. frontSfw: {
  25178. height: math.unit(5 + 7/12, "feet"),
  25179. weight: math.unit(120, "lb"),
  25180. name: "Front (SFW)",
  25181. image: {
  25182. source: "./media/characters/logan-grey/front-sfw.svg",
  25183. extra: 1836/1738,
  25184. bottom: 108/1944
  25185. }
  25186. },
  25187. backSfw: {
  25188. height: math.unit(5 + 7/12, "feet"),
  25189. weight: math.unit(120, "lb"),
  25190. name: "Back (SFW)",
  25191. image: {
  25192. source: "./media/characters/logan-grey/back-sfw.svg",
  25193. extra: 1880/1794,
  25194. bottom: 24/1904
  25195. }
  25196. },
  25197. hands: {
  25198. height: math.unit(0.84, "feet"),
  25199. name: "Hands",
  25200. image: {
  25201. source: "./media/characters/logan-grey/hands.svg"
  25202. }
  25203. },
  25204. paws: {
  25205. height: math.unit(0.72, "feet"),
  25206. name: "Paws",
  25207. image: {
  25208. source: "./media/characters/logan-grey/paws.svg"
  25209. }
  25210. },
  25211. cock: {
  25212. height: math.unit(1.45, "feet"),
  25213. name: "Cock",
  25214. image: {
  25215. source: "./media/characters/logan-grey/cock.svg"
  25216. }
  25217. },
  25218. cockAlt: {
  25219. height: math.unit(1.437, "feet"),
  25220. name: "Cock (alt)",
  25221. image: {
  25222. source: "./media/characters/logan-grey/cock-alt.svg"
  25223. }
  25224. },
  25225. },
  25226. [
  25227. {
  25228. name: "Normal",
  25229. height: math.unit(5 + 8 / 12, "feet")
  25230. },
  25231. {
  25232. name: "The 500 Foot Femboy",
  25233. height: math.unit(500, "feet"),
  25234. default: true
  25235. },
  25236. {
  25237. name: "Megmacro",
  25238. height: math.unit(20, "miles")
  25239. },
  25240. ]
  25241. ))
  25242. characterMakers.push(() => makeCharacter(
  25243. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  25244. {
  25245. front: {
  25246. height: math.unit(8 + 2 / 12, "feet"),
  25247. weight: math.unit(275, "lb"),
  25248. name: "Front",
  25249. image: {
  25250. source: "./media/characters/draganta/front.svg",
  25251. extra: 1177 / 1135,
  25252. bottom: 33.46 / 1212.1
  25253. }
  25254. },
  25255. },
  25256. [
  25257. {
  25258. name: "Normal",
  25259. height: math.unit(8 + 6 / 12, "feet"),
  25260. default: true
  25261. },
  25262. {
  25263. name: "Macro",
  25264. height: math.unit(150, "feet")
  25265. },
  25266. {
  25267. name: "Megamacro",
  25268. height: math.unit(1000, "miles")
  25269. },
  25270. ]
  25271. ))
  25272. characterMakers.push(() => makeCharacter(
  25273. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  25274. {
  25275. front: {
  25276. height: math.unit(1.72, "m"),
  25277. weight: math.unit(80, "lb"),
  25278. name: "Front",
  25279. image: {
  25280. source: "./media/characters/voski/front.svg",
  25281. extra: 2076.22 / 2022.4,
  25282. bottom: 102.7 / 2177.3866
  25283. }
  25284. },
  25285. frontFlaccid: {
  25286. height: math.unit(1.72, "m"),
  25287. weight: math.unit(80, "lb"),
  25288. name: "Front (Flaccid)",
  25289. image: {
  25290. source: "./media/characters/voski/front-flaccid.svg",
  25291. extra: 2076.22 / 2022.4,
  25292. bottom: 102.7 / 2177.3866
  25293. }
  25294. },
  25295. frontErect: {
  25296. height: math.unit(1.72, "m"),
  25297. weight: math.unit(80, "lb"),
  25298. name: "Front (Erect)",
  25299. image: {
  25300. source: "./media/characters/voski/front-erect.svg",
  25301. extra: 2076.22 / 2022.4,
  25302. bottom: 102.7 / 2177.3866
  25303. }
  25304. },
  25305. back: {
  25306. height: math.unit(1.72, "m"),
  25307. weight: math.unit(80, "lb"),
  25308. name: "Back",
  25309. image: {
  25310. source: "./media/characters/voski/back.svg",
  25311. extra: 2104 / 2051,
  25312. bottom: 10.45 / 2113.63
  25313. }
  25314. },
  25315. },
  25316. [
  25317. {
  25318. name: "Normal",
  25319. height: math.unit(1.72, "m")
  25320. },
  25321. {
  25322. name: "Macro",
  25323. height: math.unit(55, "m"),
  25324. default: true
  25325. },
  25326. {
  25327. name: "Macro+",
  25328. height: math.unit(300, "m")
  25329. },
  25330. {
  25331. name: "Macro++",
  25332. height: math.unit(700, "m")
  25333. },
  25334. {
  25335. name: "Macro+++",
  25336. height: math.unit(4500, "m")
  25337. },
  25338. {
  25339. name: "Macro++++",
  25340. height: math.unit(45, "km")
  25341. },
  25342. {
  25343. name: "Macro+++++",
  25344. height: math.unit(1220, "km")
  25345. },
  25346. ]
  25347. ))
  25348. characterMakers.push(() => makeCharacter(
  25349. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  25350. {
  25351. front: {
  25352. height: math.unit(2.3, "m"),
  25353. weight: math.unit(304, "kg"),
  25354. name: "Front",
  25355. image: {
  25356. source: "./media/characters/icowom-lee/front.svg",
  25357. extra: 985 / 955,
  25358. bottom: 25.4 / 1012
  25359. }
  25360. },
  25361. fronttentacles: {
  25362. height: math.unit(2.3, "m"),
  25363. weight: math.unit(304, "kg"),
  25364. name: "Front-tentacles",
  25365. image: {
  25366. source: "./media/characters/icowom-lee/front-tentacles.svg",
  25367. extra: 985 / 955,
  25368. bottom: 25.4 / 1012
  25369. }
  25370. },
  25371. back: {
  25372. height: math.unit(2.3, "m"),
  25373. weight: math.unit(304, "kg"),
  25374. name: "Back",
  25375. image: {
  25376. source: "./media/characters/icowom-lee/back.svg",
  25377. extra: 975 / 954,
  25378. bottom: 9.5 / 985
  25379. }
  25380. },
  25381. backtentacles: {
  25382. height: math.unit(2.3, "m"),
  25383. weight: math.unit(304, "kg"),
  25384. name: "Back-tentacles",
  25385. image: {
  25386. source: "./media/characters/icowom-lee/back-tentacles.svg",
  25387. extra: 975 / 954,
  25388. bottom: 9.5 / 985
  25389. }
  25390. },
  25391. frontDressed: {
  25392. height: math.unit(2.3, "m"),
  25393. weight: math.unit(304, "kg"),
  25394. name: "Front (Dressed)",
  25395. image: {
  25396. source: "./media/characters/icowom-lee/front-dressed.svg",
  25397. extra: 3076 / 2933,
  25398. bottom: 51.4 / 3125.1889
  25399. }
  25400. },
  25401. rump: {
  25402. height: math.unit(0.776, "meters"),
  25403. name: "Rump",
  25404. image: {
  25405. source: "./media/characters/icowom-lee/rump.svg"
  25406. }
  25407. },
  25408. genitals: {
  25409. height: math.unit(0.78, "meters"),
  25410. name: "Genitals",
  25411. image: {
  25412. source: "./media/characters/icowom-lee/genitals.svg"
  25413. }
  25414. },
  25415. },
  25416. [
  25417. {
  25418. name: "Normal",
  25419. height: math.unit(2.3, "meters"),
  25420. default: true
  25421. },
  25422. {
  25423. name: "Macro",
  25424. height: math.unit(94, "meters"),
  25425. default: true
  25426. },
  25427. ]
  25428. ))
  25429. characterMakers.push(() => makeCharacter(
  25430. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  25431. {
  25432. front: {
  25433. height: math.unit(22, "meters"),
  25434. weight: math.unit(21000, "kg"),
  25435. name: "Front",
  25436. image: {
  25437. source: "./media/characters/shock-diamond/front.svg",
  25438. extra: 2204 / 2053,
  25439. bottom: 65 / 2239.47
  25440. }
  25441. },
  25442. frontNude: {
  25443. height: math.unit(22, "meters"),
  25444. weight: math.unit(21000, "kg"),
  25445. name: "Front (Nude)",
  25446. image: {
  25447. source: "./media/characters/shock-diamond/front-nude.svg",
  25448. extra: 2514 / 2285,
  25449. bottom: 13 / 2527.56
  25450. }
  25451. },
  25452. },
  25453. [
  25454. {
  25455. name: "Normal",
  25456. height: math.unit(3, "meters")
  25457. },
  25458. {
  25459. name: "Macro",
  25460. height: math.unit(22, "meters"),
  25461. default: true
  25462. },
  25463. ]
  25464. ))
  25465. characterMakers.push(() => makeCharacter(
  25466. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  25467. {
  25468. front: {
  25469. height: math.unit(5 + 4/12, "feet"),
  25470. weight: math.unit(125, "lb"),
  25471. name: "Front",
  25472. image: {
  25473. source: "./media/characters/rory/front.svg",
  25474. extra: 1790/1681,
  25475. bottom: 66/1856
  25476. },
  25477. form: "normal",
  25478. default: true
  25479. },
  25480. back: {
  25481. height: math.unit(5 + 4/12, "feet"),
  25482. weight: math.unit(125, "lb"),
  25483. name: "Back",
  25484. image: {
  25485. source: "./media/characters/rory/back.svg",
  25486. extra: 1805/1690,
  25487. bottom: 56/1861
  25488. },
  25489. form: "normal"
  25490. },
  25491. frontDressed: {
  25492. height: math.unit(5 + 4/12, "feet"),
  25493. weight: math.unit(125, "lb"),
  25494. name: "Front (Dressed)",
  25495. image: {
  25496. source: "./media/characters/rory/front-dressed.svg",
  25497. extra: 1790/1681,
  25498. bottom: 66/1856
  25499. },
  25500. form: "normal"
  25501. },
  25502. backDressed: {
  25503. height: math.unit(5 + 4/12, "feet"),
  25504. weight: math.unit(125, "lb"),
  25505. name: "Back (Dressed)",
  25506. image: {
  25507. source: "./media/characters/rory/back-dressed.svg",
  25508. extra: 1805/1690,
  25509. bottom: 56/1861
  25510. },
  25511. form: "normal"
  25512. },
  25513. frontNsfw: {
  25514. height: math.unit(5 + 4/12, "feet"),
  25515. weight: math.unit(125, "lb"),
  25516. name: "Front (NSFW)",
  25517. image: {
  25518. source: "./media/characters/rory/front-nsfw.svg",
  25519. extra: 1790/1681,
  25520. bottom: 66/1856
  25521. },
  25522. form: "normal"
  25523. },
  25524. backNsfw: {
  25525. height: math.unit(5 + 4/12, "feet"),
  25526. weight: math.unit(125, "lb"),
  25527. name: "Back (NSFW)",
  25528. image: {
  25529. source: "./media/characters/rory/back-nsfw.svg",
  25530. extra: 1805/1690,
  25531. bottom: 56/1861
  25532. },
  25533. form: "normal"
  25534. },
  25535. dick: {
  25536. height: math.unit(0.8, "feet"),
  25537. name: "Dick",
  25538. image: {
  25539. source: "./media/characters/rory/dick.svg"
  25540. },
  25541. form: "normal"
  25542. },
  25543. thicc_front: {
  25544. height: math.unit(5 + 4/12, "feet"),
  25545. weight: math.unit(195, "lb"),
  25546. name: "Front",
  25547. image: {
  25548. source: "./media/characters/rory/thicc-front.svg",
  25549. extra: 1220/1100,
  25550. bottom: 103/1323
  25551. },
  25552. form: "thicc",
  25553. default: true
  25554. },
  25555. thicc_back: {
  25556. height: math.unit(5 + 4/12, "feet"),
  25557. weight: math.unit(195, "lb"),
  25558. name: "Back",
  25559. image: {
  25560. source: "./media/characters/rory/thicc-back.svg",
  25561. extra: 1166/1086,
  25562. bottom: 35/1201
  25563. },
  25564. form: "thicc"
  25565. },
  25566. },
  25567. [
  25568. {
  25569. name: "Micro",
  25570. height: math.unit(3, "inches"),
  25571. allForms: true
  25572. },
  25573. {
  25574. name: "Normal",
  25575. height: math.unit(5 + 4/12, "feet"),
  25576. allForms: true,
  25577. default: true
  25578. },
  25579. {
  25580. name: "Macro",
  25581. height: math.unit(90, "feet"),
  25582. allForms: true
  25583. },
  25584. {
  25585. name: "Supercharged",
  25586. height: math.unit(270, "feet"),
  25587. allForms: true
  25588. },
  25589. ],
  25590. {
  25591. "normal": {
  25592. name: "Normal",
  25593. default: true
  25594. },
  25595. "thicc": {
  25596. name: "Thicc",
  25597. },
  25598. }
  25599. ))
  25600. characterMakers.push(() => makeCharacter(
  25601. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25602. {
  25603. front: {
  25604. height: math.unit(5 + 9 / 12, "feet"),
  25605. weight: math.unit(190, "lb"),
  25606. name: "Front",
  25607. image: {
  25608. source: "./media/characters/sprisk/front.svg",
  25609. extra: 1225 / 1180,
  25610. bottom: 42.7 / 1266.4
  25611. }
  25612. },
  25613. frontNsfw: {
  25614. height: math.unit(5 + 9 / 12, "feet"),
  25615. weight: math.unit(190, "lb"),
  25616. name: "Front (NSFW)",
  25617. image: {
  25618. source: "./media/characters/sprisk/front-nsfw.svg",
  25619. extra: 1225 / 1180,
  25620. bottom: 42.7 / 1266.4
  25621. }
  25622. },
  25623. back: {
  25624. height: math.unit(5 + 9 / 12, "feet"),
  25625. weight: math.unit(190, "lb"),
  25626. name: "Back",
  25627. image: {
  25628. source: "./media/characters/sprisk/back.svg",
  25629. extra: 1247 / 1200,
  25630. bottom: 5.6 / 1253.04
  25631. }
  25632. },
  25633. },
  25634. [
  25635. {
  25636. name: "Tiny",
  25637. height: math.unit(2, "inches")
  25638. },
  25639. {
  25640. name: "Normal",
  25641. height: math.unit(5 + 9 / 12, "feet"),
  25642. default: true
  25643. },
  25644. {
  25645. name: "Mini Macro",
  25646. height: math.unit(18, "feet")
  25647. },
  25648. {
  25649. name: "Macro",
  25650. height: math.unit(100, "feet")
  25651. },
  25652. {
  25653. name: "MACRO",
  25654. height: math.unit(50, "miles")
  25655. },
  25656. {
  25657. name: "M A C R O",
  25658. height: math.unit(300, "miles")
  25659. },
  25660. ]
  25661. ))
  25662. characterMakers.push(() => makeCharacter(
  25663. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25664. {
  25665. side: {
  25666. height: math.unit(15.6, "meters"),
  25667. weight: math.unit(700000, "kg"),
  25668. name: "Side",
  25669. image: {
  25670. source: "./media/characters/bunsen/side.svg",
  25671. extra: 1644 / 358
  25672. }
  25673. },
  25674. foot: {
  25675. height: math.unit(1.611 * 1644 / 358, "meter"),
  25676. name: "Foot",
  25677. image: {
  25678. source: "./media/characters/bunsen/foot.svg"
  25679. }
  25680. },
  25681. },
  25682. [
  25683. {
  25684. name: "Small",
  25685. height: math.unit(10, "feet")
  25686. },
  25687. {
  25688. name: "Normal",
  25689. height: math.unit(15.6, "meters"),
  25690. default: true
  25691. },
  25692. ]
  25693. ))
  25694. characterMakers.push(() => makeCharacter(
  25695. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25696. {
  25697. front: {
  25698. height: math.unit(4 + 11 / 12, "feet"),
  25699. weight: math.unit(140, "lb"),
  25700. name: "Front",
  25701. image: {
  25702. source: "./media/characters/sesh/front.svg",
  25703. extra: 3420 / 3231,
  25704. bottom: 72 / 3949.5
  25705. }
  25706. },
  25707. },
  25708. [
  25709. {
  25710. name: "Normal",
  25711. height: math.unit(4 + 11 / 12, "feet")
  25712. },
  25713. {
  25714. name: "Grown",
  25715. height: math.unit(15, "feet"),
  25716. default: true
  25717. },
  25718. {
  25719. name: "Macro",
  25720. height: math.unit(1500, "feet")
  25721. },
  25722. {
  25723. name: "Megamacro",
  25724. height: math.unit(30, "miles")
  25725. },
  25726. {
  25727. name: "Continental",
  25728. height: math.unit(3000, "miles")
  25729. },
  25730. {
  25731. name: "Gravity Mass",
  25732. height: math.unit(300000, "miles")
  25733. },
  25734. {
  25735. name: "Planet Buster",
  25736. height: math.unit(30000000, "miles")
  25737. },
  25738. {
  25739. name: "Big",
  25740. height: math.unit(3000000000, "miles")
  25741. },
  25742. ]
  25743. ))
  25744. characterMakers.push(() => makeCharacter(
  25745. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25746. {
  25747. front: {
  25748. height: math.unit(9, "feet"),
  25749. weight: math.unit(350, "lb"),
  25750. name: "Front",
  25751. image: {
  25752. source: "./media/characters/pepper/front.svg",
  25753. extra: 1448 / 1312,
  25754. bottom: 9.4 / 1457.88
  25755. }
  25756. },
  25757. back: {
  25758. height: math.unit(9, "feet"),
  25759. weight: math.unit(350, "lb"),
  25760. name: "Back",
  25761. image: {
  25762. source: "./media/characters/pepper/back.svg",
  25763. extra: 1423 / 1300,
  25764. bottom: 4.6 / 1429
  25765. }
  25766. },
  25767. maw: {
  25768. height: math.unit(0.932, "feet"),
  25769. name: "Maw",
  25770. image: {
  25771. source: "./media/characters/pepper/maw.svg"
  25772. }
  25773. },
  25774. },
  25775. [
  25776. {
  25777. name: "Normal",
  25778. height: math.unit(9, "feet"),
  25779. default: true
  25780. },
  25781. ]
  25782. ))
  25783. characterMakers.push(() => makeCharacter(
  25784. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25785. {
  25786. front: {
  25787. height: math.unit(6, "feet"),
  25788. weight: math.unit(150, "lb"),
  25789. name: "Front",
  25790. image: {
  25791. source: "./media/characters/maelstrom/front.svg",
  25792. extra: 2100 / 1883,
  25793. bottom: 94 / 2196.7
  25794. }
  25795. },
  25796. },
  25797. [
  25798. {
  25799. name: "Less Kaiju",
  25800. height: math.unit(200, "feet")
  25801. },
  25802. {
  25803. name: "Kaiju",
  25804. height: math.unit(400, "feet"),
  25805. default: true
  25806. },
  25807. {
  25808. name: "Kaiju-er",
  25809. height: math.unit(600, "feet")
  25810. },
  25811. ]
  25812. ))
  25813. characterMakers.push(() => makeCharacter(
  25814. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25815. {
  25816. front: {
  25817. height: math.unit(6 + 5 / 12, "feet"),
  25818. weight: math.unit(180, "lb"),
  25819. name: "Front",
  25820. image: {
  25821. source: "./media/characters/lexir/front.svg",
  25822. extra: 180 / 172,
  25823. bottom: 12 / 192
  25824. }
  25825. },
  25826. back: {
  25827. height: math.unit(6 + 5 / 12, "feet"),
  25828. weight: math.unit(180, "lb"),
  25829. name: "Back",
  25830. image: {
  25831. source: "./media/characters/lexir/back.svg",
  25832. extra: 1273/1201,
  25833. bottom: 39/1312
  25834. }
  25835. },
  25836. },
  25837. [
  25838. {
  25839. name: "Very Smal",
  25840. height: math.unit(1, "nm")
  25841. },
  25842. {
  25843. name: "Normal",
  25844. height: math.unit(6 + 5 / 12, "feet"),
  25845. default: true
  25846. },
  25847. {
  25848. name: "Macro",
  25849. height: math.unit(1, "mile")
  25850. },
  25851. {
  25852. name: "Megamacro",
  25853. height: math.unit(50, "miles")
  25854. },
  25855. ]
  25856. ))
  25857. characterMakers.push(() => makeCharacter(
  25858. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25859. {
  25860. front: {
  25861. height: math.unit(1.5, "meters"),
  25862. weight: math.unit(100, "lb"),
  25863. name: "Front",
  25864. image: {
  25865. source: "./media/characters/maksio/front.svg",
  25866. extra: 1549 / 1531,
  25867. bottom: 123.7 / 1674.5429
  25868. }
  25869. },
  25870. back: {
  25871. height: math.unit(1.5, "meters"),
  25872. weight: math.unit(100, "lb"),
  25873. name: "Back",
  25874. image: {
  25875. source: "./media/characters/maksio/back.svg",
  25876. extra: 1541 / 1509,
  25877. bottom: 97 / 1639
  25878. }
  25879. },
  25880. hand: {
  25881. height: math.unit(0.621, "feet"),
  25882. name: "Hand",
  25883. image: {
  25884. source: "./media/characters/maksio/hand.svg"
  25885. }
  25886. },
  25887. foot: {
  25888. height: math.unit(1.611, "feet"),
  25889. name: "Foot",
  25890. image: {
  25891. source: "./media/characters/maksio/foot.svg"
  25892. }
  25893. },
  25894. },
  25895. [
  25896. {
  25897. name: "Shrunken",
  25898. height: math.unit(10, "cm")
  25899. },
  25900. {
  25901. name: "Normal",
  25902. height: math.unit(150, "cm"),
  25903. default: true
  25904. },
  25905. ]
  25906. ))
  25907. characterMakers.push(() => makeCharacter(
  25908. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25909. {
  25910. front: {
  25911. height: math.unit(100, "feet"),
  25912. name: "Front",
  25913. image: {
  25914. source: "./media/characters/erza-bear/front.svg",
  25915. extra: 2449 / 2390,
  25916. bottom: 46 / 2494
  25917. }
  25918. },
  25919. back: {
  25920. height: math.unit(100, "feet"),
  25921. name: "Back",
  25922. image: {
  25923. source: "./media/characters/erza-bear/back.svg",
  25924. extra: 2489 / 2430,
  25925. bottom: 85.4 / 2480
  25926. }
  25927. },
  25928. tail: {
  25929. height: math.unit(42, "feet"),
  25930. name: "Tail",
  25931. image: {
  25932. source: "./media/characters/erza-bear/tail.svg"
  25933. }
  25934. },
  25935. tongue: {
  25936. height: math.unit(8, "feet"),
  25937. name: "Tongue",
  25938. image: {
  25939. source: "./media/characters/erza-bear/tongue.svg"
  25940. }
  25941. },
  25942. dick: {
  25943. height: math.unit(10.5, "feet"),
  25944. name: "Dick",
  25945. image: {
  25946. source: "./media/characters/erza-bear/dick.svg"
  25947. }
  25948. },
  25949. dickVertical: {
  25950. height: math.unit(16.9, "feet"),
  25951. name: "Dick (Vertical)",
  25952. image: {
  25953. source: "./media/characters/erza-bear/dick-vertical.svg"
  25954. }
  25955. },
  25956. },
  25957. [
  25958. {
  25959. name: "Macro",
  25960. height: math.unit(100, "feet"),
  25961. default: true
  25962. },
  25963. ]
  25964. ))
  25965. characterMakers.push(() => makeCharacter(
  25966. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25967. {
  25968. front: {
  25969. height: math.unit(172, "cm"),
  25970. weight: math.unit(73, "kg"),
  25971. name: "Front",
  25972. image: {
  25973. source: "./media/characters/violet-flor/front.svg",
  25974. extra: 1474/1379,
  25975. bottom: 113/1587
  25976. }
  25977. },
  25978. back: {
  25979. height: math.unit(180, "cm"),
  25980. weight: math.unit(73, "kg"),
  25981. name: "Back",
  25982. image: {
  25983. source: "./media/characters/violet-flor/back.svg",
  25984. extra: 1660/1567,
  25985. bottom: 49/1709
  25986. }
  25987. },
  25988. },
  25989. [
  25990. {
  25991. name: "Normal",
  25992. height: math.unit(172, "cm"),
  25993. default: true
  25994. },
  25995. ]
  25996. ))
  25997. characterMakers.push(() => makeCharacter(
  25998. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25999. {
  26000. front: {
  26001. height: math.unit(6, "feet"),
  26002. weight: math.unit(220, "lb"),
  26003. name: "Front",
  26004. image: {
  26005. source: "./media/characters/lynn-rhea/front.svg",
  26006. extra: 310 / 273
  26007. }
  26008. },
  26009. back: {
  26010. height: math.unit(6, "feet"),
  26011. weight: math.unit(220, "lb"),
  26012. name: "Back",
  26013. image: {
  26014. source: "./media/characters/lynn-rhea/back.svg",
  26015. extra: 310 / 273
  26016. }
  26017. },
  26018. dicks: {
  26019. height: math.unit(0.9, "feet"),
  26020. name: "Dicks",
  26021. image: {
  26022. source: "./media/characters/lynn-rhea/dicks.svg"
  26023. }
  26024. },
  26025. slit: {
  26026. height: math.unit(0.4, "feet"),
  26027. name: "Slit",
  26028. image: {
  26029. source: "./media/characters/lynn-rhea/slit.svg"
  26030. }
  26031. },
  26032. },
  26033. [
  26034. {
  26035. name: "Micro",
  26036. height: math.unit(1, "inch")
  26037. },
  26038. {
  26039. name: "Macro",
  26040. height: math.unit(60, "feet"),
  26041. default: true
  26042. },
  26043. {
  26044. name: "Megamacro",
  26045. height: math.unit(2, "miles")
  26046. },
  26047. {
  26048. name: "Gigamacro",
  26049. height: math.unit(3, "earths")
  26050. },
  26051. {
  26052. name: "Galactic",
  26053. height: math.unit(0.8, "galaxies")
  26054. },
  26055. ]
  26056. ))
  26057. characterMakers.push(() => makeCharacter(
  26058. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  26059. {
  26060. front: {
  26061. height: math.unit(1600, "feet"),
  26062. weight: math.unit(85758785169, "kg"),
  26063. name: "Front",
  26064. image: {
  26065. source: "./media/characters/valathos/front.svg",
  26066. extra: 1451 / 1339
  26067. }
  26068. },
  26069. },
  26070. [
  26071. {
  26072. name: "Macro",
  26073. height: math.unit(1600, "feet"),
  26074. default: true
  26075. },
  26076. ]
  26077. ))
  26078. characterMakers.push(() => makeCharacter(
  26079. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  26080. {
  26081. front: {
  26082. height: math.unit(7 + 5 / 12, "feet"),
  26083. weight: math.unit(300, "lb"),
  26084. name: "Front",
  26085. image: {
  26086. source: "./media/characters/azula/front.svg",
  26087. extra: 3208 / 2880,
  26088. bottom: 80.2 / 3277
  26089. }
  26090. },
  26091. back: {
  26092. height: math.unit(7 + 5 / 12, "feet"),
  26093. weight: math.unit(300, "lb"),
  26094. name: "Back",
  26095. image: {
  26096. source: "./media/characters/azula/back.svg",
  26097. extra: 3169 / 2822,
  26098. bottom: 150.6 / 3321
  26099. }
  26100. },
  26101. },
  26102. [
  26103. {
  26104. name: "Normal",
  26105. height: math.unit(7 + 5 / 12, "feet"),
  26106. default: true
  26107. },
  26108. {
  26109. name: "Big",
  26110. height: math.unit(20, "feet")
  26111. },
  26112. ]
  26113. ))
  26114. characterMakers.push(() => makeCharacter(
  26115. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  26116. {
  26117. front: {
  26118. height: math.unit(5 + 1 / 12, "feet"),
  26119. weight: math.unit(110, "lb"),
  26120. name: "Front",
  26121. image: {
  26122. source: "./media/characters/rupert/front.svg",
  26123. extra: 1549 / 1495,
  26124. bottom: 54.2 / 1604.4
  26125. }
  26126. },
  26127. },
  26128. [
  26129. {
  26130. name: "Normal",
  26131. height: math.unit(5 + 1 / 12, "feet"),
  26132. default: true
  26133. },
  26134. ]
  26135. ))
  26136. characterMakers.push(() => makeCharacter(
  26137. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  26138. {
  26139. front: {
  26140. height: math.unit(8 + 4 / 12, "feet"),
  26141. weight: math.unit(350, "lb"),
  26142. name: "Front",
  26143. image: {
  26144. source: "./media/characters/sheera-castellar/front.svg",
  26145. extra: 1957 / 1894,
  26146. bottom: 26.97 / 1975.017
  26147. }
  26148. },
  26149. side: {
  26150. height: math.unit(8 + 4 / 12, "feet"),
  26151. weight: math.unit(350, "lb"),
  26152. name: "Side",
  26153. image: {
  26154. source: "./media/characters/sheera-castellar/side.svg",
  26155. extra: 1957 / 1894
  26156. }
  26157. },
  26158. back: {
  26159. height: math.unit(8 + 4 / 12, "feet"),
  26160. weight: math.unit(350, "lb"),
  26161. name: "Back",
  26162. image: {
  26163. source: "./media/characters/sheera-castellar/back.svg",
  26164. extra: 1957 / 1894
  26165. }
  26166. },
  26167. angled: {
  26168. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  26169. weight: math.unit(350, "lb"),
  26170. name: "Angled",
  26171. image: {
  26172. source: "./media/characters/sheera-castellar/angled.svg",
  26173. extra: 1807 / 1707,
  26174. bottom: 68 / 1875
  26175. }
  26176. },
  26177. genitals: {
  26178. height: math.unit(2.2, "feet"),
  26179. name: "Genitals",
  26180. image: {
  26181. source: "./media/characters/sheera-castellar/genitals.svg"
  26182. }
  26183. },
  26184. taur: {
  26185. height: math.unit(10 + 6/12, "feet"),
  26186. name: "Taur",
  26187. image: {
  26188. source: "./media/characters/sheera-castellar/taur.svg",
  26189. extra: 2017/1909,
  26190. bottom: 185/2202
  26191. }
  26192. },
  26193. },
  26194. [
  26195. {
  26196. name: "Normal",
  26197. height: math.unit(8 + 4 / 12, "feet")
  26198. },
  26199. {
  26200. name: "Macro",
  26201. height: math.unit(150, "feet"),
  26202. default: true
  26203. },
  26204. {
  26205. name: "Macro+",
  26206. height: math.unit(800, "feet")
  26207. },
  26208. ]
  26209. ))
  26210. characterMakers.push(() => makeCharacter(
  26211. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  26212. {
  26213. front: {
  26214. height: math.unit(6, "feet"),
  26215. weight: math.unit(150, "lb"),
  26216. name: "Front",
  26217. image: {
  26218. source: "./media/characters/jaipur/front.svg",
  26219. extra: 3860 / 3731,
  26220. bottom: 287 / 4140
  26221. }
  26222. },
  26223. back: {
  26224. height: math.unit(6, "feet"),
  26225. weight: math.unit(150, "lb"),
  26226. name: "Back",
  26227. image: {
  26228. source: "./media/characters/jaipur/back.svg",
  26229. extra: 1637/1561,
  26230. bottom: 154/1791
  26231. }
  26232. },
  26233. },
  26234. [
  26235. {
  26236. name: "Normal",
  26237. height: math.unit(1.85, "meters"),
  26238. default: true
  26239. },
  26240. {
  26241. name: "Macro",
  26242. height: math.unit(150, "meters")
  26243. },
  26244. {
  26245. name: "Macro+",
  26246. height: math.unit(0.5, "miles")
  26247. },
  26248. {
  26249. name: "Macro++",
  26250. height: math.unit(2.5, "miles")
  26251. },
  26252. {
  26253. name: "Macro+++",
  26254. height: math.unit(12, "miles")
  26255. },
  26256. {
  26257. name: "Macro++++",
  26258. height: math.unit(120, "miles")
  26259. },
  26260. {
  26261. name: "Macro+++++",
  26262. height: math.unit(1200, "miles")
  26263. },
  26264. ]
  26265. ))
  26266. characterMakers.push(() => makeCharacter(
  26267. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  26268. {
  26269. front: {
  26270. height: math.unit(6, "feet"),
  26271. weight: math.unit(150, "lb"),
  26272. name: "Front",
  26273. image: {
  26274. source: "./media/characters/sheila-wolf/front.svg",
  26275. extra: 1931 / 1808,
  26276. bottom: 29.5 / 1960
  26277. }
  26278. },
  26279. dick: {
  26280. height: math.unit(1.464, "feet"),
  26281. name: "Dick",
  26282. image: {
  26283. source: "./media/characters/sheila-wolf/dick.svg"
  26284. }
  26285. },
  26286. muzzle: {
  26287. height: math.unit(0.513, "feet"),
  26288. name: "Muzzle",
  26289. image: {
  26290. source: "./media/characters/sheila-wolf/muzzle.svg"
  26291. }
  26292. },
  26293. },
  26294. [
  26295. {
  26296. name: "Macro",
  26297. height: math.unit(70, "feet"),
  26298. default: true
  26299. },
  26300. ]
  26301. ))
  26302. characterMakers.push(() => makeCharacter(
  26303. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  26304. {
  26305. front: {
  26306. height: math.unit(32, "meters"),
  26307. weight: math.unit(300000, "kg"),
  26308. name: "Front",
  26309. image: {
  26310. source: "./media/characters/almor/front.svg",
  26311. extra: 1408 / 1322,
  26312. bottom: 94.6 / 1506.5
  26313. }
  26314. },
  26315. },
  26316. [
  26317. {
  26318. name: "Macro",
  26319. height: math.unit(32, "meters"),
  26320. default: true
  26321. },
  26322. ]
  26323. ))
  26324. characterMakers.push(() => makeCharacter(
  26325. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  26326. {
  26327. front: {
  26328. height: math.unit(7, "feet"),
  26329. weight: math.unit(200, "lb"),
  26330. name: "Front",
  26331. image: {
  26332. source: "./media/characters/silver/front.svg",
  26333. extra: 472.1 / 450.5,
  26334. bottom: 26.5 / 499.424
  26335. }
  26336. },
  26337. },
  26338. [
  26339. {
  26340. name: "Normal",
  26341. height: math.unit(7, "feet"),
  26342. default: true
  26343. },
  26344. {
  26345. name: "Macro",
  26346. height: math.unit(800, "feet")
  26347. },
  26348. {
  26349. name: "Megamacro",
  26350. height: math.unit(250, "miles")
  26351. },
  26352. ]
  26353. ))
  26354. characterMakers.push(() => makeCharacter(
  26355. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  26356. {
  26357. front: {
  26358. height: math.unit(6, "feet"),
  26359. weight: math.unit(150, "lb"),
  26360. name: "Front",
  26361. image: {
  26362. source: "./media/characters/pliskin/front.svg",
  26363. extra: 1469 / 1359,
  26364. bottom: 70 / 1540
  26365. }
  26366. },
  26367. },
  26368. [
  26369. {
  26370. name: "Micro",
  26371. height: math.unit(3, "inches")
  26372. },
  26373. {
  26374. name: "Normal",
  26375. height: math.unit(5 + 11 / 12, "feet"),
  26376. default: true
  26377. },
  26378. {
  26379. name: "Macro",
  26380. height: math.unit(120, "feet")
  26381. },
  26382. ]
  26383. ))
  26384. characterMakers.push(() => makeCharacter(
  26385. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  26386. {
  26387. front: {
  26388. height: math.unit(6, "feet"),
  26389. weight: math.unit(150, "lb"),
  26390. name: "Front",
  26391. image: {
  26392. source: "./media/characters/sammy/front.svg",
  26393. extra: 1193 / 1089,
  26394. bottom: 30.5 / 1226
  26395. }
  26396. },
  26397. },
  26398. [
  26399. {
  26400. name: "Macro",
  26401. height: math.unit(1700, "feet"),
  26402. default: true
  26403. },
  26404. {
  26405. name: "Examacro",
  26406. height: math.unit(2.5e9, "lightyears")
  26407. },
  26408. ]
  26409. ))
  26410. characterMakers.push(() => makeCharacter(
  26411. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  26412. {
  26413. front: {
  26414. height: math.unit(21, "meters"),
  26415. weight: math.unit(12, "tonnes"),
  26416. name: "Front",
  26417. image: {
  26418. source: "./media/characters/kuru/front.svg",
  26419. extra: 4301 / 3785,
  26420. bottom: 371.3 / 4691
  26421. }
  26422. },
  26423. },
  26424. [
  26425. {
  26426. name: "Macro",
  26427. height: math.unit(21, "meters"),
  26428. default: true
  26429. },
  26430. ]
  26431. ))
  26432. characterMakers.push(() => makeCharacter(
  26433. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  26434. {
  26435. front: {
  26436. height: math.unit(23, "meters"),
  26437. weight: math.unit(12.2, "tonnes"),
  26438. name: "Front",
  26439. image: {
  26440. source: "./media/characters/rakka/front.svg",
  26441. extra: 4670 / 4169,
  26442. bottom: 301 / 4968.7
  26443. }
  26444. },
  26445. },
  26446. [
  26447. {
  26448. name: "Macro",
  26449. height: math.unit(23, "meters"),
  26450. default: true
  26451. },
  26452. ]
  26453. ))
  26454. characterMakers.push(() => makeCharacter(
  26455. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  26456. {
  26457. front: {
  26458. height: math.unit(6, "feet"),
  26459. weight: math.unit(150, "lb"),
  26460. name: "Front",
  26461. image: {
  26462. source: "./media/characters/rhys-feline/front.svg",
  26463. extra: 2488 / 2308,
  26464. bottom: 35.67 / 2519.19
  26465. }
  26466. },
  26467. },
  26468. [
  26469. {
  26470. name: "Really Small",
  26471. height: math.unit(1, "nm")
  26472. },
  26473. {
  26474. name: "Micro",
  26475. height: math.unit(4, "inches")
  26476. },
  26477. {
  26478. name: "Normal",
  26479. height: math.unit(4 + 10 / 12, "feet"),
  26480. default: true
  26481. },
  26482. {
  26483. name: "Macro",
  26484. height: math.unit(100, "feet")
  26485. },
  26486. {
  26487. name: "Megamacto",
  26488. height: math.unit(50, "miles")
  26489. },
  26490. ]
  26491. ))
  26492. characterMakers.push(() => makeCharacter(
  26493. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  26494. {
  26495. side: {
  26496. height: math.unit(30, "feet"),
  26497. weight: math.unit(35000, "kg"),
  26498. name: "Side",
  26499. image: {
  26500. source: "./media/characters/alydar/side.svg",
  26501. extra: 234 / 222,
  26502. bottom: 6.5 / 241
  26503. }
  26504. },
  26505. front: {
  26506. height: math.unit(30, "feet"),
  26507. weight: math.unit(35000, "kg"),
  26508. name: "Front",
  26509. image: {
  26510. source: "./media/characters/alydar/front.svg",
  26511. extra: 223.37 / 210.2,
  26512. bottom: 22.3 / 246.76
  26513. }
  26514. },
  26515. top: {
  26516. height: math.unit(64.54, "feet"),
  26517. weight: math.unit(35000, "kg"),
  26518. name: "Top",
  26519. image: {
  26520. source: "./media/characters/alydar/top.svg"
  26521. }
  26522. },
  26523. anthro: {
  26524. height: math.unit(30, "feet"),
  26525. weight: math.unit(9000, "kg"),
  26526. name: "Anthro",
  26527. image: {
  26528. source: "./media/characters/alydar/anthro.svg",
  26529. extra: 432 / 421,
  26530. bottom: 7.18 / 440
  26531. }
  26532. },
  26533. maw: {
  26534. height: math.unit(11.693, "feet"),
  26535. name: "Maw",
  26536. image: {
  26537. source: "./media/characters/alydar/maw.svg"
  26538. }
  26539. },
  26540. head: {
  26541. height: math.unit(11.693, "feet"),
  26542. name: "Head",
  26543. image: {
  26544. source: "./media/characters/alydar/head.svg"
  26545. }
  26546. },
  26547. headAlt: {
  26548. height: math.unit(12.861, "feet"),
  26549. name: "Head (Alt)",
  26550. image: {
  26551. source: "./media/characters/alydar/head-alt.svg"
  26552. }
  26553. },
  26554. wing: {
  26555. height: math.unit(20.712, "feet"),
  26556. name: "Wing",
  26557. image: {
  26558. source: "./media/characters/alydar/wing.svg"
  26559. }
  26560. },
  26561. wingFeather: {
  26562. height: math.unit(9.662, "feet"),
  26563. name: "Wing Feather",
  26564. image: {
  26565. source: "./media/characters/alydar/wing-feather.svg"
  26566. }
  26567. },
  26568. countourFeather: {
  26569. height: math.unit(4.154, "feet"),
  26570. name: "Contour Feather",
  26571. image: {
  26572. source: "./media/characters/alydar/contour-feather.svg"
  26573. }
  26574. },
  26575. },
  26576. [
  26577. {
  26578. name: "Diplomatic",
  26579. height: math.unit(13, "feet"),
  26580. default: true
  26581. },
  26582. {
  26583. name: "Small",
  26584. height: math.unit(30, "feet")
  26585. },
  26586. {
  26587. name: "Normal",
  26588. height: math.unit(95, "feet"),
  26589. default: true
  26590. },
  26591. {
  26592. name: "Large",
  26593. height: math.unit(285, "feet")
  26594. },
  26595. {
  26596. name: "Incomprehensible",
  26597. height: math.unit(450, "megameters")
  26598. },
  26599. ]
  26600. ))
  26601. characterMakers.push(() => makeCharacter(
  26602. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26603. {
  26604. side: {
  26605. height: math.unit(11, "feet"),
  26606. weight: math.unit(1750, "kg"),
  26607. name: "Side",
  26608. image: {
  26609. source: "./media/characters/selicia/side.svg",
  26610. extra: 440 / 396,
  26611. bottom: 24.8 / 465.979
  26612. }
  26613. },
  26614. maw: {
  26615. height: math.unit(4.665, "feet"),
  26616. name: "Maw",
  26617. image: {
  26618. source: "./media/characters/selicia/maw.svg"
  26619. }
  26620. },
  26621. },
  26622. [
  26623. {
  26624. name: "Normal",
  26625. height: math.unit(11, "feet"),
  26626. default: true
  26627. },
  26628. ]
  26629. ))
  26630. characterMakers.push(() => makeCharacter(
  26631. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26632. {
  26633. side: {
  26634. height: math.unit(2 + 6 / 12, "feet"),
  26635. weight: math.unit(30, "lb"),
  26636. name: "Side",
  26637. image: {
  26638. source: "./media/characters/layla/side.svg",
  26639. extra: 244 / 188,
  26640. bottom: 18.2 / 262.1
  26641. }
  26642. },
  26643. back: {
  26644. height: math.unit(2 + 6 / 12, "feet"),
  26645. weight: math.unit(30, "lb"),
  26646. name: "Back",
  26647. image: {
  26648. source: "./media/characters/layla/back.svg",
  26649. extra: 308 / 241.5,
  26650. bottom: 8.9 / 316.8
  26651. }
  26652. },
  26653. cumming: {
  26654. height: math.unit(2 + 6 / 12, "feet"),
  26655. weight: math.unit(30, "lb"),
  26656. name: "Cumming",
  26657. image: {
  26658. source: "./media/characters/layla/cumming.svg",
  26659. extra: 342 / 279,
  26660. bottom: 595 / 938
  26661. }
  26662. },
  26663. dickFlaccid: {
  26664. height: math.unit(2.595, "feet"),
  26665. name: "Flaccid Genitals",
  26666. image: {
  26667. source: "./media/characters/layla/dick-flaccid.svg"
  26668. }
  26669. },
  26670. dickErect: {
  26671. height: math.unit(2.359, "feet"),
  26672. name: "Erect Genitals",
  26673. image: {
  26674. source: "./media/characters/layla/dick-erect.svg"
  26675. }
  26676. },
  26677. dragon: {
  26678. height: math.unit(40, "feet"),
  26679. name: "Dragon",
  26680. image: {
  26681. source: "./media/characters/layla/dragon.svg",
  26682. extra: 610/535,
  26683. bottom: 367/977
  26684. }
  26685. },
  26686. taur: {
  26687. height: math.unit(30, "feet"),
  26688. name: "Taur",
  26689. image: {
  26690. source: "./media/characters/layla/taur.svg",
  26691. extra: 1268/1199,
  26692. bottom: 112/1380
  26693. }
  26694. },
  26695. },
  26696. [
  26697. {
  26698. name: "Micro",
  26699. height: math.unit(1, "inch")
  26700. },
  26701. {
  26702. name: "Small",
  26703. height: math.unit(1, "foot")
  26704. },
  26705. {
  26706. name: "Normal",
  26707. height: math.unit(2 + 6 / 12, "feet"),
  26708. default: true
  26709. },
  26710. {
  26711. name: "Macro",
  26712. height: math.unit(200, "feet")
  26713. },
  26714. {
  26715. name: "Megamacro",
  26716. height: math.unit(1000, "miles")
  26717. },
  26718. {
  26719. name: "Planetary",
  26720. height: math.unit(8000, "miles")
  26721. },
  26722. {
  26723. name: "True Layla",
  26724. height: math.unit(200000 * 7, "multiverses")
  26725. },
  26726. ]
  26727. ))
  26728. characterMakers.push(() => makeCharacter(
  26729. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26730. {
  26731. back: {
  26732. height: math.unit(10.5, "feet"),
  26733. weight: math.unit(800, "lb"),
  26734. name: "Back",
  26735. image: {
  26736. source: "./media/characters/knox/back.svg",
  26737. extra: 1486 / 1089,
  26738. bottom: 107 / 1601.4
  26739. }
  26740. },
  26741. side: {
  26742. height: math.unit(10.5, "feet"),
  26743. weight: math.unit(800, "lb"),
  26744. name: "Side",
  26745. image: {
  26746. source: "./media/characters/knox/side.svg",
  26747. extra: 244 / 218,
  26748. bottom: 14 / 260
  26749. }
  26750. },
  26751. },
  26752. [
  26753. {
  26754. name: "Compact",
  26755. height: math.unit(10.5, "feet"),
  26756. default: true
  26757. },
  26758. {
  26759. name: "Dynamax",
  26760. height: math.unit(210, "feet")
  26761. },
  26762. {
  26763. name: "Full Macro",
  26764. height: math.unit(850, "feet")
  26765. },
  26766. ]
  26767. ))
  26768. characterMakers.push(() => makeCharacter(
  26769. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26770. {
  26771. front: {
  26772. height: math.unit(28, "feet"),
  26773. weight: math.unit(10500, "lb"),
  26774. name: "Front",
  26775. image: {
  26776. source: "./media/characters/kayda/front.svg",
  26777. extra: 1536 / 1428,
  26778. bottom: 68.7 / 1603
  26779. }
  26780. },
  26781. back: {
  26782. height: math.unit(28, "feet"),
  26783. weight: math.unit(10500, "lb"),
  26784. name: "Back",
  26785. image: {
  26786. source: "./media/characters/kayda/back.svg",
  26787. extra: 1557 / 1464,
  26788. bottom: 39.5 / 1597.49
  26789. }
  26790. },
  26791. dick: {
  26792. height: math.unit(3.858, "feet"),
  26793. name: "Dick",
  26794. image: {
  26795. source: "./media/characters/kayda/dick.svg"
  26796. }
  26797. },
  26798. },
  26799. [
  26800. {
  26801. name: "Macro",
  26802. height: math.unit(28, "feet"),
  26803. default: true
  26804. },
  26805. ]
  26806. ))
  26807. characterMakers.push(() => makeCharacter(
  26808. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26809. {
  26810. front: {
  26811. height: math.unit(10 + 11 / 12, "feet"),
  26812. weight: math.unit(1400, "lb"),
  26813. name: "Front",
  26814. image: {
  26815. source: "./media/characters/brian/front.svg",
  26816. extra: 737 / 692,
  26817. bottom: 55.4 / 785
  26818. }
  26819. },
  26820. },
  26821. [
  26822. {
  26823. name: "Normal",
  26824. height: math.unit(10 + 11 / 12, "feet"),
  26825. default: true
  26826. },
  26827. ]
  26828. ))
  26829. characterMakers.push(() => makeCharacter(
  26830. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26831. {
  26832. front: {
  26833. height: math.unit(5 + 8 / 12, "feet"),
  26834. weight: math.unit(140, "lb"),
  26835. name: "Front",
  26836. image: {
  26837. source: "./media/characters/khemri/front.svg",
  26838. extra: 4780 / 4059,
  26839. bottom: 80.1 / 4859.25
  26840. }
  26841. },
  26842. },
  26843. [
  26844. {
  26845. name: "Micro",
  26846. height: math.unit(6, "inches")
  26847. },
  26848. {
  26849. name: "Normal",
  26850. height: math.unit(5 + 8 / 12, "feet"),
  26851. default: true
  26852. },
  26853. ]
  26854. ))
  26855. characterMakers.push(() => makeCharacter(
  26856. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26857. {
  26858. front: {
  26859. height: math.unit(13, "feet"),
  26860. weight: math.unit(1700, "lb"),
  26861. name: "Front",
  26862. image: {
  26863. source: "./media/characters/felix-braveheart/front.svg",
  26864. extra: 1222 / 1157,
  26865. bottom: 53.2 / 1280
  26866. }
  26867. },
  26868. back: {
  26869. height: math.unit(13, "feet"),
  26870. weight: math.unit(1700, "lb"),
  26871. name: "Back",
  26872. image: {
  26873. source: "./media/characters/felix-braveheart/back.svg",
  26874. extra: 1277 / 1203,
  26875. bottom: 50.2 / 1327
  26876. }
  26877. },
  26878. feral: {
  26879. height: math.unit(6, "feet"),
  26880. weight: math.unit(400, "lb"),
  26881. name: "Feral",
  26882. image: {
  26883. source: "./media/characters/felix-braveheart/feral.svg",
  26884. extra: 682 / 625,
  26885. bottom: 6.9 / 688
  26886. }
  26887. },
  26888. },
  26889. [
  26890. {
  26891. name: "Normal",
  26892. height: math.unit(13, "feet"),
  26893. default: true
  26894. },
  26895. ]
  26896. ))
  26897. characterMakers.push(() => makeCharacter(
  26898. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26899. {
  26900. side: {
  26901. height: math.unit(5 + 11 / 12, "feet"),
  26902. weight: math.unit(1400, "lb"),
  26903. name: "Side",
  26904. image: {
  26905. source: "./media/characters/shadow-blade/side.svg",
  26906. extra: 1726 / 1267,
  26907. bottom: 58.4 / 1785
  26908. }
  26909. },
  26910. },
  26911. [
  26912. {
  26913. name: "Normal",
  26914. height: math.unit(5 + 11 / 12, "feet"),
  26915. default: true
  26916. },
  26917. ]
  26918. ))
  26919. characterMakers.push(() => makeCharacter(
  26920. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26921. {
  26922. front: {
  26923. height: math.unit(1 + 6 / 12, "feet"),
  26924. weight: math.unit(25, "lb"),
  26925. name: "Front",
  26926. image: {
  26927. source: "./media/characters/karla-halldor/front.svg",
  26928. extra: 1459 / 1383,
  26929. bottom: 12 / 1472
  26930. }
  26931. },
  26932. },
  26933. [
  26934. {
  26935. name: "Normal",
  26936. height: math.unit(1 + 6 / 12, "feet"),
  26937. default: true
  26938. },
  26939. ]
  26940. ))
  26941. characterMakers.push(() => makeCharacter(
  26942. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26943. {
  26944. front: {
  26945. height: math.unit(6 + 2 / 12, "feet"),
  26946. weight: math.unit(160, "lb"),
  26947. name: "Front",
  26948. image: {
  26949. source: "./media/characters/ariam/front.svg",
  26950. extra: 1073/976,
  26951. bottom: 52/1125
  26952. }
  26953. },
  26954. back: {
  26955. height: math.unit(6 + 2/12, "feet"),
  26956. weight: math.unit(160, "lb"),
  26957. name: "Back",
  26958. image: {
  26959. source: "./media/characters/ariam/back.svg",
  26960. extra: 1103/1023,
  26961. bottom: 9/1112
  26962. }
  26963. },
  26964. dressed: {
  26965. height: math.unit(6 + 2/12, "feet"),
  26966. weight: math.unit(160, "lb"),
  26967. name: "Dressed",
  26968. image: {
  26969. source: "./media/characters/ariam/dressed.svg",
  26970. extra: 1099/1009,
  26971. bottom: 25/1124
  26972. }
  26973. },
  26974. squatting: {
  26975. height: math.unit(4.1, "feet"),
  26976. weight: math.unit(160, "lb"),
  26977. name: "Squatting",
  26978. image: {
  26979. source: "./media/characters/ariam/squatting.svg",
  26980. extra: 2617 / 2112,
  26981. bottom: 61.2 / 2681,
  26982. }
  26983. },
  26984. },
  26985. [
  26986. {
  26987. name: "Normal",
  26988. height: math.unit(6 + 2 / 12, "feet"),
  26989. default: true
  26990. },
  26991. {
  26992. name: "Normal+",
  26993. height: math.unit(4, "meters")
  26994. },
  26995. {
  26996. name: "Macro",
  26997. height: math.unit(50, "meters")
  26998. },
  26999. {
  27000. name: "Macro+",
  27001. height: math.unit(100, "meters")
  27002. },
  27003. {
  27004. name: "Megamacro",
  27005. height: math.unit(20, "km")
  27006. },
  27007. {
  27008. name: "Caretaker",
  27009. height: math.unit(444, "megameters")
  27010. },
  27011. ]
  27012. ))
  27013. characterMakers.push(() => makeCharacter(
  27014. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  27015. {
  27016. front: {
  27017. height: math.unit(1.67, "meters"),
  27018. weight: math.unit(140, "lb"),
  27019. name: "Front",
  27020. image: {
  27021. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  27022. extra: 438 / 410,
  27023. bottom: 0.75 / 439
  27024. }
  27025. },
  27026. },
  27027. [
  27028. {
  27029. name: "Shrunken",
  27030. height: math.unit(7.6, "cm")
  27031. },
  27032. {
  27033. name: "Human Scale",
  27034. height: math.unit(1.67, "meters")
  27035. },
  27036. {
  27037. name: "Wolxi Scale",
  27038. height: math.unit(36.7, "meters"),
  27039. default: true
  27040. },
  27041. ]
  27042. ))
  27043. characterMakers.push(() => makeCharacter(
  27044. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  27045. {
  27046. front: {
  27047. height: math.unit(1.73, "meters"),
  27048. weight: math.unit(240, "lb"),
  27049. name: "Front",
  27050. image: {
  27051. source: "./media/characters/izue-two-mothers/front.svg",
  27052. extra: 469 / 437,
  27053. bottom: 1.24 / 470.6
  27054. }
  27055. },
  27056. },
  27057. [
  27058. {
  27059. name: "Shrunken",
  27060. height: math.unit(7.86, "cm")
  27061. },
  27062. {
  27063. name: "Human Scale",
  27064. height: math.unit(1.73, "meters")
  27065. },
  27066. {
  27067. name: "Wolxi Scale",
  27068. height: math.unit(38, "meters"),
  27069. default: true
  27070. },
  27071. ]
  27072. ))
  27073. characterMakers.push(() => makeCharacter(
  27074. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  27075. {
  27076. front: {
  27077. height: math.unit(1.55, "meters"),
  27078. weight: math.unit(120, "lb"),
  27079. name: "Front",
  27080. image: {
  27081. source: "./media/characters/teeku-love-shack/front.svg",
  27082. extra: 387 / 362,
  27083. bottom: 1.51 / 388
  27084. }
  27085. },
  27086. },
  27087. [
  27088. {
  27089. name: "Shrunken",
  27090. height: math.unit(7, "cm")
  27091. },
  27092. {
  27093. name: "Human Scale",
  27094. height: math.unit(1.55, "meters")
  27095. },
  27096. {
  27097. name: "Wolxi Scale",
  27098. height: math.unit(34.1, "meters"),
  27099. default: true
  27100. },
  27101. ]
  27102. ))
  27103. characterMakers.push(() => makeCharacter(
  27104. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  27105. {
  27106. front: {
  27107. height: math.unit(1.83, "meters"),
  27108. weight: math.unit(135, "lb"),
  27109. name: "Front",
  27110. image: {
  27111. source: "./media/characters/dejma-the-red/front.svg",
  27112. extra: 480 / 458,
  27113. bottom: 1.8 / 482
  27114. }
  27115. },
  27116. },
  27117. [
  27118. {
  27119. name: "Shrunken",
  27120. height: math.unit(8.3, "cm")
  27121. },
  27122. {
  27123. name: "Human Scale",
  27124. height: math.unit(1.83, "meters")
  27125. },
  27126. {
  27127. name: "Wolxi Scale",
  27128. height: math.unit(40, "meters"),
  27129. default: true
  27130. },
  27131. ]
  27132. ))
  27133. characterMakers.push(() => makeCharacter(
  27134. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  27135. {
  27136. front: {
  27137. height: math.unit(1.78, "meters"),
  27138. weight: math.unit(65, "kg"),
  27139. name: "Front",
  27140. image: {
  27141. source: "./media/characters/aki/front.svg",
  27142. extra: 452 / 415
  27143. }
  27144. },
  27145. frontNsfw: {
  27146. height: math.unit(1.78, "meters"),
  27147. weight: math.unit(65, "kg"),
  27148. name: "Front (NSFW)",
  27149. image: {
  27150. source: "./media/characters/aki/front-nsfw.svg",
  27151. extra: 452 / 415
  27152. }
  27153. },
  27154. back: {
  27155. height: math.unit(1.78, "meters"),
  27156. weight: math.unit(65, "kg"),
  27157. name: "Back",
  27158. image: {
  27159. source: "./media/characters/aki/back.svg",
  27160. extra: 452 / 415
  27161. }
  27162. },
  27163. rump: {
  27164. height: math.unit(2.05, "feet"),
  27165. name: "Rump",
  27166. image: {
  27167. source: "./media/characters/aki/rump.svg"
  27168. }
  27169. },
  27170. dick: {
  27171. height: math.unit(0.95, "feet"),
  27172. name: "Dick",
  27173. image: {
  27174. source: "./media/characters/aki/dick.svg"
  27175. }
  27176. },
  27177. },
  27178. [
  27179. {
  27180. name: "Micro",
  27181. height: math.unit(15, "cm")
  27182. },
  27183. {
  27184. name: "Normal",
  27185. height: math.unit(178, "cm"),
  27186. default: true
  27187. },
  27188. {
  27189. name: "Macro",
  27190. height: math.unit(214, "m")
  27191. },
  27192. {
  27193. name: "Macro+",
  27194. height: math.unit(534, "m")
  27195. },
  27196. ]
  27197. ))
  27198. characterMakers.push(() => makeCharacter(
  27199. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  27200. {
  27201. front: {
  27202. height: math.unit(5 + 5 / 12, "feet"),
  27203. weight: math.unit(120, "lb"),
  27204. name: "Front",
  27205. image: {
  27206. source: "./media/characters/ari/front.svg",
  27207. extra: 1550/1471,
  27208. bottom: 39/1589
  27209. }
  27210. },
  27211. },
  27212. [
  27213. {
  27214. name: "Normal",
  27215. height: math.unit(5 + 5 / 12, "feet")
  27216. },
  27217. {
  27218. name: "Macro",
  27219. height: math.unit(100, "feet"),
  27220. default: true
  27221. },
  27222. {
  27223. name: "Megamacro",
  27224. height: math.unit(100, "miles")
  27225. },
  27226. {
  27227. name: "Gigamacro",
  27228. height: math.unit(80000, "miles")
  27229. },
  27230. ]
  27231. ))
  27232. characterMakers.push(() => makeCharacter(
  27233. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  27234. {
  27235. side: {
  27236. height: math.unit(9, "feet"),
  27237. weight: math.unit(400, "kg"),
  27238. name: "Side",
  27239. image: {
  27240. source: "./media/characters/bolt/side.svg",
  27241. extra: 1126 / 896,
  27242. bottom: 60 / 1187.3,
  27243. }
  27244. },
  27245. },
  27246. [
  27247. {
  27248. name: "Micro",
  27249. height: math.unit(5, "inches")
  27250. },
  27251. {
  27252. name: "Normal",
  27253. height: math.unit(9, "feet"),
  27254. default: true
  27255. },
  27256. {
  27257. name: "Macro",
  27258. height: math.unit(700, "feet")
  27259. },
  27260. {
  27261. name: "Max Size",
  27262. height: math.unit(1.52e22, "yottameters")
  27263. },
  27264. ]
  27265. ))
  27266. characterMakers.push(() => makeCharacter(
  27267. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  27268. {
  27269. front: {
  27270. height: math.unit(4.3, "meters"),
  27271. weight: math.unit(3, "tons"),
  27272. name: "Front",
  27273. image: {
  27274. source: "./media/characters/draekon-sylviar/front.svg",
  27275. extra: 2072/1512,
  27276. bottom: 74/2146
  27277. }
  27278. },
  27279. back: {
  27280. height: math.unit(4.3, "meters"),
  27281. weight: math.unit(3, "tons"),
  27282. name: "Back",
  27283. image: {
  27284. source: "./media/characters/draekon-sylviar/back.svg",
  27285. extra: 1639/1483,
  27286. bottom: 41/1680
  27287. }
  27288. },
  27289. feral: {
  27290. height: math.unit(1.15, "meters"),
  27291. weight: math.unit(3, "tons"),
  27292. name: "Feral",
  27293. image: {
  27294. source: "./media/characters/draekon-sylviar/feral.svg",
  27295. extra: 1033/395,
  27296. bottom: 130/1163
  27297. }
  27298. },
  27299. maw: {
  27300. height: math.unit(1.3, "meters"),
  27301. name: "Maw",
  27302. image: {
  27303. source: "./media/characters/draekon-sylviar/maw.svg"
  27304. }
  27305. },
  27306. mawSeparated: {
  27307. height: math.unit(1.53, "meters"),
  27308. name: "Separated Maw",
  27309. image: {
  27310. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  27311. }
  27312. },
  27313. tail: {
  27314. height: math.unit(1.15, "meters"),
  27315. name: "Tail",
  27316. image: {
  27317. source: "./media/characters/draekon-sylviar/tail.svg"
  27318. }
  27319. },
  27320. tailDick: {
  27321. height: math.unit(1.15, "meters"),
  27322. name: "Tail (Dick)",
  27323. image: {
  27324. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  27325. }
  27326. },
  27327. tailDickSeparated: {
  27328. height: math.unit(1.19, "meters"),
  27329. name: "Tail (Separated Dick)",
  27330. image: {
  27331. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  27332. }
  27333. },
  27334. slit: {
  27335. height: math.unit(1, "meters"),
  27336. name: "Slit",
  27337. image: {
  27338. source: "./media/characters/draekon-sylviar/slit.svg"
  27339. }
  27340. },
  27341. dick: {
  27342. height: math.unit(1.15, "meters"),
  27343. name: "Dick",
  27344. image: {
  27345. source: "./media/characters/draekon-sylviar/dick.svg"
  27346. }
  27347. },
  27348. dickSeparated: {
  27349. height: math.unit(1.1, "meters"),
  27350. name: "Separated Dick",
  27351. image: {
  27352. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  27353. }
  27354. },
  27355. sheath: {
  27356. height: math.unit(1.15, "meters"),
  27357. name: "Sheath",
  27358. image: {
  27359. source: "./media/characters/draekon-sylviar/sheath.svg"
  27360. }
  27361. },
  27362. },
  27363. [
  27364. {
  27365. name: "Small",
  27366. height: math.unit(4.53 / 2, "meters"),
  27367. default: true
  27368. },
  27369. {
  27370. name: "Normal",
  27371. height: math.unit(4.53, "meters"),
  27372. default: true
  27373. },
  27374. {
  27375. name: "Large",
  27376. height: math.unit(4.53 * 2, "meters"),
  27377. },
  27378. ]
  27379. ))
  27380. characterMakers.push(() => makeCharacter(
  27381. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  27382. {
  27383. front: {
  27384. height: math.unit(6 + 2 / 12, "feet"),
  27385. weight: math.unit(180, "lb"),
  27386. name: "Front",
  27387. image: {
  27388. source: "./media/characters/brawler/front.svg",
  27389. extra: 3301 / 3027,
  27390. bottom: 138 / 3439
  27391. }
  27392. },
  27393. },
  27394. [
  27395. {
  27396. name: "Normal",
  27397. height: math.unit(6 + 2 / 12, "feet"),
  27398. default: true
  27399. },
  27400. ]
  27401. ))
  27402. characterMakers.push(() => makeCharacter(
  27403. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  27404. {
  27405. front: {
  27406. height: math.unit(11, "feet"),
  27407. weight: math.unit(1000, "lb"),
  27408. name: "Front",
  27409. image: {
  27410. source: "./media/characters/alex/front.svg",
  27411. bottom: 44.5 / 620
  27412. }
  27413. },
  27414. },
  27415. [
  27416. {
  27417. name: "Micro",
  27418. height: math.unit(5, "inches")
  27419. },
  27420. {
  27421. name: "Normal",
  27422. height: math.unit(11, "feet"),
  27423. default: true
  27424. },
  27425. {
  27426. name: "Macro",
  27427. height: math.unit(9.5e9, "feet")
  27428. },
  27429. {
  27430. name: "Max Size",
  27431. height: math.unit(1.4e283, "yottameters")
  27432. },
  27433. ]
  27434. ))
  27435. characterMakers.push(() => makeCharacter(
  27436. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  27437. {
  27438. female: {
  27439. height: math.unit(29.9, "m"),
  27440. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  27441. name: "Female",
  27442. image: {
  27443. source: "./media/characters/zenari/female.svg",
  27444. extra: 3281.6 / 3217,
  27445. bottom: 72.2 / 3353
  27446. }
  27447. },
  27448. male: {
  27449. height: math.unit(27.7, "m"),
  27450. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  27451. name: "Male",
  27452. image: {
  27453. source: "./media/characters/zenari/male.svg",
  27454. extra: 3008 / 2991,
  27455. bottom: 54.6 / 3069
  27456. }
  27457. },
  27458. },
  27459. [
  27460. {
  27461. name: "Macro",
  27462. height: math.unit(29.7, "meters"),
  27463. default: true
  27464. },
  27465. ]
  27466. ))
  27467. characterMakers.push(() => makeCharacter(
  27468. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  27469. {
  27470. female: {
  27471. height: math.unit(23.8, "m"),
  27472. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27473. name: "Female",
  27474. image: {
  27475. source: "./media/characters/mactarian/female.svg",
  27476. extra: 2662 / 2569,
  27477. bottom: 73 / 2736
  27478. }
  27479. },
  27480. male: {
  27481. height: math.unit(23.8, "m"),
  27482. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27483. name: "Male",
  27484. image: {
  27485. source: "./media/characters/mactarian/male.svg",
  27486. extra: 2673 / 2600,
  27487. bottom: 76 / 2750
  27488. }
  27489. },
  27490. },
  27491. [
  27492. {
  27493. name: "Macro",
  27494. height: math.unit(23.8, "meters"),
  27495. default: true
  27496. },
  27497. ]
  27498. ))
  27499. characterMakers.push(() => makeCharacter(
  27500. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  27501. {
  27502. female: {
  27503. height: math.unit(19.3, "m"),
  27504. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  27505. name: "Female",
  27506. image: {
  27507. source: "./media/characters/umok/female.svg",
  27508. extra: 2186 / 2078,
  27509. bottom: 87 / 2277
  27510. }
  27511. },
  27512. male: {
  27513. height: math.unit(19.5, "m"),
  27514. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  27515. name: "Male",
  27516. image: {
  27517. source: "./media/characters/umok/male.svg",
  27518. extra: 2233 / 2140,
  27519. bottom: 24.4 / 2258
  27520. }
  27521. },
  27522. },
  27523. [
  27524. {
  27525. name: "Macro",
  27526. height: math.unit(19.3, "meters"),
  27527. default: true
  27528. },
  27529. ]
  27530. ))
  27531. characterMakers.push(() => makeCharacter(
  27532. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  27533. {
  27534. female: {
  27535. height: math.unit(26.15, "m"),
  27536. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  27537. name: "Female",
  27538. image: {
  27539. source: "./media/characters/joraxian/female.svg",
  27540. extra: 2912 / 2824,
  27541. bottom: 36 / 2956
  27542. }
  27543. },
  27544. male: {
  27545. height: math.unit(25.4, "m"),
  27546. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  27547. name: "Male",
  27548. image: {
  27549. source: "./media/characters/joraxian/male.svg",
  27550. extra: 2877 / 2721,
  27551. bottom: 82 / 2967
  27552. }
  27553. },
  27554. },
  27555. [
  27556. {
  27557. name: "Macro",
  27558. height: math.unit(26.15, "meters"),
  27559. default: true
  27560. },
  27561. ]
  27562. ))
  27563. characterMakers.push(() => makeCharacter(
  27564. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  27565. {
  27566. female: {
  27567. height: math.unit(21.6, "m"),
  27568. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  27569. name: "Female",
  27570. image: {
  27571. source: "./media/characters/sthara/female.svg",
  27572. extra: 2516 / 2347,
  27573. bottom: 21.5 / 2537
  27574. }
  27575. },
  27576. male: {
  27577. height: math.unit(24, "m"),
  27578. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  27579. name: "Male",
  27580. image: {
  27581. source: "./media/characters/sthara/male.svg",
  27582. extra: 2732 / 2607,
  27583. bottom: 23 / 2732
  27584. }
  27585. },
  27586. },
  27587. [
  27588. {
  27589. name: "Macro",
  27590. height: math.unit(21.6, "meters"),
  27591. default: true
  27592. },
  27593. ]
  27594. ))
  27595. characterMakers.push(() => makeCharacter(
  27596. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27597. {
  27598. front: {
  27599. height: math.unit(6 + 4 / 12, "feet"),
  27600. weight: math.unit(175, "lb"),
  27601. name: "Front",
  27602. image: {
  27603. source: "./media/characters/luka-bryzant/front.svg",
  27604. extra: 311 / 289,
  27605. bottom: 4 / 315
  27606. }
  27607. },
  27608. back: {
  27609. height: math.unit(6 + 4 / 12, "feet"),
  27610. weight: math.unit(175, "lb"),
  27611. name: "Back",
  27612. image: {
  27613. source: "./media/characters/luka-bryzant/back.svg",
  27614. extra: 311 / 289,
  27615. bottom: 3.8 / 313.7
  27616. }
  27617. },
  27618. },
  27619. [
  27620. {
  27621. name: "Micro",
  27622. height: math.unit(10, "inches")
  27623. },
  27624. {
  27625. name: "Normal",
  27626. height: math.unit(6 + 4 / 12, "feet"),
  27627. default: true
  27628. },
  27629. {
  27630. name: "Large",
  27631. height: math.unit(12, "feet")
  27632. },
  27633. ]
  27634. ))
  27635. characterMakers.push(() => makeCharacter(
  27636. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27637. {
  27638. front: {
  27639. height: math.unit(5 + 7 / 12, "feet"),
  27640. weight: math.unit(185, "lb"),
  27641. name: "Front",
  27642. image: {
  27643. source: "./media/characters/aman-aquila/front.svg",
  27644. extra: 1013 / 976,
  27645. bottom: 45.6 / 1057
  27646. }
  27647. },
  27648. side: {
  27649. height: math.unit(5 + 7 / 12, "feet"),
  27650. weight: math.unit(185, "lb"),
  27651. name: "Side",
  27652. image: {
  27653. source: "./media/characters/aman-aquila/side.svg",
  27654. extra: 1054 / 1011,
  27655. bottom: 15 / 1070
  27656. }
  27657. },
  27658. back: {
  27659. height: math.unit(5 + 7 / 12, "feet"),
  27660. weight: math.unit(185, "lb"),
  27661. name: "Back",
  27662. image: {
  27663. source: "./media/characters/aman-aquila/back.svg",
  27664. extra: 1026 / 970,
  27665. bottom: 12 / 1039
  27666. }
  27667. },
  27668. head: {
  27669. height: math.unit(1.211, "feet"),
  27670. name: "Head",
  27671. image: {
  27672. source: "./media/characters/aman-aquila/head.svg",
  27673. }
  27674. },
  27675. },
  27676. [
  27677. {
  27678. name: "Minimicro",
  27679. height: math.unit(0.057, "inches")
  27680. },
  27681. {
  27682. name: "Micro",
  27683. height: math.unit(7, "inches")
  27684. },
  27685. {
  27686. name: "Mini",
  27687. height: math.unit(3 + 7 / 12, "feet")
  27688. },
  27689. {
  27690. name: "Normal",
  27691. height: math.unit(5 + 7 / 12, "feet"),
  27692. default: true
  27693. },
  27694. {
  27695. name: "Macro",
  27696. height: math.unit(157 + 7 / 12, "feet")
  27697. },
  27698. {
  27699. name: "Megamacro",
  27700. height: math.unit(1557 + 7 / 12, "feet")
  27701. },
  27702. {
  27703. name: "Gigamacro",
  27704. height: math.unit(15557 + 7 / 12, "feet")
  27705. },
  27706. ]
  27707. ))
  27708. characterMakers.push(() => makeCharacter(
  27709. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27710. {
  27711. front: {
  27712. height: math.unit(3 + 2 / 12, "inches"),
  27713. weight: math.unit(0.3, "ounces"),
  27714. name: "Front",
  27715. image: {
  27716. source: "./media/characters/hiphae/front.svg",
  27717. extra: 1931 / 1683,
  27718. bottom: 24 / 1955
  27719. }
  27720. },
  27721. },
  27722. [
  27723. {
  27724. name: "Normal",
  27725. height: math.unit(3 + 1 / 2, "inches"),
  27726. default: true
  27727. },
  27728. ]
  27729. ))
  27730. characterMakers.push(() => makeCharacter(
  27731. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27732. {
  27733. front: {
  27734. height: math.unit(5 + 10 / 12, "feet"),
  27735. weight: math.unit(165, "lb"),
  27736. name: "Front",
  27737. image: {
  27738. source: "./media/characters/nicky/front.svg",
  27739. extra: 3144 / 2886,
  27740. bottom: 45.6 / 3192
  27741. }
  27742. },
  27743. back: {
  27744. height: math.unit(5 + 10 / 12, "feet"),
  27745. weight: math.unit(165, "lb"),
  27746. name: "Back",
  27747. image: {
  27748. source: "./media/characters/nicky/back.svg",
  27749. extra: 3055 / 2804,
  27750. bottom: 28.4 / 3087
  27751. }
  27752. },
  27753. frontclothed: {
  27754. height: math.unit(5 + 10 / 12, "feet"),
  27755. weight: math.unit(165, "lb"),
  27756. name: "Front-clothed",
  27757. image: {
  27758. source: "./media/characters/nicky/front-clothed.svg",
  27759. extra: 3184.9 / 2926.9,
  27760. bottom: 86.5 / 3239.9
  27761. }
  27762. },
  27763. foot: {
  27764. height: math.unit(1.16, "feet"),
  27765. name: "Foot",
  27766. image: {
  27767. source: "./media/characters/nicky/foot.svg"
  27768. }
  27769. },
  27770. feet: {
  27771. height: math.unit(1.34, "feet"),
  27772. name: "Feet",
  27773. image: {
  27774. source: "./media/characters/nicky/feet.svg"
  27775. }
  27776. },
  27777. maw: {
  27778. height: math.unit(0.9, "feet"),
  27779. name: "Maw",
  27780. image: {
  27781. source: "./media/characters/nicky/maw.svg"
  27782. }
  27783. },
  27784. },
  27785. [
  27786. {
  27787. name: "Normal",
  27788. height: math.unit(5 + 10 / 12, "feet"),
  27789. default: true
  27790. },
  27791. {
  27792. name: "Macro",
  27793. height: math.unit(60, "feet")
  27794. },
  27795. {
  27796. name: "Megamacro",
  27797. height: math.unit(1, "mile")
  27798. },
  27799. ]
  27800. ))
  27801. characterMakers.push(() => makeCharacter(
  27802. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27803. {
  27804. side: {
  27805. height: math.unit(10, "feet"),
  27806. weight: math.unit(600, "lb"),
  27807. name: "Side",
  27808. image: {
  27809. source: "./media/characters/blair/side.svg",
  27810. bottom: 16.6 / 475,
  27811. extra: 458 / 431
  27812. }
  27813. },
  27814. },
  27815. [
  27816. {
  27817. name: "Micro",
  27818. height: math.unit(8, "inches")
  27819. },
  27820. {
  27821. name: "Normal",
  27822. height: math.unit(10, "feet"),
  27823. default: true
  27824. },
  27825. {
  27826. name: "Macro",
  27827. height: math.unit(180, "feet")
  27828. },
  27829. ]
  27830. ))
  27831. characterMakers.push(() => makeCharacter(
  27832. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27833. {
  27834. front: {
  27835. height: math.unit(5 + 4 / 12, "feet"),
  27836. weight: math.unit(125, "lb"),
  27837. name: "Front",
  27838. image: {
  27839. source: "./media/characters/fisher/front.svg",
  27840. extra: 444 / 390,
  27841. bottom: 2 / 444.8
  27842. }
  27843. },
  27844. },
  27845. [
  27846. {
  27847. name: "Micro",
  27848. height: math.unit(4, "inches")
  27849. },
  27850. {
  27851. name: "Normal",
  27852. height: math.unit(5 + 4 / 12, "feet"),
  27853. default: true
  27854. },
  27855. {
  27856. name: "Macro",
  27857. height: math.unit(100, "feet")
  27858. },
  27859. ]
  27860. ))
  27861. characterMakers.push(() => makeCharacter(
  27862. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27863. {
  27864. front: {
  27865. height: math.unit(6.71, "feet"),
  27866. weight: math.unit(200, "lb"),
  27867. preyCapacity: math.unit(1000000, "people"),
  27868. name: "Front",
  27869. image: {
  27870. source: "./media/characters/gliss/front.svg",
  27871. extra: 2347 / 2231,
  27872. bottom: 113 / 2462
  27873. }
  27874. },
  27875. hammerspaceSize: {
  27876. height: math.unit(6.71 * 717, "feet"),
  27877. weight: math.unit(200, "lb"),
  27878. preyCapacity: math.unit(1000000, "people"),
  27879. name: "Hammerspace Size",
  27880. image: {
  27881. source: "./media/characters/gliss/front.svg",
  27882. extra: 2347 / 2231,
  27883. bottom: 113 / 2462
  27884. }
  27885. },
  27886. },
  27887. [
  27888. {
  27889. name: "Normal",
  27890. height: math.unit(6.71, "feet"),
  27891. default: true
  27892. },
  27893. ]
  27894. ))
  27895. characterMakers.push(() => makeCharacter(
  27896. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27897. {
  27898. side: {
  27899. height: math.unit(1.44, "m"),
  27900. weight: math.unit(80, "kg"),
  27901. name: "Side",
  27902. image: {
  27903. source: "./media/characters/dune-anderson/side.svg",
  27904. bottom: 49 / 1426
  27905. }
  27906. },
  27907. },
  27908. [
  27909. {
  27910. name: "Wolf-sized",
  27911. height: math.unit(1.44, "meters")
  27912. },
  27913. {
  27914. name: "Normal",
  27915. height: math.unit(5.05, "meters"),
  27916. default: true
  27917. },
  27918. {
  27919. name: "Big",
  27920. height: math.unit(14.4, "meters")
  27921. },
  27922. {
  27923. name: "Huge",
  27924. height: math.unit(144, "meters")
  27925. },
  27926. ]
  27927. ))
  27928. characterMakers.push(() => makeCharacter(
  27929. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27930. {
  27931. front: {
  27932. height: math.unit(6, "feet"),
  27933. weight: math.unit(220, "lb"),
  27934. name: "Front",
  27935. image: {
  27936. source: "./media/characters/hind/front.svg",
  27937. extra: 1912/1787,
  27938. bottom: 52/1964
  27939. }
  27940. },
  27941. back: {
  27942. height: math.unit(6, "feet"),
  27943. weight: math.unit(220, "lb"),
  27944. name: "Back",
  27945. image: {
  27946. source: "./media/characters/hind/back.svg",
  27947. extra: 1901/1794,
  27948. bottom: 26/1927
  27949. }
  27950. },
  27951. },
  27952. [
  27953. {
  27954. name: "Normal",
  27955. height: math.unit(6, "feet"),
  27956. default: true
  27957. },
  27958. ]
  27959. ))
  27960. characterMakers.push(() => makeCharacter(
  27961. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27962. {
  27963. front: {
  27964. height: math.unit(2.1, "meters"),
  27965. weight: math.unit(150, "lb"),
  27966. name: "Front",
  27967. image: {
  27968. source: "./media/characters/tharquench-sizestealer/front.svg",
  27969. extra: 1605/1470,
  27970. bottom: 36/1641
  27971. }
  27972. },
  27973. frontAlt: {
  27974. height: math.unit(2.1, "meters"),
  27975. weight: math.unit(150, "lb"),
  27976. name: "Front (Alt)",
  27977. image: {
  27978. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27979. extra: 2318 / 2063,
  27980. bottom: 93.4 / 2410
  27981. }
  27982. },
  27983. },
  27984. [
  27985. {
  27986. name: "Nano",
  27987. height: math.unit(1, "mm")
  27988. },
  27989. {
  27990. name: "Micro",
  27991. height: math.unit(1, "cm")
  27992. },
  27993. {
  27994. name: "Normal",
  27995. height: math.unit(2.1, "meters"),
  27996. default: true
  27997. },
  27998. ]
  27999. ))
  28000. characterMakers.push(() => makeCharacter(
  28001. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  28002. {
  28003. front: {
  28004. height: math.unit(7 + 5 / 12, "feet"),
  28005. weight: math.unit(357, "lb"),
  28006. name: "Front",
  28007. image: {
  28008. source: "./media/characters/solex-draconov/front.svg",
  28009. extra: 1993 / 1865,
  28010. bottom: 117 / 2111
  28011. }
  28012. },
  28013. },
  28014. [
  28015. {
  28016. name: "Natural Height",
  28017. height: math.unit(7 + 5 / 12, "feet"),
  28018. default: true
  28019. },
  28020. {
  28021. name: "Macro",
  28022. height: math.unit(350, "feet")
  28023. },
  28024. {
  28025. name: "Macro+",
  28026. height: math.unit(1000, "feet")
  28027. },
  28028. {
  28029. name: "Megamacro",
  28030. height: math.unit(20, "km")
  28031. },
  28032. {
  28033. name: "Megamacro+",
  28034. height: math.unit(1000, "km")
  28035. },
  28036. {
  28037. name: "Gigamacro",
  28038. height: math.unit(2.5, "Gm")
  28039. },
  28040. {
  28041. name: "Teramacro",
  28042. height: math.unit(15, "Tm")
  28043. },
  28044. {
  28045. name: "Galactic",
  28046. height: math.unit(30, "Zm")
  28047. },
  28048. {
  28049. name: "Universal",
  28050. height: math.unit(21000, "Ym")
  28051. },
  28052. {
  28053. name: "Omniversal",
  28054. height: math.unit(9.861e50, "Ym")
  28055. },
  28056. {
  28057. name: "Existential",
  28058. height: math.unit(1e300, "meters")
  28059. },
  28060. ]
  28061. ))
  28062. characterMakers.push(() => makeCharacter(
  28063. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  28064. {
  28065. side: {
  28066. height: math.unit(25, "feet"),
  28067. weight: math.unit(90000, "lb"),
  28068. name: "Side",
  28069. image: {
  28070. source: "./media/characters/mandarax/side.svg",
  28071. extra: 614 / 332,
  28072. bottom: 55 / 630
  28073. }
  28074. },
  28075. lounging: {
  28076. height: math.unit(15.4, "feet"),
  28077. weight: math.unit(90000, "lb"),
  28078. name: "Lounging",
  28079. image: {
  28080. source: "./media/characters/mandarax/lounging.svg",
  28081. extra: 817/609,
  28082. bottom: 685/1502
  28083. }
  28084. },
  28085. head: {
  28086. height: math.unit(11.4, "feet"),
  28087. name: "Head",
  28088. image: {
  28089. source: "./media/characters/mandarax/head.svg"
  28090. }
  28091. },
  28092. belly: {
  28093. height: math.unit(33, "feet"),
  28094. name: "Belly",
  28095. preyCapacity: math.unit(500, "people"),
  28096. image: {
  28097. source: "./media/characters/mandarax/belly.svg"
  28098. }
  28099. },
  28100. dick: {
  28101. height: math.unit(8.46, "feet"),
  28102. name: "Dick",
  28103. image: {
  28104. source: "./media/characters/mandarax/dick.svg"
  28105. }
  28106. },
  28107. top: {
  28108. height: math.unit(28, "meters"),
  28109. name: "Top",
  28110. image: {
  28111. source: "./media/characters/mandarax/top.svg"
  28112. }
  28113. },
  28114. },
  28115. [
  28116. {
  28117. name: "Normal",
  28118. height: math.unit(25, "feet"),
  28119. default: true
  28120. },
  28121. ]
  28122. ))
  28123. characterMakers.push(() => makeCharacter(
  28124. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  28125. {
  28126. front: {
  28127. height: math.unit(5, "feet"),
  28128. weight: math.unit(90, "lb"),
  28129. name: "Front",
  28130. image: {
  28131. source: "./media/characters/pixil/front.svg",
  28132. extra: 2000 / 1618,
  28133. bottom: 12.3 / 2011
  28134. }
  28135. },
  28136. },
  28137. [
  28138. {
  28139. name: "Normal",
  28140. height: math.unit(5, "feet"),
  28141. default: true
  28142. },
  28143. {
  28144. name: "Megamacro",
  28145. height: math.unit(10, "miles"),
  28146. },
  28147. ]
  28148. ))
  28149. characterMakers.push(() => makeCharacter(
  28150. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  28151. {
  28152. front: {
  28153. height: math.unit(7 + 2 / 12, "feet"),
  28154. weight: math.unit(200, "lb"),
  28155. name: "Front",
  28156. image: {
  28157. source: "./media/characters/angel/front.svg",
  28158. extra: 1946/1840,
  28159. bottom: 30/1976
  28160. }
  28161. },
  28162. },
  28163. [
  28164. {
  28165. name: "Normal",
  28166. height: math.unit(7 + 2 / 12, "feet"),
  28167. default: true
  28168. },
  28169. {
  28170. name: "Macro",
  28171. height: math.unit(1000, "feet")
  28172. },
  28173. {
  28174. name: "Megamacro",
  28175. height: math.unit(2, "miles")
  28176. },
  28177. {
  28178. name: "Gigamacro",
  28179. height: math.unit(20, "earths")
  28180. },
  28181. ]
  28182. ))
  28183. characterMakers.push(() => makeCharacter(
  28184. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  28185. {
  28186. front: {
  28187. height: math.unit(5, "feet"),
  28188. weight: math.unit(180, "lb"),
  28189. name: "Front",
  28190. image: {
  28191. source: "./media/characters/mekana/front.svg",
  28192. extra: 1671 / 1605,
  28193. bottom: 3.5 / 1691
  28194. }
  28195. },
  28196. side: {
  28197. height: math.unit(5, "feet"),
  28198. weight: math.unit(180, "lb"),
  28199. name: "Side",
  28200. image: {
  28201. source: "./media/characters/mekana/side.svg",
  28202. extra: 1671 / 1605,
  28203. bottom: 3.5 / 1691
  28204. }
  28205. },
  28206. back: {
  28207. height: math.unit(5, "feet"),
  28208. weight: math.unit(180, "lb"),
  28209. name: "Back",
  28210. image: {
  28211. source: "./media/characters/mekana/back.svg",
  28212. extra: 1671 / 1605,
  28213. bottom: 3.5 / 1691
  28214. }
  28215. },
  28216. },
  28217. [
  28218. {
  28219. name: "Normal",
  28220. height: math.unit(5, "feet"),
  28221. default: true
  28222. },
  28223. ]
  28224. ))
  28225. characterMakers.push(() => makeCharacter(
  28226. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  28227. {
  28228. front: {
  28229. height: math.unit(4 + 6 / 12, "feet"),
  28230. weight: math.unit(80, "lb"),
  28231. name: "Front",
  28232. image: {
  28233. source: "./media/characters/pixie/front.svg",
  28234. extra: 1924 / 1825,
  28235. bottom: 22.4 / 1946
  28236. }
  28237. },
  28238. },
  28239. [
  28240. {
  28241. name: "Normal",
  28242. height: math.unit(4 + 6 / 12, "feet"),
  28243. default: true
  28244. },
  28245. {
  28246. name: "Macro",
  28247. height: math.unit(40, "feet")
  28248. },
  28249. ]
  28250. ))
  28251. characterMakers.push(() => makeCharacter(
  28252. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  28253. {
  28254. front: {
  28255. height: math.unit(2.1, "meters"),
  28256. weight: math.unit(200, "lb"),
  28257. name: "Front",
  28258. image: {
  28259. source: "./media/characters/the-lascivious/front.svg",
  28260. extra: 1 / 0.893,
  28261. bottom: 3.5 / 573.7
  28262. }
  28263. },
  28264. },
  28265. [
  28266. {
  28267. name: "Human Scale",
  28268. height: math.unit(2.1, "meters")
  28269. },
  28270. {
  28271. name: "Wolxi Scale",
  28272. height: math.unit(46.2, "m"),
  28273. default: true
  28274. },
  28275. {
  28276. name: "Boinker of Buildings",
  28277. height: math.unit(10, "km")
  28278. },
  28279. {
  28280. name: "Shagger of Skyscrapers",
  28281. height: math.unit(40, "km")
  28282. },
  28283. {
  28284. name: "Banger of Boroughs",
  28285. height: math.unit(4000, "km")
  28286. },
  28287. {
  28288. name: "Screwer of States",
  28289. height: math.unit(100000, "km")
  28290. },
  28291. {
  28292. name: "Pounder of Planets",
  28293. height: math.unit(2000000, "km")
  28294. },
  28295. ]
  28296. ))
  28297. characterMakers.push(() => makeCharacter(
  28298. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  28299. {
  28300. front: {
  28301. height: math.unit(6, "feet"),
  28302. weight: math.unit(150, "lb"),
  28303. name: "Front",
  28304. image: {
  28305. source: "./media/characters/aj/front.svg",
  28306. extra: 2039 / 1562,
  28307. bottom: 40 / 2079
  28308. }
  28309. },
  28310. },
  28311. [
  28312. {
  28313. name: "Normal",
  28314. height: math.unit(11 + 6 / 12, "feet"),
  28315. default: true
  28316. },
  28317. {
  28318. name: "Megamacro",
  28319. height: math.unit(60, "megameters")
  28320. },
  28321. ]
  28322. ))
  28323. characterMakers.push(() => makeCharacter(
  28324. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  28325. {
  28326. side: {
  28327. height: math.unit(31 + 8 / 12, "feet"),
  28328. weight: math.unit(75000, "kg"),
  28329. name: "Side",
  28330. image: {
  28331. source: "./media/characters/koros/side.svg",
  28332. extra: 1442 / 1297,
  28333. bottom: 122.7 / 1562
  28334. }
  28335. },
  28336. dicksKingsCrown: {
  28337. height: math.unit(6, "feet"),
  28338. name: "Dicks (King's Crown)",
  28339. image: {
  28340. source: "./media/characters/koros/dicks-kings-crown.svg"
  28341. }
  28342. },
  28343. dicksTailSet: {
  28344. height: math.unit(3, "feet"),
  28345. name: "Dicks (Tail Set)",
  28346. image: {
  28347. source: "./media/characters/koros/dicks-tail-set.svg"
  28348. }
  28349. },
  28350. dickCumming: {
  28351. height: math.unit(7.98, "feet"),
  28352. name: "Dick (Cumming)",
  28353. image: {
  28354. source: "./media/characters/koros/dick-cumming.svg"
  28355. }
  28356. },
  28357. dicksBack: {
  28358. height: math.unit(5.9, "feet"),
  28359. name: "Dicks (Back)",
  28360. image: {
  28361. source: "./media/characters/koros/dicks-back.svg"
  28362. }
  28363. },
  28364. dicksFront: {
  28365. height: math.unit(3.72, "feet"),
  28366. name: "Dicks (Front)",
  28367. image: {
  28368. source: "./media/characters/koros/dicks-front.svg"
  28369. }
  28370. },
  28371. dicksPeeking: {
  28372. height: math.unit(3.0, "feet"),
  28373. name: "Dicks (Peeking)",
  28374. image: {
  28375. source: "./media/characters/koros/dicks-peeking.svg"
  28376. }
  28377. },
  28378. eye: {
  28379. height: math.unit(1.7, "feet"),
  28380. name: "Eye",
  28381. image: {
  28382. source: "./media/characters/koros/eye.svg"
  28383. }
  28384. },
  28385. headFront: {
  28386. height: math.unit(11.69, "feet"),
  28387. name: "Head (Front)",
  28388. image: {
  28389. source: "./media/characters/koros/head-front.svg"
  28390. }
  28391. },
  28392. headSide: {
  28393. height: math.unit(14, "feet"),
  28394. name: "Head (Side)",
  28395. image: {
  28396. source: "./media/characters/koros/head-side.svg"
  28397. }
  28398. },
  28399. leg: {
  28400. height: math.unit(17, "feet"),
  28401. name: "Leg",
  28402. image: {
  28403. source: "./media/characters/koros/leg.svg"
  28404. }
  28405. },
  28406. mawSide: {
  28407. height: math.unit(12.8, "feet"),
  28408. name: "Maw (Side)",
  28409. image: {
  28410. source: "./media/characters/koros/maw-side.svg"
  28411. }
  28412. },
  28413. mawSpitting: {
  28414. height: math.unit(17, "feet"),
  28415. name: "Maw (Spitting)",
  28416. image: {
  28417. source: "./media/characters/koros/maw-spitting.svg"
  28418. }
  28419. },
  28420. slit: {
  28421. height: math.unit(2.8, "feet"),
  28422. name: "Slit",
  28423. image: {
  28424. source: "./media/characters/koros/slit.svg"
  28425. }
  28426. },
  28427. stomach: {
  28428. height: math.unit(6.8, "feet"),
  28429. preyCapacity: math.unit(20, "people"),
  28430. name: "Stomach",
  28431. image: {
  28432. source: "./media/characters/koros/stomach.svg"
  28433. }
  28434. },
  28435. wingspanBottom: {
  28436. height: math.unit(114, "feet"),
  28437. name: "Wingspan (Bottom)",
  28438. image: {
  28439. source: "./media/characters/koros/wingspan-bottom.svg"
  28440. }
  28441. },
  28442. wingspanTop: {
  28443. height: math.unit(104, "feet"),
  28444. name: "Wingspan (Top)",
  28445. image: {
  28446. source: "./media/characters/koros/wingspan-top.svg"
  28447. }
  28448. },
  28449. },
  28450. [
  28451. {
  28452. name: "Normal",
  28453. height: math.unit(31 + 8 / 12, "feet"),
  28454. default: true
  28455. },
  28456. ]
  28457. ))
  28458. characterMakers.push(() => makeCharacter(
  28459. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  28460. {
  28461. front: {
  28462. height: math.unit(18 + 5 / 12, "feet"),
  28463. weight: math.unit(3750, "kg"),
  28464. name: "Front",
  28465. image: {
  28466. source: "./media/characters/vexx/front.svg",
  28467. extra: 426 / 396,
  28468. bottom: 31.5 / 458
  28469. }
  28470. },
  28471. maw: {
  28472. height: math.unit(6, "feet"),
  28473. name: "Maw",
  28474. image: {
  28475. source: "./media/characters/vexx/maw.svg"
  28476. }
  28477. },
  28478. },
  28479. [
  28480. {
  28481. name: "Normal",
  28482. height: math.unit(18 + 5 / 12, "feet"),
  28483. default: true
  28484. },
  28485. ]
  28486. ))
  28487. characterMakers.push(() => makeCharacter(
  28488. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  28489. {
  28490. front: {
  28491. height: math.unit(17 + 6 / 12, "feet"),
  28492. weight: math.unit(150, "lb"),
  28493. name: "Front",
  28494. image: {
  28495. source: "./media/characters/baadra/front.svg",
  28496. extra: 1694/1553,
  28497. bottom: 179/1873
  28498. }
  28499. },
  28500. frontAlt: {
  28501. height: math.unit(17 + 6 / 12, "feet"),
  28502. weight: math.unit(150, "lb"),
  28503. name: "Front (Alt)",
  28504. image: {
  28505. source: "./media/characters/baadra/front-alt.svg",
  28506. extra: 3137 / 2890,
  28507. bottom: 168.4 / 3305
  28508. }
  28509. },
  28510. back: {
  28511. height: math.unit(17 + 6 / 12, "feet"),
  28512. weight: math.unit(150, "lb"),
  28513. name: "Back",
  28514. image: {
  28515. source: "./media/characters/baadra/back.svg",
  28516. extra: 3142 / 2890,
  28517. bottom: 220 / 3371
  28518. }
  28519. },
  28520. head: {
  28521. height: math.unit(5.45, "feet"),
  28522. name: "Head",
  28523. image: {
  28524. source: "./media/characters/baadra/head.svg"
  28525. }
  28526. },
  28527. headAngry: {
  28528. height: math.unit(4.95, "feet"),
  28529. name: "Head (Angry)",
  28530. image: {
  28531. source: "./media/characters/baadra/head-angry.svg"
  28532. }
  28533. },
  28534. headOpen: {
  28535. height: math.unit(6, "feet"),
  28536. name: "Head (Open)",
  28537. image: {
  28538. source: "./media/characters/baadra/head-open.svg"
  28539. }
  28540. },
  28541. },
  28542. [
  28543. {
  28544. name: "Normal",
  28545. height: math.unit(17 + 6 / 12, "feet"),
  28546. default: true
  28547. },
  28548. ]
  28549. ))
  28550. characterMakers.push(() => makeCharacter(
  28551. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  28552. {
  28553. front: {
  28554. height: math.unit(7 + 3 / 12, "feet"),
  28555. weight: math.unit(180, "lb"),
  28556. name: "Front",
  28557. image: {
  28558. source: "./media/characters/juri/front.svg",
  28559. extra: 1401 / 1237,
  28560. bottom: 18.5 / 1418
  28561. }
  28562. },
  28563. side: {
  28564. height: math.unit(7 + 3 / 12, "feet"),
  28565. weight: math.unit(180, "lb"),
  28566. name: "Side",
  28567. image: {
  28568. source: "./media/characters/juri/side.svg",
  28569. extra: 1424 / 1242,
  28570. bottom: 18.5 / 1447
  28571. }
  28572. },
  28573. sitting: {
  28574. height: math.unit(6, "feet"),
  28575. weight: math.unit(180, "lb"),
  28576. name: "Sitting",
  28577. image: {
  28578. source: "./media/characters/juri/sitting.svg",
  28579. extra: 1270 / 1143,
  28580. bottom: 100 / 1343
  28581. }
  28582. },
  28583. back: {
  28584. height: math.unit(7 + 3 / 12, "feet"),
  28585. weight: math.unit(180, "lb"),
  28586. name: "Back",
  28587. image: {
  28588. source: "./media/characters/juri/back.svg",
  28589. extra: 1377 / 1240,
  28590. bottom: 23.7 / 1405
  28591. }
  28592. },
  28593. maw: {
  28594. height: math.unit(2.8, "feet"),
  28595. name: "Maw",
  28596. image: {
  28597. source: "./media/characters/juri/maw.svg"
  28598. }
  28599. },
  28600. stomach: {
  28601. height: math.unit(0.89, "feet"),
  28602. preyCapacity: math.unit(4, "liters"),
  28603. name: "Stomach",
  28604. image: {
  28605. source: "./media/characters/juri/stomach.svg"
  28606. }
  28607. },
  28608. },
  28609. [
  28610. {
  28611. name: "Normal",
  28612. height: math.unit(7 + 3 / 12, "feet"),
  28613. default: true
  28614. },
  28615. ]
  28616. ))
  28617. characterMakers.push(() => makeCharacter(
  28618. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28619. {
  28620. fox: {
  28621. height: math.unit(5 + 6 / 12, "feet"),
  28622. weight: math.unit(140, "lb"),
  28623. name: "Fox",
  28624. image: {
  28625. source: "./media/characters/maxene-sita/fox.svg",
  28626. extra: 146 / 138,
  28627. bottom: 2.1 / 148.19
  28628. }
  28629. },
  28630. foxLaying: {
  28631. height: math.unit(1.70, "feet"),
  28632. weight: math.unit(140, "lb"),
  28633. name: "Fox (Laying)",
  28634. image: {
  28635. source: "./media/characters/maxene-sita/fox-laying.svg",
  28636. extra: 910 / 572,
  28637. bottom: 71 / 981
  28638. }
  28639. },
  28640. kitsune: {
  28641. height: math.unit(10, "feet"),
  28642. weight: math.unit(800, "lb"),
  28643. name: "Kitsune",
  28644. image: {
  28645. source: "./media/characters/maxene-sita/kitsune.svg",
  28646. extra: 185 / 176,
  28647. bottom: 4.7 / 189.9
  28648. }
  28649. },
  28650. hellhound: {
  28651. height: math.unit(10, "feet"),
  28652. weight: math.unit(700, "lb"),
  28653. name: "Hellhound",
  28654. image: {
  28655. source: "./media/characters/maxene-sita/hellhound.svg",
  28656. extra: 1600 / 1545,
  28657. bottom: 81 / 1681
  28658. }
  28659. },
  28660. },
  28661. [
  28662. {
  28663. name: "Normal",
  28664. height: math.unit(5 + 6 / 12, "feet"),
  28665. default: true
  28666. },
  28667. ]
  28668. ))
  28669. characterMakers.push(() => makeCharacter(
  28670. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28671. {
  28672. front: {
  28673. height: math.unit(3 + 4 / 12, "feet"),
  28674. weight: math.unit(70, "lb"),
  28675. name: "Front",
  28676. image: {
  28677. source: "./media/characters/maia/front.svg",
  28678. extra: 227 / 219.5,
  28679. bottom: 40 / 267
  28680. }
  28681. },
  28682. back: {
  28683. height: math.unit(3 + 4 / 12, "feet"),
  28684. weight: math.unit(70, "lb"),
  28685. name: "Back",
  28686. image: {
  28687. source: "./media/characters/maia/back.svg",
  28688. extra: 237 / 225
  28689. }
  28690. },
  28691. },
  28692. [
  28693. {
  28694. name: "Normal",
  28695. height: math.unit(3 + 4 / 12, "feet"),
  28696. default: true
  28697. },
  28698. ]
  28699. ))
  28700. characterMakers.push(() => makeCharacter(
  28701. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28702. {
  28703. front: {
  28704. height: math.unit(5 + 10 / 12, "feet"),
  28705. weight: math.unit(197, "lb"),
  28706. name: "Front",
  28707. image: {
  28708. source: "./media/characters/jabaro/front.svg",
  28709. extra: 225 / 216,
  28710. bottom: 5.06 / 230
  28711. }
  28712. },
  28713. back: {
  28714. height: math.unit(5 + 10 / 12, "feet"),
  28715. weight: math.unit(197, "lb"),
  28716. name: "Back",
  28717. image: {
  28718. source: "./media/characters/jabaro/back.svg",
  28719. extra: 225 / 219,
  28720. bottom: 1.9 / 227
  28721. }
  28722. },
  28723. },
  28724. [
  28725. {
  28726. name: "Normal",
  28727. height: math.unit(5 + 10 / 12, "feet"),
  28728. default: true
  28729. },
  28730. ]
  28731. ))
  28732. characterMakers.push(() => makeCharacter(
  28733. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28734. {
  28735. front: {
  28736. height: math.unit(5 + 8 / 12, "feet"),
  28737. weight: math.unit(139, "lb"),
  28738. name: "Front",
  28739. image: {
  28740. source: "./media/characters/risa/front.svg",
  28741. extra: 270 / 260,
  28742. bottom: 11.2 / 282
  28743. }
  28744. },
  28745. back: {
  28746. height: math.unit(5 + 8 / 12, "feet"),
  28747. weight: math.unit(139, "lb"),
  28748. name: "Back",
  28749. image: {
  28750. source: "./media/characters/risa/back.svg",
  28751. extra: 264 / 255,
  28752. bottom: 4 / 268
  28753. }
  28754. },
  28755. },
  28756. [
  28757. {
  28758. name: "Normal",
  28759. height: math.unit(5 + 8 / 12, "feet"),
  28760. default: true
  28761. },
  28762. ]
  28763. ))
  28764. characterMakers.push(() => makeCharacter(
  28765. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28766. {
  28767. front: {
  28768. height: math.unit(2 + 11 / 12, "feet"),
  28769. weight: math.unit(30, "lb"),
  28770. name: "Front",
  28771. image: {
  28772. source: "./media/characters/weatley/front.svg",
  28773. bottom: 10.7 / 414,
  28774. extra: 403.5 / 362
  28775. }
  28776. },
  28777. back: {
  28778. height: math.unit(2 + 11 / 12, "feet"),
  28779. weight: math.unit(30, "lb"),
  28780. name: "Back",
  28781. image: {
  28782. source: "./media/characters/weatley/back.svg",
  28783. bottom: 10.7 / 414,
  28784. extra: 403.5 / 362
  28785. }
  28786. },
  28787. },
  28788. [
  28789. {
  28790. name: "Normal",
  28791. height: math.unit(2 + 11 / 12, "feet"),
  28792. default: true
  28793. },
  28794. ]
  28795. ))
  28796. characterMakers.push(() => makeCharacter(
  28797. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28798. {
  28799. front: {
  28800. height: math.unit(5 + 2 / 12, "feet"),
  28801. weight: math.unit(50, "kg"),
  28802. name: "Front",
  28803. image: {
  28804. source: "./media/characters/mercury-crescent/front.svg",
  28805. extra: 1088 / 1033,
  28806. bottom: 18.9 / 1109
  28807. }
  28808. },
  28809. },
  28810. [
  28811. {
  28812. name: "Normal",
  28813. height: math.unit(5 + 2 / 12, "feet"),
  28814. default: true
  28815. },
  28816. ]
  28817. ))
  28818. characterMakers.push(() => makeCharacter(
  28819. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28820. {
  28821. front: {
  28822. height: math.unit(2, "feet"),
  28823. weight: math.unit(15, "kg"),
  28824. name: "Front",
  28825. image: {
  28826. source: "./media/characters/diamond-jones/front.svg",
  28827. extra: 727/723,
  28828. bottom: 46/773
  28829. }
  28830. },
  28831. },
  28832. [
  28833. {
  28834. name: "Normal",
  28835. height: math.unit(2, "feet"),
  28836. default: true
  28837. },
  28838. ]
  28839. ))
  28840. characterMakers.push(() => makeCharacter(
  28841. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28842. {
  28843. front: {
  28844. height: math.unit(3, "feet"),
  28845. weight: math.unit(30, "kg"),
  28846. name: "Front",
  28847. image: {
  28848. source: "./media/characters/sweet-bit/front.svg",
  28849. extra: 675 / 567,
  28850. bottom: 27.7 / 703
  28851. }
  28852. },
  28853. },
  28854. [
  28855. {
  28856. name: "Normal",
  28857. height: math.unit(3, "feet"),
  28858. default: true
  28859. },
  28860. ]
  28861. ))
  28862. characterMakers.push(() => makeCharacter(
  28863. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28864. {
  28865. side: {
  28866. height: math.unit(9.178, "feet"),
  28867. weight: math.unit(500, "lb"),
  28868. name: "Side",
  28869. image: {
  28870. source: "./media/characters/umbrazen/side.svg",
  28871. extra: 1730 / 1473,
  28872. bottom: 34.6 / 1765
  28873. }
  28874. },
  28875. },
  28876. [
  28877. {
  28878. name: "Normal",
  28879. height: math.unit(9.178, "feet"),
  28880. default: true
  28881. },
  28882. ]
  28883. ))
  28884. characterMakers.push(() => makeCharacter(
  28885. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28886. {
  28887. front: {
  28888. height: math.unit(10, "feet"),
  28889. weight: math.unit(750, "lb"),
  28890. name: "Front",
  28891. image: {
  28892. source: "./media/characters/arlist/front.svg",
  28893. extra: 961 / 778,
  28894. bottom: 6.2 / 986
  28895. }
  28896. },
  28897. },
  28898. [
  28899. {
  28900. name: "Normal",
  28901. height: math.unit(10, "feet"),
  28902. default: true
  28903. },
  28904. ]
  28905. ))
  28906. characterMakers.push(() => makeCharacter(
  28907. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28908. {
  28909. front: {
  28910. height: math.unit(5 + 1 / 12, "feet"),
  28911. weight: math.unit(110, "lb"),
  28912. name: "Front",
  28913. image: {
  28914. source: "./media/characters/aradel/front.svg",
  28915. extra: 324 / 303,
  28916. bottom: 3.6 / 329.4
  28917. }
  28918. },
  28919. },
  28920. [
  28921. {
  28922. name: "Normal",
  28923. height: math.unit(5 + 1 / 12, "feet"),
  28924. default: true
  28925. },
  28926. ]
  28927. ))
  28928. characterMakers.push(() => makeCharacter(
  28929. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28930. {
  28931. dressed: {
  28932. height: math.unit(3 + 8 / 12, "feet"),
  28933. weight: math.unit(50, "lb"),
  28934. name: "Dressed",
  28935. image: {
  28936. source: "./media/characters/serryn/dressed.svg",
  28937. extra: 1792 / 1656,
  28938. bottom: 43.5 / 1840
  28939. }
  28940. },
  28941. nude: {
  28942. height: math.unit(3 + 8 / 12, "feet"),
  28943. weight: math.unit(50, "lb"),
  28944. name: "Nude",
  28945. image: {
  28946. source: "./media/characters/serryn/nude.svg",
  28947. extra: 1792 / 1656,
  28948. bottom: 43.5 / 1840
  28949. }
  28950. },
  28951. },
  28952. [
  28953. {
  28954. name: "Normal",
  28955. height: math.unit(3 + 8 / 12, "feet"),
  28956. default: true
  28957. },
  28958. ]
  28959. ))
  28960. characterMakers.push(() => makeCharacter(
  28961. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28962. {
  28963. front: {
  28964. height: math.unit(7 + 10 / 12, "feet"),
  28965. weight: math.unit(255, "lb"),
  28966. name: "Front",
  28967. image: {
  28968. source: "./media/characters/xavier-thyme/front.svg",
  28969. extra: 3733 / 3642,
  28970. bottom: 131 / 3869
  28971. }
  28972. },
  28973. frontRaven: {
  28974. height: math.unit(7 + 10 / 12, "feet"),
  28975. weight: math.unit(255, "lb"),
  28976. name: "Front (Raven)",
  28977. image: {
  28978. source: "./media/characters/xavier-thyme/front-raven.svg",
  28979. extra: 4385 / 3642,
  28980. bottom: 131 / 4517
  28981. }
  28982. },
  28983. },
  28984. [
  28985. {
  28986. name: "Normal",
  28987. height: math.unit(7 + 10 / 12, "feet"),
  28988. default: true
  28989. },
  28990. ]
  28991. ))
  28992. characterMakers.push(() => makeCharacter(
  28993. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28994. {
  28995. front: {
  28996. height: math.unit(1.6, "m"),
  28997. weight: math.unit(50, "kg"),
  28998. name: "Front",
  28999. image: {
  29000. source: "./media/characters/kiki/front.svg",
  29001. extra: 4682 / 3610,
  29002. bottom: 115 / 4777
  29003. }
  29004. },
  29005. },
  29006. [
  29007. {
  29008. name: "Normal",
  29009. height: math.unit(1.6, "meters"),
  29010. default: true
  29011. },
  29012. ]
  29013. ))
  29014. characterMakers.push(() => makeCharacter(
  29015. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  29016. {
  29017. front: {
  29018. height: math.unit(50, "m"),
  29019. weight: math.unit(500, "tonnes"),
  29020. name: "Front",
  29021. image: {
  29022. source: "./media/characters/ryoko/front.svg",
  29023. extra: 4632 / 3926,
  29024. bottom: 193 / 4823
  29025. }
  29026. },
  29027. },
  29028. [
  29029. {
  29030. name: "Normal",
  29031. height: math.unit(50, "meters"),
  29032. default: true
  29033. },
  29034. ]
  29035. ))
  29036. characterMakers.push(() => makeCharacter(
  29037. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  29038. {
  29039. front: {
  29040. height: math.unit(30, "m"),
  29041. weight: math.unit(22, "tonnes"),
  29042. name: "Front",
  29043. image: {
  29044. source: "./media/characters/elio/front.svg",
  29045. extra: 4582 / 3720,
  29046. bottom: 236 / 4828
  29047. }
  29048. },
  29049. },
  29050. [
  29051. {
  29052. name: "Normal",
  29053. height: math.unit(30, "meters"),
  29054. default: true
  29055. },
  29056. ]
  29057. ))
  29058. characterMakers.push(() => makeCharacter(
  29059. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  29060. {
  29061. front: {
  29062. height: math.unit(6 + 3 / 12, "feet"),
  29063. weight: math.unit(120, "lb"),
  29064. name: "Front",
  29065. image: {
  29066. source: "./media/characters/azura/front.svg",
  29067. extra: 1149 / 1135,
  29068. bottom: 45 / 1194
  29069. }
  29070. },
  29071. frontClothed: {
  29072. height: math.unit(6 + 3 / 12, "feet"),
  29073. weight: math.unit(120, "lb"),
  29074. name: "Front (Clothed)",
  29075. image: {
  29076. source: "./media/characters/azura/front-clothed.svg",
  29077. extra: 1149 / 1135,
  29078. bottom: 45 / 1194
  29079. }
  29080. },
  29081. },
  29082. [
  29083. {
  29084. name: "Normal",
  29085. height: math.unit(6 + 3 / 12, "feet"),
  29086. default: true
  29087. },
  29088. {
  29089. name: "Macro",
  29090. height: math.unit(20 + 6 / 12, "feet")
  29091. },
  29092. {
  29093. name: "Megamacro",
  29094. height: math.unit(12, "miles")
  29095. },
  29096. {
  29097. name: "Gigamacro",
  29098. height: math.unit(10000, "miles")
  29099. },
  29100. {
  29101. name: "Teramacro",
  29102. height: math.unit(900000, "miles")
  29103. },
  29104. ]
  29105. ))
  29106. characterMakers.push(() => makeCharacter(
  29107. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  29108. {
  29109. front: {
  29110. height: math.unit(12, "feet"),
  29111. weight: math.unit(1, "ton"),
  29112. capacity: math.unit(660000, "gallons"),
  29113. name: "Front",
  29114. image: {
  29115. source: "./media/characters/zeus/front.svg",
  29116. extra: 5005 / 4717,
  29117. bottom: 363 / 5388
  29118. }
  29119. },
  29120. },
  29121. [
  29122. {
  29123. name: "Normal",
  29124. height: math.unit(12, "feet")
  29125. },
  29126. {
  29127. name: "Preferred Size",
  29128. height: math.unit(0.5, "miles"),
  29129. default: true
  29130. },
  29131. {
  29132. name: "Giga Horse",
  29133. height: math.unit(300, "miles")
  29134. },
  29135. {
  29136. name: "Riding Planets",
  29137. height: math.unit(30, "megameters")
  29138. },
  29139. {
  29140. name: "Cosmic Giant",
  29141. height: math.unit(3, "zettameters")
  29142. },
  29143. {
  29144. name: "Breeding God",
  29145. height: math.unit(9.92e22, "yottameters")
  29146. },
  29147. ]
  29148. ))
  29149. characterMakers.push(() => makeCharacter(
  29150. { name: "Fang", species: ["monster"], tags: ["feral"] },
  29151. {
  29152. side: {
  29153. height: math.unit(9, "feet"),
  29154. weight: math.unit(1500, "kg"),
  29155. name: "Side",
  29156. image: {
  29157. source: "./media/characters/fang/side.svg",
  29158. extra: 924 / 866,
  29159. bottom: 47.5 / 972.3
  29160. }
  29161. },
  29162. },
  29163. [
  29164. {
  29165. name: "Normal",
  29166. height: math.unit(9, "feet"),
  29167. default: true
  29168. },
  29169. {
  29170. name: "Macro",
  29171. height: math.unit(75 + 6 / 12, "feet")
  29172. },
  29173. {
  29174. name: "Teramacro",
  29175. height: math.unit(50000, "miles")
  29176. },
  29177. ]
  29178. ))
  29179. characterMakers.push(() => makeCharacter(
  29180. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  29181. {
  29182. front: {
  29183. height: math.unit(10, "feet"),
  29184. weight: math.unit(2, "tons"),
  29185. name: "Front",
  29186. image: {
  29187. source: "./media/characters/rekhit/front.svg",
  29188. extra: 2796 / 2590,
  29189. bottom: 225 / 3022
  29190. }
  29191. },
  29192. },
  29193. [
  29194. {
  29195. name: "Normal",
  29196. height: math.unit(10, "feet"),
  29197. default: true
  29198. },
  29199. {
  29200. name: "Macro",
  29201. height: math.unit(500, "feet")
  29202. },
  29203. ]
  29204. ))
  29205. characterMakers.push(() => makeCharacter(
  29206. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  29207. {
  29208. front: {
  29209. height: math.unit(7 + 6.451 / 12, "feet"),
  29210. weight: math.unit(310, "lb"),
  29211. name: "Front",
  29212. image: {
  29213. source: "./media/characters/dahlia-verrick/front.svg",
  29214. extra: 1488 / 1365,
  29215. bottom: 6.2 / 1495
  29216. }
  29217. },
  29218. back: {
  29219. height: math.unit(7 + 6.451 / 12, "feet"),
  29220. weight: math.unit(310, "lb"),
  29221. name: "Back",
  29222. image: {
  29223. source: "./media/characters/dahlia-verrick/back.svg",
  29224. extra: 1472 / 1351,
  29225. bottom: 5.28 / 1477
  29226. }
  29227. },
  29228. frontBusiness: {
  29229. height: math.unit(7 + 6.451 / 12, "feet"),
  29230. weight: math.unit(200, "lb"),
  29231. name: "Front (Business)",
  29232. image: {
  29233. source: "./media/characters/dahlia-verrick/front-business.svg",
  29234. extra: 1478 / 1381,
  29235. bottom: 5.5 / 1484
  29236. }
  29237. },
  29238. frontCasual: {
  29239. height: math.unit(7 + 6.451 / 12, "feet"),
  29240. weight: math.unit(200, "lb"),
  29241. name: "Front (Casual)",
  29242. image: {
  29243. source: "./media/characters/dahlia-verrick/front-casual.svg",
  29244. extra: 1478 / 1381,
  29245. bottom: 5.5 / 1484
  29246. }
  29247. },
  29248. },
  29249. [
  29250. {
  29251. name: "Travel-Sized",
  29252. height: math.unit(7.45, "inches")
  29253. },
  29254. {
  29255. name: "Normal",
  29256. height: math.unit(7 + 6.451 / 12, "feet"),
  29257. default: true
  29258. },
  29259. {
  29260. name: "Hitting the Town",
  29261. height: math.unit(37 + 8 / 12, "feet")
  29262. },
  29263. {
  29264. name: "Stomp in the Suburbs",
  29265. height: math.unit(964 + 9.728 / 12, "feet")
  29266. },
  29267. {
  29268. name: "Sit on the City",
  29269. height: math.unit(61747 + 10.592 / 12, "feet")
  29270. },
  29271. {
  29272. name: "Glomp the Globe",
  29273. height: math.unit(252919327 + 4.832 / 12, "feet")
  29274. },
  29275. ]
  29276. ))
  29277. characterMakers.push(() => makeCharacter(
  29278. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  29279. {
  29280. front: {
  29281. height: math.unit(6 + 4 / 12, "feet"),
  29282. weight: math.unit(320, "lb"),
  29283. name: "Front",
  29284. image: {
  29285. source: "./media/characters/balina-mahigan/front.svg",
  29286. extra: 447 / 428,
  29287. bottom: 18 / 466
  29288. }
  29289. },
  29290. back: {
  29291. height: math.unit(6 + 4 / 12, "feet"),
  29292. weight: math.unit(320, "lb"),
  29293. name: "Back",
  29294. image: {
  29295. source: "./media/characters/balina-mahigan/back.svg",
  29296. extra: 445 / 428,
  29297. bottom: 4.07 / 448
  29298. }
  29299. },
  29300. arm: {
  29301. height: math.unit(1.88, "feet"),
  29302. name: "Arm",
  29303. image: {
  29304. source: "./media/characters/balina-mahigan/arm.svg"
  29305. }
  29306. },
  29307. backPort: {
  29308. height: math.unit(0.685, "feet"),
  29309. name: "Back Port",
  29310. image: {
  29311. source: "./media/characters/balina-mahigan/back-port.svg"
  29312. }
  29313. },
  29314. hoofpaw: {
  29315. height: math.unit(1.41, "feet"),
  29316. name: "Hoofpaw",
  29317. image: {
  29318. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  29319. }
  29320. },
  29321. leftHandBack: {
  29322. height: math.unit(0.938, "feet"),
  29323. name: "Left Hand (Back)",
  29324. image: {
  29325. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  29326. }
  29327. },
  29328. leftHandFront: {
  29329. height: math.unit(0.938, "feet"),
  29330. name: "Left Hand (Front)",
  29331. image: {
  29332. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  29333. }
  29334. },
  29335. rightHandBack: {
  29336. height: math.unit(0.95, "feet"),
  29337. name: "Right Hand (Back)",
  29338. image: {
  29339. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  29340. }
  29341. },
  29342. rightHandFront: {
  29343. height: math.unit(0.95, "feet"),
  29344. name: "Right Hand (Front)",
  29345. image: {
  29346. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  29347. }
  29348. },
  29349. },
  29350. [
  29351. {
  29352. name: "Normal",
  29353. height: math.unit(6 + 4 / 12, "feet"),
  29354. default: true
  29355. },
  29356. ]
  29357. ))
  29358. characterMakers.push(() => makeCharacter(
  29359. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  29360. {
  29361. front: {
  29362. height: math.unit(6, "feet"),
  29363. weight: math.unit(320, "lb"),
  29364. name: "Front",
  29365. image: {
  29366. source: "./media/characters/balina-mejeri/front.svg",
  29367. extra: 517 / 488,
  29368. bottom: 44.2 / 561
  29369. }
  29370. },
  29371. },
  29372. [
  29373. {
  29374. name: "Normal",
  29375. height: math.unit(6 + 4 / 12, "feet")
  29376. },
  29377. {
  29378. name: "Business",
  29379. height: math.unit(155, "feet"),
  29380. default: true
  29381. },
  29382. ]
  29383. ))
  29384. characterMakers.push(() => makeCharacter(
  29385. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  29386. {
  29387. kneeling: {
  29388. height: math.unit(6 + 4 / 12, "feet"),
  29389. weight: math.unit(300 * 20, "lb"),
  29390. name: "Kneeling",
  29391. image: {
  29392. source: "./media/characters/balbarian/kneeling.svg",
  29393. extra: 922 / 862,
  29394. bottom: 42.4 / 965
  29395. }
  29396. },
  29397. },
  29398. [
  29399. {
  29400. name: "Normal",
  29401. height: math.unit(6 + 4 / 12, "feet")
  29402. },
  29403. {
  29404. name: "Treasured",
  29405. height: math.unit(18 + 9 / 12, "feet"),
  29406. default: true
  29407. },
  29408. {
  29409. name: "Macro",
  29410. height: math.unit(900, "feet")
  29411. },
  29412. ]
  29413. ))
  29414. characterMakers.push(() => makeCharacter(
  29415. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  29416. {
  29417. front: {
  29418. height: math.unit(6 + 4 / 12, "feet"),
  29419. weight: math.unit(325, "lb"),
  29420. name: "Front",
  29421. image: {
  29422. source: "./media/characters/balina-amarini/front.svg",
  29423. extra: 415 / 403,
  29424. bottom: 19 / 433.4
  29425. }
  29426. },
  29427. back: {
  29428. height: math.unit(6 + 4 / 12, "feet"),
  29429. weight: math.unit(325, "lb"),
  29430. name: "Back",
  29431. image: {
  29432. source: "./media/characters/balina-amarini/back.svg",
  29433. extra: 415 / 403,
  29434. bottom: 13.5 / 432
  29435. }
  29436. },
  29437. overdrive: {
  29438. height: math.unit(6 + 4 / 12, "feet"),
  29439. weight: math.unit(400, "lb"),
  29440. name: "Overdrive",
  29441. image: {
  29442. source: "./media/characters/balina-amarini/overdrive.svg",
  29443. extra: 269 / 259,
  29444. bottom: 12 / 282
  29445. }
  29446. },
  29447. },
  29448. [
  29449. {
  29450. name: "Boom",
  29451. height: math.unit(9 + 10 / 12, "feet"),
  29452. default: true
  29453. },
  29454. {
  29455. name: "Macro",
  29456. height: math.unit(280, "feet")
  29457. },
  29458. ]
  29459. ))
  29460. characterMakers.push(() => makeCharacter(
  29461. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  29462. {
  29463. goddess: {
  29464. height: math.unit(600, "feet"),
  29465. weight: math.unit(2000000, "tons"),
  29466. name: "Goddess",
  29467. image: {
  29468. source: "./media/characters/lady-kubwa/goddess.svg",
  29469. extra: 1240.5 / 1223,
  29470. bottom: 22 / 1263
  29471. }
  29472. },
  29473. goddesser: {
  29474. height: math.unit(900, "feet"),
  29475. weight: math.unit(20000000, "lb"),
  29476. name: "Goddess-er",
  29477. image: {
  29478. source: "./media/characters/lady-kubwa/goddess-er.svg",
  29479. extra: 899 / 888,
  29480. bottom: 12.6 / 912
  29481. }
  29482. },
  29483. },
  29484. [
  29485. {
  29486. name: "Macro",
  29487. height: math.unit(600, "feet"),
  29488. default: true
  29489. },
  29490. {
  29491. name: "Megamacro",
  29492. height: math.unit(250, "miles")
  29493. },
  29494. ]
  29495. ))
  29496. characterMakers.push(() => makeCharacter(
  29497. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  29498. {
  29499. front: {
  29500. height: math.unit(7 + 7 / 12, "feet"),
  29501. weight: math.unit(250, "lb"),
  29502. name: "Front",
  29503. image: {
  29504. source: "./media/characters/tala-grovehorn/front.svg",
  29505. extra: 2636 / 2525,
  29506. bottom: 147 / 2781
  29507. }
  29508. },
  29509. back: {
  29510. height: math.unit(7 + 7 / 12, "feet"),
  29511. weight: math.unit(250, "lb"),
  29512. name: "Back",
  29513. image: {
  29514. source: "./media/characters/tala-grovehorn/back.svg",
  29515. extra: 2635 / 2539,
  29516. bottom: 100 / 2732.8
  29517. }
  29518. },
  29519. mouth: {
  29520. height: math.unit(1.15, "feet"),
  29521. name: "Mouth",
  29522. image: {
  29523. source: "./media/characters/tala-grovehorn/mouth.svg"
  29524. }
  29525. },
  29526. dick: {
  29527. height: math.unit(2.36, "feet"),
  29528. name: "Dick",
  29529. image: {
  29530. source: "./media/characters/tala-grovehorn/dick.svg"
  29531. }
  29532. },
  29533. slit: {
  29534. height: math.unit(0.61, "feet"),
  29535. name: "Slit",
  29536. image: {
  29537. source: "./media/characters/tala-grovehorn/slit.svg"
  29538. }
  29539. },
  29540. },
  29541. [
  29542. ]
  29543. ))
  29544. characterMakers.push(() => makeCharacter(
  29545. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  29546. {
  29547. front: {
  29548. height: math.unit(7 + 7 / 12, "feet"),
  29549. weight: math.unit(225, "lb"),
  29550. name: "Front",
  29551. image: {
  29552. source: "./media/characters/epona/front.svg",
  29553. extra: 2445 / 2290,
  29554. bottom: 251 / 2696
  29555. }
  29556. },
  29557. back: {
  29558. height: math.unit(7 + 7 / 12, "feet"),
  29559. weight: math.unit(225, "lb"),
  29560. name: "Back",
  29561. image: {
  29562. source: "./media/characters/epona/back.svg",
  29563. extra: 2546 / 2408,
  29564. bottom: 44 / 2589
  29565. }
  29566. },
  29567. genitals: {
  29568. height: math.unit(1.5, "feet"),
  29569. name: "Genitals",
  29570. image: {
  29571. source: "./media/characters/epona/genitals.svg"
  29572. }
  29573. },
  29574. },
  29575. [
  29576. {
  29577. name: "Normal",
  29578. height: math.unit(7 + 7 / 12, "feet"),
  29579. default: true
  29580. },
  29581. ]
  29582. ))
  29583. characterMakers.push(() => makeCharacter(
  29584. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29585. {
  29586. front: {
  29587. height: math.unit(7, "feet"),
  29588. weight: math.unit(518, "lb"),
  29589. name: "Front",
  29590. image: {
  29591. source: "./media/characters/avia-bloodbourn/front.svg",
  29592. extra: 1466 / 1350,
  29593. bottom: 65 / 1527
  29594. }
  29595. },
  29596. },
  29597. [
  29598. ]
  29599. ))
  29600. characterMakers.push(() => makeCharacter(
  29601. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29602. {
  29603. front: {
  29604. height: math.unit(9.35, "feet"),
  29605. weight: math.unit(600, "lb"),
  29606. name: "Front",
  29607. image: {
  29608. source: "./media/characters/amera/front.svg",
  29609. extra: 891 / 818,
  29610. bottom: 30 / 922.7
  29611. }
  29612. },
  29613. back: {
  29614. height: math.unit(9.35, "feet"),
  29615. weight: math.unit(600, "lb"),
  29616. name: "Back",
  29617. image: {
  29618. source: "./media/characters/amera/back.svg",
  29619. extra: 876 / 824,
  29620. bottom: 6.8 / 884
  29621. }
  29622. },
  29623. dick: {
  29624. height: math.unit(2.14, "feet"),
  29625. name: "Dick",
  29626. image: {
  29627. source: "./media/characters/amera/dick.svg"
  29628. }
  29629. },
  29630. },
  29631. [
  29632. {
  29633. name: "Normal",
  29634. height: math.unit(9.35, "feet"),
  29635. default: true
  29636. },
  29637. ]
  29638. ))
  29639. characterMakers.push(() => makeCharacter(
  29640. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29641. {
  29642. kneeling: {
  29643. height: math.unit(3 + 4 / 12, "feet"),
  29644. weight: math.unit(90, "lb"),
  29645. name: "Kneeling",
  29646. image: {
  29647. source: "./media/characters/rosewen/kneeling.svg",
  29648. extra: 1835 / 1571,
  29649. bottom: 27.7 / 1862
  29650. }
  29651. },
  29652. },
  29653. [
  29654. {
  29655. name: "Normal",
  29656. height: math.unit(3 + 4 / 12, "feet"),
  29657. default: true
  29658. },
  29659. ]
  29660. ))
  29661. characterMakers.push(() => makeCharacter(
  29662. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29663. {
  29664. front: {
  29665. height: math.unit(5 + 10 / 12, "feet"),
  29666. weight: math.unit(200, "lb"),
  29667. name: "Front",
  29668. image: {
  29669. source: "./media/characters/sabah/front.svg",
  29670. extra: 849 / 763,
  29671. bottom: 33.9 / 881
  29672. }
  29673. },
  29674. },
  29675. [
  29676. {
  29677. name: "Normal",
  29678. height: math.unit(5 + 10 / 12, "feet"),
  29679. default: true
  29680. },
  29681. ]
  29682. ))
  29683. characterMakers.push(() => makeCharacter(
  29684. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29685. {
  29686. front: {
  29687. height: math.unit(3 + 5 / 12, "feet"),
  29688. weight: math.unit(40, "kg"),
  29689. name: "Front",
  29690. image: {
  29691. source: "./media/characters/purple-flame/front.svg",
  29692. extra: 1577 / 1412,
  29693. bottom: 97 / 1694
  29694. }
  29695. },
  29696. frontDressed: {
  29697. height: math.unit(3 + 5 / 12, "feet"),
  29698. weight: math.unit(40, "kg"),
  29699. name: "Front (Dressed)",
  29700. image: {
  29701. source: "./media/characters/purple-flame/front-dressed.svg",
  29702. extra: 1577 / 1412,
  29703. bottom: 97 / 1694
  29704. }
  29705. },
  29706. headphones: {
  29707. height: math.unit(0.85, "feet"),
  29708. name: "Headphones",
  29709. image: {
  29710. source: "./media/characters/purple-flame/headphones.svg"
  29711. }
  29712. },
  29713. },
  29714. [
  29715. {
  29716. name: "Really Small",
  29717. height: math.unit(5, "cm")
  29718. },
  29719. {
  29720. name: "Micro",
  29721. height: math.unit(1 + 5 / 12, "feet")
  29722. },
  29723. {
  29724. name: "Normal",
  29725. height: math.unit(3 + 5 / 12, "feet"),
  29726. default: true
  29727. },
  29728. {
  29729. name: "Minimacro",
  29730. height: math.unit(125, "feet")
  29731. },
  29732. {
  29733. name: "Macro",
  29734. height: math.unit(0.5, "miles")
  29735. },
  29736. {
  29737. name: "Megamacro",
  29738. height: math.unit(50, "miles")
  29739. },
  29740. {
  29741. name: "Gigantic",
  29742. height: math.unit(750, "miles")
  29743. },
  29744. {
  29745. name: "Planetary",
  29746. height: math.unit(15000, "miles")
  29747. },
  29748. ]
  29749. ))
  29750. characterMakers.push(() => makeCharacter(
  29751. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29752. {
  29753. front: {
  29754. height: math.unit(14, "feet"),
  29755. weight: math.unit(959, "lb"),
  29756. name: "Front",
  29757. image: {
  29758. source: "./media/characters/arsenal/front.svg",
  29759. extra: 2357 / 2157,
  29760. bottom: 93 / 2458
  29761. }
  29762. },
  29763. },
  29764. [
  29765. {
  29766. name: "Normal",
  29767. height: math.unit(14, "feet"),
  29768. default: true
  29769. },
  29770. ]
  29771. ))
  29772. characterMakers.push(() => makeCharacter(
  29773. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29774. {
  29775. front: {
  29776. height: math.unit(6, "feet"),
  29777. weight: math.unit(150, "lb"),
  29778. name: "Front",
  29779. image: {
  29780. source: "./media/characters/adira/front.svg",
  29781. extra: 2121/2013,
  29782. bottom: 206/2327
  29783. }
  29784. },
  29785. },
  29786. [
  29787. {
  29788. name: "Micro",
  29789. height: math.unit(4, "inches"),
  29790. default: true
  29791. },
  29792. {
  29793. name: "Macro",
  29794. height: math.unit(50, "feet")
  29795. },
  29796. ]
  29797. ))
  29798. characterMakers.push(() => makeCharacter(
  29799. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29800. {
  29801. front: {
  29802. height: math.unit(16, "feet"),
  29803. weight: math.unit(1000, "lb"),
  29804. name: "Front",
  29805. image: {
  29806. source: "./media/characters/grim/front.svg",
  29807. extra: 622 / 614,
  29808. bottom: 18.1 / 642
  29809. }
  29810. },
  29811. back: {
  29812. height: math.unit(16, "feet"),
  29813. weight: math.unit(1000, "lb"),
  29814. name: "Back",
  29815. image: {
  29816. source: "./media/characters/grim/back.svg",
  29817. extra: 610.6 / 602,
  29818. bottom: 40.8 / 652
  29819. }
  29820. },
  29821. hunched: {
  29822. height: math.unit(9.75, "feet"),
  29823. weight: math.unit(1000, "lb"),
  29824. name: "Hunched",
  29825. image: {
  29826. source: "./media/characters/grim/hunched.svg",
  29827. extra: 304 / 297,
  29828. bottom: 35.4 / 394
  29829. }
  29830. },
  29831. },
  29832. [
  29833. {
  29834. name: "Normal",
  29835. height: math.unit(16, "feet"),
  29836. default: true
  29837. },
  29838. ]
  29839. ))
  29840. characterMakers.push(() => makeCharacter(
  29841. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29842. {
  29843. front: {
  29844. height: math.unit(2.3, "meters"),
  29845. weight: math.unit(300, "lb"),
  29846. name: "Front",
  29847. image: {
  29848. source: "./media/characters/sinja/front-sfw.svg",
  29849. extra: 1393 / 1294,
  29850. bottom: 70 / 1463
  29851. }
  29852. },
  29853. frontNsfw: {
  29854. height: math.unit(2.3, "meters"),
  29855. weight: math.unit(300, "lb"),
  29856. name: "Front (NSFW)",
  29857. image: {
  29858. source: "./media/characters/sinja/front-nsfw.svg",
  29859. extra: 1393 / 1294,
  29860. bottom: 70 / 1463
  29861. }
  29862. },
  29863. back: {
  29864. height: math.unit(2.3, "meters"),
  29865. weight: math.unit(300, "lb"),
  29866. name: "Back",
  29867. image: {
  29868. source: "./media/characters/sinja/back.svg",
  29869. extra: 1393 / 1294,
  29870. bottom: 70 / 1463
  29871. }
  29872. },
  29873. head: {
  29874. height: math.unit(1.771, "feet"),
  29875. name: "Head",
  29876. image: {
  29877. source: "./media/characters/sinja/head.svg"
  29878. }
  29879. },
  29880. slit: {
  29881. height: math.unit(0.8, "feet"),
  29882. name: "Slit",
  29883. image: {
  29884. source: "./media/characters/sinja/slit.svg"
  29885. }
  29886. },
  29887. },
  29888. [
  29889. {
  29890. name: "Normal",
  29891. height: math.unit(2.3, "meters")
  29892. },
  29893. {
  29894. name: "Macro",
  29895. height: math.unit(91, "meters"),
  29896. default: true
  29897. },
  29898. {
  29899. name: "Megamacro",
  29900. height: math.unit(91440, "meters")
  29901. },
  29902. {
  29903. name: "Gigamacro",
  29904. height: math.unit(60960000, "meters")
  29905. },
  29906. {
  29907. name: "Teramacro",
  29908. height: math.unit(9144000000, "meters")
  29909. },
  29910. ]
  29911. ))
  29912. characterMakers.push(() => makeCharacter(
  29913. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29914. {
  29915. front: {
  29916. height: math.unit(1.7, "meters"),
  29917. weight: math.unit(130, "lb"),
  29918. name: "Front",
  29919. image: {
  29920. source: "./media/characters/kyu/front.svg",
  29921. extra: 415 / 395,
  29922. bottom: 5 / 420
  29923. }
  29924. },
  29925. head: {
  29926. height: math.unit(1.75, "feet"),
  29927. name: "Head",
  29928. image: {
  29929. source: "./media/characters/kyu/head.svg"
  29930. }
  29931. },
  29932. foot: {
  29933. height: math.unit(0.81, "feet"),
  29934. name: "Foot",
  29935. image: {
  29936. source: "./media/characters/kyu/foot.svg"
  29937. }
  29938. },
  29939. },
  29940. [
  29941. {
  29942. name: "Normal",
  29943. height: math.unit(1.7, "meters")
  29944. },
  29945. {
  29946. name: "Macro",
  29947. height: math.unit(131, "feet"),
  29948. default: true
  29949. },
  29950. {
  29951. name: "Megamacro",
  29952. height: math.unit(91440, "meters")
  29953. },
  29954. {
  29955. name: "Gigamacro",
  29956. height: math.unit(60960000, "meters")
  29957. },
  29958. {
  29959. name: "Teramacro",
  29960. height: math.unit(9144000000, "meters")
  29961. },
  29962. ]
  29963. ))
  29964. characterMakers.push(() => makeCharacter(
  29965. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29966. {
  29967. front: {
  29968. height: math.unit(7 + 1 / 12, "feet"),
  29969. weight: math.unit(250, "lb"),
  29970. name: "Front",
  29971. image: {
  29972. source: "./media/characters/joey/front.svg",
  29973. extra: 1791 / 1537,
  29974. bottom: 28 / 1816
  29975. }
  29976. },
  29977. },
  29978. [
  29979. {
  29980. name: "Micro",
  29981. height: math.unit(3, "inches")
  29982. },
  29983. {
  29984. name: "Normal",
  29985. height: math.unit(7 + 1 / 12, "feet"),
  29986. default: true
  29987. },
  29988. ]
  29989. ))
  29990. characterMakers.push(() => makeCharacter(
  29991. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29992. {
  29993. front: {
  29994. height: math.unit(165, "cm"),
  29995. weight: math.unit(140, "lb"),
  29996. name: "Front",
  29997. image: {
  29998. source: "./media/characters/sam-evans/front.svg",
  29999. extra: 3417 / 3230,
  30000. bottom: 41.3 / 3417
  30001. }
  30002. },
  30003. frontSixTails: {
  30004. height: math.unit(165, "cm"),
  30005. weight: math.unit(140, "lb"),
  30006. name: "Front-six-tails",
  30007. image: {
  30008. source: "./media/characters/sam-evans/front-six-tails.svg",
  30009. extra: 3417 / 3230,
  30010. bottom: 41.3 / 3417
  30011. }
  30012. },
  30013. back: {
  30014. height: math.unit(165, "cm"),
  30015. weight: math.unit(140, "lb"),
  30016. name: "Back",
  30017. image: {
  30018. source: "./media/characters/sam-evans/back.svg",
  30019. extra: 3227 / 3032,
  30020. bottom: 6.8 / 3234
  30021. }
  30022. },
  30023. face: {
  30024. height: math.unit(0.68, "feet"),
  30025. name: "Face",
  30026. image: {
  30027. source: "./media/characters/sam-evans/face.svg"
  30028. }
  30029. },
  30030. },
  30031. [
  30032. {
  30033. name: "Normal",
  30034. height: math.unit(165, "cm"),
  30035. default: true
  30036. },
  30037. {
  30038. name: "Macro",
  30039. height: math.unit(100, "meters")
  30040. },
  30041. {
  30042. name: "Macro+",
  30043. height: math.unit(800, "meters")
  30044. },
  30045. {
  30046. name: "Macro++",
  30047. height: math.unit(3, "km")
  30048. },
  30049. {
  30050. name: "Macro+++",
  30051. height: math.unit(30, "km")
  30052. },
  30053. ]
  30054. ))
  30055. characterMakers.push(() => makeCharacter(
  30056. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  30057. {
  30058. front: {
  30059. height: math.unit(10, "feet"),
  30060. weight: math.unit(750, "lb"),
  30061. name: "Front",
  30062. image: {
  30063. source: "./media/characters/juliet-a/front.svg",
  30064. extra: 1766 / 1720,
  30065. bottom: 43 / 1809
  30066. }
  30067. },
  30068. back: {
  30069. height: math.unit(10, "feet"),
  30070. weight: math.unit(750, "lb"),
  30071. name: "Back",
  30072. image: {
  30073. source: "./media/characters/juliet-a/back.svg",
  30074. extra: 1781 / 1734,
  30075. bottom: 35 / 1810,
  30076. }
  30077. },
  30078. },
  30079. [
  30080. {
  30081. name: "Normal",
  30082. height: math.unit(10, "feet"),
  30083. default: true
  30084. },
  30085. {
  30086. name: "Dragon Form",
  30087. height: math.unit(250, "feet")
  30088. },
  30089. {
  30090. name: "Macro",
  30091. height: math.unit(1000, "feet")
  30092. },
  30093. {
  30094. name: "Megamacro",
  30095. height: math.unit(10000, "feet")
  30096. }
  30097. ]
  30098. ))
  30099. characterMakers.push(() => makeCharacter(
  30100. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  30101. {
  30102. regular: {
  30103. height: math.unit(7 + 3 / 12, "feet"),
  30104. weight: math.unit(260, "lb"),
  30105. name: "Regular",
  30106. image: {
  30107. source: "./media/characters/wild/regular.svg",
  30108. extra: 97.45 / 92,
  30109. bottom: 6.8 / 104.3
  30110. }
  30111. },
  30112. biggums: {
  30113. height: math.unit(8 + 6 / 12, "feet"),
  30114. weight: math.unit(425, "lb"),
  30115. name: "Biggums",
  30116. image: {
  30117. source: "./media/characters/wild/biggums.svg",
  30118. extra: 97.45 / 92,
  30119. bottom: 7.5 / 132.34
  30120. }
  30121. },
  30122. mawRegular: {
  30123. height: math.unit(1.24, "feet"),
  30124. name: "Maw (Regular)",
  30125. image: {
  30126. source: "./media/characters/wild/maw.svg"
  30127. }
  30128. },
  30129. mawBiggums: {
  30130. height: math.unit(1.47, "feet"),
  30131. name: "Maw (Biggums)",
  30132. image: {
  30133. source: "./media/characters/wild/maw.svg"
  30134. }
  30135. },
  30136. },
  30137. [
  30138. {
  30139. name: "Normal",
  30140. height: math.unit(7 + 3 / 12, "feet"),
  30141. default: true
  30142. },
  30143. ]
  30144. ))
  30145. characterMakers.push(() => makeCharacter(
  30146. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  30147. {
  30148. front: {
  30149. height: math.unit(2.5, "meters"),
  30150. weight: math.unit(200, "kg"),
  30151. name: "Front",
  30152. image: {
  30153. source: "./media/characters/vidar/front.svg",
  30154. extra: 2994 / 2795,
  30155. bottom: 56 / 3061
  30156. }
  30157. },
  30158. back: {
  30159. height: math.unit(2.5, "meters"),
  30160. weight: math.unit(200, "kg"),
  30161. name: "Back",
  30162. image: {
  30163. source: "./media/characters/vidar/back.svg",
  30164. extra: 3131 / 2928,
  30165. bottom: 13.5 / 3141.5
  30166. }
  30167. },
  30168. feral: {
  30169. height: math.unit(2.5, "meters"),
  30170. weight: math.unit(2000, "kg"),
  30171. name: "Feral",
  30172. image: {
  30173. source: "./media/characters/vidar/feral.svg",
  30174. extra: 2790 / 1765,
  30175. bottom: 6 / 2796
  30176. }
  30177. },
  30178. },
  30179. [
  30180. {
  30181. name: "Normal",
  30182. height: math.unit(2.5, "meters"),
  30183. default: true
  30184. },
  30185. {
  30186. name: "Macro",
  30187. height: math.unit(100, "meters")
  30188. },
  30189. ]
  30190. ))
  30191. characterMakers.push(() => makeCharacter(
  30192. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  30193. {
  30194. front: {
  30195. height: math.unit(5 + 9 / 12, "feet"),
  30196. weight: math.unit(120, "lb"),
  30197. name: "Front",
  30198. image: {
  30199. source: "./media/characters/ash/front.svg",
  30200. extra: 2189 / 1961,
  30201. bottom: 5.2 / 2194
  30202. }
  30203. },
  30204. },
  30205. [
  30206. {
  30207. name: "Normal",
  30208. height: math.unit(5 + 9 / 12, "feet"),
  30209. default: true
  30210. },
  30211. ]
  30212. ))
  30213. characterMakers.push(() => makeCharacter(
  30214. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  30215. {
  30216. front: {
  30217. height: math.unit(9, "feet"),
  30218. weight: math.unit(10000, "lb"),
  30219. name: "Front",
  30220. image: {
  30221. source: "./media/characters/gygabite/front.svg",
  30222. bottom: 31.7 / 537.8,
  30223. extra: 505 / 370
  30224. }
  30225. },
  30226. },
  30227. [
  30228. {
  30229. name: "Normal",
  30230. height: math.unit(9, "feet"),
  30231. default: true
  30232. },
  30233. ]
  30234. ))
  30235. characterMakers.push(() => makeCharacter(
  30236. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  30237. {
  30238. front: {
  30239. height: math.unit(12, "feet"),
  30240. weight: math.unit(4000, "lb"),
  30241. name: "Front",
  30242. image: {
  30243. source: "./media/characters/p0tat0/front.svg",
  30244. extra: 1065 / 921,
  30245. bottom: 55.7 / 1121.25
  30246. }
  30247. },
  30248. },
  30249. [
  30250. {
  30251. name: "Normal",
  30252. height: math.unit(12, "feet"),
  30253. default: true
  30254. },
  30255. ]
  30256. ))
  30257. characterMakers.push(() => makeCharacter(
  30258. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  30259. {
  30260. side: {
  30261. height: math.unit(6.5, "feet"),
  30262. weight: math.unit(800, "lb"),
  30263. name: "Side",
  30264. image: {
  30265. source: "./media/characters/dusk/side.svg",
  30266. extra: 615 / 373,
  30267. bottom: 53 / 664
  30268. }
  30269. },
  30270. sitting: {
  30271. height: math.unit(7, "feet"),
  30272. weight: math.unit(800, "lb"),
  30273. name: "Sitting",
  30274. image: {
  30275. source: "./media/characters/dusk/sitting.svg",
  30276. extra: 753 / 425,
  30277. bottom: 33 / 774
  30278. }
  30279. },
  30280. head: {
  30281. height: math.unit(6.1, "feet"),
  30282. name: "Head",
  30283. image: {
  30284. source: "./media/characters/dusk/head.svg"
  30285. }
  30286. },
  30287. },
  30288. [
  30289. {
  30290. name: "Normal",
  30291. height: math.unit(7, "feet"),
  30292. default: true
  30293. },
  30294. ]
  30295. ))
  30296. characterMakers.push(() => makeCharacter(
  30297. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  30298. {
  30299. front: {
  30300. height: math.unit(15, "feet"),
  30301. weight: math.unit(7000, "lb"),
  30302. name: "Front",
  30303. image: {
  30304. source: "./media/characters/jay-direwolf/front.svg",
  30305. extra: 1810 / 1732,
  30306. bottom: 66 / 1892
  30307. }
  30308. },
  30309. },
  30310. [
  30311. {
  30312. name: "Normal",
  30313. height: math.unit(15, "feet"),
  30314. default: true
  30315. },
  30316. ]
  30317. ))
  30318. characterMakers.push(() => makeCharacter(
  30319. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  30320. {
  30321. front: {
  30322. height: math.unit(4 + 9 / 12, "feet"),
  30323. weight: math.unit(130, "lb"),
  30324. name: "Front",
  30325. image: {
  30326. source: "./media/characters/anchovie/front.svg",
  30327. extra: 382 / 350,
  30328. bottom: 25 / 409
  30329. }
  30330. },
  30331. back: {
  30332. height: math.unit(4 + 9 / 12, "feet"),
  30333. weight: math.unit(130, "lb"),
  30334. name: "Back",
  30335. image: {
  30336. source: "./media/characters/anchovie/back.svg",
  30337. extra: 385 / 352,
  30338. bottom: 16.6 / 402
  30339. }
  30340. },
  30341. frontDressed: {
  30342. height: math.unit(4 + 9 / 12, "feet"),
  30343. weight: math.unit(130, "lb"),
  30344. name: "Front (Dressed)",
  30345. image: {
  30346. source: "./media/characters/anchovie/front-dressed.svg",
  30347. extra: 382 / 350,
  30348. bottom: 25 / 409
  30349. }
  30350. },
  30351. backDressed: {
  30352. height: math.unit(4 + 9 / 12, "feet"),
  30353. weight: math.unit(130, "lb"),
  30354. name: "Back (Dressed)",
  30355. image: {
  30356. source: "./media/characters/anchovie/back-dressed.svg",
  30357. extra: 385 / 352,
  30358. bottom: 16.6 / 402
  30359. }
  30360. },
  30361. },
  30362. [
  30363. {
  30364. name: "Micro",
  30365. height: math.unit(6.4, "inches")
  30366. },
  30367. {
  30368. name: "Normal",
  30369. height: math.unit(4 + 9 / 12, "feet"),
  30370. default: true
  30371. },
  30372. ]
  30373. ))
  30374. characterMakers.push(() => makeCharacter(
  30375. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  30376. {
  30377. front: {
  30378. height: math.unit(2, "meters"),
  30379. weight: math.unit(180, "lb"),
  30380. name: "Front",
  30381. image: {
  30382. source: "./media/characters/acidrenamon/front.svg",
  30383. extra: 987 / 890,
  30384. bottom: 22.8 / 1009
  30385. }
  30386. },
  30387. back: {
  30388. height: math.unit(2, "meters"),
  30389. weight: math.unit(180, "lb"),
  30390. name: "Back",
  30391. image: {
  30392. source: "./media/characters/acidrenamon/back.svg",
  30393. extra: 983 / 891,
  30394. bottom: 8.4 / 992
  30395. }
  30396. },
  30397. head: {
  30398. height: math.unit(1.92, "feet"),
  30399. name: "Head",
  30400. image: {
  30401. source: "./media/characters/acidrenamon/head.svg"
  30402. }
  30403. },
  30404. rump: {
  30405. height: math.unit(1.72, "feet"),
  30406. name: "Rump",
  30407. image: {
  30408. source: "./media/characters/acidrenamon/rump.svg"
  30409. }
  30410. },
  30411. tail: {
  30412. height: math.unit(4.2, "feet"),
  30413. name: "Tail",
  30414. image: {
  30415. source: "./media/characters/acidrenamon/tail.svg"
  30416. }
  30417. },
  30418. },
  30419. [
  30420. {
  30421. name: "Normal",
  30422. height: math.unit(2, "meters"),
  30423. default: true
  30424. },
  30425. {
  30426. name: "Minimacro",
  30427. height: math.unit(7, "meters")
  30428. },
  30429. {
  30430. name: "Macro",
  30431. height: math.unit(200, "meters")
  30432. },
  30433. {
  30434. name: "Gigamacro",
  30435. height: math.unit(0.2, "earths")
  30436. },
  30437. ]
  30438. ))
  30439. characterMakers.push(() => makeCharacter(
  30440. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  30441. {
  30442. front: {
  30443. height: math.unit(152, "feet"),
  30444. name: "Front",
  30445. image: {
  30446. source: "./media/characters/kenzie-lee/front.svg",
  30447. extra: 1869/1774,
  30448. bottom: 128/1997
  30449. }
  30450. },
  30451. side: {
  30452. height: math.unit(86, "feet"),
  30453. name: "Side",
  30454. image: {
  30455. source: "./media/characters/kenzie-lee/side.svg",
  30456. extra: 930/815,
  30457. bottom: 177/1107
  30458. }
  30459. },
  30460. paw: {
  30461. height: math.unit(15, "feet"),
  30462. name: "Paw",
  30463. image: {
  30464. source: "./media/characters/kenzie-lee/paw.svg"
  30465. }
  30466. },
  30467. },
  30468. [
  30469. {
  30470. name: "Kenzie Flea",
  30471. height: math.unit(2, "mm"),
  30472. default: true
  30473. },
  30474. {
  30475. name: "Micro",
  30476. height: math.unit(2, "inches")
  30477. },
  30478. {
  30479. name: "Normal",
  30480. height: math.unit(152, "feet")
  30481. },
  30482. {
  30483. name: "Megamacro",
  30484. height: math.unit(7, "miles")
  30485. },
  30486. {
  30487. name: "Gigamacro",
  30488. height: math.unit(8000, "miles")
  30489. },
  30490. ]
  30491. ))
  30492. characterMakers.push(() => makeCharacter(
  30493. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  30494. {
  30495. front: {
  30496. height: math.unit(6, "feet"),
  30497. name: "Front",
  30498. image: {
  30499. source: "./media/characters/withers/front.svg",
  30500. extra: 1935/1760,
  30501. bottom: 72/2007
  30502. }
  30503. },
  30504. back: {
  30505. height: math.unit(6, "feet"),
  30506. name: "Back",
  30507. image: {
  30508. source: "./media/characters/withers/back.svg",
  30509. extra: 1944/1792,
  30510. bottom: 12/1956
  30511. }
  30512. },
  30513. dressed: {
  30514. height: math.unit(6, "feet"),
  30515. name: "Dressed",
  30516. image: {
  30517. source: "./media/characters/withers/dressed.svg",
  30518. extra: 1937/1765,
  30519. bottom: 73/2010
  30520. }
  30521. },
  30522. phase1: {
  30523. height: math.unit(1.1, "feet"),
  30524. name: "Phase 1",
  30525. image: {
  30526. source: "./media/characters/withers/phase-1.svg",
  30527. extra: 1885/1232,
  30528. bottom: 0/1885
  30529. }
  30530. },
  30531. phase2: {
  30532. height: math.unit(1.05, "feet"),
  30533. name: "Phase 2",
  30534. image: {
  30535. source: "./media/characters/withers/phase-2.svg",
  30536. extra: 1792/1090,
  30537. bottom: 0/1792
  30538. }
  30539. },
  30540. partyWipe: {
  30541. height: math.unit(1.1, "feet"),
  30542. name: "Party Wipe",
  30543. image: {
  30544. source: "./media/characters/withers/party-wipe.svg",
  30545. extra: 1864/1207,
  30546. bottom: 0/1864
  30547. }
  30548. },
  30549. },
  30550. [
  30551. {
  30552. name: "Macro",
  30553. height: math.unit(167, "feet"),
  30554. default: true
  30555. },
  30556. {
  30557. name: "Megamacro",
  30558. height: math.unit(15, "miles")
  30559. }
  30560. ]
  30561. ))
  30562. characterMakers.push(() => makeCharacter(
  30563. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  30564. {
  30565. front: {
  30566. height: math.unit(6 + 7 / 12, "feet"),
  30567. weight: math.unit(250, "lb"),
  30568. name: "Front",
  30569. image: {
  30570. source: "./media/characters/nemoskii/front.svg",
  30571. extra: 2270 / 1734,
  30572. bottom: 86 / 2354
  30573. }
  30574. },
  30575. back: {
  30576. height: math.unit(6 + 7 / 12, "feet"),
  30577. weight: math.unit(250, "lb"),
  30578. name: "Back",
  30579. image: {
  30580. source: "./media/characters/nemoskii/back.svg",
  30581. extra: 1845 / 1788,
  30582. bottom: 10.5 / 1852
  30583. }
  30584. },
  30585. head: {
  30586. height: math.unit(1.31, "feet"),
  30587. name: "Head",
  30588. image: {
  30589. source: "./media/characters/nemoskii/head.svg"
  30590. }
  30591. },
  30592. },
  30593. [
  30594. {
  30595. name: "Micro",
  30596. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30597. },
  30598. {
  30599. name: "Normal",
  30600. height: math.unit(6 + 7 / 12, "feet"),
  30601. default: true
  30602. },
  30603. {
  30604. name: "Macro",
  30605. height: math.unit((6 + 7 / 12) * 150, "feet")
  30606. },
  30607. {
  30608. name: "Macro+",
  30609. height: math.unit((6 + 7 / 12) * 500, "feet")
  30610. },
  30611. {
  30612. name: "Megamacro",
  30613. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30614. },
  30615. ]
  30616. ))
  30617. characterMakers.push(() => makeCharacter(
  30618. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30619. {
  30620. front: {
  30621. height: math.unit(1, "mile"),
  30622. weight: math.unit(265261.9, "lb"),
  30623. name: "Front",
  30624. image: {
  30625. source: "./media/characters/shui/front.svg",
  30626. extra: 1633 / 1564,
  30627. bottom: 91.5 / 1726
  30628. }
  30629. },
  30630. },
  30631. [
  30632. {
  30633. name: "Macro",
  30634. height: math.unit(1, "mile"),
  30635. default: true
  30636. },
  30637. ]
  30638. ))
  30639. characterMakers.push(() => makeCharacter(
  30640. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30641. {
  30642. front: {
  30643. height: math.unit(12 + 6 / 12, "feet"),
  30644. weight: math.unit(1342, "lb"),
  30645. name: "Front",
  30646. image: {
  30647. source: "./media/characters/arokh-takakura/front.svg",
  30648. extra: 1089 / 1043,
  30649. bottom: 77.4 / 1176.7
  30650. }
  30651. },
  30652. back: {
  30653. height: math.unit(12 + 6 / 12, "feet"),
  30654. weight: math.unit(1342, "lb"),
  30655. name: "Back",
  30656. image: {
  30657. source: "./media/characters/arokh-takakura/back.svg",
  30658. extra: 1046 / 1019,
  30659. bottom: 102 / 1150
  30660. }
  30661. },
  30662. },
  30663. [
  30664. {
  30665. name: "Big",
  30666. height: math.unit(12 + 6 / 12, "feet"),
  30667. default: true
  30668. },
  30669. ]
  30670. ))
  30671. characterMakers.push(() => makeCharacter(
  30672. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30673. {
  30674. front: {
  30675. height: math.unit(5 + 6 / 12, "feet"),
  30676. weight: math.unit(150, "lb"),
  30677. name: "Front",
  30678. image: {
  30679. source: "./media/characters/theo/front.svg",
  30680. extra: 1184 / 1131,
  30681. bottom: 7.4 / 1191
  30682. }
  30683. },
  30684. },
  30685. [
  30686. {
  30687. name: "Micro",
  30688. height: math.unit(5, "inches")
  30689. },
  30690. {
  30691. name: "Normal",
  30692. height: math.unit(5 + 6 / 12, "feet"),
  30693. default: true
  30694. },
  30695. ]
  30696. ))
  30697. characterMakers.push(() => makeCharacter(
  30698. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30699. {
  30700. front: {
  30701. height: math.unit(5 + 9 / 12, "feet"),
  30702. weight: math.unit(130, "lb"),
  30703. name: "Front",
  30704. image: {
  30705. source: "./media/characters/cecelia-swift/front.svg",
  30706. extra: 502 / 484,
  30707. bottom: 23 / 523
  30708. }
  30709. },
  30710. back: {
  30711. height: math.unit(5 + 9 / 12, "feet"),
  30712. weight: math.unit(130, "lb"),
  30713. name: "Back",
  30714. image: {
  30715. source: "./media/characters/cecelia-swift/back.svg",
  30716. extra: 499 / 485,
  30717. bottom: 12 / 511
  30718. }
  30719. },
  30720. head: {
  30721. height: math.unit(0.90, "feet"),
  30722. name: "Head",
  30723. image: {
  30724. source: "./media/characters/cecelia-swift/head.svg"
  30725. }
  30726. },
  30727. rump: {
  30728. height: math.unit(1.75, "feet"),
  30729. name: "Rump",
  30730. image: {
  30731. source: "./media/characters/cecelia-swift/rump.svg"
  30732. }
  30733. },
  30734. },
  30735. [
  30736. {
  30737. name: "Normal",
  30738. height: math.unit(5 + 9 / 12, "feet"),
  30739. default: true
  30740. },
  30741. {
  30742. name: "Big",
  30743. height: math.unit(50, "feet")
  30744. },
  30745. {
  30746. name: "Macro",
  30747. height: math.unit(100, "feet")
  30748. },
  30749. {
  30750. name: "Macro+",
  30751. height: math.unit(500, "feet")
  30752. },
  30753. {
  30754. name: "Macro++",
  30755. height: math.unit(1000, "feet")
  30756. },
  30757. ]
  30758. ))
  30759. characterMakers.push(() => makeCharacter(
  30760. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30761. {
  30762. front: {
  30763. height: math.unit(6, "feet"),
  30764. weight: math.unit(150, "lb"),
  30765. name: "Front",
  30766. image: {
  30767. source: "./media/characters/kaunan/front.svg",
  30768. extra: 2890 / 2523,
  30769. bottom: 49 / 2939
  30770. }
  30771. },
  30772. },
  30773. [
  30774. {
  30775. name: "Macro",
  30776. height: math.unit(150, "feet"),
  30777. default: true
  30778. },
  30779. ]
  30780. ))
  30781. characterMakers.push(() => makeCharacter(
  30782. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30783. {
  30784. dressed: {
  30785. height: math.unit(175, "cm"),
  30786. weight: math.unit(60, "kg"),
  30787. name: "Dressed",
  30788. image: {
  30789. source: "./media/characters/fei/dressed.svg",
  30790. extra: 1402/1278,
  30791. bottom: 27/1429
  30792. }
  30793. },
  30794. nude: {
  30795. height: math.unit(175, "cm"),
  30796. weight: math.unit(60, "kg"),
  30797. name: "Nude",
  30798. image: {
  30799. source: "./media/characters/fei/nude.svg",
  30800. extra: 1402/1278,
  30801. bottom: 27/1429
  30802. }
  30803. },
  30804. heels: {
  30805. height: math.unit(0.466, "feet"),
  30806. name: "Heels",
  30807. image: {
  30808. source: "./media/characters/fei/heels.svg",
  30809. extra: 156/152,
  30810. bottom: 28/184
  30811. }
  30812. },
  30813. },
  30814. [
  30815. {
  30816. name: "Mortal",
  30817. height: math.unit(175, "cm")
  30818. },
  30819. {
  30820. name: "Normal",
  30821. height: math.unit(3500, "m")
  30822. },
  30823. {
  30824. name: "Stroll",
  30825. height: math.unit(18.4, "km"),
  30826. default: true
  30827. },
  30828. {
  30829. name: "Showoff",
  30830. height: math.unit(175, "km")
  30831. },
  30832. ]
  30833. ))
  30834. characterMakers.push(() => makeCharacter(
  30835. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30836. {
  30837. front: {
  30838. height: math.unit(7, "feet"),
  30839. weight: math.unit(1000, "kg"),
  30840. name: "Front",
  30841. image: {
  30842. source: "./media/characters/edrax/front.svg",
  30843. extra: 2838 / 2550,
  30844. bottom: 130 / 2968
  30845. }
  30846. },
  30847. },
  30848. [
  30849. {
  30850. name: "Small",
  30851. height: math.unit(7, "feet")
  30852. },
  30853. {
  30854. name: "Normal",
  30855. height: math.unit(1500, "meters")
  30856. },
  30857. {
  30858. name: "Mega",
  30859. height: math.unit(12000000, "km"),
  30860. default: true
  30861. },
  30862. {
  30863. name: "Megamacro",
  30864. height: math.unit(10600000, "lightyears")
  30865. },
  30866. {
  30867. name: "Hypermacro",
  30868. height: math.unit(256, "yottameters")
  30869. },
  30870. ]
  30871. ))
  30872. characterMakers.push(() => makeCharacter(
  30873. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30874. {
  30875. front: {
  30876. height: math.unit(10, "feet"),
  30877. weight: math.unit(750, "lb"),
  30878. name: "Front",
  30879. image: {
  30880. source: "./media/characters/clove/front.svg",
  30881. extra: 1918/1751,
  30882. bottom: 52/1970
  30883. }
  30884. },
  30885. back: {
  30886. height: math.unit(10, "feet"),
  30887. weight: math.unit(750, "lb"),
  30888. name: "Back",
  30889. image: {
  30890. source: "./media/characters/clove/back.svg",
  30891. extra: 1912/1747,
  30892. bottom: 50/1962
  30893. }
  30894. },
  30895. },
  30896. [
  30897. {
  30898. name: "Normal",
  30899. height: math.unit(10, "feet"),
  30900. default: true
  30901. },
  30902. ]
  30903. ))
  30904. characterMakers.push(() => makeCharacter(
  30905. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30906. {
  30907. front: {
  30908. height: math.unit(4, "feet"),
  30909. weight: math.unit(50, "lb"),
  30910. name: "Front",
  30911. image: {
  30912. source: "./media/characters/alex-rabbit/front.svg",
  30913. extra: 507 / 458,
  30914. bottom: 18.5 / 527
  30915. }
  30916. },
  30917. back: {
  30918. height: math.unit(4, "feet"),
  30919. weight: math.unit(50, "lb"),
  30920. name: "Back",
  30921. image: {
  30922. source: "./media/characters/alex-rabbit/back.svg",
  30923. extra: 502 / 460,
  30924. bottom: 18.9 / 521
  30925. }
  30926. },
  30927. },
  30928. [
  30929. {
  30930. name: "Normal",
  30931. height: math.unit(4, "feet"),
  30932. default: true
  30933. },
  30934. ]
  30935. ))
  30936. characterMakers.push(() => makeCharacter(
  30937. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30938. {
  30939. front: {
  30940. height: math.unit(1 + 3 / 12, "feet"),
  30941. weight: math.unit(80, "lb"),
  30942. name: "Front",
  30943. image: {
  30944. source: "./media/characters/zander-rose/front.svg",
  30945. extra: 916 / 797,
  30946. bottom: 17 / 933
  30947. }
  30948. },
  30949. back: {
  30950. height: math.unit(1 + 3 / 12, "feet"),
  30951. weight: math.unit(80, "lb"),
  30952. name: "Back",
  30953. image: {
  30954. source: "./media/characters/zander-rose/back.svg",
  30955. extra: 903 / 779,
  30956. bottom: 31 / 934
  30957. }
  30958. },
  30959. },
  30960. [
  30961. {
  30962. name: "Normal",
  30963. height: math.unit(1 + 3 / 12, "feet"),
  30964. default: true
  30965. },
  30966. ]
  30967. ))
  30968. characterMakers.push(() => makeCharacter(
  30969. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30970. {
  30971. anthro: {
  30972. height: math.unit(6, "feet"),
  30973. weight: math.unit(150, "lb"),
  30974. name: "Anthro",
  30975. image: {
  30976. source: "./media/characters/razz/anthro.svg",
  30977. extra: 1437 / 1343,
  30978. bottom: 48 / 1485
  30979. }
  30980. },
  30981. feral: {
  30982. height: math.unit(6, "feet"),
  30983. weight: math.unit(150, "lb"),
  30984. name: "Feral",
  30985. image: {
  30986. source: "./media/characters/razz/feral.svg",
  30987. extra: 2569 / 1385,
  30988. bottom: 95 / 2664
  30989. }
  30990. },
  30991. },
  30992. [
  30993. {
  30994. name: "Normal",
  30995. height: math.unit(6, "feet"),
  30996. default: true
  30997. },
  30998. ]
  30999. ))
  31000. characterMakers.push(() => makeCharacter(
  31001. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  31002. {
  31003. front: {
  31004. height: math.unit(9 + 4 / 12, "feet"),
  31005. weight: math.unit(500, "lb"),
  31006. name: "Front",
  31007. image: {
  31008. source: "./media/characters/morrigan/front.svg",
  31009. extra: 2707 / 2579,
  31010. bottom: 156 / 2863
  31011. }
  31012. },
  31013. },
  31014. [
  31015. {
  31016. name: "Normal",
  31017. height: math.unit(9 + 4 / 12, "feet"),
  31018. default: true
  31019. },
  31020. ]
  31021. ))
  31022. characterMakers.push(() => makeCharacter(
  31023. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  31024. {
  31025. front: {
  31026. height: math.unit(5, "stories"),
  31027. weight: math.unit(4000, "lb"),
  31028. name: "Front",
  31029. image: {
  31030. source: "./media/characters/jenene/front.svg",
  31031. extra: 1780 / 1710,
  31032. bottom: 57 / 1837
  31033. }
  31034. },
  31035. },
  31036. [
  31037. {
  31038. name: "Normal",
  31039. height: math.unit(5, "stories"),
  31040. default: true
  31041. },
  31042. ]
  31043. ))
  31044. characterMakers.push(() => makeCharacter(
  31045. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  31046. {
  31047. taurSfw: {
  31048. height: math.unit(10, "meters"),
  31049. weight: math.unit(17500, "kg"),
  31050. name: "Taur",
  31051. image: {
  31052. source: "./media/characters/faey/taur-sfw.svg",
  31053. extra: 1200 / 968,
  31054. bottom: 41 / 1241
  31055. }
  31056. },
  31057. chestmaw: {
  31058. height: math.unit(2.01, "meters"),
  31059. name: "Chestmaw",
  31060. image: {
  31061. source: "./media/characters/faey/chestmaw.svg"
  31062. }
  31063. },
  31064. foot: {
  31065. height: math.unit(2.43, "meters"),
  31066. name: "Foot",
  31067. image: {
  31068. source: "./media/characters/faey/foot.svg"
  31069. }
  31070. },
  31071. jaws: {
  31072. height: math.unit(1.66, "meters"),
  31073. name: "Jaws",
  31074. image: {
  31075. source: "./media/characters/faey/jaws.svg"
  31076. }
  31077. },
  31078. tongues: {
  31079. height: math.unit(2.01, "meters"),
  31080. name: "Tongues",
  31081. image: {
  31082. source: "./media/characters/faey/tongues.svg"
  31083. }
  31084. },
  31085. },
  31086. [
  31087. {
  31088. name: "Small",
  31089. height: math.unit(10, "meters"),
  31090. default: true
  31091. },
  31092. {
  31093. name: "Big",
  31094. height: math.unit(500000, "km")
  31095. },
  31096. ]
  31097. ))
  31098. characterMakers.push(() => makeCharacter(
  31099. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  31100. {
  31101. front: {
  31102. height: math.unit(7, "feet"),
  31103. weight: math.unit(275, "lb"),
  31104. name: "Front",
  31105. image: {
  31106. source: "./media/characters/roku/front.svg",
  31107. extra: 903 / 878,
  31108. bottom: 37 / 940
  31109. }
  31110. },
  31111. },
  31112. [
  31113. {
  31114. name: "Normal",
  31115. height: math.unit(7, "feet"),
  31116. default: true
  31117. },
  31118. {
  31119. name: "Macro",
  31120. height: math.unit(500, "feet")
  31121. },
  31122. {
  31123. name: "Megamacro",
  31124. height: math.unit(200, "miles")
  31125. },
  31126. ]
  31127. ))
  31128. characterMakers.push(() => makeCharacter(
  31129. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  31130. {
  31131. front: {
  31132. height: math.unit(6 + 2 / 12, "feet"),
  31133. weight: math.unit(150, "lb"),
  31134. name: "Front",
  31135. image: {
  31136. source: "./media/characters/lira/front.svg",
  31137. extra: 1727 / 1605,
  31138. bottom: 26 / 1753
  31139. }
  31140. },
  31141. back: {
  31142. height: math.unit(6 + 2 / 12, "feet"),
  31143. weight: math.unit(150, "lb"),
  31144. name: "Back",
  31145. image: {
  31146. source: "./media/characters/lira/back.svg",
  31147. extra: 1713/1621,
  31148. bottom: 20/1733
  31149. }
  31150. },
  31151. hand: {
  31152. height: math.unit(0.75, "feet"),
  31153. name: "Hand",
  31154. image: {
  31155. source: "./media/characters/lira/hand.svg"
  31156. }
  31157. },
  31158. maw: {
  31159. height: math.unit(0.65, "feet"),
  31160. name: "Maw",
  31161. image: {
  31162. source: "./media/characters/lira/maw.svg"
  31163. }
  31164. },
  31165. pawDigi: {
  31166. height: math.unit(1.6, "feet"),
  31167. name: "Paw Digi",
  31168. image: {
  31169. source: "./media/characters/lira/paw-digi.svg"
  31170. }
  31171. },
  31172. pawPlanti: {
  31173. height: math.unit(1.4, "feet"),
  31174. name: "Paw Planti",
  31175. image: {
  31176. source: "./media/characters/lira/paw-planti.svg"
  31177. }
  31178. },
  31179. },
  31180. [
  31181. {
  31182. name: "Normal",
  31183. height: math.unit(6 + 2 / 12, "feet"),
  31184. default: true
  31185. },
  31186. {
  31187. name: "Macro",
  31188. height: math.unit(100, "feet")
  31189. },
  31190. {
  31191. name: "Macro²",
  31192. height: math.unit(1600, "feet")
  31193. },
  31194. {
  31195. name: "Planetary",
  31196. height: math.unit(20, "earths")
  31197. },
  31198. ]
  31199. ))
  31200. characterMakers.push(() => makeCharacter(
  31201. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  31202. {
  31203. front: {
  31204. height: math.unit(6, "feet"),
  31205. weight: math.unit(150, "lb"),
  31206. name: "Front",
  31207. image: {
  31208. source: "./media/characters/hadjet/front.svg",
  31209. extra: 1480 / 1346,
  31210. bottom: 26 / 1506
  31211. }
  31212. },
  31213. frontNsfw: {
  31214. height: math.unit(6, "feet"),
  31215. weight: math.unit(150, "lb"),
  31216. name: "Front (NSFW)",
  31217. image: {
  31218. source: "./media/characters/hadjet/front-nsfw.svg",
  31219. extra: 1440 / 1358,
  31220. bottom: 52 / 1492
  31221. }
  31222. },
  31223. },
  31224. [
  31225. {
  31226. name: "Macro",
  31227. height: math.unit(10, "stories"),
  31228. default: true
  31229. },
  31230. {
  31231. name: "Megamacro",
  31232. height: math.unit(1.5, "miles")
  31233. },
  31234. {
  31235. name: "Megamacro+",
  31236. height: math.unit(5, "miles")
  31237. },
  31238. ]
  31239. ))
  31240. characterMakers.push(() => makeCharacter(
  31241. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  31242. {
  31243. side: {
  31244. height: math.unit(106, "feet"),
  31245. weight: math.unit(500, "tonnes"),
  31246. name: "Side",
  31247. image: {
  31248. source: "./media/characters/kodran/side.svg",
  31249. extra: 553 / 480,
  31250. bottom: 33 / 586
  31251. }
  31252. },
  31253. front: {
  31254. height: math.unit(132, "feet"),
  31255. weight: math.unit(500, "tonnes"),
  31256. name: "Front",
  31257. image: {
  31258. source: "./media/characters/kodran/front.svg",
  31259. extra: 667 / 643,
  31260. bottom: 42 / 709
  31261. }
  31262. },
  31263. flying: {
  31264. height: math.unit(350, "feet"),
  31265. weight: math.unit(500, "tonnes"),
  31266. name: "Flying",
  31267. image: {
  31268. source: "./media/characters/kodran/flying.svg"
  31269. }
  31270. },
  31271. foot: {
  31272. height: math.unit(33, "feet"),
  31273. name: "Foot",
  31274. image: {
  31275. source: "./media/characters/kodran/foot.svg"
  31276. }
  31277. },
  31278. footFront: {
  31279. height: math.unit(19, "feet"),
  31280. name: "Foot (Front)",
  31281. image: {
  31282. source: "./media/characters/kodran/foot-front.svg",
  31283. extra: 261 / 261,
  31284. bottom: 91 / 352
  31285. }
  31286. },
  31287. headFront: {
  31288. height: math.unit(53, "feet"),
  31289. name: "Head (Front)",
  31290. image: {
  31291. source: "./media/characters/kodran/head-front.svg"
  31292. }
  31293. },
  31294. headSide: {
  31295. height: math.unit(65, "feet"),
  31296. name: "Head (Side)",
  31297. image: {
  31298. source: "./media/characters/kodran/head-side.svg"
  31299. }
  31300. },
  31301. throat: {
  31302. height: math.unit(79, "feet"),
  31303. name: "Throat",
  31304. image: {
  31305. source: "./media/characters/kodran/throat.svg"
  31306. }
  31307. },
  31308. },
  31309. [
  31310. {
  31311. name: "Large",
  31312. height: math.unit(106, "feet"),
  31313. default: true
  31314. },
  31315. ]
  31316. ))
  31317. characterMakers.push(() => makeCharacter(
  31318. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  31319. {
  31320. side: {
  31321. height: math.unit(11, "feet"),
  31322. weight: math.unit(150, "lb"),
  31323. name: "Side",
  31324. image: {
  31325. source: "./media/characters/pyxaron/side.svg",
  31326. extra: 305 / 195,
  31327. bottom: 17 / 322
  31328. }
  31329. },
  31330. },
  31331. [
  31332. {
  31333. name: "Normal",
  31334. height: math.unit(11, "feet"),
  31335. default: true
  31336. },
  31337. ]
  31338. ))
  31339. characterMakers.push(() => makeCharacter(
  31340. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  31341. {
  31342. front: {
  31343. height: math.unit(6, "feet"),
  31344. weight: math.unit(150, "lb"),
  31345. name: "Front",
  31346. image: {
  31347. source: "./media/characters/meep/front.svg",
  31348. extra: 88 / 80,
  31349. bottom: 6 / 94
  31350. }
  31351. },
  31352. },
  31353. [
  31354. {
  31355. name: "Fun Sized",
  31356. height: math.unit(2, "inches"),
  31357. default: true
  31358. },
  31359. {
  31360. name: "Friend Sized",
  31361. height: math.unit(8, "inches")
  31362. },
  31363. ]
  31364. ))
  31365. characterMakers.push(() => makeCharacter(
  31366. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  31367. {
  31368. front: {
  31369. height: math.unit(15, "feet"),
  31370. weight: math.unit(2500, "lb"),
  31371. name: "Front",
  31372. image: {
  31373. source: "./media/characters/holly-rabbit/front.svg",
  31374. extra: 1433 / 1233,
  31375. bottom: 125 / 1558
  31376. }
  31377. },
  31378. dick: {
  31379. height: math.unit(4.6, "feet"),
  31380. name: "Dick",
  31381. image: {
  31382. source: "./media/characters/holly-rabbit/dick.svg"
  31383. }
  31384. },
  31385. },
  31386. [
  31387. {
  31388. name: "Normal",
  31389. height: math.unit(15, "feet"),
  31390. default: true
  31391. },
  31392. {
  31393. name: "Macro",
  31394. height: math.unit(250, "feet")
  31395. },
  31396. {
  31397. name: "Macro+",
  31398. height: math.unit(2500, "feet")
  31399. },
  31400. ]
  31401. ))
  31402. characterMakers.push(() => makeCharacter(
  31403. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  31404. {
  31405. front: {
  31406. height: math.unit(3.02, "meters"),
  31407. weight: math.unit(500, "kg"),
  31408. name: "Front",
  31409. image: {
  31410. source: "./media/characters/drena/front.svg",
  31411. extra: 282 / 243,
  31412. bottom: 8 / 290
  31413. }
  31414. },
  31415. side: {
  31416. height: math.unit(3.02, "meters"),
  31417. weight: math.unit(500, "kg"),
  31418. name: "Side",
  31419. image: {
  31420. source: "./media/characters/drena/side.svg",
  31421. extra: 280 / 245,
  31422. bottom: 10 / 290
  31423. }
  31424. },
  31425. back: {
  31426. height: math.unit(3.02, "meters"),
  31427. weight: math.unit(500, "kg"),
  31428. name: "Back",
  31429. image: {
  31430. source: "./media/characters/drena/back.svg",
  31431. extra: 278 / 243,
  31432. bottom: 2 / 280
  31433. }
  31434. },
  31435. foot: {
  31436. height: math.unit(0.75, "meters"),
  31437. name: "Foot",
  31438. image: {
  31439. source: "./media/characters/drena/foot.svg"
  31440. }
  31441. },
  31442. maw: {
  31443. height: math.unit(0.82, "meters"),
  31444. name: "Maw",
  31445. image: {
  31446. source: "./media/characters/drena/maw.svg"
  31447. }
  31448. },
  31449. eating: {
  31450. height: math.unit(0.75, "meters"),
  31451. name: "Eating",
  31452. image: {
  31453. source: "./media/characters/drena/eating.svg"
  31454. }
  31455. },
  31456. rump: {
  31457. height: math.unit(0.93, "meters"),
  31458. name: "Rump",
  31459. image: {
  31460. source: "./media/characters/drena/rump.svg"
  31461. }
  31462. },
  31463. },
  31464. [
  31465. {
  31466. name: "Normal",
  31467. height: math.unit(3.02, "meters"),
  31468. default: true
  31469. },
  31470. ]
  31471. ))
  31472. characterMakers.push(() => makeCharacter(
  31473. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  31474. {
  31475. front: {
  31476. height: math.unit(6 + 4 / 12, "feet"),
  31477. weight: math.unit(250, "lb"),
  31478. name: "Front",
  31479. image: {
  31480. source: "./media/characters/remmyzilla/front.svg",
  31481. extra: 4033 / 3588,
  31482. bottom: 123 / 4156
  31483. }
  31484. },
  31485. back: {
  31486. height: math.unit(6 + 4 / 12, "feet"),
  31487. weight: math.unit(250, "lb"),
  31488. name: "Back",
  31489. image: {
  31490. source: "./media/characters/remmyzilla/back.svg",
  31491. extra: 1696/1602,
  31492. bottom: 63/1759
  31493. }
  31494. },
  31495. paw: {
  31496. height: math.unit(1.73, "feet"),
  31497. name: "Paw",
  31498. image: {
  31499. source: "./media/characters/remmyzilla/paw.svg"
  31500. },
  31501. extraAttributes: {
  31502. "toeSize": {
  31503. name: "Toe Size",
  31504. power: 2,
  31505. type: "area",
  31506. base: math.unit(0.0035, "m^2")
  31507. },
  31508. "padSize": {
  31509. name: "Pad Size",
  31510. power: 2,
  31511. type: "area",
  31512. base: math.unit(0.015, "m^2")
  31513. },
  31514. "pawsize": {
  31515. name: "Paw Size",
  31516. power: 2,
  31517. type: "area",
  31518. base: math.unit(0.072, "m^2")
  31519. },
  31520. }
  31521. },
  31522. maw: {
  31523. height: math.unit(1.73, "feet"),
  31524. name: "Maw",
  31525. image: {
  31526. source: "./media/characters/remmyzilla/maw.svg"
  31527. }
  31528. },
  31529. },
  31530. [
  31531. {
  31532. name: "Normal",
  31533. height: math.unit(6 + 4 / 12, "feet")
  31534. },
  31535. {
  31536. name: "Minimacro",
  31537. height: math.unit(12 + 8 / 12, "feet")
  31538. },
  31539. {
  31540. name: "Normal",
  31541. height: math.unit(640, "feet"),
  31542. default: true
  31543. },
  31544. {
  31545. name: "Megamacro",
  31546. height: math.unit(6400, "feet")
  31547. },
  31548. {
  31549. name: "Gigamacro",
  31550. height: math.unit(64000, "miles")
  31551. },
  31552. ]
  31553. ))
  31554. characterMakers.push(() => makeCharacter(
  31555. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  31556. {
  31557. front: {
  31558. height: math.unit(2.5, "meters"),
  31559. weight: math.unit(300, "lb"),
  31560. name: "Front",
  31561. image: {
  31562. source: "./media/characters/lawrence/front.svg",
  31563. extra: 357 / 335,
  31564. bottom: 30 / 387
  31565. }
  31566. },
  31567. back: {
  31568. height: math.unit(2.5, "meters"),
  31569. weight: math.unit(300, "lb"),
  31570. name: "Back",
  31571. image: {
  31572. source: "./media/characters/lawrence/back.svg",
  31573. extra: 357 / 338,
  31574. bottom: 16 / 373
  31575. }
  31576. },
  31577. head: {
  31578. height: math.unit(0.9, "meter"),
  31579. name: "Head",
  31580. image: {
  31581. source: "./media/characters/lawrence/head.svg"
  31582. }
  31583. },
  31584. maw: {
  31585. height: math.unit(0.7, "meter"),
  31586. name: "Maw",
  31587. image: {
  31588. source: "./media/characters/lawrence/maw.svg"
  31589. }
  31590. },
  31591. footBottom: {
  31592. height: math.unit(0.5, "meter"),
  31593. name: "Foot (Bottom)",
  31594. image: {
  31595. source: "./media/characters/lawrence/foot-bottom.svg"
  31596. }
  31597. },
  31598. footTop: {
  31599. height: math.unit(0.5, "meter"),
  31600. name: "Foot (Top)",
  31601. image: {
  31602. source: "./media/characters/lawrence/foot-top.svg"
  31603. }
  31604. },
  31605. },
  31606. [
  31607. {
  31608. name: "Normal",
  31609. height: math.unit(2.5, "meters"),
  31610. default: true
  31611. },
  31612. {
  31613. name: "Macro",
  31614. height: math.unit(95, "meters")
  31615. },
  31616. {
  31617. name: "Megamacro",
  31618. height: math.unit(150, "km")
  31619. },
  31620. ]
  31621. ))
  31622. characterMakers.push(() => makeCharacter(
  31623. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31624. {
  31625. front: {
  31626. height: math.unit(4.2, "meters"),
  31627. preyCapacity: math.unit(50, "m^3"),
  31628. weight: math.unit(30, "tonnes"),
  31629. name: "Front",
  31630. image: {
  31631. source: "./media/characters/sydney/front.svg",
  31632. extra: 1177/1129,
  31633. bottom: 197/1374
  31634. },
  31635. extraAttributes: {
  31636. "length": {
  31637. name: "Length",
  31638. power: 1,
  31639. type: "length",
  31640. base: math.unit(21, "meters")
  31641. },
  31642. }
  31643. },
  31644. },
  31645. [
  31646. {
  31647. name: "Normal",
  31648. height: math.unit(4.2, "meters"),
  31649. default: true
  31650. },
  31651. ]
  31652. ))
  31653. characterMakers.push(() => makeCharacter(
  31654. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31655. {
  31656. back: {
  31657. height: math.unit(201, "feet"),
  31658. name: "Back",
  31659. image: {
  31660. source: "./media/characters/jessica/back.svg",
  31661. extra: 273 / 259,
  31662. bottom: 7 / 280
  31663. }
  31664. },
  31665. },
  31666. [
  31667. {
  31668. name: "Normal",
  31669. height: math.unit(201, "feet"),
  31670. default: true
  31671. },
  31672. {
  31673. name: "Megamacro",
  31674. height: math.unit(8, "miles")
  31675. },
  31676. ]
  31677. ))
  31678. characterMakers.push(() => makeCharacter(
  31679. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31680. {
  31681. side: {
  31682. height: math.unit(5.6, "m"),
  31683. weight: math.unit(8000, "kg"),
  31684. name: "Side",
  31685. image: {
  31686. source: "./media/characters/victoria/side.svg",
  31687. extra: 1542/1229,
  31688. bottom: 124/1666
  31689. }
  31690. },
  31691. maw: {
  31692. height: math.unit(7.14, "feet"),
  31693. name: "Maw",
  31694. image: {
  31695. source: "./media/characters/victoria/maw.svg"
  31696. }
  31697. },
  31698. },
  31699. [
  31700. {
  31701. name: "Normal",
  31702. height: math.unit(5.6, "m"),
  31703. default: true
  31704. },
  31705. ]
  31706. ))
  31707. characterMakers.push(() => makeCharacter(
  31708. { name: "Cat", species: ["cat", "nickit", "lucario", "riolu", "lopunny", "dog", "pikachu"], tags: ["anthro", "feral", "taur"] },
  31709. {
  31710. front: {
  31711. height: math.unit(5 + 6 / 12, "feet"),
  31712. name: "Front",
  31713. image: {
  31714. source: "./media/characters/cat/cat-front.svg",
  31715. extra: 1422/1262,
  31716. bottom: 61/1483
  31717. },
  31718. form: "cat",
  31719. default: true
  31720. },
  31721. back: {
  31722. height: math.unit(5 + 6 / 12, "feet"),
  31723. name: "Back",
  31724. image: {
  31725. source: "./media/characters/cat/cat-back.svg",
  31726. extra: 1466/1301,
  31727. bottom: 19/1485
  31728. },
  31729. form: "cat"
  31730. },
  31731. taur: {
  31732. height: math.unit(7, "feet"),
  31733. name: "Side",
  31734. image: {
  31735. source: "./media/characters/cat/taur-side.svg",
  31736. extra: 1389/1233,
  31737. bottom: 83/1472
  31738. },
  31739. form: "taur",
  31740. default: true
  31741. },
  31742. lucarioFront: {
  31743. height: math.unit(4, "feet"),
  31744. name: "Front",
  31745. image: {
  31746. source: "./media/characters/cat/lucario-front.svg",
  31747. extra: 1149/1019,
  31748. bottom: 84/1233
  31749. },
  31750. form: "lucario",
  31751. default: true
  31752. },
  31753. lucarioBack: {
  31754. height: math.unit(4, "feet"),
  31755. name: "Back",
  31756. image: {
  31757. source: "./media/characters/cat/lucario-back.svg",
  31758. extra: 1190/1059,
  31759. bottom: 33/1223
  31760. },
  31761. form: "lucario"
  31762. },
  31763. riolu_front: {
  31764. height: math.unit(2 + 4/12, "feet"),
  31765. name: "Front",
  31766. image: {
  31767. source: "./media/characters/cat/riolu-front.svg",
  31768. extra: 1104/956,
  31769. bottom: 70/1174
  31770. },
  31771. form: "riolu",
  31772. default: true
  31773. },
  31774. nickit: {
  31775. height: math.unit(2, "feet"),
  31776. name: "Side",
  31777. image: {
  31778. source: "./media/characters/cat/nickit-side.svg",
  31779. extra: 1087/852,
  31780. bottom: 67/1154
  31781. },
  31782. form: "nickit",
  31783. default: true
  31784. },
  31785. lopunnyFront: {
  31786. height: math.unit(5, "feet"),
  31787. name: "Front",
  31788. image: {
  31789. source: "./media/characters/cat/lopunny-front.svg",
  31790. extra: 1217/1078,
  31791. bottom: 23/1240
  31792. },
  31793. form: "lopunny",
  31794. default: true
  31795. },
  31796. lopunnyBack: {
  31797. height: math.unit(5, "feet"),
  31798. name: "Back",
  31799. image: {
  31800. source: "./media/characters/cat/lopunny-back.svg",
  31801. extra: 1205/1057,
  31802. bottom: 33/1238
  31803. },
  31804. form: "lopunny"
  31805. },
  31806. dog_front: {
  31807. height: math.unit(5 + 9/12, "feet"),
  31808. name: "Front",
  31809. image: {
  31810. source: "./media/characters/cat/dog-front.svg",
  31811. extra: 1403/1309,
  31812. bottom: 31/1434
  31813. },
  31814. form: "dog",
  31815. default: true
  31816. },
  31817. dog_back: {
  31818. height: math.unit(5 + 9/12, "feet"),
  31819. name: "Back",
  31820. image: {
  31821. source: "./media/characters/cat/dog-back.svg",
  31822. extra: 1393/1297,
  31823. bottom: 38/1431
  31824. },
  31825. form: "dog",
  31826. },
  31827. pikachu_front: {
  31828. height: math.unit(2.64, "feet"),
  31829. name: "Front",
  31830. image: {
  31831. source: "./media/characters/cat/pikachu-front.svg",
  31832. extra: 1224/958,
  31833. bottom: 34/1258
  31834. },
  31835. form: "pikachu",
  31836. default: true
  31837. },
  31838. pikachu_back: {
  31839. height: math.unit(2.64, "feet"),
  31840. name: "Back",
  31841. image: {
  31842. source: "./media/characters/cat/pikachu-back.svg",
  31843. extra: 1228/958,
  31844. bottom: 16/1244
  31845. },
  31846. form: "pikachu",
  31847. },
  31848. gigachuFront: {
  31849. height: math.unit(75, "feet"),
  31850. name: "Front",
  31851. image: {
  31852. source: "./media/characters/cat/gigachu-front.svg",
  31853. extra: 1239/1027,
  31854. bottom: 32/1271
  31855. },
  31856. form: "gigachu",
  31857. default: true
  31858. },
  31859. gigachuBack: {
  31860. height: math.unit(75, "feet"),
  31861. name: "Back",
  31862. image: {
  31863. source: "./media/characters/cat/gigachu-back.svg",
  31864. extra: 1229/1030,
  31865. bottom: 9/1238
  31866. },
  31867. form: "gigachu"
  31868. },
  31869. },
  31870. [
  31871. {
  31872. name: "Really small",
  31873. height: math.unit(1, "nm"),
  31874. allForms: true
  31875. },
  31876. {
  31877. name: "Micro",
  31878. height: math.unit(5, "inches"),
  31879. allForms: true
  31880. },
  31881. {
  31882. name: "Normal",
  31883. height: math.unit(5 + 6 / 12, "feet"),
  31884. default: true,
  31885. form: "cat"
  31886. },
  31887. {
  31888. name: "Normal",
  31889. height: math.unit(7, "feet"),
  31890. default: true,
  31891. form: "taur"
  31892. },
  31893. {
  31894. name: "Normal",
  31895. height: math.unit(4, "feet"),
  31896. default: true,
  31897. form: "lucario"
  31898. },
  31899. {
  31900. name: "Normal",
  31901. height: math.unit(2, "feet"),
  31902. default: true,
  31903. form: "nickit"
  31904. },
  31905. {
  31906. name: "Normal",
  31907. height: math.unit(5, "feet"),
  31908. default: true,
  31909. form: "lopunny"
  31910. },
  31911. {
  31912. name: "Normal",
  31913. height: math.unit(2 + 4/12, "feet"),
  31914. default: true,
  31915. form: "riolu"
  31916. },
  31917. {
  31918. name: "Normal",
  31919. height: math.unit(5 + 6 / 12, "feet"),
  31920. default: true,
  31921. form: "dog"
  31922. },
  31923. {
  31924. name: "Macro",
  31925. height: math.unit(50, "feet"),
  31926. allForms: true
  31927. },
  31928. {
  31929. name: "Normal",
  31930. height: math.unit(2.64, "feet"),
  31931. default: true,
  31932. form: "pikachu"
  31933. },
  31934. {
  31935. name: "Dynamax",
  31936. height: math.unit(75, "feet"),
  31937. form: "gigachu",
  31938. default: true
  31939. },
  31940. {
  31941. name: "Macro+",
  31942. height: math.unit(150, "feet"),
  31943. allForms: true
  31944. },
  31945. {
  31946. name: "Megamacro",
  31947. height: math.unit(100, "miles"),
  31948. allForms: true
  31949. },
  31950. ],
  31951. {
  31952. "cat": {
  31953. name: "Cat",
  31954. default: true
  31955. },
  31956. "taur": {
  31957. name: "Taur",
  31958. },
  31959. "lucario": {
  31960. name: "Lucario",
  31961. },
  31962. "riolu": {
  31963. name: "Riolu",
  31964. },
  31965. "nickit": {
  31966. name: "Nickit",
  31967. },
  31968. "lopunny": {
  31969. name: "Lopunny",
  31970. },
  31971. "dog": {
  31972. name: "Dog",
  31973. },
  31974. "pikachu": {
  31975. name: "Pikachu",
  31976. },
  31977. "gigachu": {
  31978. name: "Gigachu",
  31979. ignoreAllFormSizes: true
  31980. }
  31981. }
  31982. ))
  31983. characterMakers.push(() => makeCharacter(
  31984. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31985. {
  31986. front: {
  31987. height: math.unit(63.4, "meters"),
  31988. weight: math.unit(3.28349e+6, "kilograms"),
  31989. name: "Front",
  31990. image: {
  31991. source: "./media/characters/kirina-violet/front.svg",
  31992. extra: 2812 / 2725,
  31993. bottom: 0 / 2812
  31994. }
  31995. },
  31996. back: {
  31997. height: math.unit(63.4, "meters"),
  31998. weight: math.unit(3.28349e+6, "kilograms"),
  31999. name: "Back",
  32000. image: {
  32001. source: "./media/characters/kirina-violet/back.svg",
  32002. extra: 2812 / 2725,
  32003. bottom: 0 / 2812
  32004. }
  32005. },
  32006. mouth: {
  32007. height: math.unit(4.35, "meters"),
  32008. name: "Mouth",
  32009. image: {
  32010. source: "./media/characters/kirina-violet/mouth.svg"
  32011. }
  32012. },
  32013. paw: {
  32014. height: math.unit(5.6, "meters"),
  32015. name: "Paw",
  32016. image: {
  32017. source: "./media/characters/kirina-violet/paw.svg"
  32018. }
  32019. },
  32020. tail: {
  32021. height: math.unit(18, "meters"),
  32022. name: "Tail",
  32023. image: {
  32024. source: "./media/characters/kirina-violet/tail.svg"
  32025. }
  32026. },
  32027. },
  32028. [
  32029. {
  32030. name: "Macro",
  32031. height: math.unit(63.4, "meters"),
  32032. default: true
  32033. },
  32034. ]
  32035. ))
  32036. characterMakers.push(() => makeCharacter(
  32037. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  32038. {
  32039. front: {
  32040. height: math.unit(6, "feet"),
  32041. weight: math.unit(150, "lb"),
  32042. name: "Front",
  32043. image: {
  32044. source: "./media/characters/sfaiyan/front.svg",
  32045. extra: 999 / 978,
  32046. bottom: 5 / 1004
  32047. }
  32048. },
  32049. },
  32050. [
  32051. {
  32052. name: "Normal",
  32053. height: math.unit(1.82, "meters")
  32054. },
  32055. {
  32056. name: "Giant",
  32057. height: math.unit(2.27, "km"),
  32058. default: true
  32059. },
  32060. ]
  32061. ))
  32062. characterMakers.push(() => makeCharacter(
  32063. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  32064. {
  32065. front: {
  32066. height: math.unit(179, "cm"),
  32067. weight: math.unit(100, "kg"),
  32068. name: "Front",
  32069. image: {
  32070. source: "./media/characters/raunehkeli/front.svg",
  32071. extra: 1934 / 1926,
  32072. bottom: 0 / 1934
  32073. }
  32074. },
  32075. },
  32076. [
  32077. {
  32078. name: "Normal",
  32079. height: math.unit(179, "cm")
  32080. },
  32081. {
  32082. name: "Maximum",
  32083. height: math.unit(575, "meters"),
  32084. default: true
  32085. },
  32086. ]
  32087. ))
  32088. characterMakers.push(() => makeCharacter(
  32089. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  32090. {
  32091. dressed: {
  32092. height: math.unit(6 + 2/12, "feet"),
  32093. weight: math.unit(150, "lb"),
  32094. name: "Dressed",
  32095. image: {
  32096. source: "./media/characters/beatrice-the-behemoth-heathers/dressed.svg",
  32097. extra: 2620/2496,
  32098. bottom: 66/2686
  32099. }
  32100. },
  32101. nude: {
  32102. height: math.unit(6 + 2/12, "feet"),
  32103. weight: math.unit(150, "lb"),
  32104. name: "Nude",
  32105. image: {
  32106. source: "./media/characters/beatrice-the-behemoth-heathers/nude.svg",
  32107. extra: 2620/2496,
  32108. bottom: 66/2686
  32109. }
  32110. },
  32111. },
  32112. [
  32113. {
  32114. name: "Normal",
  32115. height: math.unit(6 + 2 / 12, "feet")
  32116. },
  32117. {
  32118. name: "Max Height",
  32119. height: math.unit(1181, "feet"),
  32120. default: true
  32121. },
  32122. ]
  32123. ))
  32124. characterMakers.push(() => makeCharacter(
  32125. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  32126. {
  32127. front: {
  32128. height: math.unit(5 + 6 / 12, "feet"),
  32129. weight: math.unit(108, "lb"),
  32130. name: "Front",
  32131. image: {
  32132. source: "./media/characters/lilith-zott/front.svg",
  32133. extra: 2415/2133,
  32134. bottom: 193/2608
  32135. }
  32136. },
  32137. },
  32138. [
  32139. {
  32140. name: "Base Height",
  32141. height: math.unit(5 + 6 / 12, "feet")
  32142. },
  32143. {
  32144. name: "Preferred Height",
  32145. height: math.unit(200, "feet")
  32146. },
  32147. {
  32148. name: "Max Height",
  32149. height: math.unit(1030, "feet"),
  32150. default: true
  32151. },
  32152. ]
  32153. ))
  32154. characterMakers.push(() => makeCharacter(
  32155. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  32156. {
  32157. super: {
  32158. height: math.unit(6 + 2/12, "feet"),
  32159. weight: math.unit(150, "lb"),
  32160. name: "Super",
  32161. image: {
  32162. source: "./media/characters/holly-the-mega-mousky-heathers/super.svg",
  32163. extra: 2555/2387,
  32164. bottom: 50/2605
  32165. }
  32166. },
  32167. casual: {
  32168. height: math.unit(6 + 2/12, "feet"),
  32169. weight: math.unit(150, "lb"),
  32170. name: "Casual",
  32171. image: {
  32172. source: "./media/characters/holly-the-mega-mousky-heathers/casual.svg",
  32173. extra: 2555/2387,
  32174. bottom: 50/2605
  32175. }
  32176. },
  32177. hand: {
  32178. height: math.unit(1.08, "feet"),
  32179. name: "Hand",
  32180. image: {
  32181. source: "./media/characters/holly-the-mega-mousky-heathers/hand.svg"
  32182. }
  32183. },
  32184. paw: {
  32185. height: math.unit(1.33, "feet"),
  32186. name: "Paw",
  32187. image: {
  32188. source: "./media/characters/holly-the-mega-mousky-heathers/paw.svg"
  32189. }
  32190. },
  32191. },
  32192. [
  32193. {
  32194. name: "Normal",
  32195. height: math.unit(6 + 2/12, "feet")
  32196. },
  32197. {
  32198. name: "Preferred Height",
  32199. height: math.unit(220, "feet")
  32200. },
  32201. {
  32202. name: "Max Height",
  32203. height: math.unit(1100, "feet"),
  32204. default: true
  32205. },
  32206. ]
  32207. ))
  32208. characterMakers.push(() => makeCharacter(
  32209. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  32210. {
  32211. front: {
  32212. height: math.unit(100, "miles"),
  32213. name: "Front",
  32214. image: {
  32215. source: "./media/characters/sona/front.svg",
  32216. extra: 2433 / 2201,
  32217. bottom: 53 / 2486
  32218. }
  32219. },
  32220. foot: {
  32221. height: math.unit(16.1, "miles"),
  32222. name: "Foot",
  32223. image: {
  32224. source: "./media/characters/sona/foot.svg"
  32225. }
  32226. },
  32227. },
  32228. [
  32229. {
  32230. name: "Macro",
  32231. height: math.unit(100, "miles"),
  32232. default: true
  32233. },
  32234. ]
  32235. ))
  32236. characterMakers.push(() => makeCharacter(
  32237. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  32238. {
  32239. front: {
  32240. height: math.unit(6, "feet"),
  32241. weight: math.unit(150, "lb"),
  32242. name: "Front",
  32243. image: {
  32244. source: "./media/characters/bailey/front.svg",
  32245. extra: 1778 / 1724,
  32246. bottom: 30 / 1808
  32247. }
  32248. },
  32249. },
  32250. [
  32251. {
  32252. name: "Micro",
  32253. height: math.unit(4, "inches")
  32254. },
  32255. {
  32256. name: "Normal",
  32257. height: math.unit(5 + 5 / 12, "feet"),
  32258. default: true
  32259. },
  32260. {
  32261. name: "Macro",
  32262. height: math.unit(250, "feet")
  32263. },
  32264. {
  32265. name: "Megamacro",
  32266. height: math.unit(100, "miles")
  32267. },
  32268. ]
  32269. ))
  32270. characterMakers.push(() => makeCharacter(
  32271. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  32272. {
  32273. front: {
  32274. height: math.unit(5 + 2 / 12, "feet"),
  32275. weight: math.unit(120, "lb"),
  32276. name: "Front",
  32277. image: {
  32278. source: "./media/characters/snaps/front.svg",
  32279. extra: 2370 / 2177,
  32280. bottom: 48 / 2418
  32281. }
  32282. },
  32283. back: {
  32284. height: math.unit(5 + 2 / 12, "feet"),
  32285. weight: math.unit(120, "lb"),
  32286. name: "Back",
  32287. image: {
  32288. source: "./media/characters/snaps/back.svg",
  32289. extra: 2408 / 2258,
  32290. bottom: 15 / 2423
  32291. }
  32292. },
  32293. },
  32294. [
  32295. {
  32296. name: "Micro",
  32297. height: math.unit(9, "inches")
  32298. },
  32299. {
  32300. name: "Normal",
  32301. height: math.unit(5 + 2 / 12, "feet"),
  32302. default: true
  32303. },
  32304. {
  32305. name: "Mini Macro",
  32306. height: math.unit(10, "feet")
  32307. },
  32308. ]
  32309. ))
  32310. characterMakers.push(() => makeCharacter(
  32311. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  32312. {
  32313. front: {
  32314. height: math.unit(1.8, "meters"),
  32315. weight: math.unit(85, "kg"),
  32316. name: "Front",
  32317. image: {
  32318. source: "./media/characters/azteck/front.svg",
  32319. extra: 2815 / 2625,
  32320. bottom: 89 / 2904
  32321. }
  32322. },
  32323. back: {
  32324. height: math.unit(1.8, "meters"),
  32325. weight: math.unit(85, "kg"),
  32326. name: "Back",
  32327. image: {
  32328. source: "./media/characters/azteck/back.svg",
  32329. extra: 2856 / 2648,
  32330. bottom: 85 / 2941
  32331. }
  32332. },
  32333. frontDressed: {
  32334. height: math.unit(1.8, "meters"),
  32335. weight: math.unit(85, "kg"),
  32336. name: "Front (Dressed)",
  32337. image: {
  32338. source: "./media/characters/azteck/front-dressed.svg",
  32339. extra: 2147 / 2003,
  32340. bottom: 68 / 2215
  32341. }
  32342. },
  32343. head: {
  32344. height: math.unit(0.47, "meters"),
  32345. weight: math.unit(85, "kg"),
  32346. name: "Head",
  32347. image: {
  32348. source: "./media/characters/azteck/head.svg"
  32349. }
  32350. },
  32351. },
  32352. [
  32353. {
  32354. name: "Bite sized",
  32355. height: math.unit(16, "cm")
  32356. },
  32357. {
  32358. name: "Normal",
  32359. height: math.unit(1.8, "meters"),
  32360. default: true
  32361. },
  32362. ]
  32363. ))
  32364. characterMakers.push(() => makeCharacter(
  32365. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  32366. {
  32367. front: {
  32368. height: math.unit(6, "feet"),
  32369. weight: math.unit(150, "lb"),
  32370. name: "Front",
  32371. image: {
  32372. source: "./media/characters/pidge/front.svg",
  32373. extra: 1936/1820,
  32374. bottom: 0/1936
  32375. }
  32376. },
  32377. back: {
  32378. height: math.unit(6, "feet"),
  32379. weight: math.unit(150, "lb"),
  32380. name: "Back",
  32381. image: {
  32382. source: "./media/characters/pidge/back.svg",
  32383. extra: 1938/1843,
  32384. bottom: 0/1938
  32385. }
  32386. },
  32387. casual: {
  32388. height: math.unit(6, "feet"),
  32389. weight: math.unit(150, "lb"),
  32390. name: "Casual",
  32391. image: {
  32392. source: "./media/characters/pidge/casual.svg",
  32393. extra: 1936/1820,
  32394. bottom: 0/1936
  32395. }
  32396. },
  32397. tech: {
  32398. height: math.unit(6, "feet"),
  32399. weight: math.unit(150, "lb"),
  32400. name: "Tech",
  32401. image: {
  32402. source: "./media/characters/pidge/tech.svg",
  32403. extra: 1802/1682,
  32404. bottom: 0/1802
  32405. }
  32406. },
  32407. head: {
  32408. height: math.unit(1.61, "feet"),
  32409. name: "Head",
  32410. image: {
  32411. source: "./media/characters/pidge/head.svg"
  32412. }
  32413. },
  32414. collar: {
  32415. height: math.unit(0.82, "feet"),
  32416. name: "Collar",
  32417. image: {
  32418. source: "./media/characters/pidge/collar.svg"
  32419. }
  32420. },
  32421. },
  32422. [
  32423. {
  32424. name: "Macro",
  32425. height: math.unit(2, "mile"),
  32426. default: true
  32427. },
  32428. {
  32429. name: "PUPPY",
  32430. height: math.unit(20, "miles")
  32431. },
  32432. ]
  32433. ))
  32434. characterMakers.push(() => makeCharacter(
  32435. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  32436. {
  32437. front: {
  32438. height: math.unit(6, "feet"),
  32439. weight: math.unit(150, "lb"),
  32440. name: "Front",
  32441. image: {
  32442. source: "./media/characters/en/front.svg",
  32443. extra: 1697 / 1563,
  32444. bottom: 103 / 1800
  32445. }
  32446. },
  32447. back: {
  32448. height: math.unit(6, "feet"),
  32449. weight: math.unit(150, "lb"),
  32450. name: "Back",
  32451. image: {
  32452. source: "./media/characters/en/back.svg",
  32453. extra: 1700 / 1570,
  32454. bottom: 51 / 1751
  32455. }
  32456. },
  32457. frontDressed: {
  32458. height: math.unit(6, "feet"),
  32459. weight: math.unit(150, "lb"),
  32460. name: "Front (Dressed)",
  32461. image: {
  32462. source: "./media/characters/en/front-dressed.svg",
  32463. extra: 1697 / 1563,
  32464. bottom: 103 / 1800
  32465. }
  32466. },
  32467. backDressed: {
  32468. height: math.unit(6, "feet"),
  32469. weight: math.unit(150, "lb"),
  32470. name: "Back (Dressed)",
  32471. image: {
  32472. source: "./media/characters/en/back-dressed.svg",
  32473. extra: 1700 / 1570,
  32474. bottom: 51 / 1751
  32475. }
  32476. },
  32477. },
  32478. [
  32479. {
  32480. name: "Macro",
  32481. height: math.unit(210, "feet"),
  32482. default: true
  32483. },
  32484. ]
  32485. ))
  32486. characterMakers.push(() => makeCharacter(
  32487. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  32488. {
  32489. front: {
  32490. height: math.unit(6, "feet"),
  32491. weight: math.unit(150, "lb"),
  32492. name: "Front",
  32493. image: {
  32494. source: "./media/characters/haze-orris/front.svg",
  32495. extra: 3975 / 3525,
  32496. bottom: 137 / 4112
  32497. }
  32498. },
  32499. },
  32500. [
  32501. {
  32502. name: "Micro",
  32503. height: math.unit(150, "mm"),
  32504. default: true
  32505. },
  32506. ]
  32507. ))
  32508. characterMakers.push(() => makeCharacter(
  32509. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  32510. {
  32511. front: {
  32512. height: math.unit(6, "feet"),
  32513. weight: math.unit(150, "lb"),
  32514. name: "Front",
  32515. image: {
  32516. source: "./media/characters/casselene-yaro/front.svg",
  32517. extra: 4721 / 4541,
  32518. bottom: 82 / 4803
  32519. }
  32520. },
  32521. back: {
  32522. height: math.unit(6, "feet"),
  32523. weight: math.unit(150, "lb"),
  32524. name: "Back",
  32525. image: {
  32526. source: "./media/characters/casselene-yaro/back.svg",
  32527. extra: 4569 / 4377,
  32528. bottom: 69 / 4638
  32529. }
  32530. },
  32531. dressed: {
  32532. height: math.unit(6, "feet"),
  32533. weight: math.unit(150, "lb"),
  32534. name: "Dressed",
  32535. image: {
  32536. source: "./media/characters/casselene-yaro/dressed.svg",
  32537. extra: 4721 / 4541,
  32538. bottom: 82 / 4803
  32539. }
  32540. },
  32541. maw: {
  32542. height: math.unit(1, "feet"),
  32543. name: "Maw",
  32544. image: {
  32545. source: "./media/characters/casselene-yaro/maw.svg"
  32546. }
  32547. },
  32548. },
  32549. [
  32550. {
  32551. name: "Macro",
  32552. height: math.unit(190, "feet"),
  32553. default: true
  32554. },
  32555. ]
  32556. ))
  32557. characterMakers.push(() => makeCharacter(
  32558. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  32559. {
  32560. front: {
  32561. height: math.unit(10, "feet"),
  32562. weight: math.unit(15015, "lb"),
  32563. name: "Front",
  32564. image: {
  32565. source: "./media/characters/platine/front.svg",
  32566. extra: 1741/1650,
  32567. bottom: 84/1825
  32568. }
  32569. },
  32570. side: {
  32571. height: math.unit(10, "feet"),
  32572. weight: math.unit(15015, "lb"),
  32573. name: "Side",
  32574. image: {
  32575. source: "./media/characters/platine/side.svg",
  32576. extra: 1790/1705,
  32577. bottom: 29/1819
  32578. }
  32579. },
  32580. },
  32581. [
  32582. {
  32583. name: "Normal",
  32584. height: math.unit(10, "feet"),
  32585. default: true
  32586. },
  32587. {
  32588. name: "Macro",
  32589. height: math.unit(100, "feet")
  32590. },
  32591. {
  32592. name: "Megamacro",
  32593. height: math.unit(1000, "feet")
  32594. },
  32595. ]
  32596. ))
  32597. characterMakers.push(() => makeCharacter(
  32598. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  32599. {
  32600. front: {
  32601. height: math.unit(15 + 5 / 12, "feet"),
  32602. weight: math.unit(4600, "lb"),
  32603. name: "Front",
  32604. image: {
  32605. source: "./media/characters/neapolitan-ananassa/front.svg",
  32606. extra: 2903 / 2736,
  32607. bottom: 0 / 2903
  32608. }
  32609. },
  32610. side: {
  32611. height: math.unit(15 + 5 / 12, "feet"),
  32612. weight: math.unit(4600, "lb"),
  32613. name: "Side",
  32614. image: {
  32615. source: "./media/characters/neapolitan-ananassa/side.svg",
  32616. extra: 2925 / 2719,
  32617. bottom: 0 / 2925
  32618. }
  32619. },
  32620. back: {
  32621. height: math.unit(15 + 5 / 12, "feet"),
  32622. weight: math.unit(4600, "lb"),
  32623. name: "Back",
  32624. image: {
  32625. source: "./media/characters/neapolitan-ananassa/back.svg",
  32626. extra: 2903 / 2736,
  32627. bottom: 0 / 2903
  32628. }
  32629. },
  32630. },
  32631. [
  32632. {
  32633. name: "Normal",
  32634. height: math.unit(15 + 5 / 12, "feet"),
  32635. default: true
  32636. },
  32637. {
  32638. name: "Post-Millenium",
  32639. height: math.unit(35 + 5 / 12, "feet")
  32640. },
  32641. {
  32642. name: "Post-Era",
  32643. height: math.unit(450 + 5 / 12, "feet")
  32644. },
  32645. ]
  32646. ))
  32647. characterMakers.push(() => makeCharacter(
  32648. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  32649. {
  32650. front: {
  32651. height: math.unit(300, "meters"),
  32652. weight: math.unit(125000, "tonnes"),
  32653. name: "Front",
  32654. image: {
  32655. source: "./media/characters/pazuzu/front.svg",
  32656. extra: 877 / 794,
  32657. bottom: 47 / 924
  32658. }
  32659. },
  32660. },
  32661. [
  32662. {
  32663. name: "Macro",
  32664. height: math.unit(300, "meters"),
  32665. default: true
  32666. },
  32667. ]
  32668. ))
  32669. characterMakers.push(() => makeCharacter(
  32670. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  32671. {
  32672. side: {
  32673. height: math.unit(10 + 7 / 12, "feet"),
  32674. weight: math.unit(2.5, "tons"),
  32675. name: "Side",
  32676. image: {
  32677. source: "./media/characters/aasha/side.svg",
  32678. extra: 1345 / 1245,
  32679. bottom: 111 / 1456
  32680. }
  32681. },
  32682. back: {
  32683. height: math.unit(10 + 7 / 12, "feet"),
  32684. weight: math.unit(2.5, "tons"),
  32685. name: "Back",
  32686. image: {
  32687. source: "./media/characters/aasha/back.svg",
  32688. extra: 1133 / 1057,
  32689. bottom: 257 / 1390
  32690. }
  32691. },
  32692. },
  32693. [
  32694. {
  32695. name: "Normal",
  32696. height: math.unit(10 + 7 / 12, "feet"),
  32697. default: true
  32698. },
  32699. ]
  32700. ))
  32701. characterMakers.push(() => makeCharacter(
  32702. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  32703. {
  32704. front: {
  32705. height: math.unit(6 + 3 / 12, "feet"),
  32706. name: "Front",
  32707. image: {
  32708. source: "./media/characters/nevan/front.svg",
  32709. extra: 704 / 704,
  32710. bottom: 28 / 732
  32711. }
  32712. },
  32713. back: {
  32714. height: math.unit(6 + 3 / 12, "feet"),
  32715. name: "Back",
  32716. image: {
  32717. source: "./media/characters/nevan/back.svg",
  32718. extra: 714 / 714,
  32719. bottom: 21 / 735
  32720. }
  32721. },
  32722. frontFlaccid: {
  32723. height: math.unit(6 + 3 / 12, "feet"),
  32724. name: "Front (Flaccid)",
  32725. image: {
  32726. source: "./media/characters/nevan/front-flaccid.svg",
  32727. extra: 704 / 704,
  32728. bottom: 28 / 732
  32729. }
  32730. },
  32731. frontErect: {
  32732. height: math.unit(6 + 3 / 12, "feet"),
  32733. name: "Front (Erect)",
  32734. image: {
  32735. source: "./media/characters/nevan/front-erect.svg",
  32736. extra: 704 / 704,
  32737. bottom: 28 / 732
  32738. }
  32739. },
  32740. backFlaccid: {
  32741. height: math.unit(6 + 3 / 12, "feet"),
  32742. name: "Back (Flaccid)",
  32743. image: {
  32744. source: "./media/characters/nevan/back-flaccid.svg",
  32745. extra: 714 / 714,
  32746. bottom: 21 / 735
  32747. }
  32748. },
  32749. },
  32750. [
  32751. {
  32752. name: "Normal",
  32753. height: math.unit(6 + 3 / 12, "feet"),
  32754. default: true
  32755. },
  32756. ]
  32757. ))
  32758. characterMakers.push(() => makeCharacter(
  32759. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32760. {
  32761. front: {
  32762. height: math.unit(4, "feet"),
  32763. name: "Front",
  32764. image: {
  32765. source: "./media/characters/arhan/front.svg",
  32766. extra: 3368 / 3133,
  32767. bottom: 0 / 3368
  32768. }
  32769. },
  32770. side: {
  32771. height: math.unit(4, "feet"),
  32772. name: "Side",
  32773. image: {
  32774. source: "./media/characters/arhan/side.svg",
  32775. extra: 3347 / 3105,
  32776. bottom: 0 / 3347
  32777. }
  32778. },
  32779. tongue: {
  32780. height: math.unit(1.42, "feet"),
  32781. name: "Tongue",
  32782. image: {
  32783. source: "./media/characters/arhan/tongue.svg"
  32784. }
  32785. },
  32786. head: {
  32787. height: math.unit(0.85, "feet"),
  32788. name: "Head",
  32789. image: {
  32790. source: "./media/characters/arhan/head.svg"
  32791. }
  32792. },
  32793. },
  32794. [
  32795. {
  32796. name: "Normal",
  32797. height: math.unit(4, "feet"),
  32798. default: true
  32799. },
  32800. ]
  32801. ))
  32802. characterMakers.push(() => makeCharacter(
  32803. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32804. {
  32805. front: {
  32806. height: math.unit(5 + 7.5 / 12, "feet"),
  32807. weight: math.unit(120, "lb"),
  32808. name: "Front",
  32809. image: {
  32810. source: "./media/characters/digi-duncan/front.svg",
  32811. extra: 330 / 326,
  32812. bottom: 16 / 346
  32813. }
  32814. },
  32815. side: {
  32816. height: math.unit(5 + 7.5 / 12, "feet"),
  32817. weight: math.unit(120, "lb"),
  32818. name: "Side",
  32819. image: {
  32820. source: "./media/characters/digi-duncan/side.svg",
  32821. extra: 341 / 337,
  32822. bottom: 1 / 342
  32823. }
  32824. },
  32825. back: {
  32826. height: math.unit(5 + 7.5 / 12, "feet"),
  32827. weight: math.unit(120, "lb"),
  32828. name: "Back",
  32829. image: {
  32830. source: "./media/characters/digi-duncan/back.svg",
  32831. extra: 330 / 326,
  32832. bottom: 12 / 342
  32833. }
  32834. },
  32835. },
  32836. [
  32837. {
  32838. name: "Speck",
  32839. height: math.unit(0.25, "mm")
  32840. },
  32841. {
  32842. name: "Micro",
  32843. height: math.unit(5, "mm")
  32844. },
  32845. {
  32846. name: "Tiny",
  32847. height: math.unit(0.5, "inches"),
  32848. default: true
  32849. },
  32850. {
  32851. name: "Human",
  32852. height: math.unit(5 + 7.5 / 12, "feet")
  32853. },
  32854. {
  32855. name: "Minigiant",
  32856. height: math.unit(8 + 5.25, "feet")
  32857. },
  32858. {
  32859. name: "Giant",
  32860. height: math.unit(2000, "feet")
  32861. },
  32862. {
  32863. name: "Mega",
  32864. height: math.unit(371.1, "miles")
  32865. },
  32866. ]
  32867. ))
  32868. characterMakers.push(() => makeCharacter(
  32869. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32870. {
  32871. front: {
  32872. height: math.unit(2, "meters"),
  32873. weight: math.unit(350, "kg"),
  32874. name: "Front",
  32875. image: {
  32876. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32877. extra: 898 / 838,
  32878. bottom: 9 / 907
  32879. }
  32880. },
  32881. },
  32882. [
  32883. {
  32884. name: "Micro",
  32885. height: math.unit(8, "meters")
  32886. },
  32887. {
  32888. name: "Normal",
  32889. height: math.unit(50, "meters"),
  32890. default: true
  32891. },
  32892. {
  32893. name: "Macro",
  32894. height: math.unit(500, "meters")
  32895. },
  32896. ]
  32897. ))
  32898. characterMakers.push(() => makeCharacter(
  32899. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32900. {
  32901. front: {
  32902. height: math.unit(6 + 6 / 12, "feet"),
  32903. name: "Front",
  32904. image: {
  32905. source: "./media/characters/khardesh/front.svg",
  32906. extra: 1788/1596,
  32907. bottom: 66/1854
  32908. }
  32909. },
  32910. back: {
  32911. height: math.unit(6 + 6 / 12, "feet"),
  32912. name: "Back",
  32913. image: {
  32914. source: "./media/characters/khardesh/back.svg",
  32915. extra: 1781/1584,
  32916. bottom: 68/1849
  32917. }
  32918. },
  32919. },
  32920. [
  32921. {
  32922. name: "Normal",
  32923. height: math.unit(6 + 6 / 12, "feet"),
  32924. default: true
  32925. },
  32926. {
  32927. name: "Normal+",
  32928. height: math.unit(4, "meters")
  32929. },
  32930. {
  32931. name: "Macro",
  32932. height: math.unit(50, "meters")
  32933. },
  32934. {
  32935. name: "Macro+",
  32936. height: math.unit(100, "meters")
  32937. },
  32938. {
  32939. name: "Megamacro",
  32940. height: math.unit(20, "km")
  32941. },
  32942. ]
  32943. ))
  32944. characterMakers.push(() => makeCharacter(
  32945. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32946. {
  32947. front: {
  32948. height: math.unit(6, "feet"),
  32949. weight: math.unit(150, "lb"),
  32950. name: "Front",
  32951. image: {
  32952. source: "./media/characters/kosho/front.svg",
  32953. extra: 1847 / 1847,
  32954. bottom: 86 / 1933
  32955. }
  32956. },
  32957. },
  32958. [
  32959. {
  32960. name: "Second-stage micro",
  32961. height: math.unit(0.5, "inches")
  32962. },
  32963. {
  32964. name: "First-stage micro",
  32965. height: math.unit(6, "inches")
  32966. },
  32967. {
  32968. name: "Normal",
  32969. height: math.unit(6, "feet"),
  32970. default: true
  32971. },
  32972. {
  32973. name: "First-stage macro",
  32974. height: math.unit(72, "feet")
  32975. },
  32976. {
  32977. name: "Second-stage macro",
  32978. height: math.unit(864, "feet")
  32979. },
  32980. ]
  32981. ))
  32982. characterMakers.push(() => makeCharacter(
  32983. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32984. {
  32985. normal: {
  32986. height: math.unit(4 + 6 / 12, "feet"),
  32987. name: "Normal",
  32988. image: {
  32989. source: "./media/characters/hydra/normal.svg",
  32990. extra: 2833 / 2634,
  32991. bottom: 68 / 2901
  32992. }
  32993. },
  32994. smol: {
  32995. height: math.unit(0.705, "inches"),
  32996. name: "Smol",
  32997. image: {
  32998. source: "./media/characters/hydra/smol.svg",
  32999. extra: 2715 / 2540,
  33000. bottom: 0 / 2715
  33001. }
  33002. },
  33003. },
  33004. [
  33005. {
  33006. name: "Normal",
  33007. height: math.unit(4 + 6 / 12, "feet"),
  33008. default: true
  33009. }
  33010. ]
  33011. ))
  33012. characterMakers.push(() => makeCharacter(
  33013. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  33014. {
  33015. front: {
  33016. height: math.unit(0.6, "cm"),
  33017. name: "Front",
  33018. image: {
  33019. source: "./media/characters/daz/front.svg",
  33020. extra: 1682 / 1164,
  33021. bottom: 42 / 1724
  33022. }
  33023. },
  33024. },
  33025. [
  33026. {
  33027. name: "Normal",
  33028. height: math.unit(0.6, "cm"),
  33029. default: true
  33030. },
  33031. ]
  33032. ))
  33033. characterMakers.push(() => makeCharacter(
  33034. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  33035. {
  33036. front: {
  33037. height: math.unit(6, "feet"),
  33038. weight: math.unit(235, "lb"),
  33039. name: "Front",
  33040. image: {
  33041. source: "./media/characters/theo-pangolin/front.svg",
  33042. extra: 1996 / 1969,
  33043. bottom: 115 / 2111
  33044. }
  33045. },
  33046. back: {
  33047. height: math.unit(6, "feet"),
  33048. weight: math.unit(235, "lb"),
  33049. name: "Back",
  33050. image: {
  33051. source: "./media/characters/theo-pangolin/back.svg",
  33052. extra: 1979 / 1979,
  33053. bottom: 40 / 2019
  33054. }
  33055. },
  33056. feral: {
  33057. height: math.unit(2, "feet"),
  33058. weight: math.unit(30, "lb"),
  33059. name: "Feral",
  33060. image: {
  33061. source: "./media/characters/theo-pangolin/feral.svg",
  33062. extra: 803 / 791,
  33063. bottom: 181 / 984
  33064. }
  33065. },
  33066. footFive: {
  33067. height: math.unit(1.43, "feet"),
  33068. name: "Foot (Five Toes)",
  33069. image: {
  33070. source: "./media/characters/theo-pangolin/foot-five.svg"
  33071. }
  33072. },
  33073. footFour: {
  33074. height: math.unit(1.43, "feet"),
  33075. name: "Foot (Four Toes)",
  33076. image: {
  33077. source: "./media/characters/theo-pangolin/foot-four.svg"
  33078. }
  33079. },
  33080. handFour: {
  33081. height: math.unit(0.81, "feet"),
  33082. name: "Hand (Four Fingers)",
  33083. image: {
  33084. source: "./media/characters/theo-pangolin/hand-four.svg"
  33085. }
  33086. },
  33087. handThree: {
  33088. height: math.unit(0.81, "feet"),
  33089. name: "Hand (Three Fingers)",
  33090. image: {
  33091. source: "./media/characters/theo-pangolin/hand-three.svg"
  33092. }
  33093. },
  33094. headFront: {
  33095. height: math.unit(1.37, "feet"),
  33096. name: "Head (Front)",
  33097. image: {
  33098. source: "./media/characters/theo-pangolin/head-front.svg"
  33099. }
  33100. },
  33101. headSide: {
  33102. height: math.unit(1.43, "feet"),
  33103. name: "Head (Side)",
  33104. image: {
  33105. source: "./media/characters/theo-pangolin/head-side.svg"
  33106. }
  33107. },
  33108. tongue: {
  33109. height: math.unit(2.29, "feet"),
  33110. name: "Tongue",
  33111. image: {
  33112. source: "./media/characters/theo-pangolin/tongue.svg"
  33113. }
  33114. },
  33115. },
  33116. [
  33117. {
  33118. name: "Normal",
  33119. height: math.unit(6, "feet")
  33120. },
  33121. {
  33122. name: "Macro",
  33123. height: math.unit(400, "feet"),
  33124. default: true
  33125. },
  33126. ]
  33127. ))
  33128. characterMakers.push(() => makeCharacter(
  33129. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  33130. {
  33131. front: {
  33132. height: math.unit(6, "inches"),
  33133. weight: math.unit(0.036, "kg"),
  33134. name: "Front",
  33135. image: {
  33136. source: "./media/characters/renée/front.svg",
  33137. extra: 900 / 886,
  33138. bottom: 8 / 908
  33139. }
  33140. },
  33141. },
  33142. [
  33143. {
  33144. name: "Nano",
  33145. height: math.unit(1, "nm")
  33146. },
  33147. {
  33148. name: "Micro",
  33149. height: math.unit(1, "mm")
  33150. },
  33151. {
  33152. name: "Normal",
  33153. height: math.unit(6, "inches")
  33154. },
  33155. {
  33156. name: "Macro",
  33157. height: math.unit(2000, "feet"),
  33158. default: true
  33159. },
  33160. {
  33161. name: "Megamacro",
  33162. height: math.unit(2, "km")
  33163. },
  33164. {
  33165. name: "Gigamacro",
  33166. height: math.unit(2000, "km")
  33167. },
  33168. {
  33169. name: "Teramacro",
  33170. height: math.unit(250000, "km")
  33171. },
  33172. ]
  33173. ))
  33174. characterMakers.push(() => makeCharacter(
  33175. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  33176. {
  33177. front: {
  33178. height: math.unit(4, "meters"),
  33179. weight: math.unit(150, "kg"),
  33180. name: "Front",
  33181. image: {
  33182. source: "./media/characters/caledvwlch/front.svg",
  33183. extra: 1757/1537,
  33184. bottom: 31/1788
  33185. }
  33186. },
  33187. side: {
  33188. height: math.unit(4, "meters"),
  33189. weight: math.unit(150, "kg"),
  33190. name: "Side",
  33191. image: {
  33192. source: "./media/characters/caledvwlch/side.svg",
  33193. extra: 1605 / 1536,
  33194. bottom: 31 / 1636
  33195. }
  33196. },
  33197. back: {
  33198. height: math.unit(4, "meters"),
  33199. weight: math.unit(150, "kg"),
  33200. name: "Back",
  33201. image: {
  33202. source: "./media/characters/caledvwlch/back.svg",
  33203. extra: 1635 / 1565,
  33204. bottom: 27 / 1662
  33205. }
  33206. },
  33207. },
  33208. [
  33209. {
  33210. name: "\"Incognito\"",
  33211. height: math.unit(4, "meters")
  33212. },
  33213. {
  33214. name: "Small rampage",
  33215. height: math.unit(600, "meters")
  33216. },
  33217. {
  33218. name: "Mega",
  33219. height: math.unit(30, "km")
  33220. },
  33221. {
  33222. name: "Home-size",
  33223. height: math.unit(50, "km"),
  33224. default: true
  33225. },
  33226. {
  33227. name: "Giga",
  33228. height: math.unit(300, "km")
  33229. },
  33230. {
  33231. name: "Lounging",
  33232. height: math.unit(11000, "km")
  33233. },
  33234. {
  33235. name: "Planet snacking",
  33236. height: math.unit(2000000, "km")
  33237. },
  33238. ]
  33239. ))
  33240. characterMakers.push(() => makeCharacter(
  33241. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  33242. {
  33243. front: {
  33244. height: math.unit(6, "feet"),
  33245. weight: math.unit(215, "lb"),
  33246. name: "Front",
  33247. image: {
  33248. source: "./media/characters/sapphire-svell/front.svg",
  33249. extra: 495 / 455,
  33250. bottom: 20 / 515
  33251. }
  33252. },
  33253. back: {
  33254. height: math.unit(6, "feet"),
  33255. weight: math.unit(216, "lb"),
  33256. name: "Back",
  33257. image: {
  33258. source: "./media/characters/sapphire-svell/back.svg",
  33259. extra: 497 / 477,
  33260. bottom: 7 / 504
  33261. }
  33262. },
  33263. maw: {
  33264. height: math.unit(1.57, "feet"),
  33265. name: "Maw",
  33266. image: {
  33267. source: "./media/characters/sapphire-svell/maw.svg"
  33268. }
  33269. },
  33270. foot: {
  33271. height: math.unit(1.07, "feet"),
  33272. name: "Foot",
  33273. image: {
  33274. source: "./media/characters/sapphire-svell/foot.svg"
  33275. }
  33276. },
  33277. toering: {
  33278. height: math.unit(1.7, "inch"),
  33279. name: "Toering",
  33280. image: {
  33281. source: "./media/characters/sapphire-svell/toering.svg"
  33282. }
  33283. },
  33284. },
  33285. [
  33286. {
  33287. name: "Normal",
  33288. height: math.unit(300, "feet"),
  33289. default: true
  33290. },
  33291. {
  33292. name: "Augmented",
  33293. height: math.unit(1250, "feet")
  33294. },
  33295. {
  33296. name: "Unleashed",
  33297. height: math.unit(3000, "feet")
  33298. },
  33299. ]
  33300. ))
  33301. characterMakers.push(() => makeCharacter(
  33302. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  33303. {
  33304. side: {
  33305. height: math.unit(2 + 3 / 12, "feet"),
  33306. weight: math.unit(110, "lb"),
  33307. name: "Side",
  33308. image: {
  33309. source: "./media/characters/glitch-flux/side.svg",
  33310. extra: 997 / 805,
  33311. bottom: 20 / 1017
  33312. }
  33313. },
  33314. },
  33315. [
  33316. {
  33317. name: "Normal",
  33318. height: math.unit(2 + 3 / 12, "feet"),
  33319. default: true
  33320. },
  33321. ]
  33322. ))
  33323. characterMakers.push(() => makeCharacter(
  33324. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  33325. {
  33326. front: {
  33327. height: math.unit(4, "meters"),
  33328. name: "Front",
  33329. image: {
  33330. source: "./media/characters/mid/front.svg",
  33331. extra: 507 / 476,
  33332. bottom: 17 / 524
  33333. }
  33334. },
  33335. back: {
  33336. height: math.unit(4, "meters"),
  33337. name: "Back",
  33338. image: {
  33339. source: "./media/characters/mid/back.svg",
  33340. extra: 519 / 487,
  33341. bottom: 7 / 526
  33342. }
  33343. },
  33344. stuck: {
  33345. height: math.unit(2.2, "meters"),
  33346. name: "Stuck",
  33347. image: {
  33348. source: "./media/characters/mid/stuck.svg",
  33349. extra: 1951 / 1869,
  33350. bottom: 88 / 2039
  33351. }
  33352. }
  33353. },
  33354. [
  33355. {
  33356. name: "Normal",
  33357. height: math.unit(4, "meters"),
  33358. default: true
  33359. },
  33360. {
  33361. name: "Big",
  33362. height: math.unit(10, "meters")
  33363. },
  33364. {
  33365. name: "Macro",
  33366. height: math.unit(800, "meters")
  33367. },
  33368. {
  33369. name: "Megamacro",
  33370. height: math.unit(100, "km")
  33371. },
  33372. {
  33373. name: "Overgrown",
  33374. height: math.unit(1, "parsec")
  33375. },
  33376. ]
  33377. ))
  33378. characterMakers.push(() => makeCharacter(
  33379. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  33380. {
  33381. front: {
  33382. height: math.unit(2.5, "meters"),
  33383. weight: math.unit(225, "kg"),
  33384. name: "Front",
  33385. image: {
  33386. source: "./media/characters/iris/front.svg",
  33387. extra: 3348 / 3251,
  33388. bottom: 205 / 3553
  33389. }
  33390. },
  33391. maw: {
  33392. height: math.unit(0.56, "meter"),
  33393. name: "Maw",
  33394. image: {
  33395. source: "./media/characters/iris/maw.svg"
  33396. }
  33397. },
  33398. },
  33399. [
  33400. {
  33401. name: "Mewter cat",
  33402. height: math.unit(1.2, "meters")
  33403. },
  33404. {
  33405. name: "Normal",
  33406. height: math.unit(2.5, "meters"),
  33407. default: true
  33408. },
  33409. {
  33410. name: "Minimacro",
  33411. height: math.unit(18, "feet")
  33412. },
  33413. {
  33414. name: "Macro",
  33415. height: math.unit(140, "feet")
  33416. },
  33417. {
  33418. name: "Macro+",
  33419. height: math.unit(180, "meters")
  33420. },
  33421. {
  33422. name: "Megamacro",
  33423. height: math.unit(2746, "meters")
  33424. },
  33425. ]
  33426. ))
  33427. characterMakers.push(() => makeCharacter(
  33428. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  33429. {
  33430. front: {
  33431. height: math.unit(6, "feet"),
  33432. weight: math.unit(135, "lb"),
  33433. name: "Front",
  33434. image: {
  33435. source: "./media/characters/axel/front.svg",
  33436. extra: 908 / 908,
  33437. bottom: 58 / 966
  33438. }
  33439. },
  33440. side: {
  33441. height: math.unit(6, "feet"),
  33442. weight: math.unit(135, "lb"),
  33443. name: "Side",
  33444. image: {
  33445. source: "./media/characters/axel/side.svg",
  33446. extra: 958 / 958,
  33447. bottom: 11 / 969
  33448. }
  33449. },
  33450. back: {
  33451. height: math.unit(6, "feet"),
  33452. weight: math.unit(135, "lb"),
  33453. name: "Back",
  33454. image: {
  33455. source: "./media/characters/axel/back.svg",
  33456. extra: 887 / 887,
  33457. bottom: 34 / 921
  33458. }
  33459. },
  33460. head: {
  33461. height: math.unit(1.07, "feet"),
  33462. name: "Head",
  33463. image: {
  33464. source: "./media/characters/axel/head.svg"
  33465. }
  33466. },
  33467. beak: {
  33468. height: math.unit(1.4, "feet"),
  33469. name: "Beak",
  33470. image: {
  33471. source: "./media/characters/axel/beak.svg"
  33472. }
  33473. },
  33474. beakSide: {
  33475. height: math.unit(1.4, "feet"),
  33476. name: "Beak Side",
  33477. image: {
  33478. source: "./media/characters/axel/beak-side.svg"
  33479. }
  33480. },
  33481. sheath: {
  33482. height: math.unit(0.5, "feet"),
  33483. name: "Sheath",
  33484. image: {
  33485. source: "./media/characters/axel/sheath.svg"
  33486. }
  33487. },
  33488. dick: {
  33489. height: math.unit(0.98, "feet"),
  33490. name: "Dick",
  33491. image: {
  33492. source: "./media/characters/axel/dick.svg"
  33493. }
  33494. },
  33495. },
  33496. [
  33497. {
  33498. name: "Macro",
  33499. height: math.unit(68, "meters"),
  33500. default: true
  33501. },
  33502. ]
  33503. ))
  33504. characterMakers.push(() => makeCharacter(
  33505. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  33506. {
  33507. front: {
  33508. height: math.unit(3.5, "meters"),
  33509. weight: math.unit(1200, "kg"),
  33510. name: "Front",
  33511. image: {
  33512. source: "./media/characters/joanna/front.svg",
  33513. extra: 1596 / 1488,
  33514. bottom: 29 / 1625
  33515. }
  33516. },
  33517. back: {
  33518. height: math.unit(3.5, "meters"),
  33519. weight: math.unit(1200, "kg"),
  33520. name: "Back",
  33521. image: {
  33522. source: "./media/characters/joanna/back.svg",
  33523. extra: 1594 / 1495,
  33524. bottom: 26 / 1620
  33525. }
  33526. },
  33527. frontShorts: {
  33528. height: math.unit(3.5, "meters"),
  33529. weight: math.unit(1200, "kg"),
  33530. name: "Front (Shorts)",
  33531. image: {
  33532. source: "./media/characters/joanna/front-shorts.svg",
  33533. extra: 1596 / 1488,
  33534. bottom: 29 / 1625
  33535. }
  33536. },
  33537. frontBiker: {
  33538. height: math.unit(3.5, "meters"),
  33539. weight: math.unit(1200, "kg"),
  33540. name: "Front (Biker)",
  33541. image: {
  33542. source: "./media/characters/joanna/front-biker.svg",
  33543. extra: 1596 / 1488,
  33544. bottom: 29 / 1625
  33545. }
  33546. },
  33547. backBiker: {
  33548. height: math.unit(3.5, "meters"),
  33549. weight: math.unit(1200, "kg"),
  33550. name: "Back (Biker)",
  33551. image: {
  33552. source: "./media/characters/joanna/back-biker.svg",
  33553. extra: 1594 / 1495,
  33554. bottom: 88 / 1682
  33555. }
  33556. },
  33557. bikeLeft: {
  33558. height: math.unit(2.4, "meters"),
  33559. weight: math.unit(1600, "kg"),
  33560. name: "Bike (Left)",
  33561. image: {
  33562. source: "./media/characters/joanna/bike-left.svg",
  33563. extra: 720 / 720,
  33564. bottom: 8 / 728
  33565. }
  33566. },
  33567. bikeRight: {
  33568. height: math.unit(2.4, "meters"),
  33569. weight: math.unit(1600, "kg"),
  33570. name: "Bike (Right)",
  33571. image: {
  33572. source: "./media/characters/joanna/bike-right.svg",
  33573. extra: 720 / 720,
  33574. bottom: 8 / 728
  33575. }
  33576. },
  33577. },
  33578. [
  33579. {
  33580. name: "Incognito",
  33581. height: math.unit(3.5, "meters")
  33582. },
  33583. {
  33584. name: "Casual Big",
  33585. height: math.unit(200, "meters")
  33586. },
  33587. {
  33588. name: "Macro",
  33589. height: math.unit(600, "meters")
  33590. },
  33591. {
  33592. name: "Original",
  33593. height: math.unit(20, "km"),
  33594. default: true
  33595. },
  33596. {
  33597. name: "Giga",
  33598. height: math.unit(400, "km")
  33599. },
  33600. {
  33601. name: "Lounging",
  33602. height: math.unit(1500, "km")
  33603. },
  33604. {
  33605. name: "Planetary",
  33606. height: math.unit(200000, "km")
  33607. },
  33608. ]
  33609. ))
  33610. characterMakers.push(() => makeCharacter(
  33611. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  33612. {
  33613. front: {
  33614. height: math.unit(6, "feet"),
  33615. weight: math.unit(150, "lb"),
  33616. name: "Front",
  33617. image: {
  33618. source: "./media/characters/hugo-sigil/front.svg",
  33619. extra: 522 / 500,
  33620. bottom: 2 / 524
  33621. }
  33622. },
  33623. back: {
  33624. height: math.unit(6, "feet"),
  33625. weight: math.unit(150, "lb"),
  33626. name: "Back",
  33627. image: {
  33628. source: "./media/characters/hugo-sigil/back.svg",
  33629. extra: 519 / 495,
  33630. bottom: 5 / 524
  33631. }
  33632. },
  33633. maw: {
  33634. height: math.unit(1.4, "feet"),
  33635. weight: math.unit(150, "lb"),
  33636. name: "Maw",
  33637. image: {
  33638. source: "./media/characters/hugo-sigil/maw.svg"
  33639. }
  33640. },
  33641. feet: {
  33642. height: math.unit(1.56, "feet"),
  33643. weight: math.unit(150, "lb"),
  33644. name: "Feet",
  33645. image: {
  33646. source: "./media/characters/hugo-sigil/feet.svg",
  33647. extra: 177 / 177,
  33648. bottom: 12 / 189
  33649. }
  33650. },
  33651. },
  33652. [
  33653. {
  33654. name: "Normal",
  33655. height: math.unit(6, "feet")
  33656. },
  33657. {
  33658. name: "Macro",
  33659. height: math.unit(200, "feet"),
  33660. default: true
  33661. },
  33662. ]
  33663. ))
  33664. characterMakers.push(() => makeCharacter(
  33665. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  33666. {
  33667. front: {
  33668. height: math.unit(6, "feet"),
  33669. weight: math.unit(150, "lb"),
  33670. name: "Front",
  33671. image: {
  33672. source: "./media/characters/peri/front.svg",
  33673. extra: 2354 / 2233,
  33674. bottom: 49 / 2403
  33675. }
  33676. },
  33677. },
  33678. [
  33679. {
  33680. name: "Really Small",
  33681. height: math.unit(1, "nm")
  33682. },
  33683. {
  33684. name: "Micro",
  33685. height: math.unit(4, "inches")
  33686. },
  33687. {
  33688. name: "Normal",
  33689. height: math.unit(7, "inches"),
  33690. default: true
  33691. },
  33692. {
  33693. name: "Macro",
  33694. height: math.unit(400, "feet")
  33695. },
  33696. {
  33697. name: "Megamacro",
  33698. height: math.unit(100, "miles")
  33699. },
  33700. ]
  33701. ))
  33702. characterMakers.push(() => makeCharacter(
  33703. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  33704. {
  33705. frontSlim: {
  33706. height: math.unit(7, "feet"),
  33707. name: "Front (Slim)",
  33708. image: {
  33709. source: "./media/characters/issilora/front-slim.svg",
  33710. extra: 529 / 449,
  33711. bottom: 53 / 582
  33712. }
  33713. },
  33714. sideSlim: {
  33715. height: math.unit(7, "feet"),
  33716. name: "Side (Slim)",
  33717. image: {
  33718. source: "./media/characters/issilora/side-slim.svg",
  33719. extra: 570 / 480,
  33720. bottom: 30 / 600
  33721. }
  33722. },
  33723. backSlim: {
  33724. height: math.unit(7, "feet"),
  33725. name: "Back (Slim)",
  33726. image: {
  33727. source: "./media/characters/issilora/back-slim.svg",
  33728. extra: 537 / 455,
  33729. bottom: 46 / 583
  33730. }
  33731. },
  33732. frontBuff: {
  33733. height: math.unit(7, "feet"),
  33734. name: "Front (Buff)",
  33735. image: {
  33736. source: "./media/characters/issilora/front-buff.svg",
  33737. extra: 2310 / 2035,
  33738. bottom: 335 / 2645
  33739. }
  33740. },
  33741. head: {
  33742. height: math.unit(1.94, "feet"),
  33743. name: "Head",
  33744. image: {
  33745. source: "./media/characters/issilora/head.svg"
  33746. }
  33747. },
  33748. },
  33749. [
  33750. {
  33751. name: "Minimum",
  33752. height: math.unit(7, "feet")
  33753. },
  33754. {
  33755. name: "Comfortable",
  33756. height: math.unit(17, "feet")
  33757. },
  33758. {
  33759. name: "Fun Size",
  33760. height: math.unit(47, "feet")
  33761. },
  33762. {
  33763. name: "Natural Macro",
  33764. height: math.unit(137, "feet"),
  33765. default: true
  33766. },
  33767. {
  33768. name: "Maximum Kaiju",
  33769. height: math.unit(397, "feet")
  33770. },
  33771. ]
  33772. ))
  33773. characterMakers.push(() => makeCharacter(
  33774. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33775. {
  33776. front: {
  33777. height: math.unit(50 + 9/12, "feet"),
  33778. weight: math.unit(32.8, "tons"),
  33779. name: "Front",
  33780. image: {
  33781. source: "./media/characters/irb'iiritaahn/front.svg",
  33782. extra: 1878/1826,
  33783. bottom: 326/2204
  33784. }
  33785. },
  33786. back: {
  33787. height: math.unit(50 + 9/12, "feet"),
  33788. weight: math.unit(32.8, "tons"),
  33789. name: "Back",
  33790. image: {
  33791. source: "./media/characters/irb'iiritaahn/back.svg",
  33792. extra: 2052/2018,
  33793. bottom: 152/2204
  33794. }
  33795. },
  33796. head: {
  33797. height: math.unit(12.86, "feet"),
  33798. name: "Head",
  33799. image: {
  33800. source: "./media/characters/irb'iiritaahn/head.svg"
  33801. }
  33802. },
  33803. maw: {
  33804. height: math.unit(9.66, "feet"),
  33805. name: "Maw",
  33806. image: {
  33807. source: "./media/characters/irb'iiritaahn/maw.svg"
  33808. }
  33809. },
  33810. frontDick: {
  33811. height: math.unit(8.78461, "feet"),
  33812. name: "Front Dick",
  33813. image: {
  33814. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33815. }
  33816. },
  33817. rearDick: {
  33818. height: math.unit(8.78461, "feet"),
  33819. name: "Rear Dick",
  33820. image: {
  33821. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33822. }
  33823. },
  33824. rearDickUnfolded: {
  33825. height: math.unit(8.78, "feet"),
  33826. name: "Rear Dick (Unfolded)",
  33827. image: {
  33828. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33829. }
  33830. },
  33831. wings: {
  33832. height: math.unit(43, "feet"),
  33833. name: "Wings",
  33834. image: {
  33835. source: "./media/characters/irb'iiritaahn/wings.svg"
  33836. }
  33837. },
  33838. },
  33839. [
  33840. {
  33841. name: "Macro",
  33842. height: math.unit(50 + 9/12, "feet"),
  33843. default: true
  33844. },
  33845. ]
  33846. ))
  33847. characterMakers.push(() => makeCharacter(
  33848. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33849. {
  33850. front: {
  33851. height: math.unit(205, "cm"),
  33852. weight: math.unit(102, "kg"),
  33853. name: "Front",
  33854. image: {
  33855. source: "./media/characters/irbisgreif/front.svg",
  33856. extra: 785/706,
  33857. bottom: 13/798
  33858. }
  33859. },
  33860. back: {
  33861. height: math.unit(205, "cm"),
  33862. weight: math.unit(102, "kg"),
  33863. name: "Back",
  33864. image: {
  33865. source: "./media/characters/irbisgreif/back.svg",
  33866. extra: 713/701,
  33867. bottom: 26/739
  33868. }
  33869. },
  33870. frontDressed: {
  33871. height: math.unit(216, "cm"),
  33872. weight: math.unit(102, "kg"),
  33873. name: "Front-dressed",
  33874. image: {
  33875. source: "./media/characters/irbisgreif/front-dressed.svg",
  33876. extra: 902/776,
  33877. bottom: 14/916
  33878. }
  33879. },
  33880. sideDressed: {
  33881. height: math.unit(195, "cm"),
  33882. weight: math.unit(102, "kg"),
  33883. name: "Side-dressed",
  33884. image: {
  33885. source: "./media/characters/irbisgreif/side-dressed.svg",
  33886. extra: 788/688,
  33887. bottom: 21/809
  33888. }
  33889. },
  33890. backDressed: {
  33891. height: math.unit(216, "cm"),
  33892. weight: math.unit(102, "kg"),
  33893. name: "Back-dressed",
  33894. image: {
  33895. source: "./media/characters/irbisgreif/back-dressed.svg",
  33896. extra: 901/783,
  33897. bottom: 10/911
  33898. }
  33899. },
  33900. dick: {
  33901. height: math.unit(0.49, "feet"),
  33902. name: "Dick",
  33903. image: {
  33904. source: "./media/characters/irbisgreif/dick.svg"
  33905. }
  33906. },
  33907. wingTop: {
  33908. height: math.unit(1.93 , "feet"),
  33909. name: "Wing-top",
  33910. image: {
  33911. source: "./media/characters/irbisgreif/wing-top.svg"
  33912. }
  33913. },
  33914. wingBottom: {
  33915. height: math.unit(1.93 , "feet"),
  33916. name: "Wing-bottom",
  33917. image: {
  33918. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33919. }
  33920. },
  33921. },
  33922. [
  33923. {
  33924. name: "Normal",
  33925. height: math.unit(216, "cm"),
  33926. default: true
  33927. },
  33928. ]
  33929. ))
  33930. characterMakers.push(() => makeCharacter(
  33931. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33932. {
  33933. front: {
  33934. height: math.unit(6, "feet"),
  33935. weight: math.unit(150, "lb"),
  33936. name: "Front",
  33937. image: {
  33938. source: "./media/characters/pride/front.svg",
  33939. extra: 1299/1230,
  33940. bottom: 18/1317
  33941. }
  33942. },
  33943. },
  33944. [
  33945. {
  33946. name: "Normal",
  33947. height: math.unit(7, "feet")
  33948. },
  33949. {
  33950. name: "Mini-macro",
  33951. height: math.unit(11, "feet")
  33952. },
  33953. {
  33954. name: "Macro",
  33955. height: math.unit(15, "meters"),
  33956. default: true
  33957. },
  33958. {
  33959. name: "Macro+",
  33960. height: math.unit(40, "meters")
  33961. },
  33962. ]
  33963. ))
  33964. characterMakers.push(() => makeCharacter(
  33965. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33966. {
  33967. front: {
  33968. height: math.unit(4 + 2 / 12, "feet"),
  33969. weight: math.unit(95, "lb"),
  33970. name: "Front",
  33971. image: {
  33972. source: "./media/characters/vaelophis-nyx/front.svg",
  33973. extra: 2532/2330,
  33974. bottom: 0/2532
  33975. }
  33976. },
  33977. back: {
  33978. height: math.unit(4 + 2 / 12, "feet"),
  33979. weight: math.unit(95, "lb"),
  33980. name: "Back",
  33981. image: {
  33982. source: "./media/characters/vaelophis-nyx/back.svg",
  33983. extra: 2484/2361,
  33984. bottom: 0/2484
  33985. }
  33986. },
  33987. feralSide: {
  33988. height: math.unit(2 + 1/12, "feet"),
  33989. weight: math.unit(20, "lb"),
  33990. name: "Feral (Side)",
  33991. image: {
  33992. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33993. extra: 1721/1581,
  33994. bottom: 70/1791
  33995. }
  33996. },
  33997. feralLazing: {
  33998. height: math.unit(1.08, "feet"),
  33999. weight: math.unit(20, "lb"),
  34000. name: "Feral (Lazing)",
  34001. image: {
  34002. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  34003. extra: 822/822,
  34004. bottom: 248/1070
  34005. }
  34006. },
  34007. ear: {
  34008. height: math.unit(0.416, "feet"),
  34009. name: "Ear",
  34010. image: {
  34011. source: "./media/characters/vaelophis-nyx/ear.svg"
  34012. }
  34013. },
  34014. eye: {
  34015. height: math.unit(0.0748, "feet"),
  34016. name: "Eye",
  34017. image: {
  34018. source: "./media/characters/vaelophis-nyx/eye.svg"
  34019. }
  34020. },
  34021. mouth: {
  34022. height: math.unit(0.378, "feet"),
  34023. name: "Mouth",
  34024. image: {
  34025. source: "./media/characters/vaelophis-nyx/mouth.svg"
  34026. }
  34027. },
  34028. spade: {
  34029. height: math.unit(0.55, "feet"),
  34030. name: "Spade",
  34031. image: {
  34032. source: "./media/characters/vaelophis-nyx/spade.svg"
  34033. }
  34034. },
  34035. },
  34036. [
  34037. {
  34038. name: "Normal",
  34039. height: math.unit(4 + 2/12, "feet"),
  34040. default: true
  34041. },
  34042. ]
  34043. ))
  34044. characterMakers.push(() => makeCharacter(
  34045. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  34046. {
  34047. front: {
  34048. height: math.unit(7, "feet"),
  34049. weight: math.unit(231, "lb"),
  34050. name: "Front",
  34051. image: {
  34052. source: "./media/characters/flux/front.svg",
  34053. extra: 919/871,
  34054. bottom: 0/919
  34055. }
  34056. },
  34057. back: {
  34058. height: math.unit(7, "feet"),
  34059. weight: math.unit(231, "lb"),
  34060. name: "Back",
  34061. image: {
  34062. source: "./media/characters/flux/back.svg",
  34063. extra: 1040/992,
  34064. bottom: 0/1040
  34065. }
  34066. },
  34067. frontDressed: {
  34068. height: math.unit(7, "feet"),
  34069. weight: math.unit(231, "lb"),
  34070. name: "Front (Dressed)",
  34071. image: {
  34072. source: "./media/characters/flux/front-dressed.svg",
  34073. extra: 919/871,
  34074. bottom: 0/919
  34075. }
  34076. },
  34077. feralSide: {
  34078. height: math.unit(5, "feet"),
  34079. weight: math.unit(150, "lb"),
  34080. name: "Feral (Side)",
  34081. image: {
  34082. source: "./media/characters/flux/feral-side.svg",
  34083. extra: 598/528,
  34084. bottom: 28/626
  34085. }
  34086. },
  34087. head: {
  34088. height: math.unit(1.585, "feet"),
  34089. name: "Head",
  34090. image: {
  34091. source: "./media/characters/flux/head.svg"
  34092. }
  34093. },
  34094. headSide: {
  34095. height: math.unit(1.74, "feet"),
  34096. name: "Head (Side)",
  34097. image: {
  34098. source: "./media/characters/flux/head-side.svg"
  34099. }
  34100. },
  34101. headSideFire: {
  34102. height: math.unit(1.76, "feet"),
  34103. name: "Head (Side, Fire)",
  34104. image: {
  34105. source: "./media/characters/flux/head-side-fire.svg"
  34106. }
  34107. },
  34108. },
  34109. [
  34110. {
  34111. name: "Normal",
  34112. height: math.unit(7, "feet"),
  34113. default: true
  34114. },
  34115. ]
  34116. ))
  34117. characterMakers.push(() => makeCharacter(
  34118. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  34119. {
  34120. front: {
  34121. height: math.unit(9, "feet"),
  34122. weight: math.unit(1012, "lb"),
  34123. name: "Front",
  34124. image: {
  34125. source: "./media/characters/ulfra-lupae/front.svg",
  34126. extra: 1083/1011,
  34127. bottom: 67/1150
  34128. }
  34129. },
  34130. },
  34131. [
  34132. {
  34133. name: "Micro",
  34134. height: math.unit(6, "inches")
  34135. },
  34136. {
  34137. name: "Socializing",
  34138. height: math.unit(6 + 5/12, "feet")
  34139. },
  34140. {
  34141. name: "Normal",
  34142. height: math.unit(9, "feet"),
  34143. default: true
  34144. },
  34145. {
  34146. name: "Macro",
  34147. height: math.unit(150, "feet")
  34148. },
  34149. ]
  34150. ))
  34151. characterMakers.push(() => makeCharacter(
  34152. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  34153. {
  34154. front: {
  34155. height: math.unit(5 + 2/12, "feet"),
  34156. weight: math.unit(120, "lb"),
  34157. name: "Front",
  34158. image: {
  34159. source: "./media/characters/timber/front.svg",
  34160. extra: 2814/2705,
  34161. bottom: 181/2995
  34162. }
  34163. },
  34164. },
  34165. [
  34166. {
  34167. name: "Normal",
  34168. height: math.unit(5 + 2/12, "feet"),
  34169. default: true
  34170. },
  34171. ]
  34172. ))
  34173. characterMakers.push(() => makeCharacter(
  34174. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  34175. {
  34176. front: {
  34177. height: math.unit(9, "feet"),
  34178. name: "Front",
  34179. image: {
  34180. source: "./media/characters/nicki/front.svg",
  34181. extra: 1240/990,
  34182. bottom: 45/1285
  34183. },
  34184. form: "anthro",
  34185. default: true
  34186. },
  34187. side: {
  34188. height: math.unit(9, "feet"),
  34189. name: "Side",
  34190. image: {
  34191. source: "./media/characters/nicki/side.svg",
  34192. extra: 1047/973,
  34193. bottom: 61/1108
  34194. },
  34195. form: "anthro"
  34196. },
  34197. back: {
  34198. height: math.unit(9, "feet"),
  34199. name: "Back",
  34200. image: {
  34201. source: "./media/characters/nicki/back.svg",
  34202. extra: 1006/965,
  34203. bottom: 39/1045
  34204. },
  34205. form: "anthro"
  34206. },
  34207. taur: {
  34208. height: math.unit(15, "feet"),
  34209. name: "Taur",
  34210. image: {
  34211. source: "./media/characters/nicki/taur.svg",
  34212. extra: 1592/1347,
  34213. bottom: 0/1592
  34214. },
  34215. form: "taur",
  34216. default: true
  34217. },
  34218. },
  34219. [
  34220. {
  34221. name: "Normal",
  34222. height: math.unit(9, "feet"),
  34223. form: "anthro",
  34224. default: true
  34225. },
  34226. {
  34227. name: "Normal",
  34228. height: math.unit(15, "feet"),
  34229. form: "taur",
  34230. default: true
  34231. }
  34232. ],
  34233. {
  34234. "anthro": {
  34235. name: "Anthro",
  34236. default: true
  34237. },
  34238. "taur": {
  34239. name: "Taur"
  34240. }
  34241. }
  34242. ))
  34243. characterMakers.push(() => makeCharacter(
  34244. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  34245. {
  34246. front: {
  34247. height: math.unit(7 + 10/12, "feet"),
  34248. weight: math.unit(3.5, "tons"),
  34249. name: "Front",
  34250. image: {
  34251. source: "./media/characters/lee/front.svg",
  34252. extra: 1773/1615,
  34253. bottom: 86/1859
  34254. }
  34255. },
  34256. hand: {
  34257. height: math.unit(1.78, "feet"),
  34258. name: "Hand",
  34259. image: {
  34260. source: "./media/characters/lee/hand.svg"
  34261. }
  34262. },
  34263. maw: {
  34264. height: math.unit(1.18, "feet"),
  34265. name: "Maw",
  34266. image: {
  34267. source: "./media/characters/lee/maw.svg"
  34268. }
  34269. },
  34270. },
  34271. [
  34272. {
  34273. name: "Normal",
  34274. height: math.unit(7 + 10/12, "feet"),
  34275. default: true
  34276. },
  34277. ]
  34278. ))
  34279. characterMakers.push(() => makeCharacter(
  34280. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  34281. {
  34282. front: {
  34283. height: math.unit(9, "feet"),
  34284. name: "Front",
  34285. image: {
  34286. source: "./media/characters/guti/front.svg",
  34287. extra: 4551/4355,
  34288. bottom: 123/4674
  34289. }
  34290. },
  34291. tongue: {
  34292. height: math.unit(1, "feet"),
  34293. name: "Tongue",
  34294. image: {
  34295. source: "./media/characters/guti/tongue.svg"
  34296. }
  34297. },
  34298. paw: {
  34299. height: math.unit(1.18, "feet"),
  34300. name: "Paw",
  34301. image: {
  34302. source: "./media/characters/guti/paw.svg"
  34303. }
  34304. },
  34305. },
  34306. [
  34307. {
  34308. name: "Normal",
  34309. height: math.unit(9, "feet"),
  34310. default: true
  34311. },
  34312. ]
  34313. ))
  34314. characterMakers.push(() => makeCharacter(
  34315. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  34316. {
  34317. side: {
  34318. height: math.unit(5, "meters"),
  34319. name: "Side",
  34320. image: {
  34321. source: "./media/characters/vesper/side.svg",
  34322. extra: 1605/1518,
  34323. bottom: 0/1605
  34324. }
  34325. },
  34326. },
  34327. [
  34328. {
  34329. name: "Small",
  34330. height: math.unit(5, "meters")
  34331. },
  34332. {
  34333. name: "Sage",
  34334. height: math.unit(100, "meters"),
  34335. default: true
  34336. },
  34337. {
  34338. name: "Fun Size",
  34339. height: math.unit(600, "meters")
  34340. },
  34341. {
  34342. name: "Goddess",
  34343. height: math.unit(20000, "km")
  34344. },
  34345. {
  34346. name: "Maximum",
  34347. height: math.unit(5, "galaxies")
  34348. },
  34349. ]
  34350. ))
  34351. characterMakers.push(() => makeCharacter(
  34352. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  34353. {
  34354. front: {
  34355. height: math.unit(6 + 3/12, "feet"),
  34356. weight: math.unit(190, "lb"),
  34357. name: "Front",
  34358. image: {
  34359. source: "./media/characters/gawain/front.svg",
  34360. extra: 2222/2139,
  34361. bottom: 90/2312
  34362. }
  34363. },
  34364. back: {
  34365. height: math.unit(6 + 3/12, "feet"),
  34366. weight: math.unit(190, "lb"),
  34367. name: "Back",
  34368. image: {
  34369. source: "./media/characters/gawain/back.svg",
  34370. extra: 2199/2111,
  34371. bottom: 73/2272
  34372. }
  34373. },
  34374. },
  34375. [
  34376. {
  34377. name: "Normal",
  34378. height: math.unit(6 + 3/12, "feet"),
  34379. default: true
  34380. },
  34381. ]
  34382. ))
  34383. characterMakers.push(() => makeCharacter(
  34384. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  34385. {
  34386. side: {
  34387. height: math.unit(3.5, "meters"),
  34388. weight: math.unit(16000, "lb"),
  34389. name: "Side",
  34390. image: {
  34391. source: "./media/characters/dascalti/side.svg",
  34392. extra: 392/273,
  34393. bottom: 47/439
  34394. }
  34395. },
  34396. breath: {
  34397. height: math.unit(7.4, "feet"),
  34398. name: "Breath",
  34399. image: {
  34400. source: "./media/characters/dascalti/breath.svg"
  34401. }
  34402. },
  34403. fed: {
  34404. height: math.unit(3.6, "meters"),
  34405. weight: math.unit(16000, "lb"),
  34406. name: "Fed",
  34407. image: {
  34408. source: "./media/characters/dascalti/fed.svg",
  34409. extra: 1419/820,
  34410. bottom: 95/1514
  34411. }
  34412. },
  34413. },
  34414. [
  34415. {
  34416. name: "Normal",
  34417. height: math.unit(3.5, "meters"),
  34418. default: true
  34419. },
  34420. ]
  34421. ))
  34422. characterMakers.push(() => makeCharacter(
  34423. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  34424. {
  34425. front: {
  34426. height: math.unit(3 + 5/12, "feet"),
  34427. name: "Front",
  34428. image: {
  34429. source: "./media/characters/mauve/front.svg",
  34430. extra: 1126/1033,
  34431. bottom: 65/1191
  34432. }
  34433. },
  34434. side: {
  34435. height: math.unit(3 + 5/12, "feet"),
  34436. name: "Side",
  34437. image: {
  34438. source: "./media/characters/mauve/side.svg",
  34439. extra: 1089/1001,
  34440. bottom: 29/1118
  34441. }
  34442. },
  34443. back: {
  34444. height: math.unit(3 + 5/12, "feet"),
  34445. name: "Back",
  34446. image: {
  34447. source: "./media/characters/mauve/back.svg",
  34448. extra: 1173/1053,
  34449. bottom: 109/1282
  34450. }
  34451. },
  34452. },
  34453. [
  34454. {
  34455. name: "Normal",
  34456. height: math.unit(3 + 5/12, "feet"),
  34457. default: true
  34458. },
  34459. ]
  34460. ))
  34461. characterMakers.push(() => makeCharacter(
  34462. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  34463. {
  34464. front: {
  34465. height: math.unit(6 + 3/12, "feet"),
  34466. weight: math.unit(430, "lb"),
  34467. name: "Front",
  34468. image: {
  34469. source: "./media/characters/carlos/front.svg",
  34470. extra: 1964/1913,
  34471. bottom: 70/2034
  34472. }
  34473. },
  34474. },
  34475. [
  34476. {
  34477. name: "Normal",
  34478. height: math.unit(6 + 3/12, "feet"),
  34479. default: true
  34480. },
  34481. ]
  34482. ))
  34483. characterMakers.push(() => makeCharacter(
  34484. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  34485. {
  34486. back: {
  34487. height: math.unit(5 + 10/12, "feet"),
  34488. weight: math.unit(200, "lb"),
  34489. name: "Back",
  34490. image: {
  34491. source: "./media/characters/jax/back.svg",
  34492. extra: 764/739,
  34493. bottom: 25/789
  34494. }
  34495. },
  34496. },
  34497. [
  34498. {
  34499. name: "Normal",
  34500. height: math.unit(5 + 10/12, "feet"),
  34501. default: true
  34502. },
  34503. ]
  34504. ))
  34505. characterMakers.push(() => makeCharacter(
  34506. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  34507. {
  34508. front: {
  34509. height: math.unit(8, "feet"),
  34510. weight: math.unit(250, "lb"),
  34511. name: "Front",
  34512. image: {
  34513. source: "./media/characters/eikthynir/front.svg",
  34514. extra: 1332/1166,
  34515. bottom: 82/1414
  34516. }
  34517. },
  34518. back: {
  34519. height: math.unit(8, "feet"),
  34520. weight: math.unit(250, "lb"),
  34521. name: "Back",
  34522. image: {
  34523. source: "./media/characters/eikthynir/back.svg",
  34524. extra: 1342/1190,
  34525. bottom: 19/1361
  34526. }
  34527. },
  34528. dick: {
  34529. height: math.unit(2.35, "feet"),
  34530. name: "Dick",
  34531. image: {
  34532. source: "./media/characters/eikthynir/dick.svg"
  34533. }
  34534. },
  34535. },
  34536. [
  34537. {
  34538. name: "Normal",
  34539. height: math.unit(8, "feet"),
  34540. default: true
  34541. },
  34542. ]
  34543. ))
  34544. characterMakers.push(() => makeCharacter(
  34545. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  34546. {
  34547. front: {
  34548. height: math.unit(99, "meters"),
  34549. weight: math.unit(13000, "tons"),
  34550. name: "Front",
  34551. image: {
  34552. source: "./media/characters/zlmos/front.svg",
  34553. extra: 2202/1992,
  34554. bottom: 315/2517
  34555. }
  34556. },
  34557. },
  34558. [
  34559. {
  34560. name: "Macro",
  34561. height: math.unit(99, "meters"),
  34562. default: true
  34563. },
  34564. ]
  34565. ))
  34566. characterMakers.push(() => makeCharacter(
  34567. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  34568. {
  34569. front: {
  34570. height: math.unit(6 + 5/12, "feet"),
  34571. name: "Front",
  34572. image: {
  34573. source: "./media/characters/purri/front.svg",
  34574. extra: 1698/1610,
  34575. bottom: 32/1730
  34576. }
  34577. },
  34578. frontAlt: {
  34579. height: math.unit(6 + 5/12, "feet"),
  34580. name: "Front (Alt)",
  34581. image: {
  34582. source: "./media/characters/purri/front-alt.svg",
  34583. extra: 450/420,
  34584. bottom: 26/476
  34585. }
  34586. },
  34587. boots: {
  34588. height: math.unit(5.5, "feet"),
  34589. name: "Boots",
  34590. image: {
  34591. source: "./media/characters/purri/boots.svg",
  34592. extra: 905/853,
  34593. bottom: 18/923
  34594. },
  34595. extraAttributes: {
  34596. "shoeSize": {
  34597. name: "Shoe Size",
  34598. power: 1,
  34599. type: "length",
  34600. base: math.unit(12, "ShoeSizeMensUS")
  34601. },
  34602. "platformHeight": {
  34603. name: "Platform Height",
  34604. power: 1,
  34605. type: "length",
  34606. base: math.unit(2, "inches")
  34607. },
  34608. }
  34609. },
  34610. lying: {
  34611. height: math.unit(2, "feet"),
  34612. name: "Lying",
  34613. image: {
  34614. source: "./media/characters/purri/lying.svg",
  34615. extra: 940/843,
  34616. bottom: 146/1086
  34617. }
  34618. },
  34619. devious: {
  34620. height: math.unit(1.77, "feet"),
  34621. name: "Devious",
  34622. image: {
  34623. source: "./media/characters/purri/devious.svg",
  34624. extra: 1440/1155,
  34625. bottom: 147/1587
  34626. }
  34627. },
  34628. bean: {
  34629. height: math.unit(1.94, "feet"),
  34630. name: "Bean",
  34631. image: {
  34632. source: "./media/characters/purri/bean.svg"
  34633. }
  34634. },
  34635. },
  34636. [
  34637. {
  34638. name: "Micro",
  34639. height: math.unit(1, "mm")
  34640. },
  34641. {
  34642. name: "Normal",
  34643. height: math.unit(6 + 5/12, "feet"),
  34644. default: true
  34645. },
  34646. {
  34647. name: "Macro :3c",
  34648. height: math.unit(2, "miles")
  34649. },
  34650. ]
  34651. ))
  34652. characterMakers.push(() => makeCharacter(
  34653. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  34654. {
  34655. front: {
  34656. height: math.unit(6 + 2/12, "feet"),
  34657. weight: math.unit(250, "lb"),
  34658. name: "Front",
  34659. image: {
  34660. source: "./media/characters/moonlight/front.svg",
  34661. extra: 1044/908,
  34662. bottom: 56/1100
  34663. }
  34664. },
  34665. feral: {
  34666. height: math.unit(3 + 1/12, "feet"),
  34667. weight: math.unit(50, "kg"),
  34668. name: "Feral",
  34669. image: {
  34670. source: "./media/characters/moonlight/feral.svg",
  34671. extra: 3705/2791,
  34672. bottom: 145/3850
  34673. }
  34674. },
  34675. paw: {
  34676. height: math.unit(1, "feet"),
  34677. name: "Paw",
  34678. image: {
  34679. source: "./media/characters/moonlight/paw.svg"
  34680. }
  34681. },
  34682. paws: {
  34683. height: math.unit(0.98, "feet"),
  34684. name: "Paws",
  34685. image: {
  34686. source: "./media/characters/moonlight/paws.svg",
  34687. extra: 939/939,
  34688. bottom: 50/989
  34689. }
  34690. },
  34691. mouth: {
  34692. height: math.unit(0.48, "feet"),
  34693. name: "Mouth",
  34694. image: {
  34695. source: "./media/characters/moonlight/mouth.svg"
  34696. }
  34697. },
  34698. dick: {
  34699. height: math.unit(1.46, "feet"),
  34700. name: "Dick",
  34701. image: {
  34702. source: "./media/characters/moonlight/dick.svg"
  34703. }
  34704. },
  34705. },
  34706. [
  34707. {
  34708. name: "Normal",
  34709. height: math.unit(6 + 2/12, "feet"),
  34710. default: true
  34711. },
  34712. {
  34713. name: "Macro",
  34714. height: math.unit(300, "feet")
  34715. },
  34716. {
  34717. name: "Macro+",
  34718. height: math.unit(1, "mile")
  34719. },
  34720. {
  34721. name: "Mt. Moon",
  34722. height: math.unit(5, "miles")
  34723. },
  34724. {
  34725. name: "Megamacro",
  34726. height: math.unit(15, "miles")
  34727. },
  34728. ]
  34729. ))
  34730. characterMakers.push(() => makeCharacter(
  34731. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  34732. {
  34733. back: {
  34734. height: math.unit(6, "feet"),
  34735. weight: math.unit(150, "lb"),
  34736. name: "Back",
  34737. image: {
  34738. source: "./media/characters/sylen/back.svg",
  34739. extra: 1335/1273,
  34740. bottom: 107/1442
  34741. }
  34742. },
  34743. },
  34744. [
  34745. {
  34746. name: "Normal",
  34747. height: math.unit(5 + 5/12, "feet")
  34748. },
  34749. {
  34750. name: "Megamacro",
  34751. height: math.unit(3, "miles"),
  34752. default: true
  34753. },
  34754. ]
  34755. ))
  34756. characterMakers.push(() => makeCharacter(
  34757. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  34758. {
  34759. front: {
  34760. height: math.unit(6, "feet"),
  34761. weight: math.unit(190, "lb"),
  34762. name: "Front",
  34763. image: {
  34764. source: "./media/characters/huttser/front.svg",
  34765. extra: 1152/1058,
  34766. bottom: 23/1175
  34767. }
  34768. },
  34769. side: {
  34770. height: math.unit(6, "feet"),
  34771. weight: math.unit(190, "lb"),
  34772. name: "Side",
  34773. image: {
  34774. source: "./media/characters/huttser/side.svg",
  34775. extra: 1174/1065,
  34776. bottom: 18/1192
  34777. }
  34778. },
  34779. back: {
  34780. height: math.unit(6, "feet"),
  34781. weight: math.unit(190, "lb"),
  34782. name: "Back",
  34783. image: {
  34784. source: "./media/characters/huttser/back.svg",
  34785. extra: 1158/1056,
  34786. bottom: 12/1170
  34787. }
  34788. },
  34789. },
  34790. [
  34791. ]
  34792. ))
  34793. characterMakers.push(() => makeCharacter(
  34794. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34795. {
  34796. side: {
  34797. height: math.unit(12 + 9/12, "feet"),
  34798. weight: math.unit(15000, "lb"),
  34799. name: "Side",
  34800. image: {
  34801. source: "./media/characters/faan/side.svg",
  34802. extra: 2747/2697,
  34803. bottom: 0/2747
  34804. }
  34805. },
  34806. front: {
  34807. height: math.unit(12 + 9/12, "feet"),
  34808. weight: math.unit(15000, "lb"),
  34809. name: "Front",
  34810. image: {
  34811. source: "./media/characters/faan/front.svg",
  34812. extra: 607/571,
  34813. bottom: 24/631
  34814. }
  34815. },
  34816. head: {
  34817. height: math.unit(2.85, "feet"),
  34818. name: "Head",
  34819. image: {
  34820. source: "./media/characters/faan/head.svg"
  34821. }
  34822. },
  34823. headAlt: {
  34824. height: math.unit(3.13, "feet"),
  34825. name: "Head-alt",
  34826. image: {
  34827. source: "./media/characters/faan/head-alt.svg"
  34828. }
  34829. },
  34830. },
  34831. [
  34832. {
  34833. name: "Normal",
  34834. height: math.unit(12 + 9/12, "feet"),
  34835. default: true
  34836. },
  34837. ]
  34838. ))
  34839. characterMakers.push(() => makeCharacter(
  34840. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34841. {
  34842. front: {
  34843. height: math.unit(6, "feet"),
  34844. weight: math.unit(300, "lb"),
  34845. name: "Front",
  34846. image: {
  34847. source: "./media/characters/tanio/front.svg",
  34848. extra: 711/673,
  34849. bottom: 25/736
  34850. }
  34851. },
  34852. },
  34853. [
  34854. {
  34855. name: "Normal",
  34856. height: math.unit(6, "feet"),
  34857. default: true
  34858. },
  34859. ]
  34860. ))
  34861. characterMakers.push(() => makeCharacter(
  34862. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34863. {
  34864. front: {
  34865. height: math.unit(3, "inches"),
  34866. name: "Front",
  34867. image: {
  34868. source: "./media/characters/noboru/front.svg",
  34869. extra: 1039/932,
  34870. bottom: 18/1057
  34871. }
  34872. },
  34873. },
  34874. [
  34875. {
  34876. name: "Micro",
  34877. height: math.unit(3, "inches"),
  34878. default: true
  34879. },
  34880. ]
  34881. ))
  34882. characterMakers.push(() => makeCharacter(
  34883. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34884. {
  34885. front: {
  34886. height: math.unit(1.85, "meters"),
  34887. weight: math.unit(80, "kg"),
  34888. name: "Front",
  34889. image: {
  34890. source: "./media/characters/daniel-barrett/front.svg",
  34891. extra: 355/337,
  34892. bottom: 9/364
  34893. }
  34894. },
  34895. },
  34896. [
  34897. {
  34898. name: "Pico",
  34899. height: math.unit(0.0433, "mm")
  34900. },
  34901. {
  34902. name: "Nano",
  34903. height: math.unit(1.5, "mm")
  34904. },
  34905. {
  34906. name: "Micro",
  34907. height: math.unit(5.3, "cm"),
  34908. default: true
  34909. },
  34910. {
  34911. name: "Normal",
  34912. height: math.unit(1.85, "meters")
  34913. },
  34914. {
  34915. name: "Macro",
  34916. height: math.unit(64.7, "meters")
  34917. },
  34918. {
  34919. name: "Megamacro",
  34920. height: math.unit(2.26, "km")
  34921. },
  34922. {
  34923. name: "Gigamacro",
  34924. height: math.unit(79, "km")
  34925. },
  34926. {
  34927. name: "Teramacro",
  34928. height: math.unit(2765, "km")
  34929. },
  34930. {
  34931. name: "Petamacro",
  34932. height: math.unit(96678, "km")
  34933. },
  34934. ]
  34935. ))
  34936. characterMakers.push(() => makeCharacter(
  34937. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34938. {
  34939. front: {
  34940. height: math.unit(30, "meters"),
  34941. weight: math.unit(400, "tons"),
  34942. name: "Front",
  34943. image: {
  34944. source: "./media/characters/zeel/front.svg",
  34945. extra: 2599/2599,
  34946. bottom: 226/2825
  34947. }
  34948. },
  34949. },
  34950. [
  34951. {
  34952. name: "Macro",
  34953. height: math.unit(30, "meters"),
  34954. default: true
  34955. },
  34956. ]
  34957. ))
  34958. characterMakers.push(() => makeCharacter(
  34959. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34960. {
  34961. front: {
  34962. height: math.unit(6 + 7/12, "feet"),
  34963. weight: math.unit(210, "lb"),
  34964. name: "Front",
  34965. image: {
  34966. source: "./media/characters/tarn/front.svg",
  34967. extra: 3517/3220,
  34968. bottom: 91/3608
  34969. }
  34970. },
  34971. back: {
  34972. height: math.unit(6 + 7/12, "feet"),
  34973. weight: math.unit(210, "lb"),
  34974. name: "Back",
  34975. image: {
  34976. source: "./media/characters/tarn/back.svg",
  34977. extra: 3566/3241,
  34978. bottom: 34/3600
  34979. }
  34980. },
  34981. dick: {
  34982. height: math.unit(1.65, "feet"),
  34983. name: "Dick",
  34984. image: {
  34985. source: "./media/characters/tarn/dick.svg"
  34986. }
  34987. },
  34988. paw: {
  34989. height: math.unit(1.80, "feet"),
  34990. name: "Paw",
  34991. image: {
  34992. source: "./media/characters/tarn/paw.svg"
  34993. }
  34994. },
  34995. tongue: {
  34996. height: math.unit(0.97, "feet"),
  34997. name: "Tongue",
  34998. image: {
  34999. source: "./media/characters/tarn/tongue.svg"
  35000. }
  35001. },
  35002. },
  35003. [
  35004. {
  35005. name: "Micro",
  35006. height: math.unit(4, "inches")
  35007. },
  35008. {
  35009. name: "Normal",
  35010. height: math.unit(6 + 7/12, "feet"),
  35011. default: true
  35012. },
  35013. {
  35014. name: "Macro",
  35015. height: math.unit(300, "feet")
  35016. },
  35017. ]
  35018. ))
  35019. characterMakers.push(() => makeCharacter(
  35020. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  35021. {
  35022. front: {
  35023. height: math.unit(5 + 7/12, "feet"),
  35024. weight: math.unit(80, "kg"),
  35025. name: "Front",
  35026. image: {
  35027. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  35028. extra: 3023/2865,
  35029. bottom: 33/3056
  35030. }
  35031. },
  35032. back: {
  35033. height: math.unit(5 + 7/12, "feet"),
  35034. weight: math.unit(80, "kg"),
  35035. name: "Back",
  35036. image: {
  35037. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  35038. extra: 3020/2886,
  35039. bottom: 30/3050
  35040. }
  35041. },
  35042. dick: {
  35043. height: math.unit(0.98, "feet"),
  35044. name: "Dick",
  35045. image: {
  35046. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  35047. }
  35048. },
  35049. anatomy: {
  35050. height: math.unit(2.86, "feet"),
  35051. name: "Anatomy",
  35052. image: {
  35053. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  35054. }
  35055. },
  35056. },
  35057. [
  35058. {
  35059. name: "Really Small",
  35060. height: math.unit(2, "inches")
  35061. },
  35062. {
  35063. name: "Micro",
  35064. height: math.unit(5.583, "inches")
  35065. },
  35066. {
  35067. name: "Normal",
  35068. height: math.unit(5 + 7/12, "feet"),
  35069. default: true
  35070. },
  35071. {
  35072. name: "Macro",
  35073. height: math.unit(67, "feet")
  35074. },
  35075. {
  35076. name: "Megamacro",
  35077. height: math.unit(134, "feet")
  35078. },
  35079. ]
  35080. ))
  35081. characterMakers.push(() => makeCharacter(
  35082. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  35083. {
  35084. front: {
  35085. height: math.unit(9, "feet"),
  35086. weight: math.unit(120, "lb"),
  35087. name: "Front",
  35088. image: {
  35089. source: "./media/characters/sally/front.svg",
  35090. extra: 1506/1349,
  35091. bottom: 66/1572
  35092. }
  35093. },
  35094. },
  35095. [
  35096. {
  35097. name: "Normal",
  35098. height: math.unit(9, "feet"),
  35099. default: true
  35100. },
  35101. ]
  35102. ))
  35103. characterMakers.push(() => makeCharacter(
  35104. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  35105. {
  35106. front: {
  35107. height: math.unit(8, "feet"),
  35108. weight: math.unit(900, "lb"),
  35109. name: "Front",
  35110. image: {
  35111. source: "./media/characters/owen/front.svg",
  35112. extra: 1761/1657,
  35113. bottom: 74/1835
  35114. }
  35115. },
  35116. side: {
  35117. height: math.unit(8, "feet"),
  35118. weight: math.unit(900, "lb"),
  35119. name: "Side",
  35120. image: {
  35121. source: "./media/characters/owen/side.svg",
  35122. extra: 1797/1734,
  35123. bottom: 30/1827
  35124. }
  35125. },
  35126. back: {
  35127. height: math.unit(8, "feet"),
  35128. weight: math.unit(900, "lb"),
  35129. name: "Back",
  35130. image: {
  35131. source: "./media/characters/owen/back.svg",
  35132. extra: 1796/1706,
  35133. bottom: 59/1855
  35134. }
  35135. },
  35136. maw: {
  35137. height: math.unit(1.76, "feet"),
  35138. name: "Maw",
  35139. image: {
  35140. source: "./media/characters/owen/maw.svg"
  35141. }
  35142. },
  35143. },
  35144. [
  35145. {
  35146. name: "Normal",
  35147. height: math.unit(8, "feet"),
  35148. default: true
  35149. },
  35150. ]
  35151. ))
  35152. characterMakers.push(() => makeCharacter(
  35153. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  35154. {
  35155. front: {
  35156. height: math.unit(4, "feet"),
  35157. weight: math.unit(400, "lb"),
  35158. name: "Front",
  35159. image: {
  35160. source: "./media/characters/ryth/front.svg",
  35161. extra: 1920/1748,
  35162. bottom: 42/1962
  35163. }
  35164. },
  35165. back: {
  35166. height: math.unit(4, "feet"),
  35167. weight: math.unit(400, "lb"),
  35168. name: "Back",
  35169. image: {
  35170. source: "./media/characters/ryth/back.svg",
  35171. extra: 1897/1690,
  35172. bottom: 89/1986
  35173. }
  35174. },
  35175. mouth: {
  35176. height: math.unit(1.39, "feet"),
  35177. name: "Mouth",
  35178. image: {
  35179. source: "./media/characters/ryth/mouth.svg"
  35180. }
  35181. },
  35182. tailmaw: {
  35183. height: math.unit(1.23, "feet"),
  35184. name: "Tailmaw",
  35185. image: {
  35186. source: "./media/characters/ryth/tailmaw.svg"
  35187. }
  35188. },
  35189. goia: {
  35190. height: math.unit(4, "meters"),
  35191. weight: math.unit(10800, "lb"),
  35192. name: "Goia",
  35193. image: {
  35194. source: "./media/characters/ryth/goia.svg",
  35195. extra: 745/640,
  35196. bottom: 107/852
  35197. }
  35198. },
  35199. goiaFront: {
  35200. height: math.unit(4, "meters"),
  35201. weight: math.unit(10800, "lb"),
  35202. name: "Goia (Front)",
  35203. image: {
  35204. source: "./media/characters/ryth/goia-front.svg",
  35205. extra: 750/586,
  35206. bottom: 114/864
  35207. }
  35208. },
  35209. goiaMaw: {
  35210. height: math.unit(5.55, "feet"),
  35211. name: "Goia Maw",
  35212. image: {
  35213. source: "./media/characters/ryth/goia-maw.svg"
  35214. }
  35215. },
  35216. goiaForepaw: {
  35217. height: math.unit(3.5, "feet"),
  35218. name: "Goia Forepaw",
  35219. image: {
  35220. source: "./media/characters/ryth/goia-forepaw.svg"
  35221. }
  35222. },
  35223. goiaHindpaw: {
  35224. height: math.unit(5.55, "feet"),
  35225. name: "Goia Hindpaw",
  35226. image: {
  35227. source: "./media/characters/ryth/goia-hindpaw.svg"
  35228. }
  35229. },
  35230. },
  35231. [
  35232. {
  35233. name: "Normal",
  35234. height: math.unit(4, "feet"),
  35235. default: true
  35236. },
  35237. ]
  35238. ))
  35239. characterMakers.push(() => makeCharacter(
  35240. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  35241. {
  35242. front: {
  35243. height: math.unit(7, "feet"),
  35244. weight: math.unit(180, "lb"),
  35245. name: "Front",
  35246. image: {
  35247. source: "./media/characters/necrolance/front.svg",
  35248. extra: 1062/947,
  35249. bottom: 41/1103
  35250. }
  35251. },
  35252. back: {
  35253. height: math.unit(7, "feet"),
  35254. weight: math.unit(180, "lb"),
  35255. name: "Back",
  35256. image: {
  35257. source: "./media/characters/necrolance/back.svg",
  35258. extra: 1045/984,
  35259. bottom: 14/1059
  35260. }
  35261. },
  35262. wing: {
  35263. height: math.unit(2.67, "feet"),
  35264. name: "Wing",
  35265. image: {
  35266. source: "./media/characters/necrolance/wing.svg"
  35267. }
  35268. },
  35269. },
  35270. [
  35271. {
  35272. name: "Normal",
  35273. height: math.unit(7, "feet"),
  35274. default: true
  35275. },
  35276. ]
  35277. ))
  35278. characterMakers.push(() => makeCharacter(
  35279. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  35280. {
  35281. front: {
  35282. height: math.unit(76, "meters"),
  35283. weight: math.unit(30000, "tons"),
  35284. name: "Front",
  35285. image: {
  35286. source: "./media/characters/tyler/front.svg",
  35287. extra: 1640/1640,
  35288. bottom: 114/1754
  35289. }
  35290. },
  35291. },
  35292. [
  35293. {
  35294. name: "Macro",
  35295. height: math.unit(76, "meters"),
  35296. default: true
  35297. },
  35298. ]
  35299. ))
  35300. characterMakers.push(() => makeCharacter(
  35301. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  35302. {
  35303. front: {
  35304. height: math.unit(4 + 11/12, "feet"),
  35305. weight: math.unit(132, "lb"),
  35306. name: "Front",
  35307. image: {
  35308. source: "./media/characters/icey/front.svg",
  35309. extra: 2750/2550,
  35310. bottom: 33/2783
  35311. }
  35312. },
  35313. back: {
  35314. height: math.unit(4 + 11/12, "feet"),
  35315. weight: math.unit(132, "lb"),
  35316. name: "Back",
  35317. image: {
  35318. source: "./media/characters/icey/back.svg",
  35319. extra: 2624/2481,
  35320. bottom: 35/2659
  35321. }
  35322. },
  35323. },
  35324. [
  35325. {
  35326. name: "Normal",
  35327. height: math.unit(4 + 11/12, "feet"),
  35328. default: true
  35329. },
  35330. ]
  35331. ))
  35332. characterMakers.push(() => makeCharacter(
  35333. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  35334. {
  35335. front: {
  35336. height: math.unit(100, "feet"),
  35337. weight: math.unit(0, "lb"),
  35338. name: "Front",
  35339. image: {
  35340. source: "./media/characters/smile/front.svg",
  35341. extra: 2983/2912,
  35342. bottom: 162/3145
  35343. }
  35344. },
  35345. back: {
  35346. height: math.unit(100, "feet"),
  35347. weight: math.unit(0, "lb"),
  35348. name: "Back",
  35349. image: {
  35350. source: "./media/characters/smile/back.svg",
  35351. extra: 3143/3031,
  35352. bottom: 91/3234
  35353. }
  35354. },
  35355. head: {
  35356. height: math.unit(26.3, "feet"),
  35357. weight: math.unit(0, "lb"),
  35358. name: "Head",
  35359. image: {
  35360. source: "./media/characters/smile/head.svg"
  35361. }
  35362. },
  35363. collar: {
  35364. height: math.unit(5.3, "feet"),
  35365. weight: math.unit(0, "lb"),
  35366. name: "Collar",
  35367. image: {
  35368. source: "./media/characters/smile/collar.svg"
  35369. }
  35370. },
  35371. },
  35372. [
  35373. {
  35374. name: "Macro",
  35375. height: math.unit(100, "feet"),
  35376. default: true
  35377. },
  35378. ]
  35379. ))
  35380. characterMakers.push(() => makeCharacter(
  35381. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  35382. {
  35383. dragon: {
  35384. height: math.unit(26, "feet"),
  35385. weight: math.unit(36, "tons"),
  35386. name: "Dragon",
  35387. image: {
  35388. source: "./media/characters/arimphae/dragon.svg",
  35389. extra: 1574/983,
  35390. bottom: 357/1931
  35391. }
  35392. },
  35393. drake: {
  35394. height: math.unit(9, "feet"),
  35395. weight: math.unit(1.5, "tons"),
  35396. name: "Drake",
  35397. image: {
  35398. source: "./media/characters/arimphae/drake.svg",
  35399. extra: 1120/925,
  35400. bottom: 435/1555
  35401. }
  35402. },
  35403. },
  35404. [
  35405. {
  35406. name: "Small",
  35407. height: math.unit(26*5/9, "feet")
  35408. },
  35409. {
  35410. name: "Normal",
  35411. height: math.unit(26, "feet"),
  35412. default: true
  35413. },
  35414. ]
  35415. ))
  35416. characterMakers.push(() => makeCharacter(
  35417. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  35418. {
  35419. front: {
  35420. height: math.unit(8 + 9/12, "feet"),
  35421. name: "Front",
  35422. image: {
  35423. source: "./media/characters/xander/front.svg",
  35424. extra: 1237/974,
  35425. bottom: 94/1331
  35426. }
  35427. },
  35428. },
  35429. [
  35430. {
  35431. name: "Normal",
  35432. height: math.unit(8 + 9/12, "feet"),
  35433. default: true
  35434. },
  35435. {
  35436. name: "Gaze Grabber",
  35437. height: math.unit(13 + 8/12, "feet")
  35438. },
  35439. {
  35440. name: "Jaw Dropper",
  35441. height: math.unit(27, "feet")
  35442. },
  35443. {
  35444. name: "Show Stopper",
  35445. height: math.unit(136, "feet")
  35446. },
  35447. {
  35448. name: "Superstar",
  35449. height: math.unit(1.9e6, "miles")
  35450. },
  35451. ]
  35452. ))
  35453. characterMakers.push(() => makeCharacter(
  35454. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  35455. {
  35456. side: {
  35457. height: math.unit(2100, "feet"),
  35458. name: "Side",
  35459. image: {
  35460. source: "./media/characters/osiris/side.svg",
  35461. extra: 1105/939,
  35462. bottom: 167/1272
  35463. }
  35464. },
  35465. },
  35466. [
  35467. {
  35468. name: "Macro",
  35469. height: math.unit(2100, "feet"),
  35470. default: true
  35471. },
  35472. ]
  35473. ))
  35474. characterMakers.push(() => makeCharacter(
  35475. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  35476. {
  35477. front: {
  35478. height: math.unit(6 + 8/12, "feet"),
  35479. weight: math.unit(225, "lb"),
  35480. name: "Front",
  35481. image: {
  35482. source: "./media/characters/rhys-londe/front.svg",
  35483. extra: 2258/2141,
  35484. bottom: 188/2446
  35485. }
  35486. },
  35487. back: {
  35488. height: math.unit(6 + 8/12, "feet"),
  35489. weight: math.unit(225, "lb"),
  35490. name: "Back",
  35491. image: {
  35492. source: "./media/characters/rhys-londe/back.svg",
  35493. extra: 2237/2137,
  35494. bottom: 63/2300
  35495. }
  35496. },
  35497. frontNsfw: {
  35498. height: math.unit(6 + 8/12, "feet"),
  35499. weight: math.unit(225, "lb"),
  35500. name: "Front (NSFW)",
  35501. image: {
  35502. source: "./media/characters/rhys-londe/front-nsfw.svg",
  35503. extra: 2258/2141,
  35504. bottom: 188/2446
  35505. }
  35506. },
  35507. backNsfw: {
  35508. height: math.unit(6 + 8/12, "feet"),
  35509. weight: math.unit(225, "lb"),
  35510. name: "Back (NSFW)",
  35511. image: {
  35512. source: "./media/characters/rhys-londe/back-nsfw.svg",
  35513. extra: 2237/2137,
  35514. bottom: 63/2300
  35515. }
  35516. },
  35517. dick: {
  35518. height: math.unit(30, "inches"),
  35519. name: "Dick",
  35520. image: {
  35521. source: "./media/characters/rhys-londe/dick.svg"
  35522. }
  35523. },
  35524. maw: {
  35525. height: math.unit(1.6, "feet"),
  35526. name: "Maw",
  35527. image: {
  35528. source: "./media/characters/rhys-londe/maw.svg"
  35529. }
  35530. },
  35531. },
  35532. [
  35533. {
  35534. name: "Normal",
  35535. height: math.unit(6 + 8/12, "feet"),
  35536. default: true
  35537. },
  35538. ]
  35539. ))
  35540. characterMakers.push(() => makeCharacter(
  35541. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  35542. {
  35543. front: {
  35544. height: math.unit(3 + 10/12, "feet"),
  35545. weight: math.unit(90, "lb"),
  35546. name: "Front",
  35547. image: {
  35548. source: "./media/characters/taivas-ensim/front.svg",
  35549. extra: 1327/1216,
  35550. bottom: 96/1423
  35551. }
  35552. },
  35553. back: {
  35554. height: math.unit(3 + 10/12, "feet"),
  35555. weight: math.unit(90, "lb"),
  35556. name: "Back",
  35557. image: {
  35558. source: "./media/characters/taivas-ensim/back.svg",
  35559. extra: 1355/1247,
  35560. bottom: 11/1366
  35561. }
  35562. },
  35563. frontNsfw: {
  35564. height: math.unit(3 + 10/12, "feet"),
  35565. weight: math.unit(90, "lb"),
  35566. name: "Front (NSFW)",
  35567. image: {
  35568. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  35569. extra: 1327/1216,
  35570. bottom: 96/1423
  35571. }
  35572. },
  35573. backNsfw: {
  35574. height: math.unit(3 + 10/12, "feet"),
  35575. weight: math.unit(90, "lb"),
  35576. name: "Back (NSFW)",
  35577. image: {
  35578. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  35579. extra: 1355/1247,
  35580. bottom: 11/1366
  35581. }
  35582. },
  35583. },
  35584. [
  35585. {
  35586. name: "Normal",
  35587. height: math.unit(3 + 10/12, "feet"),
  35588. default: true
  35589. },
  35590. ]
  35591. ))
  35592. characterMakers.push(() => makeCharacter(
  35593. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  35594. {
  35595. front: {
  35596. height: math.unit(9 + 6/12, "feet"),
  35597. weight: math.unit(940, "lb"),
  35598. name: "Front",
  35599. image: {
  35600. source: "./media/characters/byliss/front.svg",
  35601. extra: 1327/1290,
  35602. bottom: 82/1409
  35603. }
  35604. },
  35605. back: {
  35606. height: math.unit(9 + 6/12, "feet"),
  35607. weight: math.unit(940, "lb"),
  35608. name: "Back",
  35609. image: {
  35610. source: "./media/characters/byliss/back.svg",
  35611. extra: 1376/1349,
  35612. bottom: 9/1385
  35613. }
  35614. },
  35615. frontNsfw: {
  35616. height: math.unit(9 + 6/12, "feet"),
  35617. weight: math.unit(940, "lb"),
  35618. name: "Front (NSFW)",
  35619. image: {
  35620. source: "./media/characters/byliss/front-nsfw.svg",
  35621. extra: 1327/1290,
  35622. bottom: 82/1409
  35623. }
  35624. },
  35625. backNsfw: {
  35626. height: math.unit(9 + 6/12, "feet"),
  35627. weight: math.unit(940, "lb"),
  35628. name: "Back (NSFW)",
  35629. image: {
  35630. source: "./media/characters/byliss/back-nsfw.svg",
  35631. extra: 1376/1349,
  35632. bottom: 9/1385
  35633. }
  35634. },
  35635. },
  35636. [
  35637. {
  35638. name: "Normal",
  35639. height: math.unit(9 + 6/12, "feet"),
  35640. default: true
  35641. },
  35642. ]
  35643. ))
  35644. characterMakers.push(() => makeCharacter(
  35645. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  35646. {
  35647. front: {
  35648. height: math.unit(5 + 2/12, "feet"),
  35649. weight: math.unit(200, "lb"),
  35650. name: "Front",
  35651. image: {
  35652. source: "./media/characters/noraly/front.svg",
  35653. extra: 4985/4773,
  35654. bottom: 150/5135
  35655. }
  35656. },
  35657. full: {
  35658. height: math.unit(5 + 2/12, "feet"),
  35659. weight: math.unit(164, "lb"),
  35660. name: "Full",
  35661. image: {
  35662. source: "./media/characters/noraly/full.svg",
  35663. extra: 1114/1059,
  35664. bottom: 35/1149
  35665. }
  35666. },
  35667. fuller: {
  35668. height: math.unit(5 + 2/12, "feet"),
  35669. weight: math.unit(230, "lb"),
  35670. name: "Fuller",
  35671. image: {
  35672. source: "./media/characters/noraly/fuller.svg",
  35673. extra: 1114/1059,
  35674. bottom: 35/1149
  35675. }
  35676. },
  35677. fullest: {
  35678. height: math.unit(5 + 2/12, "feet"),
  35679. weight: math.unit(300, "lb"),
  35680. name: "Fullest",
  35681. image: {
  35682. source: "./media/characters/noraly/fullest.svg",
  35683. extra: 1114/1059,
  35684. bottom: 35/1149
  35685. }
  35686. },
  35687. },
  35688. [
  35689. {
  35690. name: "Normal",
  35691. height: math.unit(5 + 2/12, "feet"),
  35692. default: true
  35693. },
  35694. ]
  35695. ))
  35696. characterMakers.push(() => makeCharacter(
  35697. { name: "Pera", species: ["snake"], tags: ["naga"] },
  35698. {
  35699. front: {
  35700. height: math.unit(5 + 2/12, "feet"),
  35701. weight: math.unit(210, "lb"),
  35702. name: "Front",
  35703. image: {
  35704. source: "./media/characters/pera/front.svg",
  35705. extra: 1560/1531,
  35706. bottom: 165/1725
  35707. }
  35708. },
  35709. back: {
  35710. height: math.unit(5 + 2/12, "feet"),
  35711. weight: math.unit(210, "lb"),
  35712. name: "Back",
  35713. image: {
  35714. source: "./media/characters/pera/back.svg",
  35715. extra: 1523/1493,
  35716. bottom: 152/1675
  35717. }
  35718. },
  35719. dick: {
  35720. height: math.unit(2.4, "feet"),
  35721. name: "Dick",
  35722. image: {
  35723. source: "./media/characters/pera/dick.svg"
  35724. }
  35725. },
  35726. },
  35727. [
  35728. {
  35729. name: "Normal",
  35730. height: math.unit(5 + 2/12, "feet"),
  35731. default: true
  35732. },
  35733. ]
  35734. ))
  35735. characterMakers.push(() => makeCharacter(
  35736. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  35737. {
  35738. front: {
  35739. height: math.unit(12, "feet"),
  35740. weight: math.unit(3200, "lb"),
  35741. name: "Front",
  35742. image: {
  35743. source: "./media/characters/julian/front.svg",
  35744. extra: 2962/2701,
  35745. bottom: 184/3146
  35746. }
  35747. },
  35748. maw: {
  35749. height: math.unit(5.35, "feet"),
  35750. name: "Maw",
  35751. image: {
  35752. source: "./media/characters/julian/maw.svg"
  35753. }
  35754. },
  35755. paw: {
  35756. height: math.unit(3.07, "feet"),
  35757. name: "Paw",
  35758. image: {
  35759. source: "./media/characters/julian/paw.svg"
  35760. }
  35761. },
  35762. },
  35763. [
  35764. {
  35765. name: "Default",
  35766. height: math.unit(12, "feet"),
  35767. default: true
  35768. },
  35769. {
  35770. name: "Big",
  35771. height: math.unit(50, "feet")
  35772. },
  35773. {
  35774. name: "Really Big",
  35775. height: math.unit(1, "mile")
  35776. },
  35777. {
  35778. name: "Extremely Big",
  35779. height: math.unit(100, "miles")
  35780. },
  35781. {
  35782. name: "Planet Hugger",
  35783. height: math.unit(200, "megameters")
  35784. },
  35785. {
  35786. name: "Unreasonably Big",
  35787. height: math.unit(1e300, "meters")
  35788. },
  35789. ]
  35790. ))
  35791. characterMakers.push(() => makeCharacter(
  35792. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35793. {
  35794. solgooleo: {
  35795. height: math.unit(4, "meters"),
  35796. weight: math.unit(6000*1.5, "kg"),
  35797. volume: math.unit(6000, "liters"),
  35798. name: "Solgooleo",
  35799. image: {
  35800. source: "./media/characters/pi/solgooleo.svg",
  35801. extra: 388/331,
  35802. bottom: 29/417
  35803. }
  35804. },
  35805. },
  35806. [
  35807. {
  35808. name: "Normal",
  35809. height: math.unit(4, "meters"),
  35810. default: true
  35811. },
  35812. ]
  35813. ))
  35814. characterMakers.push(() => makeCharacter(
  35815. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35816. {
  35817. front: {
  35818. height: math.unit(8, "feet"),
  35819. weight: math.unit(4, "tons"),
  35820. name: "Front",
  35821. image: {
  35822. source: "./media/characters/shaun/front.svg",
  35823. extra: 503/495,
  35824. bottom: 20/523
  35825. }
  35826. },
  35827. back: {
  35828. height: math.unit(8, "feet"),
  35829. weight: math.unit(4, "tons"),
  35830. name: "Back",
  35831. image: {
  35832. source: "./media/characters/shaun/back.svg",
  35833. extra: 487/480,
  35834. bottom: 20/507
  35835. }
  35836. },
  35837. },
  35838. [
  35839. {
  35840. name: "Lorg",
  35841. height: math.unit(8, "feet"),
  35842. default: true
  35843. },
  35844. ]
  35845. ))
  35846. characterMakers.push(() => makeCharacter(
  35847. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35848. {
  35849. frontAnthro: {
  35850. height: math.unit(7, "feet"),
  35851. name: "Front",
  35852. image: {
  35853. source: "./media/characters/sini/front-anthro.svg",
  35854. extra: 726/678,
  35855. bottom: 35/761
  35856. },
  35857. form: "anthro",
  35858. default: true
  35859. },
  35860. backAnthro: {
  35861. height: math.unit(7, "feet"),
  35862. name: "Back",
  35863. image: {
  35864. source: "./media/characters/sini/back-anthro.svg",
  35865. extra: 743/701,
  35866. bottom: 12/755
  35867. },
  35868. form: "anthro",
  35869. },
  35870. frontAnthroNsfw: {
  35871. height: math.unit(7, "feet"),
  35872. name: "Front (NSFW)",
  35873. image: {
  35874. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35875. extra: 726/678,
  35876. bottom: 35/761
  35877. },
  35878. form: "anthro"
  35879. },
  35880. backAnthroNsfw: {
  35881. height: math.unit(7, "feet"),
  35882. name: "Back (NSFW)",
  35883. image: {
  35884. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35885. extra: 743/701,
  35886. bottom: 12/755
  35887. },
  35888. form: "anthro",
  35889. },
  35890. mawAnthro: {
  35891. height: math.unit(2.14, "feet"),
  35892. name: "Maw",
  35893. image: {
  35894. source: "./media/characters/sini/maw-anthro.svg"
  35895. },
  35896. form: "anthro"
  35897. },
  35898. dick: {
  35899. height: math.unit(1.45, "feet"),
  35900. name: "Dick",
  35901. image: {
  35902. source: "./media/characters/sini/dick-anthro.svg"
  35903. },
  35904. form: "anthro"
  35905. },
  35906. feral: {
  35907. height: math.unit(16, "feet"),
  35908. name: "Feral",
  35909. image: {
  35910. source: "./media/characters/sini/feral.svg",
  35911. extra: 814/605,
  35912. bottom: 11/825
  35913. },
  35914. form: "feral",
  35915. default: true
  35916. },
  35917. feralNsfw: {
  35918. height: math.unit(16, "feet"),
  35919. name: "Feral (NSFW)",
  35920. image: {
  35921. source: "./media/characters/sini/feral-nsfw.svg",
  35922. extra: 814/605,
  35923. bottom: 11/825
  35924. },
  35925. form: "feral"
  35926. },
  35927. mawFeral: {
  35928. height: math.unit(5.66, "feet"),
  35929. name: "Maw",
  35930. image: {
  35931. source: "./media/characters/sini/maw-feral.svg"
  35932. },
  35933. form: "feral",
  35934. },
  35935. pawFeral: {
  35936. height: math.unit(5.17, "feet"),
  35937. name: "Paw",
  35938. image: {
  35939. source: "./media/characters/sini/paw-feral.svg"
  35940. },
  35941. form: "feral",
  35942. },
  35943. rumpFeral: {
  35944. height: math.unit(13.11, "feet"),
  35945. name: "Rump",
  35946. image: {
  35947. source: "./media/characters/sini/rump-feral.svg"
  35948. },
  35949. form: "feral",
  35950. },
  35951. dickFeral: {
  35952. height: math.unit(1, "feet"),
  35953. name: "Dick",
  35954. image: {
  35955. source: "./media/characters/sini/dick-feral.svg"
  35956. },
  35957. form: "feral",
  35958. },
  35959. eyeFeral: {
  35960. height: math.unit(1.23, "feet"),
  35961. name: "Eye",
  35962. image: {
  35963. source: "./media/characters/sini/eye-feral.svg"
  35964. },
  35965. form: "feral",
  35966. },
  35967. },
  35968. [
  35969. {
  35970. name: "Normal",
  35971. height: math.unit(7, "feet"),
  35972. default: true,
  35973. form: "anthro"
  35974. },
  35975. {
  35976. name: "Normal",
  35977. height: math.unit(16, "feet"),
  35978. default: true,
  35979. form: "feral"
  35980. },
  35981. ],
  35982. {
  35983. "anthro": {
  35984. name: "Anthro",
  35985. default: true
  35986. },
  35987. "feral": {
  35988. name: "Feral",
  35989. }
  35990. }
  35991. ))
  35992. characterMakers.push(() => makeCharacter(
  35993. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35994. {
  35995. side: {
  35996. height: math.unit(47.2, "meters"),
  35997. weight: math.unit(10000, "tons"),
  35998. name: "Side",
  35999. image: {
  36000. source: "./media/characters/raylldo/side.svg",
  36001. extra: 2363/642,
  36002. bottom: 221/2584
  36003. }
  36004. },
  36005. top: {
  36006. height: math.unit(240, "meters"),
  36007. weight: math.unit(10000, "tons"),
  36008. name: "Top",
  36009. image: {
  36010. source: "./media/characters/raylldo/top.svg"
  36011. }
  36012. },
  36013. bottom: {
  36014. height: math.unit(240, "meters"),
  36015. weight: math.unit(10000, "tons"),
  36016. name: "Bottom",
  36017. image: {
  36018. source: "./media/characters/raylldo/bottom.svg"
  36019. }
  36020. },
  36021. head: {
  36022. height: math.unit(38.6, "meters"),
  36023. name: "Head",
  36024. image: {
  36025. source: "./media/characters/raylldo/head.svg",
  36026. extra: 1335/1112,
  36027. bottom: 0/1335
  36028. }
  36029. },
  36030. maw: {
  36031. height: math.unit(16.37, "meters"),
  36032. name: "Maw",
  36033. image: {
  36034. source: "./media/characters/raylldo/maw.svg",
  36035. extra: 883/660,
  36036. bottom: 0/883
  36037. },
  36038. extraAttributes: {
  36039. preyCapacity: {
  36040. name: "Capacity",
  36041. power: 3,
  36042. type: "volume",
  36043. base: math.unit(1000, "people")
  36044. },
  36045. tongueSize: {
  36046. name: "Tongue Size",
  36047. power: 2,
  36048. type: "area",
  36049. base: math.unit(21, "m^2")
  36050. }
  36051. }
  36052. },
  36053. forepaw: {
  36054. height: math.unit(18, "meters"),
  36055. name: "Forepaw",
  36056. image: {
  36057. source: "./media/characters/raylldo/forepaw.svg"
  36058. }
  36059. },
  36060. hindpaw: {
  36061. height: math.unit(23, "meters"),
  36062. name: "Hindpaw",
  36063. image: {
  36064. source: "./media/characters/raylldo/hindpaw.svg"
  36065. }
  36066. },
  36067. genitals: {
  36068. height: math.unit(42, "meters"),
  36069. name: "Genitals",
  36070. image: {
  36071. source: "./media/characters/raylldo/genitals.svg"
  36072. }
  36073. },
  36074. },
  36075. [
  36076. {
  36077. name: "Normal",
  36078. height: math.unit(47.2, "meters"),
  36079. default: true
  36080. },
  36081. ]
  36082. ))
  36083. characterMakers.push(() => makeCharacter(
  36084. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  36085. {
  36086. anthroFront: {
  36087. height: math.unit(9, "feet"),
  36088. weight: math.unit(600, "lb"),
  36089. name: "Anthro (Front)",
  36090. image: {
  36091. source: "./media/characters/glint/anthro-front.svg",
  36092. extra: 1097/1018,
  36093. bottom: 28/1125
  36094. }
  36095. },
  36096. anthroBack: {
  36097. height: math.unit(9, "feet"),
  36098. weight: math.unit(600, "lb"),
  36099. name: "Anthro (Back)",
  36100. image: {
  36101. source: "./media/characters/glint/anthro-back.svg",
  36102. extra: 1154/997,
  36103. bottom: 36/1190
  36104. }
  36105. },
  36106. feral: {
  36107. height: math.unit(11, "feet"),
  36108. weight: math.unit(50000, "lb"),
  36109. name: "Feral",
  36110. image: {
  36111. source: "./media/characters/glint/feral.svg",
  36112. extra: 3035/1585,
  36113. bottom: 1169/4204
  36114. }
  36115. },
  36116. dickAnthro: {
  36117. height: math.unit(0.7, "meters"),
  36118. name: "Dick (Anthro)",
  36119. image: {
  36120. source: "./media/characters/glint/dick-anthro.svg"
  36121. }
  36122. },
  36123. dickFeral: {
  36124. height: math.unit(2.65, "meters"),
  36125. name: "Dick (Feral)",
  36126. image: {
  36127. source: "./media/characters/glint/dick-feral.svg"
  36128. }
  36129. },
  36130. slitHidden: {
  36131. height: math.unit(5.85, "meters"),
  36132. name: "Slit (Hidden)",
  36133. image: {
  36134. source: "./media/characters/glint/slit-hidden.svg"
  36135. }
  36136. },
  36137. slitErect: {
  36138. height: math.unit(5.85, "meters"),
  36139. name: "Slit (Erect)",
  36140. image: {
  36141. source: "./media/characters/glint/slit-erect.svg"
  36142. }
  36143. },
  36144. mawAnthro: {
  36145. height: math.unit(0.63, "meters"),
  36146. name: "Maw (Anthro)",
  36147. image: {
  36148. source: "./media/characters/glint/maw.svg"
  36149. }
  36150. },
  36151. mawFeral: {
  36152. height: math.unit(2.89, "meters"),
  36153. name: "Maw (Feral)",
  36154. image: {
  36155. source: "./media/characters/glint/maw.svg"
  36156. }
  36157. },
  36158. },
  36159. [
  36160. {
  36161. name: "Normal",
  36162. height: math.unit(9, "feet"),
  36163. default: true
  36164. },
  36165. ]
  36166. ))
  36167. characterMakers.push(() => makeCharacter(
  36168. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  36169. {
  36170. side: {
  36171. height: math.unit(15, "feet"),
  36172. weight: math.unit(5000, "kg"),
  36173. name: "Side",
  36174. image: {
  36175. source: "./media/characters/kairne/side.svg",
  36176. extra: 979/811,
  36177. bottom: 13/992
  36178. }
  36179. },
  36180. front: {
  36181. height: math.unit(15, "feet"),
  36182. weight: math.unit(5000, "kg"),
  36183. name: "Front",
  36184. image: {
  36185. source: "./media/characters/kairne/front.svg",
  36186. extra: 908/814,
  36187. bottom: 26/934
  36188. }
  36189. },
  36190. sideNsfw: {
  36191. height: math.unit(15, "feet"),
  36192. weight: math.unit(5000, "kg"),
  36193. name: "Side (NSFW)",
  36194. image: {
  36195. source: "./media/characters/kairne/side-nsfw.svg",
  36196. extra: 979/811,
  36197. bottom: 13/992
  36198. }
  36199. },
  36200. frontNsfw: {
  36201. height: math.unit(15, "feet"),
  36202. weight: math.unit(5000, "kg"),
  36203. name: "Front (NSFW)",
  36204. image: {
  36205. source: "./media/characters/kairne/front-nsfw.svg",
  36206. extra: 908/814,
  36207. bottom: 26/934
  36208. }
  36209. },
  36210. dickCaged: {
  36211. height: math.unit(0.65, "meters"),
  36212. name: "Dick-caged",
  36213. image: {
  36214. source: "./media/characters/kairne/dick-caged.svg"
  36215. }
  36216. },
  36217. dick: {
  36218. height: math.unit(0.79, "meters"),
  36219. name: "Dick",
  36220. image: {
  36221. source: "./media/characters/kairne/dick.svg"
  36222. }
  36223. },
  36224. genitals: {
  36225. height: math.unit(1.29, "meters"),
  36226. name: "Genitals",
  36227. image: {
  36228. source: "./media/characters/kairne/genitals.svg"
  36229. }
  36230. },
  36231. maw: {
  36232. height: math.unit(1.73, "meters"),
  36233. name: "Maw",
  36234. image: {
  36235. source: "./media/characters/kairne/maw.svg"
  36236. }
  36237. },
  36238. },
  36239. [
  36240. {
  36241. name: "Normal",
  36242. height: math.unit(15, "feet"),
  36243. default: true
  36244. },
  36245. ]
  36246. ))
  36247. characterMakers.push(() => makeCharacter(
  36248. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  36249. {
  36250. front: {
  36251. height: math.unit(5 + 8/12, "feet"),
  36252. weight: math.unit(139, "lb"),
  36253. name: "Front",
  36254. image: {
  36255. source: "./media/characters/biscuit-jackal/front.svg",
  36256. extra: 2106/1961,
  36257. bottom: 58/2164
  36258. }
  36259. },
  36260. back: {
  36261. height: math.unit(5 + 8/12, "feet"),
  36262. weight: math.unit(139, "lb"),
  36263. name: "Back",
  36264. image: {
  36265. source: "./media/characters/biscuit-jackal/back.svg",
  36266. extra: 2132/1976,
  36267. bottom: 57/2189
  36268. }
  36269. },
  36270. werejackal: {
  36271. height: math.unit(6 + 3/12, "feet"),
  36272. weight: math.unit(188, "lb"),
  36273. name: "Werejackal",
  36274. image: {
  36275. source: "./media/characters/biscuit-jackal/werejackal.svg",
  36276. extra: 2373/2178,
  36277. bottom: 53/2426
  36278. }
  36279. },
  36280. },
  36281. [
  36282. {
  36283. name: "Normal",
  36284. height: math.unit(5 + 8/12, "feet"),
  36285. default: true
  36286. },
  36287. ]
  36288. ))
  36289. characterMakers.push(() => makeCharacter(
  36290. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  36291. {
  36292. front: {
  36293. height: math.unit(140, "cm"),
  36294. weight: math.unit(45, "kg"),
  36295. name: "Front",
  36296. image: {
  36297. source: "./media/characters/tayra-white/front.svg",
  36298. extra: 2229/2192,
  36299. bottom: 75/2304
  36300. }
  36301. },
  36302. },
  36303. [
  36304. {
  36305. name: "Normal",
  36306. height: math.unit(140, "cm"),
  36307. default: true
  36308. },
  36309. ]
  36310. ))
  36311. characterMakers.push(() => makeCharacter(
  36312. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  36313. {
  36314. front: {
  36315. height: math.unit(4 + 5/12, "feet"),
  36316. name: "Front",
  36317. image: {
  36318. source: "./media/characters/scoop/front.svg",
  36319. extra: 1257/1136,
  36320. bottom: 69/1326
  36321. }
  36322. },
  36323. back: {
  36324. height: math.unit(4 + 5/12, "feet"),
  36325. name: "Back",
  36326. image: {
  36327. source: "./media/characters/scoop/back.svg",
  36328. extra: 1321/1152,
  36329. bottom: 32/1353
  36330. }
  36331. },
  36332. maw: {
  36333. height: math.unit(0.68, "feet"),
  36334. name: "Maw",
  36335. image: {
  36336. source: "./media/characters/scoop/maw.svg"
  36337. }
  36338. },
  36339. },
  36340. [
  36341. {
  36342. name: "Really Small",
  36343. height: math.unit(1, "mm")
  36344. },
  36345. {
  36346. name: "Micro",
  36347. height: math.unit(1, "inch")
  36348. },
  36349. {
  36350. name: "Normal",
  36351. height: math.unit(4 + 5/12, "feet"),
  36352. default: true
  36353. },
  36354. {
  36355. name: "Macro",
  36356. height: math.unit(200, "feet")
  36357. },
  36358. {
  36359. name: "Megamacro",
  36360. height: math.unit(3240, "feet")
  36361. },
  36362. {
  36363. name: "Teramacro",
  36364. height: math.unit(2500, "miles")
  36365. },
  36366. ]
  36367. ))
  36368. characterMakers.push(() => makeCharacter(
  36369. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  36370. {
  36371. front: {
  36372. height: math.unit(15 + 7/12, "feet"),
  36373. weight: math.unit(1150, "tons"),
  36374. name: "Front",
  36375. image: {
  36376. source: "./media/characters/saphinara/front.svg",
  36377. extra: 1837/1643,
  36378. bottom: 84/1921
  36379. },
  36380. form: "normal",
  36381. default: true
  36382. },
  36383. side: {
  36384. height: math.unit(15 + 7/12, "feet"),
  36385. weight: math.unit(1150, "tons"),
  36386. name: "Side",
  36387. image: {
  36388. source: "./media/characters/saphinara/side.svg",
  36389. extra: 605/547,
  36390. bottom: 6/611
  36391. },
  36392. form: "normal"
  36393. },
  36394. back: {
  36395. height: math.unit(15 + 7/12, "feet"),
  36396. weight: math.unit(1150, "tons"),
  36397. name: "Back",
  36398. image: {
  36399. source: "./media/characters/saphinara/back.svg",
  36400. extra: 591/531,
  36401. bottom: 13/604
  36402. },
  36403. form: "normal"
  36404. },
  36405. frontTail: {
  36406. height: math.unit(15 + 7/12, "feet"),
  36407. weight: math.unit(1150, "tons"),
  36408. name: "Front (Full Tail)",
  36409. image: {
  36410. source: "./media/characters/saphinara/front-tail.svg",
  36411. extra: 2256/1630,
  36412. bottom: 261/2517
  36413. },
  36414. form: "normal"
  36415. },
  36416. insides: {
  36417. height: math.unit(11.92, "feet"),
  36418. name: "Insides",
  36419. image: {
  36420. source: "./media/characters/saphinara/insides.svg"
  36421. },
  36422. form: "normal"
  36423. },
  36424. head: {
  36425. height: math.unit(4.17, "feet"),
  36426. name: "Head",
  36427. image: {
  36428. source: "./media/characters/saphinara/head.svg"
  36429. },
  36430. form: "normal"
  36431. },
  36432. tongue: {
  36433. height: math.unit(4.60, "feet"),
  36434. name: "Tongue",
  36435. image: {
  36436. source: "./media/characters/saphinara/tongue.svg"
  36437. },
  36438. form: "normal"
  36439. },
  36440. headEnraged: {
  36441. height: math.unit(5.55, "feet"),
  36442. name: "Head (Enraged)",
  36443. image: {
  36444. source: "./media/characters/saphinara/head-enraged.svg"
  36445. },
  36446. form: "normal"
  36447. },
  36448. wings: {
  36449. height: math.unit(11.95, "feet"),
  36450. name: "Wings",
  36451. image: {
  36452. source: "./media/characters/saphinara/wings.svg"
  36453. },
  36454. form: "normal"
  36455. },
  36456. feathers: {
  36457. height: math.unit(8.92, "feet"),
  36458. name: "Feathers",
  36459. image: {
  36460. source: "./media/characters/saphinara/feathers.svg"
  36461. },
  36462. form: "normal"
  36463. },
  36464. shackles: {
  36465. height: math.unit(2, "feet"),
  36466. name: "Shackles",
  36467. image: {
  36468. source: "./media/characters/saphinara/shackles.svg"
  36469. },
  36470. form: "normal"
  36471. },
  36472. eyes: {
  36473. height: math.unit(1.331, "feet"),
  36474. name: "Eyes",
  36475. image: {
  36476. source: "./media/characters/saphinara/eyes.svg"
  36477. },
  36478. form: "normal"
  36479. },
  36480. eyesEnraged: {
  36481. height: math.unit(1.331, "feet"),
  36482. name: "Eyes (Enraged)",
  36483. image: {
  36484. source: "./media/characters/saphinara/eyes-enraged.svg"
  36485. },
  36486. form: "normal"
  36487. },
  36488. trueFormSide: {
  36489. height: math.unit(200, "feet"),
  36490. weight: math.unit(1e7, "tons"),
  36491. name: "Side",
  36492. image: {
  36493. source: "./media/characters/saphinara/true-form-side.svg",
  36494. extra: 1399/770,
  36495. bottom: 97/1496
  36496. },
  36497. form: "true-form",
  36498. default: true
  36499. },
  36500. trueFormMaw: {
  36501. height: math.unit(71.5, "feet"),
  36502. name: "Maw",
  36503. image: {
  36504. source: "./media/characters/saphinara/true-form-maw.svg",
  36505. extra: 2302/1453,
  36506. bottom: 0/2302
  36507. },
  36508. form: "true-form"
  36509. },
  36510. meowberusSide: {
  36511. height: math.unit(75, "feet"),
  36512. weight: math.unit(180000, "kg"),
  36513. preyCapacity: math.unit(50000, "people"),
  36514. name: "Side",
  36515. image: {
  36516. source: "./media/characters/saphinara/meowberus-side.svg",
  36517. extra: 1400/711,
  36518. bottom: 126/1526
  36519. },
  36520. form: "meowberus",
  36521. extraAttributes: {
  36522. "pawArea": {
  36523. name: "Paw Size",
  36524. power: 2,
  36525. type: "area",
  36526. base: math.unit(35, "m^2")
  36527. }
  36528. }
  36529. },
  36530. },
  36531. [
  36532. {
  36533. name: "Normal",
  36534. height: math.unit(15 + 7/12, "feet"),
  36535. default: true,
  36536. form: "normal"
  36537. },
  36538. {
  36539. name: "Angry",
  36540. height: math.unit(30 + 6/12, "feet"),
  36541. form: "normal"
  36542. },
  36543. {
  36544. name: "Enraged",
  36545. height: math.unit(102 + 1/12, "feet"),
  36546. form: "normal"
  36547. },
  36548. {
  36549. name: "True",
  36550. height: math.unit(200, "feet"),
  36551. default: true,
  36552. form: "true-form"
  36553. },
  36554. {
  36555. name: "Normal",
  36556. height: math.unit(75, "feet"),
  36557. default: true,
  36558. form: "meowberus"
  36559. },
  36560. ],
  36561. {
  36562. "normal": {
  36563. name: "Normal",
  36564. default: true
  36565. },
  36566. "true-form": {
  36567. name: "True Form"
  36568. },
  36569. "meowberus": {
  36570. name: "Meowberus",
  36571. },
  36572. }
  36573. ))
  36574. characterMakers.push(() => makeCharacter(
  36575. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  36576. {
  36577. front: {
  36578. height: math.unit(6 + 8/12, "feet"),
  36579. weight: math.unit(300, "lb"),
  36580. name: "Front",
  36581. image: {
  36582. source: "./media/characters/jrain/front.svg",
  36583. extra: 3039/2865,
  36584. bottom: 399/3438
  36585. }
  36586. },
  36587. back: {
  36588. height: math.unit(6 + 8/12, "feet"),
  36589. weight: math.unit(300, "lb"),
  36590. name: "Back",
  36591. image: {
  36592. source: "./media/characters/jrain/back.svg",
  36593. extra: 3089/2938,
  36594. bottom: 172/3261
  36595. }
  36596. },
  36597. head: {
  36598. height: math.unit(2.14, "feet"),
  36599. name: "Head",
  36600. image: {
  36601. source: "./media/characters/jrain/head.svg"
  36602. }
  36603. },
  36604. maw: {
  36605. height: math.unit(1.77, "feet"),
  36606. name: "Maw",
  36607. image: {
  36608. source: "./media/characters/jrain/maw.svg"
  36609. }
  36610. },
  36611. leftHand: {
  36612. height: math.unit(1.1, "feet"),
  36613. name: "Left Hand",
  36614. image: {
  36615. source: "./media/characters/jrain/left-hand.svg"
  36616. }
  36617. },
  36618. rightHand: {
  36619. height: math.unit(1.1, "feet"),
  36620. name: "Right Hand",
  36621. image: {
  36622. source: "./media/characters/jrain/right-hand.svg"
  36623. }
  36624. },
  36625. eye: {
  36626. height: math.unit(0.35, "feet"),
  36627. name: "Eye",
  36628. image: {
  36629. source: "./media/characters/jrain/eye.svg"
  36630. }
  36631. },
  36632. },
  36633. [
  36634. {
  36635. name: "Normal",
  36636. height: math.unit(6 + 8/12, "feet"),
  36637. default: true
  36638. },
  36639. {
  36640. name: "Casually Large",
  36641. height: math.unit(25, "feet")
  36642. },
  36643. {
  36644. name: "Giant",
  36645. height: math.unit(100, "feet")
  36646. },
  36647. {
  36648. name: "Kaiju",
  36649. height: math.unit(300, "feet")
  36650. },
  36651. ]
  36652. ))
  36653. characterMakers.push(() => makeCharacter(
  36654. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  36655. {
  36656. dragon: {
  36657. height: math.unit(5, "meters"),
  36658. name: "Dragon",
  36659. image: {
  36660. source: "./media/characters/sabrina/dragon.svg",
  36661. extra: 3670 / 2365,
  36662. bottom: 333 / 4003
  36663. }
  36664. },
  36665. gryphon: {
  36666. height: math.unit(3, "meters"),
  36667. name: "Gryphon",
  36668. image: {
  36669. source: "./media/characters/sabrina/gryphon.svg",
  36670. extra: 1576 / 945,
  36671. bottom: 71 / 1647
  36672. }
  36673. },
  36674. snake: {
  36675. height: math.unit(12, "meters"),
  36676. name: "Snake",
  36677. image: {
  36678. source: "./media/characters/sabrina/snake.svg",
  36679. extra: 1758 / 1320,
  36680. bottom: 186 / 1944
  36681. }
  36682. },
  36683. collar: {
  36684. height: math.unit(1.86, "meters"),
  36685. name: "Collar",
  36686. image: {
  36687. source: "./media/characters/sabrina/collar.svg"
  36688. }
  36689. },
  36690. eye: {
  36691. height: math.unit(0.53, "meters"),
  36692. name: "Eye",
  36693. image: {
  36694. source: "./media/characters/sabrina/eye.svg"
  36695. }
  36696. },
  36697. foot: {
  36698. height: math.unit(1.86, "meters"),
  36699. name: "Foot",
  36700. image: {
  36701. source: "./media/characters/sabrina/foot.svg"
  36702. }
  36703. },
  36704. hand: {
  36705. height: math.unit(1.32, "meters"),
  36706. name: "Hand",
  36707. image: {
  36708. source: "./media/characters/sabrina/hand.svg"
  36709. }
  36710. },
  36711. head: {
  36712. height: math.unit(2.44, "meters"),
  36713. name: "Head",
  36714. image: {
  36715. source: "./media/characters/sabrina/head.svg"
  36716. }
  36717. },
  36718. headAngry: {
  36719. height: math.unit(2.44, "meters"),
  36720. name: "Head (Angry))",
  36721. image: {
  36722. source: "./media/characters/sabrina/head-angry.svg"
  36723. }
  36724. },
  36725. maw: {
  36726. height: math.unit(1.65, "meters"),
  36727. name: "Maw",
  36728. image: {
  36729. source: "./media/characters/sabrina/maw.svg"
  36730. }
  36731. },
  36732. spikes: {
  36733. height: math.unit(1.69, "meters"),
  36734. name: "Spikes",
  36735. image: {
  36736. source: "./media/characters/sabrina/spikes.svg"
  36737. }
  36738. },
  36739. stomach: {
  36740. height: math.unit(1.15, "meters"),
  36741. name: "Stomach",
  36742. image: {
  36743. source: "./media/characters/sabrina/stomach.svg"
  36744. }
  36745. },
  36746. tongue: {
  36747. height: math.unit(1.27, "meters"),
  36748. name: "Tongue",
  36749. image: {
  36750. source: "./media/characters/sabrina/tongue.svg"
  36751. }
  36752. },
  36753. wingDorsal: {
  36754. height: math.unit(4.85, "meters"),
  36755. name: "Wing (Dorsal)",
  36756. image: {
  36757. source: "./media/characters/sabrina/wing-dorsal.svg"
  36758. }
  36759. },
  36760. wingVentral: {
  36761. height: math.unit(4.85, "meters"),
  36762. name: "Wing (Ventral)",
  36763. image: {
  36764. source: "./media/characters/sabrina/wing-ventral.svg"
  36765. }
  36766. },
  36767. },
  36768. [
  36769. {
  36770. name: "Normal",
  36771. height: math.unit(5, "meters"),
  36772. default: true
  36773. },
  36774. ]
  36775. ))
  36776. characterMakers.push(() => makeCharacter(
  36777. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  36778. {
  36779. frontMaid: {
  36780. height: math.unit(5 + 5/12, "feet"),
  36781. weight: math.unit(130, "lb"),
  36782. name: "Front (Maid)",
  36783. image: {
  36784. source: "./media/characters/midnight-tales/front-maid.svg",
  36785. extra: 489/454,
  36786. bottom: 61/550
  36787. }
  36788. },
  36789. frontFormal: {
  36790. height: math.unit(5 + 5/12, "feet"),
  36791. weight: math.unit(130, "lb"),
  36792. name: "Front (Formal)",
  36793. image: {
  36794. source: "./media/characters/midnight-tales/front-formal.svg",
  36795. extra: 489/454,
  36796. bottom: 61/550
  36797. }
  36798. },
  36799. back: {
  36800. height: math.unit(5 + 5/12, "feet"),
  36801. weight: math.unit(130, "lb"),
  36802. name: "Back",
  36803. image: {
  36804. source: "./media/characters/midnight-tales/back.svg",
  36805. extra: 498/456,
  36806. bottom: 33/531
  36807. }
  36808. },
  36809. frontBeast: {
  36810. height: math.unit(40, "feet"),
  36811. weight: math.unit(64000, "lb"),
  36812. name: "Front (Beast)",
  36813. image: {
  36814. source: "./media/characters/midnight-tales/front-beast.svg",
  36815. extra: 927/860,
  36816. bottom: 53/980
  36817. }
  36818. },
  36819. backBeast: {
  36820. height: math.unit(40, "feet"),
  36821. weight: math.unit(64000, "lb"),
  36822. name: "Back (Beast)",
  36823. image: {
  36824. source: "./media/characters/midnight-tales/back-beast.svg",
  36825. extra: 929/855,
  36826. bottom: 16/945
  36827. }
  36828. },
  36829. footBeast: {
  36830. height: math.unit(6.7, "feet"),
  36831. name: "Foot (Beast)",
  36832. image: {
  36833. source: "./media/characters/midnight-tales/foot-beast.svg"
  36834. }
  36835. },
  36836. headBeast: {
  36837. height: math.unit(8, "feet"),
  36838. name: "Head (Beast)",
  36839. image: {
  36840. source: "./media/characters/midnight-tales/head-beast.svg"
  36841. }
  36842. },
  36843. },
  36844. [
  36845. {
  36846. name: "Normal",
  36847. height: math.unit(5 + 5 / 12, "feet"),
  36848. default: true
  36849. },
  36850. {
  36851. name: "Macro",
  36852. height: math.unit(25, "feet")
  36853. },
  36854. ]
  36855. ))
  36856. characterMakers.push(() => makeCharacter(
  36857. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36858. {
  36859. front: {
  36860. height: math.unit(6 + 2/12, "feet"),
  36861. weight: math.unit(115, "kg"),
  36862. preyCapacity: math.unit(3, "people"),
  36863. name: "Front",
  36864. image: {
  36865. source: "./media/characters/argon/front.svg",
  36866. extra: 2009/1935,
  36867. bottom: 118/2127
  36868. },
  36869. extraAttributes: {
  36870. "tailLength": {
  36871. name: "Tail Length",
  36872. power: 1,
  36873. type: "length",
  36874. base: math.unit(6, "feet")
  36875. },
  36876. "tailWeight": {
  36877. name: "Tail Weight",
  36878. power: 3,
  36879. type: "mass",
  36880. base: math.unit(40, "kg")
  36881. },
  36882. }
  36883. },
  36884. back: {
  36885. height: math.unit(6 + 2/12, "feet"),
  36886. weight: math.unit(115, "kg"),
  36887. preyCapacity: math.unit(3, "people"),
  36888. name: "Back",
  36889. image: {
  36890. source: "./media/characters/argon/back.svg",
  36891. extra: 2047/1992,
  36892. bottom: 20/2067
  36893. },
  36894. extraAttributes: {
  36895. "tailLength": {
  36896. name: "Tail Length",
  36897. power: 1,
  36898. type: "length",
  36899. base: math.unit(6, "feet")
  36900. },
  36901. "tailWeight": {
  36902. name: "Tail Weight",
  36903. power: 3,
  36904. type: "mass",
  36905. base: math.unit(40, "kg")
  36906. },
  36907. }
  36908. },
  36909. frontDressed: {
  36910. height: math.unit(6 + 2/12, "feet"),
  36911. weight: math.unit(115, "kg"),
  36912. preyCapacity: math.unit(3, "people"),
  36913. name: "Front (Dressed)",
  36914. image: {
  36915. source: "./media/characters/argon/front-dressed.svg",
  36916. extra: 2009/1935,
  36917. bottom: 118/2127
  36918. },
  36919. extraAttributes: {
  36920. "tailLength": {
  36921. name: "Tail Length",
  36922. power: 1,
  36923. type: "length",
  36924. base: math.unit(6, "feet")
  36925. },
  36926. "tailWeight": {
  36927. name: "Tail Weight",
  36928. power: 3,
  36929. type: "mass",
  36930. base: math.unit(40, "kg")
  36931. },
  36932. }
  36933. },
  36934. },
  36935. [
  36936. {
  36937. name: "Minimum",
  36938. height: math.unit(2 + 8/12, "feet")
  36939. },
  36940. {
  36941. name: "Normal",
  36942. height: math.unit(6 + 2/12, "feet"),
  36943. default: true
  36944. },
  36945. {
  36946. name: "Maximum",
  36947. height: math.unit(20, "feet")
  36948. },
  36949. ]
  36950. ))
  36951. characterMakers.push(() => makeCharacter(
  36952. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  36953. {
  36954. front: {
  36955. height: math.unit(8 + 6/12, "feet"),
  36956. weight: math.unit(1150, "lb"),
  36957. name: "Front",
  36958. image: {
  36959. source: "./media/characters/kichi/front.svg",
  36960. extra: 1267/1164,
  36961. bottom: 61/1328
  36962. }
  36963. },
  36964. back: {
  36965. height: math.unit(8 + 6/12, "feet"),
  36966. weight: math.unit(1150, "lb"),
  36967. name: "Back",
  36968. image: {
  36969. source: "./media/characters/kichi/back.svg",
  36970. extra: 1273/1166,
  36971. bottom: 33/1306
  36972. }
  36973. },
  36974. },
  36975. [
  36976. {
  36977. name: "Normal",
  36978. height: math.unit(8 + 6/12, "feet"),
  36979. default: true
  36980. },
  36981. ]
  36982. ))
  36983. characterMakers.push(() => makeCharacter(
  36984. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36985. {
  36986. front: {
  36987. height: math.unit(6, "feet"),
  36988. weight: math.unit(210, "lb"),
  36989. name: "Front",
  36990. image: {
  36991. source: "./media/characters/manetel-greyscale/front.svg",
  36992. extra: 350/312,
  36993. bottom: 8/358
  36994. }
  36995. },
  36996. },
  36997. [
  36998. {
  36999. name: "Micro",
  37000. height: math.unit(2, "inches")
  37001. },
  37002. {
  37003. name: "Normal",
  37004. height: math.unit(6, "feet"),
  37005. default: true
  37006. },
  37007. {
  37008. name: "Minimacro",
  37009. height: math.unit(17, "feet")
  37010. },
  37011. {
  37012. name: "Macro",
  37013. height: math.unit(117, "feet")
  37014. },
  37015. ]
  37016. ))
  37017. characterMakers.push(() => makeCharacter(
  37018. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  37019. {
  37020. side: {
  37021. height: math.unit(5 + 1/12, "feet"),
  37022. weight: math.unit(418, "lb"),
  37023. name: "Side",
  37024. image: {
  37025. source: "./media/characters/softpurr/side.svg",
  37026. extra: 1993/1945,
  37027. bottom: 134/2127
  37028. }
  37029. },
  37030. front: {
  37031. height: math.unit(5 + 1/12, "feet"),
  37032. weight: math.unit(418, "lb"),
  37033. name: "Front",
  37034. image: {
  37035. source: "./media/characters/softpurr/front.svg",
  37036. extra: 1950/1856,
  37037. bottom: 174/2124
  37038. }
  37039. },
  37040. paw: {
  37041. height: math.unit(1, "feet"),
  37042. name: "Paw",
  37043. image: {
  37044. source: "./media/characters/softpurr/paw.svg"
  37045. }
  37046. },
  37047. },
  37048. [
  37049. {
  37050. name: "Normal",
  37051. height: math.unit(5 + 1/12, "feet"),
  37052. default: true
  37053. },
  37054. ]
  37055. ))
  37056. characterMakers.push(() => makeCharacter(
  37057. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  37058. {
  37059. front: {
  37060. height: math.unit(260, "meters"),
  37061. name: "Front",
  37062. image: {
  37063. source: "./media/characters/anahita/front.svg",
  37064. extra: 665/635,
  37065. bottom: 89/754
  37066. }
  37067. },
  37068. },
  37069. [
  37070. {
  37071. name: "Macro",
  37072. height: math.unit(260, "meters"),
  37073. default: true
  37074. },
  37075. ]
  37076. ))
  37077. characterMakers.push(() => makeCharacter(
  37078. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  37079. {
  37080. front: {
  37081. height: math.unit(4 + 10/12, "feet"),
  37082. weight: math.unit(160, "lb"),
  37083. name: "Front",
  37084. image: {
  37085. source: "./media/characters/chip-mouse/front.svg",
  37086. extra: 3528/3408,
  37087. bottom: 0/3528
  37088. }
  37089. },
  37090. frontNsfw: {
  37091. height: math.unit(4 + 10/12, "feet"),
  37092. weight: math.unit(160, "lb"),
  37093. name: "Front (NSFW)",
  37094. image: {
  37095. source: "./media/characters/chip-mouse/front-nsfw.svg",
  37096. extra: 3528/3408,
  37097. bottom: 0/3528
  37098. }
  37099. },
  37100. },
  37101. [
  37102. {
  37103. name: "Normal",
  37104. height: math.unit(4 + 10/12, "feet"),
  37105. default: true
  37106. },
  37107. ]
  37108. ))
  37109. characterMakers.push(() => makeCharacter(
  37110. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  37111. {
  37112. side: {
  37113. height: math.unit(10, "feet"),
  37114. weight: math.unit(14000, "lb"),
  37115. name: "Side",
  37116. image: {
  37117. source: "./media/characters/kremm/side.svg",
  37118. extra: 1390/1053,
  37119. bottom: 90/1480
  37120. }
  37121. },
  37122. gut: {
  37123. height: math.unit(5.8, "feet"),
  37124. name: "Gut",
  37125. image: {
  37126. source: "./media/characters/kremm/gut.svg"
  37127. }
  37128. },
  37129. ass: {
  37130. height: math.unit(6.1, "feet"),
  37131. name: "Ass",
  37132. image: {
  37133. source: "./media/characters/kremm/ass.svg"
  37134. }
  37135. },
  37136. jaws: {
  37137. height: math.unit(2.2, "feet"),
  37138. name: "Jaws",
  37139. image: {
  37140. source: "./media/characters/kremm/jaws.svg"
  37141. }
  37142. },
  37143. dick: {
  37144. height: math.unit(4.26, "feet"),
  37145. name: "Dick",
  37146. image: {
  37147. source: "./media/characters/kremm/dick.svg"
  37148. }
  37149. },
  37150. },
  37151. [
  37152. {
  37153. name: "Normal",
  37154. height: math.unit(10, "feet"),
  37155. default: true
  37156. },
  37157. ]
  37158. ))
  37159. characterMakers.push(() => makeCharacter(
  37160. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  37161. {
  37162. front: {
  37163. height: math.unit(30, "stories"),
  37164. name: "Front",
  37165. image: {
  37166. source: "./media/characters/kai/front.svg",
  37167. extra: 1892/1718,
  37168. bottom: 162/2054
  37169. }
  37170. },
  37171. },
  37172. [
  37173. {
  37174. name: "Macro",
  37175. height: math.unit(30, "stories"),
  37176. default: true
  37177. },
  37178. ]
  37179. ))
  37180. characterMakers.push(() => makeCharacter(
  37181. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  37182. {
  37183. front: {
  37184. height: math.unit(6 + 4/12, "feet"),
  37185. weight: math.unit(145, "lb"),
  37186. name: "Front",
  37187. image: {
  37188. source: "./media/characters/sykes/front.svg",
  37189. extra: 1321 / 1187,
  37190. bottom: 66 / 1387
  37191. }
  37192. },
  37193. back: {
  37194. height: math.unit(6 + 4/12, "feet"),
  37195. weight: math.unit(145, "lb"),
  37196. name: "Back",
  37197. image: {
  37198. source: "./media/characters/sykes/back.svg",
  37199. extra: 1326/1181,
  37200. bottom: 31/1357
  37201. }
  37202. },
  37203. traditionalOutfit: {
  37204. height: math.unit(6 + 4/12, "feet"),
  37205. weight: math.unit(145, "lb"),
  37206. name: "Traditional Outfit",
  37207. image: {
  37208. source: "./media/characters/sykes/traditional-outfit.svg",
  37209. extra: 1321 / 1187,
  37210. bottom: 66 / 1387
  37211. }
  37212. },
  37213. adventureOutfit: {
  37214. height: math.unit(6 + 4/12, "feet"),
  37215. weight: math.unit(145, "lb"),
  37216. name: "Adventure Outfit",
  37217. image: {
  37218. source: "./media/characters/sykes/adventure-outfit.svg",
  37219. extra: 1321 / 1187,
  37220. bottom: 66 / 1387
  37221. }
  37222. },
  37223. handLeft: {
  37224. height: math.unit(0.9, "feet"),
  37225. name: "Hand (Left)",
  37226. image: {
  37227. source: "./media/characters/sykes/hand-left.svg"
  37228. }
  37229. },
  37230. handRight: {
  37231. height: math.unit(0.839, "feet"),
  37232. name: "Hand (Right)",
  37233. image: {
  37234. source: "./media/characters/sykes/hand-right.svg"
  37235. }
  37236. },
  37237. leftFoot: {
  37238. height: math.unit(1.2, "feet"),
  37239. name: "Foot (Left)",
  37240. image: {
  37241. source: "./media/characters/sykes/foot-left.svg"
  37242. }
  37243. },
  37244. rightFoot: {
  37245. height: math.unit(1.2, "feet"),
  37246. name: "Foot (Right)",
  37247. image: {
  37248. source: "./media/characters/sykes/foot-right.svg"
  37249. }
  37250. },
  37251. maw: {
  37252. height: math.unit(1.93, "feet"),
  37253. name: "Maw",
  37254. image: {
  37255. source: "./media/characters/sykes/maw.svg"
  37256. }
  37257. },
  37258. teeth: {
  37259. height: math.unit(0.51, "feet"),
  37260. name: "Teeth",
  37261. image: {
  37262. source: "./media/characters/sykes/teeth.svg"
  37263. }
  37264. },
  37265. tongue: {
  37266. height: math.unit(2.13, "feet"),
  37267. name: "Tongue",
  37268. image: {
  37269. source: "./media/characters/sykes/tongue.svg"
  37270. }
  37271. },
  37272. uvula: {
  37273. height: math.unit(0.16, "feet"),
  37274. name: "Uvula",
  37275. image: {
  37276. source: "./media/characters/sykes/uvula.svg"
  37277. }
  37278. },
  37279. collar: {
  37280. height: math.unit(0.287, "feet"),
  37281. name: "Collar",
  37282. image: {
  37283. source: "./media/characters/sykes/collar.svg"
  37284. }
  37285. },
  37286. tail: {
  37287. height: math.unit(3.8, "feet"),
  37288. name: "Tail",
  37289. image: {
  37290. source: "./media/characters/sykes/tail.svg"
  37291. }
  37292. },
  37293. },
  37294. [
  37295. {
  37296. name: "Shrunken",
  37297. height: math.unit(5, "inches")
  37298. },
  37299. {
  37300. name: "Normal",
  37301. height: math.unit(6 + 4 / 12, "feet"),
  37302. default: true
  37303. },
  37304. {
  37305. name: "Big",
  37306. height: math.unit(15, "feet")
  37307. },
  37308. ]
  37309. ))
  37310. characterMakers.push(() => makeCharacter(
  37311. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  37312. {
  37313. front: {
  37314. height: math.unit(5 + 8/12, "feet"),
  37315. weight: math.unit(190, "lb"),
  37316. name: "Front",
  37317. image: {
  37318. source: "./media/characters/oven-otter/front.svg",
  37319. extra: 1809/1740,
  37320. bottom: 181/1990
  37321. }
  37322. },
  37323. back: {
  37324. height: math.unit(5 + 8/12, "feet"),
  37325. weight: math.unit(190, "lb"),
  37326. name: "Back",
  37327. image: {
  37328. source: "./media/characters/oven-otter/back.svg",
  37329. extra: 1709/1635,
  37330. bottom: 118/1827
  37331. }
  37332. },
  37333. hand: {
  37334. height: math.unit(1.07, "feet"),
  37335. name: "Hand",
  37336. image: {
  37337. source: "./media/characters/oven-otter/hand.svg"
  37338. }
  37339. },
  37340. beans: {
  37341. height: math.unit(1.74, "feet"),
  37342. name: "Beans",
  37343. image: {
  37344. source: "./media/characters/oven-otter/beans.svg"
  37345. }
  37346. },
  37347. },
  37348. [
  37349. {
  37350. name: "Micro",
  37351. height: math.unit(0.5, "inches")
  37352. },
  37353. {
  37354. name: "Normal",
  37355. height: math.unit(5 + 8/12, "feet"),
  37356. default: true
  37357. },
  37358. {
  37359. name: "Macro",
  37360. height: math.unit(250, "feet")
  37361. },
  37362. {
  37363. name: "Really High",
  37364. height: math.unit(420, "feet")
  37365. },
  37366. ]
  37367. ))
  37368. characterMakers.push(() => makeCharacter(
  37369. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  37370. {
  37371. front: {
  37372. height: math.unit(5, "meters"),
  37373. weight: math.unit(292000000000000, "kg"),
  37374. name: "Front",
  37375. image: {
  37376. source: "./media/characters/devourer/front.svg",
  37377. extra: 1800/1733,
  37378. bottom: 211/2011
  37379. }
  37380. },
  37381. maw: {
  37382. height: math.unit(1.1, "meter"),
  37383. name: "Maw",
  37384. image: {
  37385. source: "./media/characters/devourer/maw.svg"
  37386. }
  37387. },
  37388. },
  37389. [
  37390. {
  37391. name: "Small",
  37392. height: math.unit(3, "meters")
  37393. },
  37394. {
  37395. name: "Large",
  37396. height: math.unit(5, "meters"),
  37397. default: true
  37398. },
  37399. ]
  37400. ))
  37401. characterMakers.push(() => makeCharacter(
  37402. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  37403. {
  37404. front: {
  37405. height: math.unit(6, "feet"),
  37406. weight: math.unit(400, "lb"),
  37407. name: "Front",
  37408. image: {
  37409. source: "./media/characters/ellarby/front.svg",
  37410. extra: 1909/1763,
  37411. bottom: 80/1989
  37412. }
  37413. },
  37414. back: {
  37415. height: math.unit(6, "feet"),
  37416. weight: math.unit(400, "lb"),
  37417. name: "Back",
  37418. image: {
  37419. source: "./media/characters/ellarby/back.svg",
  37420. extra: 1914/1784,
  37421. bottom: 172/2086
  37422. }
  37423. },
  37424. },
  37425. [
  37426. {
  37427. name: "Mischief",
  37428. height: math.unit(18, "inches")
  37429. },
  37430. {
  37431. name: "Trouble",
  37432. height: math.unit(12, "feet")
  37433. },
  37434. {
  37435. name: "Havoc",
  37436. height: math.unit(200, "feet"),
  37437. default: true
  37438. },
  37439. {
  37440. name: "Pandemonium",
  37441. height: math.unit(1, "mile")
  37442. },
  37443. {
  37444. name: "Catastrophe",
  37445. height: math.unit(100, "miles")
  37446. },
  37447. ]
  37448. ))
  37449. characterMakers.push(() => makeCharacter(
  37450. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  37451. {
  37452. front: {
  37453. height: math.unit(4.7, "meters"),
  37454. weight: math.unit(6500, "kg"),
  37455. name: "Front",
  37456. image: {
  37457. source: "./media/characters/vex/front.svg",
  37458. extra: 1288/1140,
  37459. bottom: 100/1388
  37460. }
  37461. },
  37462. },
  37463. [
  37464. {
  37465. name: "Normal",
  37466. height: math.unit(4.7, "meters"),
  37467. default: true
  37468. },
  37469. ]
  37470. ))
  37471. characterMakers.push(() => makeCharacter(
  37472. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  37473. {
  37474. normal: {
  37475. height: math.unit(6, "feet"),
  37476. weight: math.unit(350, "lb"),
  37477. name: "Normal",
  37478. image: {
  37479. source: "./media/characters/teshy/normal.svg",
  37480. extra: 1795/1735,
  37481. bottom: 16/1811
  37482. }
  37483. },
  37484. monsterFront: {
  37485. height: math.unit(12, "feet"),
  37486. weight: math.unit(4700, "lb"),
  37487. name: "Monster (Front)",
  37488. image: {
  37489. source: "./media/characters/teshy/monster-front.svg",
  37490. extra: 2042/2034,
  37491. bottom: 128/2170
  37492. }
  37493. },
  37494. monsterSide: {
  37495. height: math.unit(12, "feet"),
  37496. weight: math.unit(4700, "lb"),
  37497. name: "Monster (Side)",
  37498. image: {
  37499. source: "./media/characters/teshy/monster-side.svg",
  37500. extra: 2067/2056,
  37501. bottom: 70/2137
  37502. }
  37503. },
  37504. monsterBack: {
  37505. height: math.unit(12, "feet"),
  37506. weight: math.unit(4700, "lb"),
  37507. name: "Monster (Back)",
  37508. image: {
  37509. source: "./media/characters/teshy/monster-back.svg",
  37510. extra: 1921/1914,
  37511. bottom: 171/2092
  37512. }
  37513. },
  37514. },
  37515. [
  37516. {
  37517. name: "Normal",
  37518. height: math.unit(6, "feet"),
  37519. default: true
  37520. },
  37521. ]
  37522. ))
  37523. characterMakers.push(() => makeCharacter(
  37524. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  37525. {
  37526. front: {
  37527. height: math.unit(6, "feet"),
  37528. name: "Front",
  37529. image: {
  37530. source: "./media/characters/ramey/front.svg",
  37531. extra: 790/787,
  37532. bottom: 27/817
  37533. }
  37534. },
  37535. },
  37536. [
  37537. {
  37538. name: "Normal",
  37539. height: math.unit(6, "feet"),
  37540. default: true
  37541. },
  37542. ]
  37543. ))
  37544. characterMakers.push(() => makeCharacter(
  37545. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  37546. {
  37547. front: {
  37548. height: math.unit(5 + 5/12, "feet"),
  37549. weight: math.unit(120, "lb"),
  37550. name: "Front",
  37551. image: {
  37552. source: "./media/characters/phirae/front.svg",
  37553. extra: 2491/2436,
  37554. bottom: 38/2529
  37555. }
  37556. },
  37557. },
  37558. [
  37559. {
  37560. name: "Normal",
  37561. height: math.unit(5 + 5/12, "feet"),
  37562. default: true
  37563. },
  37564. ]
  37565. ))
  37566. characterMakers.push(() => makeCharacter(
  37567. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  37568. {
  37569. front: {
  37570. height: math.unit(5 + 3/12, "feet"),
  37571. name: "Front",
  37572. image: {
  37573. source: "./media/characters/stagglas/front.svg",
  37574. extra: 962/882,
  37575. bottom: 53/1015
  37576. }
  37577. },
  37578. feral: {
  37579. height: math.unit(335, "cm"),
  37580. name: "Feral",
  37581. image: {
  37582. source: "./media/characters/stagglas/feral.svg",
  37583. extra: 1732/1090,
  37584. bottom: 48/1780
  37585. }
  37586. },
  37587. },
  37588. [
  37589. {
  37590. name: "Normal",
  37591. height: math.unit(5 + 3/12, "feet"),
  37592. default: true
  37593. },
  37594. ]
  37595. ))
  37596. characterMakers.push(() => makeCharacter(
  37597. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  37598. {
  37599. front: {
  37600. height: math.unit(5 + 4/12, "feet"),
  37601. weight: math.unit(145, "lb"),
  37602. name: "Front",
  37603. image: {
  37604. source: "./media/characters/starra/front.svg",
  37605. extra: 1790/1691,
  37606. bottom: 91/1881
  37607. }
  37608. },
  37609. },
  37610. [
  37611. {
  37612. name: "Normal",
  37613. height: math.unit(5 + 4/12, "feet"),
  37614. default: true
  37615. },
  37616. ]
  37617. ))
  37618. characterMakers.push(() => makeCharacter(
  37619. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  37620. {
  37621. front: {
  37622. height: math.unit(3.5, "meters"),
  37623. name: "Front",
  37624. image: {
  37625. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  37626. extra: 1248/972,
  37627. bottom: 38/1286
  37628. }
  37629. },
  37630. },
  37631. [
  37632. {
  37633. name: "Normal",
  37634. height: math.unit(3.5, "meters"),
  37635. default: true
  37636. },
  37637. ]
  37638. ))
  37639. characterMakers.push(() => makeCharacter(
  37640. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  37641. {
  37642. side: {
  37643. height: math.unit(8 + 2/12, "feet"),
  37644. weight: math.unit(1240, "lb"),
  37645. name: "Side",
  37646. image: {
  37647. source: "./media/characters/mika-valentine/side.svg",
  37648. extra: 2670/2501,
  37649. bottom: 250/2920
  37650. }
  37651. },
  37652. },
  37653. [
  37654. {
  37655. name: "Normal",
  37656. height: math.unit(8 + 2/12, "feet"),
  37657. default: true
  37658. },
  37659. ]
  37660. ))
  37661. characterMakers.push(() => makeCharacter(
  37662. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  37663. {
  37664. front: {
  37665. height: math.unit(7 + 2/12, "feet"),
  37666. name: "Front",
  37667. image: {
  37668. source: "./media/characters/xoltol/front.svg",
  37669. extra: 2212/2124,
  37670. bottom: 84/2296
  37671. }
  37672. },
  37673. side: {
  37674. height: math.unit(7 + 2/12, "feet"),
  37675. name: "Side",
  37676. image: {
  37677. source: "./media/characters/xoltol/side.svg",
  37678. extra: 2273/2197,
  37679. bottom: 26/2299
  37680. }
  37681. },
  37682. hand: {
  37683. height: math.unit(2.5, "feet"),
  37684. name: "Hand",
  37685. image: {
  37686. source: "./media/characters/xoltol/hand.svg"
  37687. }
  37688. },
  37689. },
  37690. [
  37691. {
  37692. name: "Small-ish",
  37693. height: math.unit(5 + 11/12, "feet")
  37694. },
  37695. {
  37696. name: "Normal",
  37697. height: math.unit(7 + 2/12, "feet")
  37698. },
  37699. {
  37700. name: "\"Macro\"",
  37701. height: math.unit(14 + 9/12, "feet"),
  37702. default: true
  37703. },
  37704. {
  37705. name: "Alternate Height",
  37706. height: math.unit(20, "feet")
  37707. },
  37708. {
  37709. name: "Actually Macro",
  37710. height: math.unit(100, "feet")
  37711. },
  37712. ]
  37713. ))
  37714. characterMakers.push(() => makeCharacter(
  37715. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  37716. {
  37717. front: {
  37718. height: math.unit(5 + 2/12, "feet"),
  37719. weight: math.unit(75, "kg"),
  37720. name: "Front",
  37721. image: {
  37722. source: "./media/characters/kotetsu-redwood/front.svg",
  37723. extra: 1053/942,
  37724. bottom: 60/1113
  37725. }
  37726. },
  37727. },
  37728. [
  37729. {
  37730. name: "Normal",
  37731. height: math.unit(5 + 2/12, "feet"),
  37732. default: true
  37733. },
  37734. ]
  37735. ))
  37736. characterMakers.push(() => makeCharacter(
  37737. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  37738. {
  37739. front: {
  37740. height: math.unit(2.4, "meters"),
  37741. weight: math.unit(125, "kg"),
  37742. name: "Front",
  37743. image: {
  37744. source: "./media/characters/lilith/front.svg",
  37745. extra: 1590/1513,
  37746. bottom: 203/1793
  37747. }
  37748. },
  37749. },
  37750. [
  37751. {
  37752. name: "Humanoid",
  37753. height: math.unit(2.4, "meters")
  37754. },
  37755. {
  37756. name: "Normal",
  37757. height: math.unit(6, "meters"),
  37758. default: true
  37759. },
  37760. {
  37761. name: "Largest",
  37762. height: math.unit(55, "meters")
  37763. },
  37764. ]
  37765. ))
  37766. characterMakers.push(() => makeCharacter(
  37767. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  37768. {
  37769. front: {
  37770. height: math.unit(8 + 4/12, "feet"),
  37771. weight: math.unit(535, "lb"),
  37772. name: "Front",
  37773. image: {
  37774. source: "./media/characters/beh'kah-bolger/front.svg",
  37775. extra: 1660/1603,
  37776. bottom: 37/1697
  37777. }
  37778. },
  37779. },
  37780. [
  37781. {
  37782. name: "Normal",
  37783. height: math.unit(8 + 4/12, "feet"),
  37784. default: true
  37785. },
  37786. {
  37787. name: "Kaiju",
  37788. height: math.unit(250, "feet")
  37789. },
  37790. {
  37791. name: "Still Growing",
  37792. height: math.unit(10, "miles")
  37793. },
  37794. {
  37795. name: "Continental",
  37796. height: math.unit(5000, "miles")
  37797. },
  37798. {
  37799. name: "Final Form",
  37800. height: math.unit(2500000, "miles")
  37801. },
  37802. ]
  37803. ))
  37804. characterMakers.push(() => makeCharacter(
  37805. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  37806. {
  37807. front: {
  37808. height: math.unit(7 + 2/12, "feet"),
  37809. weight: math.unit(230, "kg"),
  37810. name: "Front",
  37811. image: {
  37812. source: "./media/characters/tatyana-milewska/front.svg",
  37813. extra: 1199/1150,
  37814. bottom: 86/1285
  37815. }
  37816. },
  37817. },
  37818. [
  37819. {
  37820. name: "Normal",
  37821. height: math.unit(7 + 2/12, "feet"),
  37822. default: true
  37823. },
  37824. {
  37825. name: "Big",
  37826. height: math.unit(12, "feet")
  37827. },
  37828. {
  37829. name: "Minimacro",
  37830. height: math.unit(20, "feet")
  37831. },
  37832. {
  37833. name: "Macro",
  37834. height: math.unit(120, "feet")
  37835. },
  37836. ]
  37837. ))
  37838. characterMakers.push(() => makeCharacter(
  37839. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  37840. {
  37841. front: {
  37842. height: math.unit(7 + 8/12, "feet"),
  37843. weight: math.unit(152, "kg"),
  37844. name: "Front",
  37845. image: {
  37846. source: "./media/characters/helen-arri/front.svg",
  37847. extra: 440/423,
  37848. bottom: 14/454
  37849. }
  37850. },
  37851. back: {
  37852. height: math.unit(7 + 8/12, "feet"),
  37853. weight: math.unit(152, "kg"),
  37854. name: "Back",
  37855. image: {
  37856. source: "./media/characters/helen-arri/back.svg",
  37857. extra: 443/426,
  37858. bottom: 8/451
  37859. }
  37860. },
  37861. },
  37862. [
  37863. {
  37864. name: "Normal",
  37865. height: math.unit(7 + 8/12, "feet"),
  37866. default: true
  37867. },
  37868. {
  37869. name: "Big",
  37870. height: math.unit(14, "feet")
  37871. },
  37872. {
  37873. name: "Minimacro",
  37874. height: math.unit(24, "feet")
  37875. },
  37876. {
  37877. name: "Macro",
  37878. height: math.unit(140, "feet")
  37879. },
  37880. ]
  37881. ))
  37882. characterMakers.push(() => makeCharacter(
  37883. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  37884. {
  37885. front: {
  37886. height: math.unit(6, "meters"),
  37887. name: "Front",
  37888. image: {
  37889. source: "./media/characters/ehanu-rehu/front.svg",
  37890. extra: 1800/1800,
  37891. bottom: 59/1859
  37892. }
  37893. },
  37894. },
  37895. [
  37896. {
  37897. name: "Normal",
  37898. height: math.unit(6, "meters"),
  37899. default: true
  37900. },
  37901. ]
  37902. ))
  37903. characterMakers.push(() => makeCharacter(
  37904. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  37905. {
  37906. front: {
  37907. height: math.unit(7 + 3/12, "feet"),
  37908. name: "Front",
  37909. image: {
  37910. source: "./media/characters/renholder/front.svg",
  37911. extra: 3096/2960,
  37912. bottom: 250/3346
  37913. }
  37914. },
  37915. },
  37916. [
  37917. {
  37918. name: "Normal Bat",
  37919. height: math.unit(7 + 3/12, "feet"),
  37920. default: true
  37921. },
  37922. {
  37923. name: "Slightly Tall Bat",
  37924. height: math.unit(100, "feet")
  37925. },
  37926. {
  37927. name: "Big Bat",
  37928. height: math.unit(1000, "feet")
  37929. },
  37930. {
  37931. name: "City-Sized Bat",
  37932. height: math.unit(200000, "feet")
  37933. },
  37934. {
  37935. name: "Bigger Bat",
  37936. height: math.unit(10000, "miles")
  37937. },
  37938. {
  37939. name: "Solar Sized Bat",
  37940. height: math.unit(100, "AU")
  37941. },
  37942. {
  37943. name: "Galactic Bat",
  37944. height: math.unit(200000, "lightyears")
  37945. },
  37946. {
  37947. name: "Universally Known Bat",
  37948. height: math.unit(1, "universe")
  37949. },
  37950. ]
  37951. ))
  37952. characterMakers.push(() => makeCharacter(
  37953. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  37954. {
  37955. front: {
  37956. height: math.unit(6 + 11/12, "feet"),
  37957. weight: math.unit(250, "lb"),
  37958. name: "Front",
  37959. image: {
  37960. source: "./media/characters/cookiecat/front.svg",
  37961. extra: 893/827,
  37962. bottom: 14/907
  37963. }
  37964. },
  37965. },
  37966. [
  37967. {
  37968. name: "Micro",
  37969. height: math.unit(3, "inches")
  37970. },
  37971. {
  37972. name: "Normal",
  37973. height: math.unit(6 + 11/12, "feet"),
  37974. default: true
  37975. },
  37976. {
  37977. name: "Macro",
  37978. height: math.unit(100, "feet")
  37979. },
  37980. {
  37981. name: "Macro+",
  37982. height: math.unit(404, "feet")
  37983. },
  37984. {
  37985. name: "Megamacro",
  37986. height: math.unit(165, "miles")
  37987. },
  37988. {
  37989. name: "Planetary",
  37990. height: math.unit(4600, "miles")
  37991. },
  37992. ]
  37993. ))
  37994. characterMakers.push(() => makeCharacter(
  37995. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  37996. {
  37997. front: {
  37998. height: math.unit(10 + 3/12, "feet"),
  37999. weight: math.unit(1500, "lb"),
  38000. name: "Front",
  38001. image: {
  38002. source: "./media/characters/tux-kusanagi/front.svg",
  38003. extra: 944/840,
  38004. bottom: 39/983
  38005. }
  38006. },
  38007. back: {
  38008. height: math.unit(10 + 3/12, "feet"),
  38009. weight: math.unit(1500, "lb"),
  38010. name: "Back",
  38011. image: {
  38012. source: "./media/characters/tux-kusanagi/back.svg",
  38013. extra: 941/842,
  38014. bottom: 28/969
  38015. }
  38016. },
  38017. rump: {
  38018. height: math.unit(5.25, "feet"),
  38019. name: "Rump",
  38020. image: {
  38021. source: "./media/characters/tux-kusanagi/rump.svg"
  38022. }
  38023. },
  38024. beak: {
  38025. height: math.unit(1.54, "feet"),
  38026. name: "Beak",
  38027. image: {
  38028. source: "./media/characters/tux-kusanagi/beak.svg"
  38029. }
  38030. },
  38031. },
  38032. [
  38033. {
  38034. name: "Normal",
  38035. height: math.unit(10 + 3/12, "feet"),
  38036. default: true
  38037. },
  38038. ]
  38039. ))
  38040. characterMakers.push(() => makeCharacter(
  38041. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  38042. {
  38043. front: {
  38044. height: math.unit(58, "feet"),
  38045. weight: math.unit(200, "tons"),
  38046. name: "Front",
  38047. image: {
  38048. source: "./media/characters/uzarmazari/front.svg",
  38049. extra: 1575/1455,
  38050. bottom: 152/1727
  38051. }
  38052. },
  38053. back: {
  38054. height: math.unit(58, "feet"),
  38055. weight: math.unit(200, "tons"),
  38056. name: "Back",
  38057. image: {
  38058. source: "./media/characters/uzarmazari/back.svg",
  38059. extra: 1585/1510,
  38060. bottom: 157/1742
  38061. }
  38062. },
  38063. head: {
  38064. height: math.unit(26, "feet"),
  38065. name: "Head",
  38066. image: {
  38067. source: "./media/characters/uzarmazari/head.svg"
  38068. }
  38069. },
  38070. },
  38071. [
  38072. {
  38073. name: "Normal",
  38074. height: math.unit(58, "feet"),
  38075. default: true
  38076. },
  38077. ]
  38078. ))
  38079. characterMakers.push(() => makeCharacter(
  38080. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  38081. {
  38082. side: {
  38083. height: math.unit(15, "feet"),
  38084. name: "Side",
  38085. image: {
  38086. source: "./media/characters/akitu/side.svg",
  38087. extra: 1421/1321,
  38088. bottom: 157/1578
  38089. }
  38090. },
  38091. front: {
  38092. height: math.unit(15, "feet"),
  38093. name: "Front",
  38094. image: {
  38095. source: "./media/characters/akitu/front.svg",
  38096. extra: 1435/1326,
  38097. bottom: 232/1667
  38098. }
  38099. },
  38100. },
  38101. [
  38102. {
  38103. name: "Normal",
  38104. height: math.unit(15, "feet"),
  38105. default: true
  38106. },
  38107. ]
  38108. ))
  38109. characterMakers.push(() => makeCharacter(
  38110. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  38111. {
  38112. front: {
  38113. height: math.unit(10 + 8/12, "feet"),
  38114. name: "Front",
  38115. image: {
  38116. source: "./media/characters/azalie-croixland/front.svg",
  38117. extra: 1972/1856,
  38118. bottom: 31/2003
  38119. }
  38120. },
  38121. },
  38122. [
  38123. {
  38124. name: "Original Height",
  38125. height: math.unit(5 + 4/12, "feet")
  38126. },
  38127. {
  38128. name: "Normal Height",
  38129. height: math.unit(10 + 8/12, "feet"),
  38130. default: true
  38131. },
  38132. ]
  38133. ))
  38134. characterMakers.push(() => makeCharacter(
  38135. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  38136. {
  38137. side: {
  38138. height: math.unit(7 + 1/12, "feet"),
  38139. weight: math.unit(245, "lb"),
  38140. name: "Side",
  38141. image: {
  38142. source: "./media/characters/kavus-kazian/side.svg",
  38143. extra: 349/342,
  38144. bottom: 15/364
  38145. }
  38146. },
  38147. },
  38148. [
  38149. {
  38150. name: "Normal",
  38151. height: math.unit(7 + 1/12, "feet"),
  38152. default: true
  38153. },
  38154. ]
  38155. ))
  38156. characterMakers.push(() => makeCharacter(
  38157. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  38158. {
  38159. normalFront: {
  38160. height: math.unit(5 + 11/12, "feet"),
  38161. name: "Front",
  38162. image: {
  38163. source: "./media/characters/moonlight-rose/normal-front.svg",
  38164. extra: 1980/1825,
  38165. bottom: 18/1998
  38166. },
  38167. form: "normal",
  38168. default: true
  38169. },
  38170. normalBack: {
  38171. height: math.unit(5 + 11/12, "feet"),
  38172. name: "Back",
  38173. image: {
  38174. source: "./media/characters/moonlight-rose/normal-back.svg",
  38175. extra: 2010/1839,
  38176. bottom: 10/2020
  38177. },
  38178. form: "normal"
  38179. },
  38180. demonFront: {
  38181. height: math.unit(1.5, "earths"),
  38182. name: "Front",
  38183. image: {
  38184. source: "./media/characters/moonlight-rose/demon.svg",
  38185. extra: 1400/1294,
  38186. bottom: 45/1445
  38187. },
  38188. form: "demon",
  38189. default: true
  38190. },
  38191. terraFront: {
  38192. height: math.unit(1.5, "earths"),
  38193. name: "Front",
  38194. image: {
  38195. source: "./media/characters/moonlight-rose/terra.svg"
  38196. },
  38197. form: "terra",
  38198. default: true
  38199. },
  38200. jupiterFront: {
  38201. height: math.unit(69911*2, "km"),
  38202. name: "Front",
  38203. image: {
  38204. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  38205. extra: 1367/1286,
  38206. bottom: 55/1422
  38207. },
  38208. form: "jupiter",
  38209. default: true
  38210. },
  38211. neptuneFront: {
  38212. height: math.unit(24622*2, "feet"),
  38213. name: "Front",
  38214. image: {
  38215. source: "./media/characters/moonlight-rose/neptune-front.svg",
  38216. extra: 1851/1712,
  38217. bottom: 0/1851
  38218. },
  38219. form: "neptune",
  38220. default: true
  38221. },
  38222. },
  38223. [
  38224. {
  38225. name: "\"Natural\" Height",
  38226. height: math.unit(5 + 11/12, "feet"),
  38227. form: "normal"
  38228. },
  38229. {
  38230. name: "Smallest comfortable size",
  38231. height: math.unit(40, "meters"),
  38232. form: "normal"
  38233. },
  38234. {
  38235. name: "Common size",
  38236. height: math.unit(50, "km"),
  38237. form: "normal",
  38238. default: true
  38239. },
  38240. {
  38241. name: "Normal",
  38242. height: math.unit(1.5, "earths"),
  38243. form: "demon",
  38244. default: true
  38245. },
  38246. {
  38247. name: "Universal",
  38248. height: math.unit(15, "universes"),
  38249. form: "demon"
  38250. },
  38251. {
  38252. name: "Earth",
  38253. height: math.unit(1.5, "earths"),
  38254. form: "terra",
  38255. default: true
  38256. },
  38257. {
  38258. name: "Super Earth",
  38259. height: math.unit(67.5, "earths"),
  38260. form: "terra"
  38261. },
  38262. {
  38263. name: "Doesn't fit in a solar system...",
  38264. height: math.unit(1, "galaxy"),
  38265. form: "terra"
  38266. },
  38267. {
  38268. name: "Saturn",
  38269. height: math.unit(58232*2, "km"),
  38270. form: "jupiter"
  38271. },
  38272. {
  38273. name: "Jupiter",
  38274. height: math.unit(69911*2, "km"),
  38275. form: "jupiter",
  38276. default: true
  38277. },
  38278. {
  38279. name: "HD 100546 b",
  38280. height: math.unit(482938, "km"),
  38281. form: "jupiter"
  38282. },
  38283. {
  38284. name: "Enceladus",
  38285. height: math.unit(513*2, "km"),
  38286. form: "neptune"
  38287. },
  38288. {
  38289. name: "Europe",
  38290. height: math.unit(1560*2, "km"),
  38291. form: "neptune"
  38292. },
  38293. {
  38294. name: "Neptune",
  38295. height: math.unit(24622*2, "km"),
  38296. form: "neptune",
  38297. default: true
  38298. },
  38299. {
  38300. name: "CoRoT-9b",
  38301. height: math.unit(75067*2, "km"),
  38302. form: "neptune"
  38303. },
  38304. ],
  38305. {
  38306. "normal": {
  38307. name: "Normal",
  38308. default: true
  38309. },
  38310. "demon": {
  38311. name: "Demon"
  38312. },
  38313. "terra": {
  38314. name: "Terra"
  38315. },
  38316. "jupiter": {
  38317. name: "Jupiter"
  38318. },
  38319. "neptune": {
  38320. name: "Neptune"
  38321. }
  38322. }
  38323. ))
  38324. characterMakers.push(() => makeCharacter(
  38325. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  38326. {
  38327. front: {
  38328. height: math.unit(16, "feet"),
  38329. weight: math.unit(610, "kg"),
  38330. name: "Front",
  38331. image: {
  38332. source: "./media/characters/huckle/front.svg",
  38333. extra: 1731/1625,
  38334. bottom: 33/1764
  38335. }
  38336. },
  38337. back: {
  38338. height: math.unit(16, "feet"),
  38339. weight: math.unit(610, "kg"),
  38340. name: "Back",
  38341. image: {
  38342. source: "./media/characters/huckle/back.svg",
  38343. extra: 1738/1651,
  38344. bottom: 37/1775
  38345. }
  38346. },
  38347. laughing: {
  38348. height: math.unit(3.75, "feet"),
  38349. name: "Laughing",
  38350. image: {
  38351. source: "./media/characters/huckle/laughing.svg"
  38352. }
  38353. },
  38354. angry: {
  38355. height: math.unit(4.15, "feet"),
  38356. name: "Angry",
  38357. image: {
  38358. source: "./media/characters/huckle/angry.svg"
  38359. }
  38360. },
  38361. },
  38362. [
  38363. {
  38364. name: "Normal",
  38365. height: math.unit(16, "feet"),
  38366. default: true
  38367. },
  38368. {
  38369. name: "Mini Macro",
  38370. height: math.unit(463, "feet")
  38371. },
  38372. {
  38373. name: "Macro",
  38374. height: math.unit(1680, "meters")
  38375. },
  38376. {
  38377. name: "Mega Macro",
  38378. height: math.unit(175, "km")
  38379. },
  38380. {
  38381. name: "Terra Macro",
  38382. height: math.unit(32, "gigameters")
  38383. },
  38384. {
  38385. name: "Multiverse+",
  38386. height: math.unit(2.56e23, "yottameters")
  38387. },
  38388. ]
  38389. ))
  38390. characterMakers.push(() => makeCharacter(
  38391. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  38392. {
  38393. front: {
  38394. height: math.unit(6 + 9/12, "feet"),
  38395. weight: math.unit(280, "lb"),
  38396. name: "Front",
  38397. image: {
  38398. source: "./media/characters/candy/front.svg",
  38399. extra: 234/217,
  38400. bottom: 11/245
  38401. }
  38402. },
  38403. },
  38404. [
  38405. {
  38406. name: "Really Small",
  38407. height: math.unit(0.1, "nm")
  38408. },
  38409. {
  38410. name: "Micro",
  38411. height: math.unit(2, "inches")
  38412. },
  38413. {
  38414. name: "Normal",
  38415. height: math.unit(6 + 9/12, "feet"),
  38416. default: true
  38417. },
  38418. {
  38419. name: "Small Macro",
  38420. height: math.unit(69, "feet")
  38421. },
  38422. {
  38423. name: "Macro",
  38424. height: math.unit(160, "feet")
  38425. },
  38426. {
  38427. name: "Megamacro",
  38428. height: math.unit(22000, "miles")
  38429. },
  38430. {
  38431. name: "Gigamacro",
  38432. height: math.unit(50000, "miles")
  38433. },
  38434. ]
  38435. ))
  38436. characterMakers.push(() => makeCharacter(
  38437. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  38438. {
  38439. front: {
  38440. height: math.unit(4, "feet"),
  38441. weight: math.unit(90, "lb"),
  38442. name: "Front",
  38443. image: {
  38444. source: "./media/characters/joey-mcdonald/front.svg",
  38445. extra: 1059/852,
  38446. bottom: 33/1092
  38447. }
  38448. },
  38449. back: {
  38450. height: math.unit(4, "feet"),
  38451. weight: math.unit(90, "lb"),
  38452. name: "Back",
  38453. image: {
  38454. source: "./media/characters/joey-mcdonald/back.svg",
  38455. extra: 1077/879,
  38456. bottom: 5/1082
  38457. }
  38458. },
  38459. frontKobold: {
  38460. height: math.unit(4, "feet"),
  38461. weight: math.unit(100, "lb"),
  38462. name: "Front-kobold",
  38463. image: {
  38464. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  38465. extra: 1480/1367,
  38466. bottom: 0/1480
  38467. }
  38468. },
  38469. backKobold: {
  38470. height: math.unit(4, "feet"),
  38471. weight: math.unit(100, "lb"),
  38472. name: "Back-kobold",
  38473. image: {
  38474. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  38475. extra: 1449/1361,
  38476. bottom: 0/1449
  38477. }
  38478. },
  38479. },
  38480. [
  38481. {
  38482. name: "Normal",
  38483. height: math.unit(4, "feet"),
  38484. default: true
  38485. },
  38486. ]
  38487. ))
  38488. characterMakers.push(() => makeCharacter(
  38489. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  38490. {
  38491. front: {
  38492. height: math.unit(12 + 6/12, "feet"),
  38493. name: "Front",
  38494. image: {
  38495. source: "./media/characters/kass-lockheed/front.svg",
  38496. extra: 354/343,
  38497. bottom: 9/363
  38498. }
  38499. },
  38500. back: {
  38501. height: math.unit(12 + 6/12, "feet"),
  38502. name: "Back",
  38503. image: {
  38504. source: "./media/characters/kass-lockheed/back.svg",
  38505. extra: 364/352,
  38506. bottom: 3/367
  38507. }
  38508. },
  38509. dick: {
  38510. height: math.unit(3.12, "feet"),
  38511. name: "Dick",
  38512. image: {
  38513. source: "./media/characters/kass-lockheed/dick.svg"
  38514. }
  38515. },
  38516. head: {
  38517. height: math.unit(2.6, "feet"),
  38518. name: "Head",
  38519. image: {
  38520. source: "./media/characters/kass-lockheed/head.svg"
  38521. }
  38522. },
  38523. bleh: {
  38524. height: math.unit(2.85, "feet"),
  38525. name: "Bleh",
  38526. image: {
  38527. source: "./media/characters/kass-lockheed/bleh.svg"
  38528. }
  38529. },
  38530. smug: {
  38531. height: math.unit(2.85, "feet"),
  38532. name: "Smug",
  38533. image: {
  38534. source: "./media/characters/kass-lockheed/smug.svg"
  38535. }
  38536. },
  38537. },
  38538. [
  38539. {
  38540. name: "Normal",
  38541. height: math.unit(12 + 6/12, "feet"),
  38542. default: true
  38543. },
  38544. ]
  38545. ))
  38546. characterMakers.push(() => makeCharacter(
  38547. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  38548. {
  38549. front: {
  38550. height: math.unit(6 + 2/12, "feet"),
  38551. name: "Front",
  38552. image: {
  38553. source: "./media/characters/taylor/front.svg",
  38554. extra: 639/495,
  38555. bottom: 12/651
  38556. }
  38557. },
  38558. },
  38559. [
  38560. {
  38561. name: "Normal",
  38562. height: math.unit(6 + 2/12, "feet"),
  38563. default: true
  38564. },
  38565. {
  38566. name: "Big",
  38567. height: math.unit(15, "feet")
  38568. },
  38569. {
  38570. name: "Lorg",
  38571. height: math.unit(80, "feet")
  38572. },
  38573. {
  38574. name: "Too Lorg",
  38575. height: math.unit(120, "feet")
  38576. },
  38577. ]
  38578. ))
  38579. characterMakers.push(() => makeCharacter(
  38580. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  38581. {
  38582. front: {
  38583. height: math.unit(15, "feet"),
  38584. name: "Front",
  38585. image: {
  38586. source: "./media/characters/kaizer/front.svg",
  38587. extra: 1612/1436,
  38588. bottom: 43/1655
  38589. }
  38590. },
  38591. },
  38592. [
  38593. {
  38594. name: "Normal",
  38595. height: math.unit(15, "feet"),
  38596. default: true
  38597. },
  38598. ]
  38599. ))
  38600. characterMakers.push(() => makeCharacter(
  38601. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  38602. {
  38603. front: {
  38604. height: math.unit(2, "feet"),
  38605. weight: math.unit(30, "lb"),
  38606. name: "Front",
  38607. image: {
  38608. source: "./media/characters/sandy/front.svg",
  38609. extra: 1439/1307,
  38610. bottom: 194/1633
  38611. }
  38612. },
  38613. },
  38614. [
  38615. {
  38616. name: "Normal",
  38617. height: math.unit(2, "feet"),
  38618. default: true
  38619. },
  38620. ]
  38621. ))
  38622. characterMakers.push(() => makeCharacter(
  38623. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  38624. {
  38625. front: {
  38626. height: math.unit(3, "feet"),
  38627. name: "Front",
  38628. image: {
  38629. source: "./media/characters/mellvi/front.svg",
  38630. extra: 1831/1630,
  38631. bottom: 58/1889
  38632. }
  38633. },
  38634. },
  38635. [
  38636. {
  38637. name: "Normal",
  38638. height: math.unit(3, "feet"),
  38639. default: true
  38640. },
  38641. ]
  38642. ))
  38643. characterMakers.push(() => makeCharacter(
  38644. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  38645. {
  38646. front: {
  38647. height: math.unit(5 + 11/12, "feet"),
  38648. weight: math.unit(200, "lb"),
  38649. name: "Front",
  38650. image: {
  38651. source: "./media/characters/shirou/front.svg",
  38652. extra: 2491/2383,
  38653. bottom: 189/2680
  38654. }
  38655. },
  38656. back: {
  38657. height: math.unit(5 + 11/12, "feet"),
  38658. weight: math.unit(200, "lb"),
  38659. name: "Back",
  38660. image: {
  38661. source: "./media/characters/shirou/back.svg",
  38662. extra: 2554/2450,
  38663. bottom: 76/2630
  38664. }
  38665. },
  38666. },
  38667. [
  38668. {
  38669. name: "Normal",
  38670. height: math.unit(5 + 11/12, "feet"),
  38671. default: true
  38672. },
  38673. ]
  38674. ))
  38675. characterMakers.push(() => makeCharacter(
  38676. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  38677. {
  38678. front: {
  38679. height: math.unit(6 + 3/12, "feet"),
  38680. weight: math.unit(177, "lb"),
  38681. name: "Front",
  38682. image: {
  38683. source: "./media/characters/noryu/front.svg",
  38684. extra: 973/885,
  38685. bottom: 10/983
  38686. }
  38687. },
  38688. },
  38689. [
  38690. {
  38691. name: "Normal",
  38692. height: math.unit(6 + 3/12, "feet"),
  38693. default: true
  38694. },
  38695. ]
  38696. ))
  38697. characterMakers.push(() => makeCharacter(
  38698. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  38699. {
  38700. front: {
  38701. height: math.unit(5 + 6/12, "feet"),
  38702. weight: math.unit(170, "lb"),
  38703. name: "Front",
  38704. image: {
  38705. source: "./media/characters/mevolas-rubenido/front.svg",
  38706. extra: 2109/1901,
  38707. bottom: 96/2205
  38708. }
  38709. },
  38710. },
  38711. [
  38712. {
  38713. name: "Normal",
  38714. height: math.unit(5 + 6/12, "feet"),
  38715. default: true
  38716. },
  38717. ]
  38718. ))
  38719. characterMakers.push(() => makeCharacter(
  38720. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  38721. {
  38722. front: {
  38723. height: math.unit(100, "feet"),
  38724. name: "Front",
  38725. image: {
  38726. source: "./media/characters/dee/front.svg",
  38727. extra: 2153/2036,
  38728. bottom: 59/2212
  38729. }
  38730. },
  38731. back: {
  38732. height: math.unit(100, "feet"),
  38733. name: "Back",
  38734. image: {
  38735. source: "./media/characters/dee/back.svg",
  38736. extra: 2183/2058,
  38737. bottom: 75/2258
  38738. }
  38739. },
  38740. foot: {
  38741. height: math.unit(19.43, "feet"),
  38742. name: "Foot",
  38743. image: {
  38744. source: "./media/characters/dee/foot.svg"
  38745. }
  38746. },
  38747. hoof: {
  38748. height: math.unit(20.6, "feet"),
  38749. name: "Hoof",
  38750. image: {
  38751. source: "./media/characters/dee/hoof.svg"
  38752. }
  38753. },
  38754. },
  38755. [
  38756. {
  38757. name: "Macro",
  38758. height: math.unit(100, "feet"),
  38759. default: true
  38760. },
  38761. ]
  38762. ))
  38763. characterMakers.push(() => makeCharacter(
  38764. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  38765. {
  38766. front: {
  38767. height: math.unit(5 + 6/12, "feet"),
  38768. name: "Front",
  38769. image: {
  38770. source: "./media/characters/teh/front.svg",
  38771. extra: 1002/847,
  38772. bottom: 62/1064
  38773. }
  38774. },
  38775. },
  38776. [
  38777. {
  38778. name: "Normal",
  38779. height: math.unit(5 + 6/12, "feet"),
  38780. default: true
  38781. },
  38782. ]
  38783. ))
  38784. characterMakers.push(() => makeCharacter(
  38785. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  38786. {
  38787. side: {
  38788. height: math.unit(6 + 1/12, "feet"),
  38789. weight: math.unit(204, "lb"),
  38790. name: "Side",
  38791. image: {
  38792. source: "./media/characters/quicksilver-ayukoti/side.svg",
  38793. extra: 974/775,
  38794. bottom: 169/1143
  38795. }
  38796. },
  38797. sitting: {
  38798. height: math.unit(6 + 2/12, "feet"),
  38799. weight: math.unit(204, "lb"),
  38800. name: "Sitting",
  38801. image: {
  38802. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  38803. extra: 1175/964,
  38804. bottom: 378/1553
  38805. }
  38806. },
  38807. },
  38808. [
  38809. {
  38810. name: "Normal",
  38811. height: math.unit(6 + 1/12, "feet"),
  38812. default: true
  38813. },
  38814. ]
  38815. ))
  38816. characterMakers.push(() => makeCharacter(
  38817. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  38818. {
  38819. front: {
  38820. height: math.unit(6, "inches"),
  38821. name: "Front",
  38822. image: {
  38823. source: "./media/characters/tululi/front.svg",
  38824. extra: 1997/1876,
  38825. bottom: 20/2017
  38826. }
  38827. },
  38828. },
  38829. [
  38830. {
  38831. name: "Normal",
  38832. height: math.unit(6, "inches"),
  38833. default: true
  38834. },
  38835. ]
  38836. ))
  38837. characterMakers.push(() => makeCharacter(
  38838. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  38839. {
  38840. front: {
  38841. height: math.unit(4 + 1/12, "feet"),
  38842. name: "Front",
  38843. image: {
  38844. source: "./media/characters/star/front.svg",
  38845. extra: 1493/1189,
  38846. bottom: 48/1541
  38847. }
  38848. },
  38849. },
  38850. [
  38851. {
  38852. name: "Normal",
  38853. height: math.unit(4 + 1/12, "feet"),
  38854. default: true
  38855. },
  38856. ]
  38857. ))
  38858. characterMakers.push(() => makeCharacter(
  38859. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  38860. {
  38861. front: {
  38862. height: math.unit(6 + 3/12, "feet"),
  38863. name: "Front",
  38864. image: {
  38865. source: "./media/characters/comet/front.svg",
  38866. extra: 1681/1462,
  38867. bottom: 26/1707
  38868. }
  38869. },
  38870. },
  38871. [
  38872. {
  38873. name: "Normal",
  38874. height: math.unit(6 + 3/12, "feet"),
  38875. default: true
  38876. },
  38877. ]
  38878. ))
  38879. characterMakers.push(() => makeCharacter(
  38880. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  38881. {
  38882. front: {
  38883. height: math.unit(950, "feet"),
  38884. name: "Front",
  38885. image: {
  38886. source: "./media/characters/vortex/front.svg",
  38887. extra: 1497/1434,
  38888. bottom: 56/1553
  38889. }
  38890. },
  38891. maw: {
  38892. height: math.unit(285, "feet"),
  38893. name: "Maw",
  38894. image: {
  38895. source: "./media/characters/vortex/maw.svg"
  38896. }
  38897. },
  38898. },
  38899. [
  38900. {
  38901. name: "Macro",
  38902. height: math.unit(950, "feet"),
  38903. default: true
  38904. },
  38905. ]
  38906. ))
  38907. characterMakers.push(() => makeCharacter(
  38908. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  38909. {
  38910. front: {
  38911. height: math.unit(600, "feet"),
  38912. weight: math.unit(0.02, "grams"),
  38913. name: "Front",
  38914. image: {
  38915. source: "./media/characters/doodle/front.svg",
  38916. extra: 1578/1413,
  38917. bottom: 37/1615
  38918. }
  38919. },
  38920. },
  38921. [
  38922. {
  38923. name: "Macro",
  38924. height: math.unit(600, "feet"),
  38925. default: true
  38926. },
  38927. ]
  38928. ))
  38929. characterMakers.push(() => makeCharacter(
  38930. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  38931. {
  38932. front: {
  38933. height: math.unit(6 + 6/12, "feet"),
  38934. name: "Front",
  38935. image: {
  38936. source: "./media/characters/jai/front.svg",
  38937. extra: 1645/1534,
  38938. bottom: 115/1760
  38939. }
  38940. },
  38941. },
  38942. [
  38943. {
  38944. name: "Normal",
  38945. height: math.unit(6 + 6/12, "feet"),
  38946. default: true
  38947. },
  38948. ]
  38949. ))
  38950. characterMakers.push(() => makeCharacter(
  38951. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  38952. {
  38953. front: {
  38954. height: math.unit(6 + 8/12, "feet"),
  38955. name: "Front",
  38956. image: {
  38957. source: "./media/characters/pixel/front.svg",
  38958. extra: 1900/1735,
  38959. bottom: 63/1963
  38960. }
  38961. },
  38962. },
  38963. [
  38964. {
  38965. name: "Normal",
  38966. height: math.unit(6 + 8/12, "feet"),
  38967. default: true
  38968. },
  38969. ]
  38970. ))
  38971. characterMakers.push(() => makeCharacter(
  38972. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38973. {
  38974. back: {
  38975. height: math.unit(4 + 1/12, "feet"),
  38976. weight: math.unit(75, "lb"),
  38977. name: "Back",
  38978. image: {
  38979. source: "./media/characters/rhett/back.svg",
  38980. extra: 930/878,
  38981. bottom: 25/955
  38982. }
  38983. },
  38984. front: {
  38985. height: math.unit(4 + 1/12, "feet"),
  38986. weight: math.unit(75, "lb"),
  38987. name: "Front",
  38988. image: {
  38989. source: "./media/characters/rhett/front.svg",
  38990. extra: 1682/1586,
  38991. bottom: 92/1774
  38992. }
  38993. },
  38994. },
  38995. [
  38996. {
  38997. name: "Micro",
  38998. height: math.unit(8, "inches")
  38999. },
  39000. {
  39001. name: "Tiny",
  39002. height: math.unit(2, "feet")
  39003. },
  39004. {
  39005. name: "Normal",
  39006. height: math.unit(4 + 1/12, "feet"),
  39007. default: true
  39008. },
  39009. ]
  39010. ))
  39011. characterMakers.push(() => makeCharacter(
  39012. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  39013. {
  39014. front: {
  39015. height: math.unit(3 + 3/12, "feet"),
  39016. name: "Front",
  39017. image: {
  39018. source: "./media/characters/penny/front.svg",
  39019. extra: 1406/1311,
  39020. bottom: 26/1432
  39021. }
  39022. },
  39023. },
  39024. [
  39025. {
  39026. name: "Normal",
  39027. height: math.unit(3 + 3/12, "feet"),
  39028. default: true
  39029. },
  39030. ]
  39031. ))
  39032. characterMakers.push(() => makeCharacter(
  39033. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  39034. {
  39035. front: {
  39036. height: math.unit(4 + 11/12, "feet"),
  39037. name: "Front",
  39038. image: {
  39039. source: "./media/characters/monty/front.svg",
  39040. extra: 1479/1209,
  39041. bottom: 0/1479
  39042. }
  39043. },
  39044. },
  39045. [
  39046. {
  39047. name: "Normal",
  39048. height: math.unit(4 + 11/12, "feet"),
  39049. default: true
  39050. },
  39051. ]
  39052. ))
  39053. characterMakers.push(() => makeCharacter(
  39054. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  39055. {
  39056. front: {
  39057. height: math.unit(8 + 4/12, "feet"),
  39058. name: "Front",
  39059. image: {
  39060. source: "./media/characters/sterling/front.svg",
  39061. extra: 1420/1236,
  39062. bottom: 27/1447
  39063. }
  39064. },
  39065. },
  39066. [
  39067. {
  39068. name: "Normal",
  39069. height: math.unit(8 + 4/12, "feet"),
  39070. default: true
  39071. },
  39072. ]
  39073. ))
  39074. characterMakers.push(() => makeCharacter(
  39075. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  39076. {
  39077. front: {
  39078. height: math.unit(15, "feet"),
  39079. name: "Front",
  39080. image: {
  39081. source: "./media/characters/marble/front.svg",
  39082. extra: 973/937,
  39083. bottom: 32/1005
  39084. }
  39085. },
  39086. },
  39087. [
  39088. {
  39089. name: "Normal",
  39090. height: math.unit(15, "feet"),
  39091. default: true
  39092. },
  39093. ]
  39094. ))
  39095. characterMakers.push(() => makeCharacter(
  39096. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  39097. {
  39098. front: {
  39099. height: math.unit(3, "inches"),
  39100. name: "Front",
  39101. image: {
  39102. source: "./media/characters/powder/front.svg",
  39103. extra: 1504/1334,
  39104. bottom: 518/2022
  39105. }
  39106. },
  39107. },
  39108. [
  39109. {
  39110. name: "Normal",
  39111. height: math.unit(3, "inches"),
  39112. default: true
  39113. },
  39114. ]
  39115. ))
  39116. characterMakers.push(() => makeCharacter(
  39117. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  39118. {
  39119. front: {
  39120. height: math.unit(4 + 5/12, "feet"),
  39121. name: "Front",
  39122. image: {
  39123. source: "./media/characters/joey-raccoon/front.svg",
  39124. extra: 1273/1197,
  39125. bottom: 0/1273
  39126. }
  39127. },
  39128. },
  39129. [
  39130. {
  39131. name: "Normal",
  39132. height: math.unit(4 + 5/12, "feet"),
  39133. default: true
  39134. },
  39135. ]
  39136. ))
  39137. characterMakers.push(() => makeCharacter(
  39138. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  39139. {
  39140. front: {
  39141. height: math.unit(8 + 4/12, "feet"),
  39142. name: "Front",
  39143. image: {
  39144. source: "./media/characters/vick/front.svg",
  39145. extra: 2187/2118,
  39146. bottom: 47/2234
  39147. }
  39148. },
  39149. },
  39150. [
  39151. {
  39152. name: "Normal",
  39153. height: math.unit(8 + 4/12, "feet"),
  39154. default: true
  39155. },
  39156. ]
  39157. ))
  39158. characterMakers.push(() => makeCharacter(
  39159. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  39160. {
  39161. front: {
  39162. height: math.unit(5 + 5/12, "feet"),
  39163. name: "Front",
  39164. image: {
  39165. source: "./media/characters/mitsy/front.svg",
  39166. extra: 1842/1695,
  39167. bottom: 0/1842
  39168. }
  39169. },
  39170. },
  39171. [
  39172. {
  39173. name: "Normal",
  39174. height: math.unit(5 + 5/12, "feet"),
  39175. default: true
  39176. },
  39177. ]
  39178. ))
  39179. characterMakers.push(() => makeCharacter(
  39180. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  39181. {
  39182. front: {
  39183. height: math.unit(6 + 3/12, "feet"),
  39184. name: "Front",
  39185. image: {
  39186. source: "./media/characters/silvy/front.svg",
  39187. extra: 1995/1836,
  39188. bottom: 225/2220
  39189. }
  39190. },
  39191. },
  39192. [
  39193. {
  39194. name: "Normal",
  39195. height: math.unit(6 + 3/12, "feet"),
  39196. default: true
  39197. },
  39198. ]
  39199. ))
  39200. characterMakers.push(() => makeCharacter(
  39201. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  39202. {
  39203. front: {
  39204. height: math.unit(3 + 8/12, "feet"),
  39205. name: "Front",
  39206. image: {
  39207. source: "./media/characters/rodney/front.svg",
  39208. extra: 1956/1747,
  39209. bottom: 31/1987
  39210. }
  39211. },
  39212. frontDressed: {
  39213. height: math.unit(2.9, "feet"),
  39214. name: "Front (Dressed)",
  39215. image: {
  39216. source: "./media/characters/rodney/front-dressed.svg",
  39217. extra: 1382/1241,
  39218. bottom: 385/1767
  39219. }
  39220. },
  39221. },
  39222. [
  39223. {
  39224. name: "Normal",
  39225. height: math.unit(3 + 8/12, "feet"),
  39226. default: true
  39227. },
  39228. ]
  39229. ))
  39230. characterMakers.push(() => makeCharacter(
  39231. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  39232. {
  39233. front: {
  39234. height: math.unit(5 + 9/12, "feet"),
  39235. weight: math.unit(194, "lbs"),
  39236. name: "Front",
  39237. image: {
  39238. source: "./media/characters/zakail-sudekai/front.svg",
  39239. extra: 2696/2533,
  39240. bottom: 248/2944
  39241. }
  39242. },
  39243. maw: {
  39244. height: math.unit(1.35, "feet"),
  39245. name: "Maw",
  39246. image: {
  39247. source: "./media/characters/zakail-sudekai/maw.svg"
  39248. }
  39249. },
  39250. },
  39251. [
  39252. {
  39253. name: "Normal",
  39254. height: math.unit(5 + 9/12, "feet"),
  39255. default: true
  39256. },
  39257. ]
  39258. ))
  39259. characterMakers.push(() => makeCharacter(
  39260. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  39261. {
  39262. front: {
  39263. height: math.unit(8 + 4/12, "feet"),
  39264. weight: math.unit(1200, "lb"),
  39265. name: "Front",
  39266. image: {
  39267. source: "./media/characters/eleanor/front.svg",
  39268. extra: 1226/1192,
  39269. bottom: 52/1278
  39270. }
  39271. },
  39272. back: {
  39273. height: math.unit(8 + 4/12, "feet"),
  39274. weight: math.unit(1200, "lb"),
  39275. name: "Back",
  39276. image: {
  39277. source: "./media/characters/eleanor/back.svg",
  39278. extra: 1242/1184,
  39279. bottom: 60/1302
  39280. }
  39281. },
  39282. head: {
  39283. height: math.unit(2.62, "feet"),
  39284. name: "Head",
  39285. image: {
  39286. source: "./media/characters/eleanor/head.svg"
  39287. }
  39288. },
  39289. },
  39290. [
  39291. {
  39292. name: "Normal",
  39293. height: math.unit(8 + 4/12, "feet"),
  39294. default: true
  39295. },
  39296. ]
  39297. ))
  39298. characterMakers.push(() => makeCharacter(
  39299. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  39300. {
  39301. front: {
  39302. height: math.unit(8 + 4/12, "feet"),
  39303. weight: math.unit(750, "lb"),
  39304. name: "Front",
  39305. image: {
  39306. source: "./media/characters/tanya/front.svg",
  39307. extra: 1749/1615,
  39308. bottom: 33/1782
  39309. }
  39310. },
  39311. },
  39312. [
  39313. {
  39314. name: "Normal",
  39315. height: math.unit(8 + 4/12, "feet"),
  39316. default: true
  39317. },
  39318. ]
  39319. ))
  39320. characterMakers.push(() => makeCharacter(
  39321. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  39322. {
  39323. front: {
  39324. height: math.unit(5, "feet"),
  39325. weight: math.unit(225, "lb"),
  39326. name: "Front",
  39327. image: {
  39328. source: "./media/characters/cindy/front.svg",
  39329. extra: 1320/1250,
  39330. bottom: 42/1362
  39331. }
  39332. },
  39333. frontDressed: {
  39334. height: math.unit(5, "feet"),
  39335. weight: math.unit(225, "lb"),
  39336. name: "Front (Dressed)",
  39337. image: {
  39338. source: "./media/characters/cindy/front-dressed.svg",
  39339. extra: 1320/1250,
  39340. bottom: 42/1362
  39341. }
  39342. },
  39343. back: {
  39344. height: math.unit(5, "feet"),
  39345. weight: math.unit(225, "lb"),
  39346. name: "Back",
  39347. image: {
  39348. source: "./media/characters/cindy/back.svg",
  39349. extra: 1384/1346,
  39350. bottom: 14/1398
  39351. }
  39352. },
  39353. },
  39354. [
  39355. {
  39356. name: "Normal",
  39357. height: math.unit(5, "feet"),
  39358. default: true
  39359. },
  39360. ]
  39361. ))
  39362. characterMakers.push(() => makeCharacter(
  39363. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  39364. {
  39365. front: {
  39366. height: math.unit(6 + 9/12, "feet"),
  39367. weight: math.unit(440, "lb"),
  39368. name: "Front",
  39369. image: {
  39370. source: "./media/characters/wilbur-owen/front.svg",
  39371. extra: 1575/1448,
  39372. bottom: 72/1647
  39373. }
  39374. },
  39375. back: {
  39376. height: math.unit(6 + 9/12, "feet"),
  39377. weight: math.unit(440, "lb"),
  39378. name: "Back",
  39379. image: {
  39380. source: "./media/characters/wilbur-owen/back.svg",
  39381. extra: 1578/1445,
  39382. bottom: 36/1614
  39383. }
  39384. },
  39385. },
  39386. [
  39387. {
  39388. name: "Normal",
  39389. height: math.unit(6 + 9/12, "feet"),
  39390. default: true
  39391. },
  39392. ]
  39393. ))
  39394. characterMakers.push(() => makeCharacter(
  39395. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  39396. {
  39397. front: {
  39398. height: math.unit(6 + 5/12, "feet"),
  39399. weight: math.unit(650, "lb"),
  39400. name: "Front",
  39401. image: {
  39402. source: "./media/characters/keegan/front.svg",
  39403. extra: 2387/2198,
  39404. bottom: 33/2420
  39405. }
  39406. },
  39407. side: {
  39408. height: math.unit(6 + 5/12, "feet"),
  39409. weight: math.unit(650, "lb"),
  39410. name: "Side",
  39411. image: {
  39412. source: "./media/characters/keegan/side.svg",
  39413. extra: 2390/2202,
  39414. bottom: 47/2437
  39415. }
  39416. },
  39417. back: {
  39418. height: math.unit(6 + 5/12, "feet"),
  39419. weight: math.unit(650, "lb"),
  39420. name: "Back",
  39421. image: {
  39422. source: "./media/characters/keegan/back.svg",
  39423. extra: 2418/2268,
  39424. bottom: 15/2433
  39425. }
  39426. },
  39427. frontSfw: {
  39428. height: math.unit(6 + 5/12, "feet"),
  39429. weight: math.unit(650, "lb"),
  39430. name: "Front (SFW)",
  39431. image: {
  39432. source: "./media/characters/keegan/front-sfw.svg",
  39433. extra: 2387/2198,
  39434. bottom: 33/2420
  39435. }
  39436. },
  39437. beans: {
  39438. height: math.unit(1.85, "feet"),
  39439. name: "Beans",
  39440. image: {
  39441. source: "./media/characters/keegan/beans.svg"
  39442. }
  39443. },
  39444. },
  39445. [
  39446. {
  39447. name: "Normal",
  39448. height: math.unit(6 + 5/12, "feet"),
  39449. default: true
  39450. },
  39451. ]
  39452. ))
  39453. characterMakers.push(() => makeCharacter(
  39454. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  39455. {
  39456. front: {
  39457. height: math.unit(9, "feet"),
  39458. name: "Front",
  39459. image: {
  39460. source: "./media/characters/colton/front.svg",
  39461. extra: 1589/1326,
  39462. bottom: 139/1728
  39463. }
  39464. },
  39465. },
  39466. [
  39467. {
  39468. name: "Normal",
  39469. height: math.unit(9, "feet"),
  39470. default: true
  39471. },
  39472. ]
  39473. ))
  39474. characterMakers.push(() => makeCharacter(
  39475. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  39476. {
  39477. front: {
  39478. height: math.unit(2 + 9/12, "feet"),
  39479. name: "Front",
  39480. image: {
  39481. source: "./media/characters/bora/front.svg",
  39482. extra: 1265/1250,
  39483. bottom: 24/1289
  39484. }
  39485. },
  39486. },
  39487. [
  39488. {
  39489. name: "Normal",
  39490. height: math.unit(2 + 9/12, "feet"),
  39491. default: true
  39492. },
  39493. ]
  39494. ))
  39495. characterMakers.push(() => makeCharacter(
  39496. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  39497. {
  39498. front: {
  39499. height: math.unit(8, "feet"),
  39500. name: "Front",
  39501. image: {
  39502. source: "./media/characters/myu-myu/front.svg",
  39503. extra: 1949/1857,
  39504. bottom: 90/2039
  39505. }
  39506. },
  39507. },
  39508. [
  39509. {
  39510. name: "Normal",
  39511. height: math.unit(8, "feet"),
  39512. default: true
  39513. },
  39514. {
  39515. name: "Big",
  39516. height: math.unit(15, "feet")
  39517. },
  39518. {
  39519. name: "BIG",
  39520. height: math.unit(25, "feet")
  39521. },
  39522. ]
  39523. ))
  39524. characterMakers.push(() => makeCharacter(
  39525. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  39526. {
  39527. side: {
  39528. height: math.unit(7 + 5/12, "feet"),
  39529. weight: math.unit(2800, "lb"),
  39530. name: "Side",
  39531. image: {
  39532. source: "./media/characters/haloren/side.svg",
  39533. extra: 1793/409,
  39534. bottom: 59/1852
  39535. }
  39536. },
  39537. frontPaw: {
  39538. height: math.unit(2.36, "feet"),
  39539. name: "Front paw",
  39540. image: {
  39541. source: "./media/characters/haloren/front-paw.svg"
  39542. }
  39543. },
  39544. hindPaw: {
  39545. height: math.unit(3.18, "feet"),
  39546. name: "Hind paw",
  39547. image: {
  39548. source: "./media/characters/haloren/hind-paw.svg"
  39549. }
  39550. },
  39551. maw: {
  39552. height: math.unit(5.05, "feet"),
  39553. name: "Maw",
  39554. image: {
  39555. source: "./media/characters/haloren/maw.svg"
  39556. }
  39557. },
  39558. dick: {
  39559. height: math.unit(2.90, "feet"),
  39560. name: "Dick",
  39561. image: {
  39562. source: "./media/characters/haloren/dick.svg"
  39563. }
  39564. },
  39565. },
  39566. [
  39567. {
  39568. name: "Normal",
  39569. height: math.unit(7 + 5/12, "feet"),
  39570. default: true
  39571. },
  39572. {
  39573. name: "Enhanced",
  39574. height: math.unit(14 + 3/12, "feet")
  39575. },
  39576. ]
  39577. ))
  39578. characterMakers.push(() => makeCharacter(
  39579. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  39580. {
  39581. front: {
  39582. height: math.unit(171, "cm"),
  39583. name: "Front",
  39584. image: {
  39585. source: "./media/characters/kimmy/front.svg",
  39586. extra: 1491/1435,
  39587. bottom: 53/1544
  39588. }
  39589. },
  39590. },
  39591. [
  39592. {
  39593. name: "Small",
  39594. height: math.unit(9, "cm")
  39595. },
  39596. {
  39597. name: "Normal",
  39598. height: math.unit(171, "cm"),
  39599. default: true
  39600. },
  39601. ]
  39602. ))
  39603. characterMakers.push(() => makeCharacter(
  39604. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  39605. {
  39606. front: {
  39607. height: math.unit(8, "feet"),
  39608. weight: math.unit(300, "lb"),
  39609. name: "Front",
  39610. image: {
  39611. source: "./media/characters/galeboomer/front.svg",
  39612. extra: 4651/4415,
  39613. bottom: 162/4813
  39614. }
  39615. },
  39616. back: {
  39617. height: math.unit(8, "feet"),
  39618. weight: math.unit(300, "lb"),
  39619. name: "Back",
  39620. image: {
  39621. source: "./media/characters/galeboomer/back.svg",
  39622. extra: 4544/4314,
  39623. bottom: 16/4560
  39624. }
  39625. },
  39626. frontAlt: {
  39627. height: math.unit(8, "feet"),
  39628. weight: math.unit(300, "lb"),
  39629. name: "Front (Alt)",
  39630. image: {
  39631. source: "./media/characters/galeboomer/front-alt.svg",
  39632. extra: 4458/4228,
  39633. bottom: 68/4526
  39634. }
  39635. },
  39636. maw: {
  39637. height: math.unit(1.2, "feet"),
  39638. name: "Maw",
  39639. image: {
  39640. source: "./media/characters/galeboomer/maw.svg"
  39641. }
  39642. },
  39643. },
  39644. [
  39645. {
  39646. name: "Normal",
  39647. height: math.unit(8, "feet"),
  39648. default: true
  39649. },
  39650. ]
  39651. ))
  39652. characterMakers.push(() => makeCharacter(
  39653. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  39654. {
  39655. front: {
  39656. height: math.unit(5 + 9/12, "feet"),
  39657. weight: math.unit(120, "lb"),
  39658. name: "Front",
  39659. image: {
  39660. source: "./media/characters/chyr/front.svg",
  39661. extra: 1323/1254,
  39662. bottom: 63/1386
  39663. }
  39664. },
  39665. back: {
  39666. height: math.unit(5 + 9/12, "feet"),
  39667. weight: math.unit(120, "lb"),
  39668. name: "Back",
  39669. image: {
  39670. source: "./media/characters/chyr/back.svg",
  39671. extra: 1323/1252,
  39672. bottom: 48/1371
  39673. }
  39674. },
  39675. },
  39676. [
  39677. {
  39678. name: "Normal",
  39679. height: math.unit(5 + 9/12, "feet"),
  39680. default: true
  39681. },
  39682. ]
  39683. ))
  39684. characterMakers.push(() => makeCharacter(
  39685. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  39686. {
  39687. front: {
  39688. height: math.unit(7, "feet"),
  39689. weight: math.unit(310, "lb"),
  39690. name: "Front",
  39691. image: {
  39692. source: "./media/characters/solarus/front.svg",
  39693. extra: 2415/2021,
  39694. bottom: 103/2518
  39695. }
  39696. },
  39697. back: {
  39698. height: math.unit(7, "feet"),
  39699. weight: math.unit(310, "lb"),
  39700. name: "Back",
  39701. image: {
  39702. source: "./media/characters/solarus/back.svg",
  39703. extra: 2463/2089,
  39704. bottom: 79/2542
  39705. }
  39706. },
  39707. },
  39708. [
  39709. {
  39710. name: "Normal",
  39711. height: math.unit(7, "feet"),
  39712. default: true
  39713. },
  39714. ]
  39715. ))
  39716. characterMakers.push(() => makeCharacter(
  39717. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  39718. {
  39719. front: {
  39720. height: math.unit(16, "feet"),
  39721. name: "Front",
  39722. image: {
  39723. source: "./media/characters/mutsuju-koizaemon/front.svg",
  39724. extra: 1844/1780,
  39725. bottom: 58/1902
  39726. }
  39727. },
  39728. winterCoat: {
  39729. height: math.unit(16, "feet"),
  39730. name: "Winter Coat",
  39731. image: {
  39732. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  39733. extra: 1807/1775,
  39734. bottom: 69/1876
  39735. }
  39736. },
  39737. },
  39738. [
  39739. {
  39740. name: "Normal",
  39741. height: math.unit(16, "feet"),
  39742. default: true
  39743. },
  39744. {
  39745. name: "Chicago Size",
  39746. height: math.unit(560, "feet")
  39747. },
  39748. ]
  39749. ))
  39750. characterMakers.push(() => makeCharacter(
  39751. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  39752. {
  39753. front: {
  39754. height: math.unit(11 + 6/12, "feet"),
  39755. weight: math.unit(1366, "lb"),
  39756. name: "Front",
  39757. image: {
  39758. source: "./media/characters/lexor/front.svg",
  39759. extra: 1560/1481,
  39760. bottom: 211/1771
  39761. }
  39762. },
  39763. back: {
  39764. height: math.unit(11 + 6/12, "feet"),
  39765. weight: math.unit(1366, "lb"),
  39766. name: "Back",
  39767. image: {
  39768. source: "./media/characters/lexor/back.svg",
  39769. extra: 1614/1533,
  39770. bottom: 76/1690
  39771. }
  39772. },
  39773. maw: {
  39774. height: math.unit(3, "feet"),
  39775. name: "Maw",
  39776. image: {
  39777. source: "./media/characters/lexor/maw.svg"
  39778. }
  39779. },
  39780. dick: {
  39781. height: math.unit(2.59, "feet"),
  39782. name: "Dick",
  39783. image: {
  39784. source: "./media/characters/lexor/dick.svg"
  39785. }
  39786. },
  39787. },
  39788. [
  39789. {
  39790. name: "Normal",
  39791. height: math.unit(11 + 6/12, "feet"),
  39792. default: true
  39793. },
  39794. ]
  39795. ))
  39796. characterMakers.push(() => makeCharacter(
  39797. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  39798. {
  39799. front: {
  39800. height: math.unit(5 + 8/12, "feet"),
  39801. name: "Front",
  39802. image: {
  39803. source: "./media/characters/magnum/front.svg",
  39804. extra: 942/855,
  39805. bottom: 26/968
  39806. }
  39807. },
  39808. },
  39809. [
  39810. {
  39811. name: "Normal",
  39812. height: math.unit(5 + 8/12, "feet"),
  39813. default: true
  39814. },
  39815. ]
  39816. ))
  39817. characterMakers.push(() => makeCharacter(
  39818. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  39819. {
  39820. front: {
  39821. height: math.unit(18 + 4/12, "feet"),
  39822. weight: math.unit(1500, "kg"),
  39823. name: "Front",
  39824. image: {
  39825. source: "./media/characters/solas-sharpsman/front.svg",
  39826. extra: 1698/1589,
  39827. bottom: 0/1698
  39828. }
  39829. },
  39830. },
  39831. [
  39832. {
  39833. name: "Normal",
  39834. height: math.unit(18 + 4/12, "feet"),
  39835. default: true
  39836. },
  39837. ]
  39838. ))
  39839. characterMakers.push(() => makeCharacter(
  39840. { name: "October", species: ["tiger"], tags: ["anthro"] },
  39841. {
  39842. front: {
  39843. height: math.unit(5 + 5/12, "feet"),
  39844. weight: math.unit(180, "lb"),
  39845. name: "Front",
  39846. image: {
  39847. source: "./media/characters/october/front.svg",
  39848. extra: 1800/1650,
  39849. bottom: 0/1800
  39850. }
  39851. },
  39852. frontNsfw: {
  39853. height: math.unit(5 + 5/12, "feet"),
  39854. weight: math.unit(180, "lb"),
  39855. name: "Front (NSFW)",
  39856. image: {
  39857. source: "./media/characters/october/front-nsfw.svg",
  39858. extra: 1392/1307,
  39859. bottom: 42/1434
  39860. }
  39861. },
  39862. },
  39863. [
  39864. {
  39865. name: "Normal",
  39866. height: math.unit(5 + 5/12, "feet"),
  39867. default: true
  39868. },
  39869. ]
  39870. ))
  39871. characterMakers.push(() => makeCharacter(
  39872. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  39873. {
  39874. front: {
  39875. height: math.unit(8 + 6/12, "feet"),
  39876. name: "Front",
  39877. image: {
  39878. source: "./media/characters/essynkardi/front.svg",
  39879. extra: 1541/1457,
  39880. bottom: 47/1588
  39881. }
  39882. },
  39883. },
  39884. [
  39885. {
  39886. name: "Normal",
  39887. height: math.unit(8 + 6/12, "feet"),
  39888. default: true
  39889. },
  39890. ]
  39891. ))
  39892. characterMakers.push(() => makeCharacter(
  39893. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  39894. {
  39895. front: {
  39896. height: math.unit(6 + 6/12, "feet"),
  39897. weight: math.unit(7, "lb"),
  39898. name: "Front",
  39899. image: {
  39900. source: "./media/characters/icky/front.svg",
  39901. extra: 813/782,
  39902. bottom: 66/879
  39903. }
  39904. },
  39905. back: {
  39906. height: math.unit(6 + 6/12, "feet"),
  39907. weight: math.unit(7, "lb"),
  39908. name: "Back",
  39909. image: {
  39910. source: "./media/characters/icky/back.svg",
  39911. extra: 754/735,
  39912. bottom: 56/810
  39913. }
  39914. },
  39915. },
  39916. [
  39917. {
  39918. name: "Normal",
  39919. height: math.unit(6 + 6/12, "feet"),
  39920. default: true
  39921. },
  39922. ]
  39923. ))
  39924. characterMakers.push(() => makeCharacter(
  39925. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  39926. {
  39927. front: {
  39928. height: math.unit(15, "feet"),
  39929. name: "Front",
  39930. image: {
  39931. source: "./media/characters/rojas/front.svg",
  39932. extra: 1462/1408,
  39933. bottom: 95/1557
  39934. }
  39935. },
  39936. back: {
  39937. height: math.unit(15, "feet"),
  39938. name: "Back",
  39939. image: {
  39940. source: "./media/characters/rojas/back.svg",
  39941. extra: 1023/954,
  39942. bottom: 28/1051
  39943. }
  39944. },
  39945. },
  39946. [
  39947. {
  39948. name: "Normal",
  39949. height: math.unit(15, "feet"),
  39950. default: true
  39951. },
  39952. ]
  39953. ))
  39954. characterMakers.push(() => makeCharacter(
  39955. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  39956. {
  39957. frontHuman: {
  39958. height: math.unit(5 + 7/12, "feet"),
  39959. name: "Front (Human)",
  39960. image: {
  39961. source: "./media/characters/alek-dryagan/front-human.svg",
  39962. extra: 1687/1667,
  39963. bottom: 69/1756
  39964. }
  39965. },
  39966. backHuman: {
  39967. height: math.unit(5 + 7/12, "feet"),
  39968. name: "Back (Human)",
  39969. image: {
  39970. source: "./media/characters/alek-dryagan/back-human.svg",
  39971. extra: 1670/1649,
  39972. bottom: 65/1735
  39973. }
  39974. },
  39975. frontDemi: {
  39976. height: math.unit(65, "feet"),
  39977. name: "Front (Demi)",
  39978. image: {
  39979. source: "./media/characters/alek-dryagan/front-demi.svg",
  39980. extra: 1669/1642,
  39981. bottom: 49/1718
  39982. }
  39983. },
  39984. backDemi: {
  39985. height: math.unit(65, "feet"),
  39986. name: "Back (Demi)",
  39987. image: {
  39988. source: "./media/characters/alek-dryagan/back-demi.svg",
  39989. extra: 1658/1637,
  39990. bottom: 40/1698
  39991. }
  39992. },
  39993. mawHuman: {
  39994. height: math.unit(0.3, "feet"),
  39995. name: "Maw (Human)",
  39996. image: {
  39997. source: "./media/characters/alek-dryagan/maw-human.svg"
  39998. }
  39999. },
  40000. mawDemi: {
  40001. height: math.unit(3.8, "feet"),
  40002. name: "Maw (Demi)",
  40003. image: {
  40004. source: "./media/characters/alek-dryagan/maw-demi.svg"
  40005. }
  40006. },
  40007. },
  40008. [
  40009. {
  40010. name: "Normal",
  40011. height: math.unit(5 + 7/12, "feet"),
  40012. default: true
  40013. },
  40014. ]
  40015. ))
  40016. characterMakers.push(() => makeCharacter(
  40017. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  40018. {
  40019. frontHuman: {
  40020. height: math.unit(5 + 2/12, "feet"),
  40021. name: "Front (Human)",
  40022. image: {
  40023. source: "./media/characters/gen/front-human.svg",
  40024. extra: 1627/1538,
  40025. bottom: 71/1698
  40026. }
  40027. },
  40028. backHuman: {
  40029. height: math.unit(5 + 2/12, "feet"),
  40030. name: "Back (Human)",
  40031. image: {
  40032. source: "./media/characters/gen/back-human.svg",
  40033. extra: 1638/1548,
  40034. bottom: 69/1707
  40035. }
  40036. },
  40037. frontDemi: {
  40038. height: math.unit(5 + 2/12, "feet"),
  40039. name: "Front (Demi)",
  40040. image: {
  40041. source: "./media/characters/gen/front-demi.svg",
  40042. extra: 1627/1538,
  40043. bottom: 71/1698
  40044. }
  40045. },
  40046. backDemi: {
  40047. height: math.unit(5 + 2/12, "feet"),
  40048. name: "Back (Demi)",
  40049. image: {
  40050. source: "./media/characters/gen/back-demi.svg",
  40051. extra: 1638/1548,
  40052. bottom: 69/1707
  40053. }
  40054. },
  40055. },
  40056. [
  40057. {
  40058. name: "Normal",
  40059. height: math.unit(5 + 2/12, "feet"),
  40060. default: true
  40061. },
  40062. ]
  40063. ))
  40064. characterMakers.push(() => makeCharacter(
  40065. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  40066. {
  40067. frontImp: {
  40068. height: math.unit(1 + 11/12, "feet"),
  40069. name: "Front (Imp)",
  40070. image: {
  40071. source: "./media/characters/max-kobold/front-imp.svg",
  40072. extra: 1238/1134,
  40073. bottom: 81/1319
  40074. }
  40075. },
  40076. backImp: {
  40077. height: math.unit(1 + 11/12, "feet"),
  40078. name: "Back (Imp)",
  40079. image: {
  40080. source: "./media/characters/max-kobold/back-imp.svg",
  40081. extra: 1334/1175,
  40082. bottom: 34/1368
  40083. }
  40084. },
  40085. frontDemi: {
  40086. height: math.unit(5 + 9/12, "feet"),
  40087. name: "Front (Demi)",
  40088. image: {
  40089. source: "./media/characters/max-kobold/front-demi.svg",
  40090. extra: 1715/1685,
  40091. bottom: 54/1769
  40092. }
  40093. },
  40094. backDemi: {
  40095. height: math.unit(5 + 9/12, "feet"),
  40096. name: "Back (Demi)",
  40097. image: {
  40098. source: "./media/characters/max-kobold/back-demi.svg",
  40099. extra: 1752/1729,
  40100. bottom: 41/1793
  40101. }
  40102. },
  40103. handImp: {
  40104. height: math.unit(0.45, "feet"),
  40105. name: "Hand (Imp)",
  40106. image: {
  40107. source: "./media/characters/max-kobold/hand.svg"
  40108. }
  40109. },
  40110. pawImp: {
  40111. height: math.unit(0.46, "feet"),
  40112. name: "Paw (Imp)",
  40113. image: {
  40114. source: "./media/characters/max-kobold/paw.svg"
  40115. }
  40116. },
  40117. handDemi: {
  40118. height: math.unit(0.80, "feet"),
  40119. name: "Hand (Demi)",
  40120. image: {
  40121. source: "./media/characters/max-kobold/hand.svg"
  40122. }
  40123. },
  40124. pawDemi: {
  40125. height: math.unit(1.1, "feet"),
  40126. name: "Paw (Demi)",
  40127. image: {
  40128. source: "./media/characters/max-kobold/paw.svg"
  40129. }
  40130. },
  40131. headImp: {
  40132. height: math.unit(1.33, "feet"),
  40133. name: "Head (Imp)",
  40134. image: {
  40135. source: "./media/characters/max-kobold/head-imp.svg"
  40136. }
  40137. },
  40138. mawImp: {
  40139. height: math.unit(0.75, "feet"),
  40140. name: "Maw (Imp)",
  40141. image: {
  40142. source: "./media/characters/max-kobold/maw-imp.svg"
  40143. }
  40144. },
  40145. mawDemi: {
  40146. height: math.unit(0.42, "feet"),
  40147. name: "Maw (Demi)",
  40148. image: {
  40149. source: "./media/characters/max-kobold/maw-demi.svg"
  40150. }
  40151. },
  40152. },
  40153. [
  40154. {
  40155. name: "Normal",
  40156. height: math.unit(1 + 11/12, "feet"),
  40157. default: true
  40158. },
  40159. ]
  40160. ))
  40161. characterMakers.push(() => makeCharacter(
  40162. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  40163. {
  40164. front: {
  40165. height: math.unit(7 + 5/12, "feet"),
  40166. name: "Front",
  40167. image: {
  40168. source: "./media/characters/carbon/front.svg",
  40169. extra: 1754/1689,
  40170. bottom: 65/1819
  40171. }
  40172. },
  40173. back: {
  40174. height: math.unit(7 + 5/12, "feet"),
  40175. name: "Back",
  40176. image: {
  40177. source: "./media/characters/carbon/back.svg",
  40178. extra: 1762/1695,
  40179. bottom: 24/1786
  40180. }
  40181. },
  40182. frontGigantamax: {
  40183. height: math.unit(150, "feet"),
  40184. name: "Front (Gigantamax)",
  40185. image: {
  40186. source: "./media/characters/carbon/front-gigantamax.svg",
  40187. extra: 1826/1669,
  40188. bottom: 59/1885
  40189. }
  40190. },
  40191. backGigantamax: {
  40192. height: math.unit(150, "feet"),
  40193. name: "Back (Gigantamax)",
  40194. image: {
  40195. source: "./media/characters/carbon/back-gigantamax.svg",
  40196. extra: 1796/1653,
  40197. bottom: 53/1849
  40198. }
  40199. },
  40200. maw: {
  40201. height: math.unit(0.48, "feet"),
  40202. name: "Maw",
  40203. image: {
  40204. source: "./media/characters/carbon/maw.svg"
  40205. }
  40206. },
  40207. mawGigantamax: {
  40208. height: math.unit(7.5, "feet"),
  40209. name: "Maw (Gigantamax)",
  40210. image: {
  40211. source: "./media/characters/carbon/maw-gigantamax.svg"
  40212. }
  40213. },
  40214. },
  40215. [
  40216. {
  40217. name: "Normal",
  40218. height: math.unit(7 + 5/12, "feet"),
  40219. default: true
  40220. },
  40221. ]
  40222. ))
  40223. characterMakers.push(() => makeCharacter(
  40224. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  40225. {
  40226. front: {
  40227. height: math.unit(6, "feet"),
  40228. name: "Front",
  40229. image: {
  40230. source: "./media/characters/maverick/front.svg",
  40231. extra: 1672/1661,
  40232. bottom: 85/1757
  40233. }
  40234. },
  40235. back: {
  40236. height: math.unit(6, "feet"),
  40237. name: "Back",
  40238. image: {
  40239. source: "./media/characters/maverick/back.svg",
  40240. extra: 1642/1631,
  40241. bottom: 38/1680
  40242. }
  40243. },
  40244. },
  40245. [
  40246. {
  40247. name: "Normal",
  40248. height: math.unit(6, "feet"),
  40249. default: true
  40250. },
  40251. ]
  40252. ))
  40253. characterMakers.push(() => makeCharacter(
  40254. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  40255. {
  40256. front: {
  40257. height: math.unit(15, "feet"),
  40258. weight: math.unit(615, "lb"),
  40259. name: "Front",
  40260. image: {
  40261. source: "./media/characters/grockle/front.svg",
  40262. extra: 1535/1427,
  40263. bottom: 56/1591
  40264. }
  40265. },
  40266. },
  40267. [
  40268. {
  40269. name: "Normal",
  40270. height: math.unit(15, "feet"),
  40271. default: true
  40272. },
  40273. {
  40274. name: "Large",
  40275. height: math.unit(150, "feet")
  40276. },
  40277. {
  40278. name: "Macro",
  40279. height: math.unit(1876, "feet")
  40280. },
  40281. {
  40282. name: "Mega Macro",
  40283. height: math.unit(121940, "feet")
  40284. },
  40285. {
  40286. name: "Giga Macro",
  40287. height: math.unit(750, "km")
  40288. },
  40289. {
  40290. name: "Tera Macro",
  40291. height: math.unit(750000, "km")
  40292. },
  40293. {
  40294. name: "Galactic",
  40295. height: math.unit(1.4e5, "km")
  40296. },
  40297. {
  40298. name: "Godlike",
  40299. height: math.unit(9.8e280, "galaxies")
  40300. },
  40301. ]
  40302. ))
  40303. characterMakers.push(() => makeCharacter(
  40304. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  40305. {
  40306. front: {
  40307. height: math.unit(11, "meters"),
  40308. weight: math.unit(20, "tonnes"),
  40309. name: "Front",
  40310. image: {
  40311. source: "./media/characters/alistair/front.svg",
  40312. extra: 1265/1009,
  40313. bottom: 93/1358
  40314. }
  40315. },
  40316. },
  40317. [
  40318. {
  40319. name: "Normal",
  40320. height: math.unit(11, "meters"),
  40321. default: true
  40322. },
  40323. ]
  40324. ))
  40325. characterMakers.push(() => makeCharacter(
  40326. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  40327. {
  40328. front: {
  40329. height: math.unit(5 + 8/12, "feet"),
  40330. name: "Front",
  40331. image: {
  40332. source: "./media/characters/haruka/front.svg",
  40333. extra: 2012/1952,
  40334. bottom: 0/2012
  40335. }
  40336. },
  40337. },
  40338. [
  40339. {
  40340. name: "Normal",
  40341. height: math.unit(5 + 8/12, "feet"),
  40342. default: true
  40343. },
  40344. ]
  40345. ))
  40346. characterMakers.push(() => makeCharacter(
  40347. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  40348. {
  40349. back: {
  40350. height: math.unit(9, "feet"),
  40351. name: "Back",
  40352. image: {
  40353. source: "./media/characters/vivian-sylveon/back.svg",
  40354. extra: 1853/1714,
  40355. bottom: 0/1853
  40356. }
  40357. },
  40358. hyper: {
  40359. height: math.unit(5.58, "feet"),
  40360. name: "Hyper",
  40361. preyCapacity: math.unit(2.80616218797, "m^3"),
  40362. image: {
  40363. source: "./media/characters/vivian-sylveon/hyper.svg",
  40364. extra: 999/676,
  40365. bottom: 697/1696
  40366. },
  40367. },
  40368. paw: {
  40369. height: math.unit(1.8, "feet"),
  40370. name: "Paw",
  40371. image: {
  40372. source: "./media/characters/vivian-sylveon/paw.svg"
  40373. }
  40374. },
  40375. danger: {
  40376. height: math.unit(7.5, "feet"),
  40377. name: "DANGER",
  40378. image: {
  40379. source: "./media/characters/vivian-sylveon/danger.svg"
  40380. }
  40381. },
  40382. },
  40383. [
  40384. {
  40385. name: "Normal",
  40386. height: math.unit(9, "feet"),
  40387. default: true
  40388. },
  40389. {
  40390. name: "Macro",
  40391. height: math.unit(500, "feet")
  40392. },
  40393. {
  40394. name: "Megamacro",
  40395. height: math.unit(600, "miles")
  40396. },
  40397. {
  40398. name: "Gigamacro",
  40399. height: math.unit(30000, "miles")
  40400. },
  40401. ]
  40402. ))
  40403. characterMakers.push(() => makeCharacter(
  40404. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  40405. {
  40406. anthro: {
  40407. height: math.unit(5 + 10/12, "feet"),
  40408. weight: math.unit(100, "lb"),
  40409. name: "Anthro",
  40410. image: {
  40411. source: "./media/characters/daiki/anthro.svg",
  40412. extra: 1115/1027,
  40413. bottom: 69/1184
  40414. }
  40415. },
  40416. feral: {
  40417. height: math.unit(200, "feet"),
  40418. name: "Feral",
  40419. image: {
  40420. source: "./media/characters/daiki/feral.svg",
  40421. extra: 1256/313,
  40422. bottom: 39/1295
  40423. }
  40424. },
  40425. feralHead: {
  40426. height: math.unit(171, "feet"),
  40427. name: "Feral Head",
  40428. image: {
  40429. source: "./media/characters/daiki/feral-head.svg"
  40430. }
  40431. },
  40432. manaDragon: {
  40433. height: math.unit(170, "meters"),
  40434. name: "Mana-dragon",
  40435. image: {
  40436. source: "./media/characters/daiki/mana-dragon.svg",
  40437. extra: 763/420,
  40438. bottom: 97/860
  40439. }
  40440. },
  40441. },
  40442. [
  40443. {
  40444. name: "Normal",
  40445. height: math.unit(5 + 10/12, "feet"),
  40446. default: true
  40447. },
  40448. ]
  40449. ))
  40450. characterMakers.push(() => makeCharacter(
  40451. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  40452. {
  40453. fullyEquippedFront: {
  40454. height: math.unit(3 + 1/12, "feet"),
  40455. weight: math.unit(24, "lb"),
  40456. name: "Fully Equipped (Front)",
  40457. image: {
  40458. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  40459. extra: 687/605,
  40460. bottom: 18/705
  40461. }
  40462. },
  40463. fullyEquippedBack: {
  40464. height: math.unit(3 + 1/12, "feet"),
  40465. weight: math.unit(24, "lb"),
  40466. name: "Fully Equipped (Back)",
  40467. image: {
  40468. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  40469. extra: 689/590,
  40470. bottom: 18/707
  40471. }
  40472. },
  40473. dailyWear: {
  40474. height: math.unit(3 + 1/12, "feet"),
  40475. weight: math.unit(24, "lb"),
  40476. name: "Daily Wear",
  40477. image: {
  40478. source: "./media/characters/tea-spot/daily-wear.svg",
  40479. extra: 701/620,
  40480. bottom: 21/722
  40481. }
  40482. },
  40483. maidWork: {
  40484. height: math.unit(3 + 1/12, "feet"),
  40485. weight: math.unit(24, "lb"),
  40486. name: "Maid Work",
  40487. image: {
  40488. source: "./media/characters/tea-spot/maid-work.svg",
  40489. extra: 693/609,
  40490. bottom: 15/708
  40491. }
  40492. },
  40493. },
  40494. [
  40495. {
  40496. name: "Normal",
  40497. height: math.unit(3 + 1/12, "feet"),
  40498. default: true
  40499. },
  40500. ]
  40501. ))
  40502. characterMakers.push(() => makeCharacter(
  40503. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  40504. {
  40505. front: {
  40506. height: math.unit(175, "cm"),
  40507. weight: math.unit(75, "kg"),
  40508. name: "Front",
  40509. image: {
  40510. source: "./media/characters/chee/front.svg",
  40511. extra: 1796/1740,
  40512. bottom: 40/1836
  40513. }
  40514. },
  40515. },
  40516. [
  40517. {
  40518. name: "Micro-Micro",
  40519. height: math.unit(1, "nm")
  40520. },
  40521. {
  40522. name: "Micro-erst",
  40523. height: math.unit(1, "micrometer")
  40524. },
  40525. {
  40526. name: "Micro-er",
  40527. height: math.unit(1, "cm")
  40528. },
  40529. {
  40530. name: "Normal",
  40531. height: math.unit(175, "cm"),
  40532. default: true
  40533. },
  40534. {
  40535. name: "Macro",
  40536. height: math.unit(100, "m")
  40537. },
  40538. {
  40539. name: "Macro-er",
  40540. height: math.unit(1, "km")
  40541. },
  40542. {
  40543. name: "Macro-erst",
  40544. height: math.unit(10, "km")
  40545. },
  40546. {
  40547. name: "Macro-Macro",
  40548. height: math.unit(100, "km")
  40549. },
  40550. ]
  40551. ))
  40552. characterMakers.push(() => makeCharacter(
  40553. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  40554. {
  40555. front: {
  40556. height: math.unit(11 + 9/12, "feet"),
  40557. weight: math.unit(935, "lb"),
  40558. name: "Front",
  40559. image: {
  40560. source: "./media/characters/kingsley/front.svg",
  40561. extra: 1803/1674,
  40562. bottom: 127/1930
  40563. }
  40564. },
  40565. frontNude: {
  40566. height: math.unit(11 + 9/12, "feet"),
  40567. weight: math.unit(935, "lb"),
  40568. name: "Front (Nude)",
  40569. image: {
  40570. source: "./media/characters/kingsley/front-nude.svg",
  40571. extra: 1803/1674,
  40572. bottom: 127/1930
  40573. }
  40574. },
  40575. },
  40576. [
  40577. {
  40578. name: "Normal",
  40579. height: math.unit(11 + 9/12, "feet"),
  40580. default: true
  40581. },
  40582. ]
  40583. ))
  40584. characterMakers.push(() => makeCharacter(
  40585. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  40586. {
  40587. side: {
  40588. height: math.unit(9, "feet"),
  40589. name: "Side",
  40590. image: {
  40591. source: "./media/characters/rymel/side.svg",
  40592. extra: 792/469,
  40593. bottom: 121/913
  40594. }
  40595. },
  40596. maw: {
  40597. height: math.unit(2.4, "meters"),
  40598. name: "Maw",
  40599. image: {
  40600. source: "./media/characters/rymel/maw.svg"
  40601. }
  40602. },
  40603. },
  40604. [
  40605. {
  40606. name: "House Drake",
  40607. height: math.unit(2, "feet")
  40608. },
  40609. {
  40610. name: "Reduced",
  40611. height: math.unit(4.5, "feet")
  40612. },
  40613. {
  40614. name: "Normal",
  40615. height: math.unit(9, "feet"),
  40616. default: true
  40617. },
  40618. ]
  40619. ))
  40620. characterMakers.push(() => makeCharacter(
  40621. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  40622. {
  40623. front: {
  40624. height: math.unit(1.74, "meters"),
  40625. weight: math.unit(55, "kg"),
  40626. name: "Front",
  40627. image: {
  40628. source: "./media/characters/rubus/front.svg",
  40629. extra: 1894/1742,
  40630. bottom: 44/1938
  40631. }
  40632. },
  40633. },
  40634. [
  40635. {
  40636. name: "Normal",
  40637. height: math.unit(1.74, "meters"),
  40638. default: true
  40639. },
  40640. ]
  40641. ))
  40642. characterMakers.push(() => makeCharacter(
  40643. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  40644. {
  40645. front: {
  40646. height: math.unit(5 + 2/12, "feet"),
  40647. weight: math.unit(112, "lb"),
  40648. name: "Front",
  40649. image: {
  40650. source: "./media/characters/cassie-kingston/front.svg",
  40651. extra: 1438/1390,
  40652. bottom: 47/1485
  40653. }
  40654. },
  40655. },
  40656. [
  40657. {
  40658. name: "Normal",
  40659. height: math.unit(5 + 2/12, "feet"),
  40660. default: true
  40661. },
  40662. {
  40663. name: "Macro",
  40664. height: math.unit(128, "feet")
  40665. },
  40666. {
  40667. name: "Megamacro",
  40668. height: math.unit(2.56, "miles")
  40669. },
  40670. ]
  40671. ))
  40672. characterMakers.push(() => makeCharacter(
  40673. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  40674. {
  40675. front: {
  40676. height: math.unit(7, "feet"),
  40677. name: "Front",
  40678. image: {
  40679. source: "./media/characters/fox/front.svg",
  40680. extra: 1798/1703,
  40681. bottom: 55/1853
  40682. }
  40683. },
  40684. back: {
  40685. height: math.unit(7, "feet"),
  40686. name: "Back",
  40687. image: {
  40688. source: "./media/characters/fox/back.svg",
  40689. extra: 1748/1649,
  40690. bottom: 32/1780
  40691. }
  40692. },
  40693. head: {
  40694. height: math.unit(1.95, "feet"),
  40695. name: "Head",
  40696. image: {
  40697. source: "./media/characters/fox/head.svg"
  40698. }
  40699. },
  40700. dick: {
  40701. height: math.unit(1.33, "feet"),
  40702. name: "Dick",
  40703. image: {
  40704. source: "./media/characters/fox/dick.svg"
  40705. }
  40706. },
  40707. foot: {
  40708. height: math.unit(1, "feet"),
  40709. name: "Foot",
  40710. image: {
  40711. source: "./media/characters/fox/foot.svg"
  40712. }
  40713. },
  40714. paw: {
  40715. height: math.unit(0.92, "feet"),
  40716. name: "Paw",
  40717. image: {
  40718. source: "./media/characters/fox/paw.svg"
  40719. }
  40720. },
  40721. },
  40722. [
  40723. {
  40724. name: "Small",
  40725. height: math.unit(3, "inches")
  40726. },
  40727. {
  40728. name: "\"Realistic\"",
  40729. height: math.unit(7, "feet")
  40730. },
  40731. {
  40732. name: "Normal",
  40733. height: math.unit(150, "feet"),
  40734. default: true
  40735. },
  40736. {
  40737. name: "BIG",
  40738. height: math.unit(1200, "feet")
  40739. },
  40740. {
  40741. name: "👀",
  40742. height: math.unit(5, "miles")
  40743. },
  40744. {
  40745. name: "👀👀👀",
  40746. height: math.unit(64, "miles")
  40747. },
  40748. ]
  40749. ))
  40750. characterMakers.push(() => makeCharacter(
  40751. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  40752. {
  40753. front: {
  40754. height: math.unit(625, "feet"),
  40755. name: "Front",
  40756. image: {
  40757. source: "./media/characters/asonja-rossa/front.svg",
  40758. extra: 1833/1686,
  40759. bottom: 24/1857
  40760. }
  40761. },
  40762. back: {
  40763. height: math.unit(625, "feet"),
  40764. name: "Back",
  40765. image: {
  40766. source: "./media/characters/asonja-rossa/back.svg",
  40767. extra: 1852/1753,
  40768. bottom: 26/1878
  40769. }
  40770. },
  40771. },
  40772. [
  40773. {
  40774. name: "Macro",
  40775. height: math.unit(625, "feet"),
  40776. default: true
  40777. },
  40778. ]
  40779. ))
  40780. characterMakers.push(() => makeCharacter(
  40781. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  40782. {
  40783. side: {
  40784. height: math.unit(8, "feet"),
  40785. name: "Side",
  40786. image: {
  40787. source: "./media/characters/rezukii/side.svg",
  40788. extra: 979/542,
  40789. bottom: 87/1066
  40790. }
  40791. },
  40792. sitting: {
  40793. height: math.unit(14.6, "feet"),
  40794. name: "Sitting",
  40795. image: {
  40796. source: "./media/characters/rezukii/sitting.svg",
  40797. extra: 1023/813,
  40798. bottom: 45/1068
  40799. }
  40800. },
  40801. },
  40802. [
  40803. {
  40804. name: "Tiny",
  40805. height: math.unit(2, "feet")
  40806. },
  40807. {
  40808. name: "Smol",
  40809. height: math.unit(4, "feet")
  40810. },
  40811. {
  40812. name: "Normal",
  40813. height: math.unit(8, "feet"),
  40814. default: true
  40815. },
  40816. {
  40817. name: "Big",
  40818. height: math.unit(12, "feet")
  40819. },
  40820. {
  40821. name: "Macro",
  40822. height: math.unit(30, "feet")
  40823. },
  40824. ]
  40825. ))
  40826. characterMakers.push(() => makeCharacter(
  40827. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  40828. {
  40829. front: {
  40830. height: math.unit(14, "feet"),
  40831. weight: math.unit(9.5, "tonnes"),
  40832. name: "Front",
  40833. image: {
  40834. source: "./media/characters/dawnheart/front.svg",
  40835. extra: 2792/2675,
  40836. bottom: 64/2856
  40837. }
  40838. },
  40839. },
  40840. [
  40841. {
  40842. name: "Normal",
  40843. height: math.unit(14, "feet"),
  40844. default: true
  40845. },
  40846. ]
  40847. ))
  40848. characterMakers.push(() => makeCharacter(
  40849. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  40850. {
  40851. front: {
  40852. height: math.unit(1.7, "m"),
  40853. name: "Front",
  40854. image: {
  40855. source: "./media/characters/gladi/front.svg",
  40856. extra: 1460/1362,
  40857. bottom: 19/1479
  40858. }
  40859. },
  40860. back: {
  40861. height: math.unit(1.7, "m"),
  40862. name: "Back",
  40863. image: {
  40864. source: "./media/characters/gladi/back.svg",
  40865. extra: 1459/1357,
  40866. bottom: 12/1471
  40867. }
  40868. },
  40869. feral: {
  40870. height: math.unit(2.05, "m"),
  40871. name: "Feral",
  40872. image: {
  40873. source: "./media/characters/gladi/feral.svg",
  40874. extra: 821/557,
  40875. bottom: 91/912
  40876. }
  40877. },
  40878. },
  40879. [
  40880. {
  40881. name: "Shortest",
  40882. height: math.unit(70, "cm")
  40883. },
  40884. {
  40885. name: "Normal",
  40886. height: math.unit(1.7, "m")
  40887. },
  40888. {
  40889. name: "Macro",
  40890. height: math.unit(10, "m"),
  40891. default: true
  40892. },
  40893. {
  40894. name: "Tallest",
  40895. height: math.unit(200, "m")
  40896. },
  40897. ]
  40898. ))
  40899. characterMakers.push(() => makeCharacter(
  40900. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  40901. {
  40902. front: {
  40903. height: math.unit(5 + 7/12, "feet"),
  40904. weight: math.unit(2, "tons"),
  40905. name: "Front",
  40906. image: {
  40907. source: "./media/characters/erdno/front.svg",
  40908. extra: 1234/1129,
  40909. bottom: 35/1269
  40910. }
  40911. },
  40912. angled: {
  40913. height: math.unit(5 + 7/12, "feet"),
  40914. weight: math.unit(2, "tons"),
  40915. name: "Angled",
  40916. image: {
  40917. source: "./media/characters/erdno/angled.svg",
  40918. extra: 1185/1139,
  40919. bottom: 36/1221
  40920. }
  40921. },
  40922. side: {
  40923. height: math.unit(5 + 7/12, "feet"),
  40924. weight: math.unit(2, "tons"),
  40925. name: "Side",
  40926. image: {
  40927. source: "./media/characters/erdno/side.svg",
  40928. extra: 1191/1144,
  40929. bottom: 40/1231
  40930. }
  40931. },
  40932. back: {
  40933. height: math.unit(5 + 7/12, "feet"),
  40934. weight: math.unit(2, "tons"),
  40935. name: "Back",
  40936. image: {
  40937. source: "./media/characters/erdno/back.svg",
  40938. extra: 1202/1146,
  40939. bottom: 17/1219
  40940. }
  40941. },
  40942. frontNsfw: {
  40943. height: math.unit(5 + 7/12, "feet"),
  40944. weight: math.unit(2, "tons"),
  40945. name: "Front (NSFW)",
  40946. image: {
  40947. source: "./media/characters/erdno/front-nsfw.svg",
  40948. extra: 1234/1129,
  40949. bottom: 35/1269
  40950. }
  40951. },
  40952. angledNsfw: {
  40953. height: math.unit(5 + 7/12, "feet"),
  40954. weight: math.unit(2, "tons"),
  40955. name: "Angled (NSFW)",
  40956. image: {
  40957. source: "./media/characters/erdno/angled-nsfw.svg",
  40958. extra: 1185/1139,
  40959. bottom: 36/1221
  40960. }
  40961. },
  40962. sideNsfw: {
  40963. height: math.unit(5 + 7/12, "feet"),
  40964. weight: math.unit(2, "tons"),
  40965. name: "Side (NSFW)",
  40966. image: {
  40967. source: "./media/characters/erdno/side-nsfw.svg",
  40968. extra: 1191/1144,
  40969. bottom: 40/1231
  40970. }
  40971. },
  40972. backNsfw: {
  40973. height: math.unit(5 + 7/12, "feet"),
  40974. weight: math.unit(2, "tons"),
  40975. name: "Back (NSFW)",
  40976. image: {
  40977. source: "./media/characters/erdno/back-nsfw.svg",
  40978. extra: 1202/1146,
  40979. bottom: 17/1219
  40980. }
  40981. },
  40982. frontHyper: {
  40983. height: math.unit(5 + 7/12, "feet"),
  40984. weight: math.unit(2, "tons"),
  40985. name: "Front (Hyper)",
  40986. image: {
  40987. source: "./media/characters/erdno/front-hyper.svg",
  40988. extra: 1298/1136,
  40989. bottom: 35/1333
  40990. }
  40991. },
  40992. },
  40993. [
  40994. {
  40995. name: "Normal",
  40996. height: math.unit(5 + 7/12, "feet"),
  40997. default: true
  40998. },
  40999. {
  41000. name: "Big",
  41001. height: math.unit(5.7, "meters")
  41002. },
  41003. {
  41004. name: "Macro",
  41005. height: math.unit(5.7, "kilometers")
  41006. },
  41007. {
  41008. name: "Megamacro",
  41009. height: math.unit(5.7, "earths")
  41010. },
  41011. ]
  41012. ))
  41013. characterMakers.push(() => makeCharacter(
  41014. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  41015. {
  41016. front: {
  41017. height: math.unit(5 + 10/12, "feet"),
  41018. weight: math.unit(150, "lb"),
  41019. name: "Front",
  41020. image: {
  41021. source: "./media/characters/jamie/front.svg",
  41022. extra: 1908/1768,
  41023. bottom: 19/1927
  41024. }
  41025. },
  41026. },
  41027. [
  41028. {
  41029. name: "Minimum",
  41030. height: math.unit(2, "cm")
  41031. },
  41032. {
  41033. name: "Micro",
  41034. height: math.unit(3, "inches")
  41035. },
  41036. {
  41037. name: "Normal",
  41038. height: math.unit(5 + 10/12, "feet"),
  41039. default: true
  41040. },
  41041. {
  41042. name: "Macro",
  41043. height: math.unit(150, "feet")
  41044. },
  41045. {
  41046. name: "Megamacro",
  41047. height: math.unit(10000, "m")
  41048. },
  41049. ]
  41050. ))
  41051. characterMakers.push(() => makeCharacter(
  41052. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  41053. {
  41054. front: {
  41055. height: math.unit(2, "meters"),
  41056. weight: math.unit(100, "kg"),
  41057. name: "Front",
  41058. image: {
  41059. source: "./media/characters/shiron/front.svg",
  41060. extra: 2103/1985,
  41061. bottom: 98/2201
  41062. }
  41063. },
  41064. back: {
  41065. height: math.unit(2, "meters"),
  41066. weight: math.unit(100, "kg"),
  41067. name: "Back",
  41068. image: {
  41069. source: "./media/characters/shiron/back.svg",
  41070. extra: 2110/2015,
  41071. bottom: 89/2199
  41072. }
  41073. },
  41074. hand: {
  41075. height: math.unit(0.96, "feet"),
  41076. name: "Hand",
  41077. image: {
  41078. source: "./media/characters/shiron/hand.svg"
  41079. }
  41080. },
  41081. foot: {
  41082. height: math.unit(1.464, "feet"),
  41083. name: "Foot",
  41084. image: {
  41085. source: "./media/characters/shiron/foot.svg"
  41086. }
  41087. },
  41088. },
  41089. [
  41090. {
  41091. name: "Normal",
  41092. height: math.unit(2, "meters")
  41093. },
  41094. {
  41095. name: "Macro",
  41096. height: math.unit(500, "meters"),
  41097. default: true
  41098. },
  41099. {
  41100. name: "Megamacro",
  41101. height: math.unit(20, "km")
  41102. },
  41103. ]
  41104. ))
  41105. characterMakers.push(() => makeCharacter(
  41106. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  41107. {
  41108. front: {
  41109. height: math.unit(6, "feet"),
  41110. name: "Front",
  41111. image: {
  41112. source: "./media/characters/sam/front.svg",
  41113. extra: 849/826,
  41114. bottom: 19/868
  41115. }
  41116. },
  41117. },
  41118. [
  41119. {
  41120. name: "Normal",
  41121. height: math.unit(6, "feet"),
  41122. default: true
  41123. },
  41124. ]
  41125. ))
  41126. characterMakers.push(() => makeCharacter(
  41127. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  41128. {
  41129. front: {
  41130. height: math.unit(8 + 4/12, "feet"),
  41131. weight: math.unit(122, "kg"),
  41132. name: "Front",
  41133. image: {
  41134. source: "./media/characters/namori-kurogawa/front.svg",
  41135. extra: 1894/1576,
  41136. bottom: 34/1928
  41137. }
  41138. },
  41139. },
  41140. [
  41141. {
  41142. name: "Normal",
  41143. height: math.unit(8 + 4/12, "feet"),
  41144. default: true
  41145. },
  41146. ]
  41147. ))
  41148. characterMakers.push(() => makeCharacter(
  41149. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  41150. {
  41151. front: {
  41152. height: math.unit(9, "feet"),
  41153. weight: math.unit(621, "lb"),
  41154. name: "Front",
  41155. image: {
  41156. source: "./media/characters/unmru/front.svg",
  41157. extra: 1853/1747,
  41158. bottom: 73/1926
  41159. }
  41160. },
  41161. side: {
  41162. height: math.unit(9, "feet"),
  41163. weight: math.unit(621, "lb"),
  41164. name: "Side",
  41165. image: {
  41166. source: "./media/characters/unmru/side.svg",
  41167. extra: 1781/1671,
  41168. bottom: 127/1908
  41169. }
  41170. },
  41171. back: {
  41172. height: math.unit(9, "feet"),
  41173. weight: math.unit(621, "lb"),
  41174. name: "Back",
  41175. image: {
  41176. source: "./media/characters/unmru/back.svg",
  41177. extra: 1894/1765,
  41178. bottom: 75/1969
  41179. }
  41180. },
  41181. dick: {
  41182. height: math.unit(3, "feet"),
  41183. weight: math.unit(35, "lb"),
  41184. name: "Dick",
  41185. image: {
  41186. source: "./media/characters/unmru/dick.svg"
  41187. }
  41188. },
  41189. },
  41190. [
  41191. {
  41192. name: "Normal",
  41193. height: math.unit(9, "feet")
  41194. },
  41195. {
  41196. name: "Natural",
  41197. height: math.unit(27, "feet"),
  41198. default: true
  41199. },
  41200. {
  41201. name: "Giant",
  41202. height: math.unit(90, "feet")
  41203. },
  41204. {
  41205. name: "Kaiju",
  41206. height: math.unit(270, "feet")
  41207. },
  41208. {
  41209. name: "Macro",
  41210. height: math.unit(900, "feet")
  41211. },
  41212. {
  41213. name: "Macro+",
  41214. height: math.unit(2700, "feet")
  41215. },
  41216. {
  41217. name: "Megamacro",
  41218. height: math.unit(9000, "feet")
  41219. },
  41220. {
  41221. name: "City-Crushing",
  41222. height: math.unit(27000, "feet")
  41223. },
  41224. {
  41225. name: "Mountain-Mashing",
  41226. height: math.unit(90000, "feet")
  41227. },
  41228. {
  41229. name: "Earth-Eclipsing",
  41230. height: math.unit(2.7e8, "feet")
  41231. },
  41232. {
  41233. name: "Sol-Swallowing",
  41234. height: math.unit(9e10, "feet")
  41235. },
  41236. {
  41237. name: "Majoris-Munching",
  41238. height: math.unit(2.7e13, "feet")
  41239. },
  41240. ]
  41241. ))
  41242. characterMakers.push(() => makeCharacter(
  41243. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  41244. {
  41245. front: {
  41246. height: math.unit(1, "inch"),
  41247. name: "Front",
  41248. image: {
  41249. source: "./media/characters/squeaks-mouse/front.svg",
  41250. extra: 352/308,
  41251. bottom: 25/377
  41252. }
  41253. },
  41254. },
  41255. [
  41256. {
  41257. name: "Micro",
  41258. height: math.unit(1, "inch"),
  41259. default: true
  41260. },
  41261. ]
  41262. ))
  41263. characterMakers.push(() => makeCharacter(
  41264. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  41265. {
  41266. side: {
  41267. height: math.unit(35, "feet"),
  41268. name: "Side",
  41269. image: {
  41270. source: "./media/characters/sayko/side.svg",
  41271. extra: 1697/1021,
  41272. bottom: 82/1779
  41273. }
  41274. },
  41275. head: {
  41276. height: math.unit(16, "feet"),
  41277. name: "Head",
  41278. image: {
  41279. source: "./media/characters/sayko/head.svg"
  41280. }
  41281. },
  41282. forepaw: {
  41283. height: math.unit(7.85, "feet"),
  41284. name: "Forepaw",
  41285. image: {
  41286. source: "./media/characters/sayko/forepaw.svg"
  41287. }
  41288. },
  41289. hindpaw: {
  41290. height: math.unit(8.8, "feet"),
  41291. name: "Hindpaw",
  41292. image: {
  41293. source: "./media/characters/sayko/hindpaw.svg"
  41294. }
  41295. },
  41296. },
  41297. [
  41298. {
  41299. name: "Normal",
  41300. height: math.unit(35, "feet"),
  41301. default: true
  41302. },
  41303. {
  41304. name: "Colossus",
  41305. height: math.unit(100, "meters")
  41306. },
  41307. {
  41308. name: "\"Small\" Deity",
  41309. height: math.unit(1, "km")
  41310. },
  41311. {
  41312. name: "\"Large\" Deity",
  41313. height: math.unit(15, "km")
  41314. },
  41315. ]
  41316. ))
  41317. characterMakers.push(() => makeCharacter(
  41318. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  41319. {
  41320. front: {
  41321. height: math.unit(6, "feet"),
  41322. weight: math.unit(250, "lb"),
  41323. name: "Front",
  41324. image: {
  41325. source: "./media/characters/mukiro/front.svg",
  41326. extra: 1368/1310,
  41327. bottom: 34/1402
  41328. }
  41329. },
  41330. },
  41331. [
  41332. {
  41333. name: "Normal",
  41334. height: math.unit(6, "feet"),
  41335. default: true
  41336. },
  41337. ]
  41338. ))
  41339. characterMakers.push(() => makeCharacter(
  41340. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  41341. {
  41342. front: {
  41343. height: math.unit(12 + 4/12, "feet"),
  41344. name: "Front",
  41345. image: {
  41346. source: "./media/characters/zeph-the-tiger-god/front.svg",
  41347. extra: 1346/1311,
  41348. bottom: 65/1411
  41349. }
  41350. },
  41351. },
  41352. [
  41353. {
  41354. name: "Base",
  41355. height: math.unit(12 + 4/12, "feet"),
  41356. default: true
  41357. },
  41358. {
  41359. name: "Macro",
  41360. height: math.unit(150, "feet")
  41361. },
  41362. {
  41363. name: "Mega",
  41364. height: math.unit(2, "miles")
  41365. },
  41366. {
  41367. name: "Demi God",
  41368. height: math.unit(4, "AU")
  41369. },
  41370. {
  41371. name: "God Size",
  41372. height: math.unit(1, "universe")
  41373. },
  41374. ]
  41375. ))
  41376. characterMakers.push(() => makeCharacter(
  41377. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  41378. {
  41379. front: {
  41380. height: math.unit(3 + 3/12, "feet"),
  41381. weight: math.unit(88, "lb"),
  41382. name: "Front",
  41383. image: {
  41384. source: "./media/characters/trey/front.svg",
  41385. extra: 1815/1509,
  41386. bottom: 60/1875
  41387. }
  41388. },
  41389. },
  41390. [
  41391. {
  41392. name: "Normal",
  41393. height: math.unit(3 + 3/12, "feet"),
  41394. default: true
  41395. },
  41396. ]
  41397. ))
  41398. characterMakers.push(() => makeCharacter(
  41399. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  41400. {
  41401. front: {
  41402. height: math.unit(4, "meters"),
  41403. name: "Front",
  41404. image: {
  41405. source: "./media/characters/adelonda/front.svg",
  41406. extra: 1077/982,
  41407. bottom: 39/1116
  41408. }
  41409. },
  41410. back: {
  41411. height: math.unit(4, "meters"),
  41412. name: "Back",
  41413. image: {
  41414. source: "./media/characters/adelonda/back.svg",
  41415. extra: 1105/1003,
  41416. bottom: 25/1130
  41417. }
  41418. },
  41419. feral: {
  41420. height: math.unit(40/1.5, "meters"),
  41421. name: "Feral",
  41422. image: {
  41423. source: "./media/characters/adelonda/feral.svg",
  41424. extra: 597/271,
  41425. bottom: 387/984
  41426. }
  41427. },
  41428. },
  41429. [
  41430. {
  41431. name: "Normal",
  41432. height: math.unit(4, "meters"),
  41433. default: true
  41434. },
  41435. ]
  41436. ))
  41437. characterMakers.push(() => makeCharacter(
  41438. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  41439. {
  41440. front: {
  41441. height: math.unit(8 + 4/12, "feet"),
  41442. weight: math.unit(670, "lb"),
  41443. name: "Front",
  41444. image: {
  41445. source: "./media/characters/acadiel/front.svg",
  41446. extra: 1901/1595,
  41447. bottom: 142/2043
  41448. }
  41449. },
  41450. },
  41451. [
  41452. {
  41453. name: "Normal",
  41454. height: math.unit(8 + 4/12, "feet"),
  41455. default: true
  41456. },
  41457. {
  41458. name: "Macro",
  41459. height: math.unit(200, "feet")
  41460. },
  41461. ]
  41462. ))
  41463. characterMakers.push(() => makeCharacter(
  41464. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  41465. {
  41466. front: {
  41467. height: math.unit(6 + 2/12, "feet"),
  41468. weight: math.unit(185, "lb"),
  41469. name: "Front",
  41470. image: {
  41471. source: "./media/characters/kayne-ein/front.svg",
  41472. extra: 1780/1560,
  41473. bottom: 81/1861
  41474. }
  41475. },
  41476. },
  41477. [
  41478. {
  41479. name: "Normal",
  41480. height: math.unit(6 + 2/12, "feet"),
  41481. default: true
  41482. },
  41483. {
  41484. name: "Transformation Stage",
  41485. height: math.unit(15, "feet")
  41486. },
  41487. {
  41488. name: "Macro",
  41489. height: math.unit(150, "feet")
  41490. },
  41491. {
  41492. name: "Earth's Shadow",
  41493. height: math.unit(6200, "miles")
  41494. },
  41495. {
  41496. name: "Universal Demon",
  41497. height: math.unit(28e9, "parsecs")
  41498. },
  41499. {
  41500. name: "Multiverse God",
  41501. height: math.unit(3, "multiverses")
  41502. },
  41503. ]
  41504. ))
  41505. characterMakers.push(() => makeCharacter(
  41506. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  41507. {
  41508. front: {
  41509. height: math.unit(5 + 5/12, "feet"),
  41510. name: "Front",
  41511. image: {
  41512. source: "./media/characters/fawn/front.svg",
  41513. extra: 1873/1731,
  41514. bottom: 95/1968
  41515. }
  41516. },
  41517. back: {
  41518. height: math.unit(5 + 5/12, "feet"),
  41519. name: "Back",
  41520. image: {
  41521. source: "./media/characters/fawn/back.svg",
  41522. extra: 1813/1700,
  41523. bottom: 14/1827
  41524. }
  41525. },
  41526. hoof: {
  41527. height: math.unit(1.45, "feet"),
  41528. name: "Hoof",
  41529. image: {
  41530. source: "./media/characters/fawn/hoof.svg"
  41531. }
  41532. },
  41533. },
  41534. [
  41535. {
  41536. name: "Normal",
  41537. height: math.unit(5 + 5/12, "feet"),
  41538. default: true
  41539. },
  41540. ]
  41541. ))
  41542. characterMakers.push(() => makeCharacter(
  41543. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  41544. {
  41545. front: {
  41546. height: math.unit(2 + 5/12, "feet"),
  41547. name: "Front",
  41548. image: {
  41549. source: "./media/characters/orion/front.svg",
  41550. extra: 1366/1304,
  41551. bottom: 43/1409
  41552. }
  41553. },
  41554. paw: {
  41555. height: math.unit(0.52, "feet"),
  41556. name: "Paw",
  41557. image: {
  41558. source: "./media/characters/orion/paw.svg"
  41559. }
  41560. },
  41561. },
  41562. [
  41563. {
  41564. name: "Normal",
  41565. height: math.unit(2 + 5/12, "feet"),
  41566. default: true
  41567. },
  41568. ]
  41569. ))
  41570. characterMakers.push(() => makeCharacter(
  41571. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  41572. {
  41573. front: {
  41574. height: math.unit(5 + 10/12, "feet"),
  41575. name: "Front",
  41576. image: {
  41577. source: "./media/characters/vera/front.svg",
  41578. extra: 1680/1575,
  41579. bottom: 49/1729
  41580. }
  41581. },
  41582. back: {
  41583. height: math.unit(5 + 10/12, "feet"),
  41584. name: "Back",
  41585. image: {
  41586. source: "./media/characters/vera/back.svg",
  41587. extra: 1700/1588,
  41588. bottom: 18/1718
  41589. }
  41590. },
  41591. arcanine: {
  41592. height: math.unit(6 + 8/12, "feet"),
  41593. name: "Arcanine",
  41594. image: {
  41595. source: "./media/characters/vera/arcanine.svg",
  41596. extra: 1590/1511,
  41597. bottom: 71/1661
  41598. }
  41599. },
  41600. maw: {
  41601. height: math.unit(0.82, "feet"),
  41602. name: "Maw",
  41603. image: {
  41604. source: "./media/characters/vera/maw.svg"
  41605. }
  41606. },
  41607. mawArcanine: {
  41608. height: math.unit(0.97, "feet"),
  41609. name: "Maw (Arcanine)",
  41610. image: {
  41611. source: "./media/characters/vera/maw-arcanine.svg"
  41612. }
  41613. },
  41614. paw: {
  41615. height: math.unit(0.75, "feet"),
  41616. name: "Paw",
  41617. image: {
  41618. source: "./media/characters/vera/paw.svg"
  41619. }
  41620. },
  41621. pawprint: {
  41622. height: math.unit(0.52, "feet"),
  41623. name: "Pawprint",
  41624. image: {
  41625. source: "./media/characters/vera/pawprint.svg"
  41626. }
  41627. },
  41628. },
  41629. [
  41630. {
  41631. name: "Normal",
  41632. height: math.unit(5 + 10/12, "feet"),
  41633. default: true
  41634. },
  41635. {
  41636. name: "Macro",
  41637. height: math.unit(75, "feet")
  41638. },
  41639. ]
  41640. ))
  41641. characterMakers.push(() => makeCharacter(
  41642. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  41643. {
  41644. front: {
  41645. height: math.unit(4, "feet"),
  41646. weight: math.unit(40, "lb"),
  41647. name: "Front",
  41648. image: {
  41649. source: "./media/characters/orvan-rabbit/front.svg",
  41650. extra: 1896/1642,
  41651. bottom: 29/1925
  41652. }
  41653. },
  41654. },
  41655. [
  41656. {
  41657. name: "Normal",
  41658. height: math.unit(4, "feet"),
  41659. default: true
  41660. },
  41661. ]
  41662. ))
  41663. characterMakers.push(() => makeCharacter(
  41664. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  41665. {
  41666. front: {
  41667. height: math.unit(6, "feet"),
  41668. weight: math.unit(168, "lb"),
  41669. name: "Front",
  41670. image: {
  41671. source: "./media/characters/lisa/front.svg",
  41672. extra: 2065/1867,
  41673. bottom: 46/2111
  41674. }
  41675. },
  41676. back: {
  41677. height: math.unit(6, "feet"),
  41678. weight: math.unit(168, "lb"),
  41679. name: "Back",
  41680. image: {
  41681. source: "./media/characters/lisa/back.svg",
  41682. extra: 1982/1838,
  41683. bottom: 29/2011
  41684. }
  41685. },
  41686. maw: {
  41687. height: math.unit(0.81, "feet"),
  41688. name: "Maw",
  41689. image: {
  41690. source: "./media/characters/lisa/maw.svg"
  41691. }
  41692. },
  41693. paw: {
  41694. height: math.unit(0.9, "feet"),
  41695. name: "Paw",
  41696. image: {
  41697. source: "./media/characters/lisa/paw.svg"
  41698. }
  41699. },
  41700. caribousune: {
  41701. height: math.unit(7 + 2/12, "feet"),
  41702. weight: math.unit(268, "lb"),
  41703. name: "Caribousune",
  41704. image: {
  41705. source: "./media/characters/lisa/caribousune.svg",
  41706. extra: 1843/1633,
  41707. bottom: 29/1872
  41708. }
  41709. },
  41710. frontCaribousune: {
  41711. height: math.unit(7 + 2/12, "feet"),
  41712. weight: math.unit(268, "lb"),
  41713. name: "Front (Caribousune)",
  41714. image: {
  41715. source: "./media/characters/lisa/front-caribousune.svg",
  41716. extra: 1818/1638,
  41717. bottom: 52/1870
  41718. }
  41719. },
  41720. sideCaribousune: {
  41721. height: math.unit(7 + 2/12, "feet"),
  41722. weight: math.unit(268, "lb"),
  41723. name: "Side (Caribousune)",
  41724. image: {
  41725. source: "./media/characters/lisa/side-caribousune.svg",
  41726. extra: 1851/1635,
  41727. bottom: 16/1867
  41728. }
  41729. },
  41730. backCaribousune: {
  41731. height: math.unit(7 + 2/12, "feet"),
  41732. weight: math.unit(268, "lb"),
  41733. name: "Back (Caribousune)",
  41734. image: {
  41735. source: "./media/characters/lisa/back-caribousune.svg",
  41736. extra: 1801/1604,
  41737. bottom: 44/1845
  41738. }
  41739. },
  41740. caribou: {
  41741. height: math.unit(7 + 2/12, "feet"),
  41742. weight: math.unit(268, "lb"),
  41743. name: "Caribou",
  41744. image: {
  41745. source: "./media/characters/lisa/caribou.svg",
  41746. extra: 1843/1633,
  41747. bottom: 29/1872
  41748. }
  41749. },
  41750. frontCaribou: {
  41751. height: math.unit(7 + 2/12, "feet"),
  41752. weight: math.unit(268, "lb"),
  41753. name: "Front (Caribou)",
  41754. image: {
  41755. source: "./media/characters/lisa/front-caribou.svg",
  41756. extra: 1818/1638,
  41757. bottom: 52/1870
  41758. }
  41759. },
  41760. sideCaribou: {
  41761. height: math.unit(7 + 2/12, "feet"),
  41762. weight: math.unit(268, "lb"),
  41763. name: "Side (Caribou)",
  41764. image: {
  41765. source: "./media/characters/lisa/side-caribou.svg",
  41766. extra: 1851/1635,
  41767. bottom: 16/1867
  41768. }
  41769. },
  41770. backCaribou: {
  41771. height: math.unit(7 + 2/12, "feet"),
  41772. weight: math.unit(268, "lb"),
  41773. name: "Back (Caribou)",
  41774. image: {
  41775. source: "./media/characters/lisa/back-caribou.svg",
  41776. extra: 1801/1604,
  41777. bottom: 44/1845
  41778. }
  41779. },
  41780. mawCaribou: {
  41781. height: math.unit(1.45, "feet"),
  41782. name: "Maw (Caribou)",
  41783. image: {
  41784. source: "./media/characters/lisa/maw-caribou.svg"
  41785. }
  41786. },
  41787. mawCaribousune: {
  41788. height: math.unit(1.45, "feet"),
  41789. name: "Maw (Caribousune)",
  41790. image: {
  41791. source: "./media/characters/lisa/maw-caribousune.svg"
  41792. }
  41793. },
  41794. pawCaribousune: {
  41795. height: math.unit(1.61, "feet"),
  41796. name: "Paw (Caribou)",
  41797. image: {
  41798. source: "./media/characters/lisa/paw-caribousune.svg"
  41799. }
  41800. },
  41801. },
  41802. [
  41803. {
  41804. name: "Normal",
  41805. height: math.unit(6, "feet")
  41806. },
  41807. {
  41808. name: "God Size",
  41809. height: math.unit(72, "feet"),
  41810. default: true
  41811. },
  41812. {
  41813. name: "Towering",
  41814. height: math.unit(288, "feet")
  41815. },
  41816. {
  41817. name: "City Size",
  41818. height: math.unit(48384, "feet")
  41819. },
  41820. {
  41821. name: "Continental",
  41822. height: math.unit(4200, "miles")
  41823. },
  41824. {
  41825. name: "Planet Eater",
  41826. height: math.unit(42, "earths")
  41827. },
  41828. {
  41829. name: "Star Swallower",
  41830. height: math.unit(42, "solarradii")
  41831. },
  41832. {
  41833. name: "System Swallower",
  41834. height: math.unit(84000, "AU")
  41835. },
  41836. {
  41837. name: "Galaxy Gobbler",
  41838. height: math.unit(42, "galaxies")
  41839. },
  41840. {
  41841. name: "Universe Devourer",
  41842. height: math.unit(42, "universes")
  41843. },
  41844. {
  41845. name: "Multiverse Muncher",
  41846. height: math.unit(42, "multiverses")
  41847. },
  41848. ]
  41849. ))
  41850. characterMakers.push(() => makeCharacter(
  41851. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  41852. {
  41853. front: {
  41854. height: math.unit(36, "feet"),
  41855. name: "Front",
  41856. image: {
  41857. source: "./media/characters/shadow-rat/front.svg",
  41858. extra: 1845/1758,
  41859. bottom: 83/1928
  41860. }
  41861. },
  41862. },
  41863. [
  41864. {
  41865. name: "Macro",
  41866. height: math.unit(36, "feet"),
  41867. default: true
  41868. },
  41869. ]
  41870. ))
  41871. characterMakers.push(() => makeCharacter(
  41872. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  41873. {
  41874. side: {
  41875. height: math.unit(8, "feet"),
  41876. weight: math.unit(2630, "lb"),
  41877. name: "Side",
  41878. image: {
  41879. source: "./media/characters/torallia/side.svg",
  41880. extra: 2164/2021,
  41881. bottom: 371/2535
  41882. }
  41883. },
  41884. },
  41885. [
  41886. {
  41887. name: "Mortal Interaction",
  41888. height: math.unit(8, "feet")
  41889. },
  41890. {
  41891. name: "Natural",
  41892. height: math.unit(24, "feet"),
  41893. default: true
  41894. },
  41895. {
  41896. name: "Giant",
  41897. height: math.unit(80, "feet")
  41898. },
  41899. {
  41900. name: "Kaiju",
  41901. height: math.unit(240, "feet")
  41902. },
  41903. {
  41904. name: "Macro",
  41905. height: math.unit(800, "feet")
  41906. },
  41907. {
  41908. name: "Macro+",
  41909. height: math.unit(2400, "feet")
  41910. },
  41911. {
  41912. name: "Macro++",
  41913. height: math.unit(8000, "feet")
  41914. },
  41915. {
  41916. name: "City-Crushing",
  41917. height: math.unit(24000, "feet")
  41918. },
  41919. {
  41920. name: "Mountain-Mashing",
  41921. height: math.unit(80000, "feet")
  41922. },
  41923. {
  41924. name: "District Demolisher",
  41925. height: math.unit(240000, "feet")
  41926. },
  41927. {
  41928. name: "Tri-County Terror",
  41929. height: math.unit(800000, "feet")
  41930. },
  41931. {
  41932. name: "State Smasher",
  41933. height: math.unit(2.4e6, "feet")
  41934. },
  41935. {
  41936. name: "Nation Nemesis",
  41937. height: math.unit(8e6, "feet")
  41938. },
  41939. {
  41940. name: "Continent Cracker",
  41941. height: math.unit(2.4e7, "feet")
  41942. },
  41943. {
  41944. name: "Planet-Pillaging",
  41945. height: math.unit(8e7, "feet")
  41946. },
  41947. {
  41948. name: "Earth-Eclipsing",
  41949. height: math.unit(2.4e8, "feet")
  41950. },
  41951. {
  41952. name: "Jovian-Jostling",
  41953. height: math.unit(8e8, "feet")
  41954. },
  41955. {
  41956. name: "Gas Giant Gulper",
  41957. height: math.unit(2.4e9, "feet")
  41958. },
  41959. {
  41960. name: "Astral Annihilator",
  41961. height: math.unit(8e9, "feet")
  41962. },
  41963. {
  41964. name: "Celestial Conqueror",
  41965. height: math.unit(2.4e10, "feet")
  41966. },
  41967. {
  41968. name: "Sol-Swallowing",
  41969. height: math.unit(8e10, "feet")
  41970. },
  41971. {
  41972. name: "Hunter of the Heavens",
  41973. height: math.unit(2.4e13, "feet")
  41974. },
  41975. ]
  41976. ))
  41977. characterMakers.push(() => makeCharacter(
  41978. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  41979. {
  41980. front: {
  41981. height: math.unit(10, "feet"),
  41982. weight: math.unit(844, "kilograms"),
  41983. name: "Front",
  41984. image: {
  41985. source: "./media/characters/rebecca-pawlson/front.svg",
  41986. extra: 1196/1099,
  41987. bottom: 81/1277
  41988. },
  41989. extraAttributes: {
  41990. "pawSize": {
  41991. name: "Paw Size",
  41992. power: 2,
  41993. type: "area",
  41994. base: math.unit(0.2 * 0.375, "meters^2")
  41995. },
  41996. "handSize": {
  41997. name: "Hand Size",
  41998. power: 2,
  41999. type: "area",
  42000. base: math.unit(0.2 * 0.35, "meters^2")
  42001. },
  42002. "breastDiameter": {
  42003. name: "Breast Diameter",
  42004. power: 1,
  42005. type: "length",
  42006. base: math.unit(0.5, "meters")
  42007. },
  42008. "breastVolume": {
  42009. name: "Breast Volume",
  42010. power: 3,
  42011. type: "volume",
  42012. base: math.unit(0.065, "m^3")
  42013. },
  42014. "breastMass": {
  42015. name: "Breast Mass",
  42016. power: 3,
  42017. type: "mass",
  42018. base: math.unit(65, "kg")
  42019. },
  42020. "nippleDiameter": {
  42021. name: "Nipple Diameter",
  42022. power: 1,
  42023. type: "length",
  42024. base: math.unit(0.1, "meters")
  42025. },
  42026. }
  42027. },
  42028. back: {
  42029. height: math.unit(10, "feet"),
  42030. weight: math.unit(844, "kilograms"),
  42031. name: "Back",
  42032. image: {
  42033. source: "./media/characters/rebecca-pawlson/back.svg",
  42034. extra: 879/776,
  42035. bottom: 43/922
  42036. },
  42037. extraAttributes: {
  42038. "pawSize": {
  42039. name: "Paw Size",
  42040. power: 2,
  42041. type: "area",
  42042. base: math.unit(0.2 * 0.375, "meters^2")
  42043. },
  42044. "handSize": {
  42045. name: "Hand Size",
  42046. power: 2,
  42047. type: "area",
  42048. base: math.unit(0.2 * 0.35, "meters^2")
  42049. },
  42050. "breastDiameter": {
  42051. name: "Breast Diameter",
  42052. power: 1,
  42053. type: "length",
  42054. base: math.unit(0.5, "meters")
  42055. },
  42056. "breastVolume": {
  42057. name: "Breast Volume",
  42058. power: 3,
  42059. type: "volume",
  42060. base: math.unit(0.065, "m^3")
  42061. },
  42062. "breastMass": {
  42063. name: "Breast Mass",
  42064. power: 3,
  42065. type: "mass",
  42066. base: math.unit(65, "kg")
  42067. },
  42068. "nippleDiameter": {
  42069. name: "Nipple Diameter",
  42070. power: 1,
  42071. type: "length",
  42072. base: math.unit(0.1, "meters")
  42073. },
  42074. }
  42075. },
  42076. },
  42077. [
  42078. {
  42079. name: "Normal",
  42080. height: math.unit(6 + 8/12, "feet")
  42081. },
  42082. {
  42083. name: "Mini Macro",
  42084. height: math.unit(10, "feet"),
  42085. default: true
  42086. },
  42087. {
  42088. name: "Macro",
  42089. height: math.unit(100, "feet")
  42090. },
  42091. {
  42092. name: "Mega Macro",
  42093. height: math.unit(2500, "feet")
  42094. },
  42095. {
  42096. name: "Giga Macro",
  42097. height: math.unit(50, "miles")
  42098. },
  42099. ]
  42100. ))
  42101. characterMakers.push(() => makeCharacter(
  42102. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  42103. {
  42104. front: {
  42105. height: math.unit(7 + 6/12, "feet"),
  42106. weight: math.unit(600, "lb"),
  42107. name: "Front",
  42108. image: {
  42109. source: "./media/characters/moxie-nova/front.svg",
  42110. extra: 1734/1652,
  42111. bottom: 41/1775
  42112. }
  42113. },
  42114. },
  42115. [
  42116. {
  42117. name: "Normal",
  42118. height: math.unit(7 + 6/12, "feet"),
  42119. default: true
  42120. },
  42121. ]
  42122. ))
  42123. characterMakers.push(() => makeCharacter(
  42124. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  42125. {
  42126. goat: {
  42127. height: math.unit(4, "feet"),
  42128. weight: math.unit(180, "lb"),
  42129. name: "Goat",
  42130. image: {
  42131. source: "./media/characters/tiffany/goat.svg",
  42132. extra: 1845/1595,
  42133. bottom: 106/1951
  42134. }
  42135. },
  42136. front: {
  42137. height: math.unit(5, "feet"),
  42138. weight: math.unit(150, "lb"),
  42139. name: "Foxcoon",
  42140. image: {
  42141. source: "./media/characters/tiffany/foxcoon.svg",
  42142. extra: 1941/1845,
  42143. bottom: 58/1999
  42144. }
  42145. },
  42146. },
  42147. [
  42148. {
  42149. name: "Normal",
  42150. height: math.unit(5, "feet"),
  42151. default: true
  42152. },
  42153. ]
  42154. ))
  42155. characterMakers.push(() => makeCharacter(
  42156. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  42157. {
  42158. front: {
  42159. height: math.unit(8, "feet"),
  42160. weight: math.unit(300, "lb"),
  42161. name: "Front",
  42162. image: {
  42163. source: "./media/characters/raxinath/front.svg",
  42164. extra: 1407/1309,
  42165. bottom: 39/1446
  42166. }
  42167. },
  42168. back: {
  42169. height: math.unit(8, "feet"),
  42170. weight: math.unit(300, "lb"),
  42171. name: "Back",
  42172. image: {
  42173. source: "./media/characters/raxinath/back.svg",
  42174. extra: 1405/1315,
  42175. bottom: 9/1414
  42176. }
  42177. },
  42178. },
  42179. [
  42180. {
  42181. name: "Speck",
  42182. height: math.unit(0.5, "nm")
  42183. },
  42184. {
  42185. name: "Micro",
  42186. height: math.unit(3, "inches")
  42187. },
  42188. {
  42189. name: "Kobold",
  42190. height: math.unit(3, "feet")
  42191. },
  42192. {
  42193. name: "Normal",
  42194. height: math.unit(8, "feet"),
  42195. default: true
  42196. },
  42197. {
  42198. name: "Giant",
  42199. height: math.unit(50, "feet")
  42200. },
  42201. {
  42202. name: "Macro",
  42203. height: math.unit(1000, "feet")
  42204. },
  42205. {
  42206. name: "Megamacro",
  42207. height: math.unit(1, "mile")
  42208. },
  42209. ]
  42210. ))
  42211. characterMakers.push(() => makeCharacter(
  42212. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  42213. {
  42214. front: {
  42215. height: math.unit(10, "feet"),
  42216. weight: math.unit(1442, "lb"),
  42217. name: "Front",
  42218. image: {
  42219. source: "./media/characters/mal-dragon/front.svg",
  42220. extra: 1515/1444,
  42221. bottom: 113/1628
  42222. }
  42223. },
  42224. back: {
  42225. height: math.unit(10, "feet"),
  42226. weight: math.unit(1442, "lb"),
  42227. name: "Back",
  42228. image: {
  42229. source: "./media/characters/mal-dragon/back.svg",
  42230. extra: 1527/1434,
  42231. bottom: 25/1552
  42232. }
  42233. },
  42234. },
  42235. [
  42236. {
  42237. name: "Mortal Interaction",
  42238. height: math.unit(10, "feet"),
  42239. default: true
  42240. },
  42241. {
  42242. name: "Large",
  42243. height: math.unit(30, "feet")
  42244. },
  42245. {
  42246. name: "Kaiju",
  42247. height: math.unit(300, "feet")
  42248. },
  42249. {
  42250. name: "Megamacro",
  42251. height: math.unit(10000, "feet")
  42252. },
  42253. {
  42254. name: "Continent Cracker",
  42255. height: math.unit(30000000, "feet")
  42256. },
  42257. {
  42258. name: "Sol-Swallowing",
  42259. height: math.unit(1e11, "feet")
  42260. },
  42261. {
  42262. name: "Light Universal",
  42263. height: math.unit(5, "universes")
  42264. },
  42265. {
  42266. name: "Universe Atoms",
  42267. height: math.unit(1.829e9, "universes")
  42268. },
  42269. {
  42270. name: "Light Multiversal",
  42271. height: math.unit(5, "multiverses")
  42272. },
  42273. {
  42274. name: "Multiverse Atoms",
  42275. height: math.unit(1.829e9, "multiverses")
  42276. },
  42277. {
  42278. name: "Fabric of Time",
  42279. height: math.unit(1e262, "multiverses")
  42280. },
  42281. ]
  42282. ))
  42283. characterMakers.push(() => makeCharacter(
  42284. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  42285. {
  42286. front: {
  42287. height: math.unit(9, "feet"),
  42288. weight: math.unit(1050, "lb"),
  42289. name: "Front",
  42290. image: {
  42291. source: "./media/characters/tabitha/front.svg",
  42292. extra: 2083/1994,
  42293. bottom: 68/2151
  42294. }
  42295. },
  42296. },
  42297. [
  42298. {
  42299. name: "Baseline",
  42300. height: math.unit(9, "feet"),
  42301. default: true
  42302. },
  42303. {
  42304. name: "Giant",
  42305. height: math.unit(90, "feet")
  42306. },
  42307. {
  42308. name: "Macro",
  42309. height: math.unit(900, "feet")
  42310. },
  42311. {
  42312. name: "Megamacro",
  42313. height: math.unit(9000, "feet")
  42314. },
  42315. {
  42316. name: "City-Crushing",
  42317. height: math.unit(27000, "feet")
  42318. },
  42319. {
  42320. name: "Mountain-Mashing",
  42321. height: math.unit(90000, "feet")
  42322. },
  42323. {
  42324. name: "Nation Nemesis",
  42325. height: math.unit(9e6, "feet")
  42326. },
  42327. {
  42328. name: "Continent Cracker",
  42329. height: math.unit(27e6, "feet")
  42330. },
  42331. {
  42332. name: "Earth-Eclipsing",
  42333. height: math.unit(2.7e8, "feet")
  42334. },
  42335. {
  42336. name: "Gas Giant Gulper",
  42337. height: math.unit(2.7e9, "feet")
  42338. },
  42339. {
  42340. name: "Sol-Swallowing",
  42341. height: math.unit(9e10, "feet")
  42342. },
  42343. {
  42344. name: "Galaxy Gulper",
  42345. height: math.unit(9, "galaxies")
  42346. },
  42347. {
  42348. name: "Cosmos Churner",
  42349. height: math.unit(9, "universes")
  42350. },
  42351. ]
  42352. ))
  42353. characterMakers.push(() => makeCharacter(
  42354. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  42355. {
  42356. front: {
  42357. height: math.unit(160, "cm"),
  42358. weight: math.unit(55, "kg"),
  42359. name: "Front",
  42360. image: {
  42361. source: "./media/characters/tow/front.svg",
  42362. extra: 1751/1722,
  42363. bottom: 74/1825
  42364. }
  42365. },
  42366. },
  42367. [
  42368. {
  42369. name: "Norm",
  42370. height: math.unit(160, "cm")
  42371. },
  42372. {
  42373. name: "Casual",
  42374. height: math.unit(3200, "m"),
  42375. default: true
  42376. },
  42377. {
  42378. name: "Show-Off",
  42379. height: math.unit(160, "km")
  42380. },
  42381. ]
  42382. ))
  42383. characterMakers.push(() => makeCharacter(
  42384. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  42385. {
  42386. front: {
  42387. height: math.unit(7 + 11/12, "feet"),
  42388. weight: math.unit(342.8, "lb"),
  42389. name: "Front",
  42390. image: {
  42391. source: "./media/characters/vivian-orca-dragon/front.svg",
  42392. extra: 1890/1865,
  42393. bottom: 28/1918
  42394. }
  42395. },
  42396. },
  42397. [
  42398. {
  42399. name: "Micro",
  42400. height: math.unit(5, "inches")
  42401. },
  42402. {
  42403. name: "Normal",
  42404. height: math.unit(7 + 11/12, "feet"),
  42405. default: true
  42406. },
  42407. {
  42408. name: "Macro",
  42409. height: math.unit(395 + 7/12, "feet")
  42410. },
  42411. ]
  42412. ))
  42413. characterMakers.push(() => makeCharacter(
  42414. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  42415. {
  42416. side: {
  42417. height: math.unit(10, "feet"),
  42418. weight: math.unit(1442, "lb"),
  42419. name: "Side",
  42420. image: {
  42421. source: "./media/characters/lotherakon/side.svg",
  42422. extra: 1604/1497,
  42423. bottom: 89/1693
  42424. }
  42425. },
  42426. },
  42427. [
  42428. {
  42429. name: "Mortal Interaction",
  42430. height: math.unit(10, "feet")
  42431. },
  42432. {
  42433. name: "Large",
  42434. height: math.unit(30, "feet"),
  42435. default: true
  42436. },
  42437. {
  42438. name: "Giant",
  42439. height: math.unit(100, "feet")
  42440. },
  42441. {
  42442. name: "Kaiju",
  42443. height: math.unit(300, "feet")
  42444. },
  42445. {
  42446. name: "Macro",
  42447. height: math.unit(1000, "feet")
  42448. },
  42449. {
  42450. name: "Macro+",
  42451. height: math.unit(3000, "feet")
  42452. },
  42453. {
  42454. name: "Megamacro",
  42455. height: math.unit(10000, "feet")
  42456. },
  42457. {
  42458. name: "City-Crushing",
  42459. height: math.unit(30000, "feet")
  42460. },
  42461. {
  42462. name: "Continent Cracker",
  42463. height: math.unit(30e6, "feet")
  42464. },
  42465. {
  42466. name: "Earth Eclipsing",
  42467. height: math.unit(3e8, "feet")
  42468. },
  42469. {
  42470. name: "Gas Giant Gulper",
  42471. height: math.unit(3e9, "feet")
  42472. },
  42473. {
  42474. name: "Sol-Swallowing",
  42475. height: math.unit(1e11, "feet")
  42476. },
  42477. {
  42478. name: "System Swallower",
  42479. height: math.unit(3e14, "feet")
  42480. },
  42481. {
  42482. name: "Galaxy Gulper",
  42483. height: math.unit(10, "galaxies")
  42484. },
  42485. {
  42486. name: "Light Universal",
  42487. height: math.unit(5, "universes")
  42488. },
  42489. {
  42490. name: "Universe Palm",
  42491. height: math.unit(20, "universes")
  42492. },
  42493. {
  42494. name: "Light Multiversal",
  42495. height: math.unit(5, "multiverses")
  42496. },
  42497. {
  42498. name: "Multiverse Palm",
  42499. height: math.unit(20, "multiverses")
  42500. },
  42501. {
  42502. name: "Inferno Incarnate",
  42503. height: math.unit(1e7, "multiverses")
  42504. },
  42505. ]
  42506. ))
  42507. characterMakers.push(() => makeCharacter(
  42508. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  42509. {
  42510. front: {
  42511. height: math.unit(8, "feet"),
  42512. weight: math.unit(1200, "lb"),
  42513. name: "Front",
  42514. image: {
  42515. source: "./media/characters/malithee/front.svg",
  42516. extra: 1675/1640,
  42517. bottom: 162/1837
  42518. }
  42519. },
  42520. },
  42521. [
  42522. {
  42523. name: "Mortal Interaction",
  42524. height: math.unit(8, "feet"),
  42525. default: true
  42526. },
  42527. {
  42528. name: "Large",
  42529. height: math.unit(24, "feet")
  42530. },
  42531. {
  42532. name: "Kaiju",
  42533. height: math.unit(240, "feet")
  42534. },
  42535. {
  42536. name: "Megamacro",
  42537. height: math.unit(8000, "feet")
  42538. },
  42539. {
  42540. name: "Continent Cracker",
  42541. height: math.unit(24e6, "feet")
  42542. },
  42543. {
  42544. name: "Earth-Eclipsing",
  42545. height: math.unit(2.4e8, "feet")
  42546. },
  42547. {
  42548. name: "Sol-Swallowing",
  42549. height: math.unit(8e10, "feet")
  42550. },
  42551. {
  42552. name: "Galaxy Gulper",
  42553. height: math.unit(8, "galaxies")
  42554. },
  42555. {
  42556. name: "Light Universal",
  42557. height: math.unit(4, "universes")
  42558. },
  42559. {
  42560. name: "Universe Atoms",
  42561. height: math.unit(1.829e9, "universes")
  42562. },
  42563. {
  42564. name: "Light Multiversal",
  42565. height: math.unit(4, "multiverses")
  42566. },
  42567. {
  42568. name: "Multiverse Atoms",
  42569. height: math.unit(1.829e9, "multiverses")
  42570. },
  42571. {
  42572. name: "Nigh-Omnipresence",
  42573. height: math.unit(8e261, "multiverses")
  42574. },
  42575. ]
  42576. ))
  42577. characterMakers.push(() => makeCharacter(
  42578. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  42579. {
  42580. front: {
  42581. height: math.unit(10, "feet"),
  42582. weight: math.unit(1500, "lb"),
  42583. name: "Front",
  42584. image: {
  42585. source: "./media/characters/miles-thestia/front.svg",
  42586. extra: 1812/1727,
  42587. bottom: 86/1898
  42588. }
  42589. },
  42590. back: {
  42591. height: math.unit(10, "feet"),
  42592. weight: math.unit(1500, "lb"),
  42593. name: "Back",
  42594. image: {
  42595. source: "./media/characters/miles-thestia/back.svg",
  42596. extra: 1799/1690,
  42597. bottom: 47/1846
  42598. }
  42599. },
  42600. frontNsfw: {
  42601. height: math.unit(10, "feet"),
  42602. weight: math.unit(1500, "lb"),
  42603. name: "Front (NSFW)",
  42604. image: {
  42605. source: "./media/characters/miles-thestia/front-nsfw.svg",
  42606. extra: 1812/1727,
  42607. bottom: 86/1898
  42608. }
  42609. },
  42610. },
  42611. [
  42612. {
  42613. name: "Mini-Macro",
  42614. height: math.unit(10, "feet"),
  42615. default: true
  42616. },
  42617. ]
  42618. ))
  42619. characterMakers.push(() => makeCharacter(
  42620. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  42621. {
  42622. front: {
  42623. height: math.unit(25, "feet"),
  42624. name: "Front",
  42625. image: {
  42626. source: "./media/characters/titan-s-wulf/front.svg",
  42627. extra: 1560/1484,
  42628. bottom: 76/1636
  42629. }
  42630. },
  42631. },
  42632. [
  42633. {
  42634. name: "Smallest",
  42635. height: math.unit(25, "feet"),
  42636. default: true
  42637. },
  42638. {
  42639. name: "Normal",
  42640. height: math.unit(200, "feet")
  42641. },
  42642. {
  42643. name: "Macro",
  42644. height: math.unit(200000, "feet")
  42645. },
  42646. {
  42647. name: "Multiversal Original",
  42648. height: math.unit(10000, "multiverses")
  42649. },
  42650. ]
  42651. ))
  42652. characterMakers.push(() => makeCharacter(
  42653. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  42654. {
  42655. front: {
  42656. height: math.unit(8, "feet"),
  42657. weight: math.unit(553, "lb"),
  42658. name: "Front",
  42659. image: {
  42660. source: "./media/characters/tawendeh/front.svg",
  42661. extra: 2365/2268,
  42662. bottom: 83/2448
  42663. }
  42664. },
  42665. frontClothed: {
  42666. height: math.unit(8, "feet"),
  42667. weight: math.unit(553, "lb"),
  42668. name: "Front (Clothed)",
  42669. image: {
  42670. source: "./media/characters/tawendeh/front-clothed.svg",
  42671. extra: 2365/2268,
  42672. bottom: 83/2448
  42673. }
  42674. },
  42675. back: {
  42676. height: math.unit(8, "feet"),
  42677. weight: math.unit(553, "lb"),
  42678. name: "Back",
  42679. image: {
  42680. source: "./media/characters/tawendeh/back.svg",
  42681. extra: 2397/2294,
  42682. bottom: 42/2439
  42683. }
  42684. },
  42685. },
  42686. [
  42687. {
  42688. name: "Mortal Interaction",
  42689. height: math.unit(8, "feet"),
  42690. default: true
  42691. },
  42692. {
  42693. name: "Giant",
  42694. height: math.unit(80, "feet")
  42695. },
  42696. {
  42697. name: "Macro",
  42698. height: math.unit(800, "feet")
  42699. },
  42700. {
  42701. name: "Megamacro",
  42702. height: math.unit(8000, "feet")
  42703. },
  42704. {
  42705. name: "City-Crushing",
  42706. height: math.unit(24000, "feet")
  42707. },
  42708. {
  42709. name: "Mountain-Mashing",
  42710. height: math.unit(80000, "feet")
  42711. },
  42712. {
  42713. name: "Nation Nemesis",
  42714. height: math.unit(8e6, "feet")
  42715. },
  42716. {
  42717. name: "Continent Cracker",
  42718. height: math.unit(24e6, "feet")
  42719. },
  42720. {
  42721. name: "Earth-Eclipsing",
  42722. height: math.unit(2.4e8, "feet")
  42723. },
  42724. {
  42725. name: "Gas Giant Gulper",
  42726. height: math.unit(2.4e9, "feet")
  42727. },
  42728. {
  42729. name: "Sol-Swallowing",
  42730. height: math.unit(8e10, "feet")
  42731. },
  42732. {
  42733. name: "Galaxy Gulper",
  42734. height: math.unit(8, "galaxies")
  42735. },
  42736. {
  42737. name: "Cosmos Churner",
  42738. height: math.unit(8, "universes")
  42739. },
  42740. {
  42741. name: "Omnipotent Otter",
  42742. height: math.unit(80, "universes")
  42743. },
  42744. ]
  42745. ))
  42746. characterMakers.push(() => makeCharacter(
  42747. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  42748. {
  42749. front: {
  42750. height: math.unit(2.6, "meters"),
  42751. weight: math.unit(900, "kg"),
  42752. name: "Front",
  42753. image: {
  42754. source: "./media/characters/neesha/front.svg",
  42755. extra: 1803/1653,
  42756. bottom: 128/1931
  42757. }
  42758. },
  42759. },
  42760. [
  42761. {
  42762. name: "Normal",
  42763. height: math.unit(2.6, "meters"),
  42764. default: true
  42765. },
  42766. {
  42767. name: "Macro",
  42768. height: math.unit(50, "meters")
  42769. },
  42770. ]
  42771. ))
  42772. characterMakers.push(() => makeCharacter(
  42773. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  42774. {
  42775. front: {
  42776. height: math.unit(5, "feet"),
  42777. weight: math.unit(185, "lb"),
  42778. name: "Front",
  42779. image: {
  42780. source: "./media/characters/kyera/front.svg",
  42781. extra: 1875/1790,
  42782. bottom: 96/1971
  42783. }
  42784. },
  42785. },
  42786. [
  42787. {
  42788. name: "Normal",
  42789. height: math.unit(5, "feet"),
  42790. default: true
  42791. },
  42792. ]
  42793. ))
  42794. characterMakers.push(() => makeCharacter(
  42795. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  42796. {
  42797. front: {
  42798. height: math.unit(7 + 6/12, "feet"),
  42799. weight: math.unit(540, "lb"),
  42800. name: "Front",
  42801. image: {
  42802. source: "./media/characters/yuko/front.svg",
  42803. extra: 1282/1222,
  42804. bottom: 101/1383
  42805. }
  42806. },
  42807. frontClothed: {
  42808. height: math.unit(7 + 6/12, "feet"),
  42809. weight: math.unit(540, "lb"),
  42810. name: "Front (Clothed)",
  42811. image: {
  42812. source: "./media/characters/yuko/front-clothed.svg",
  42813. extra: 1282/1222,
  42814. bottom: 101/1383
  42815. }
  42816. },
  42817. },
  42818. [
  42819. {
  42820. name: "Normal",
  42821. height: math.unit(7 + 6/12, "feet"),
  42822. default: true
  42823. },
  42824. {
  42825. name: "Macro",
  42826. height: math.unit(26 + 9/12, "feet")
  42827. },
  42828. {
  42829. name: "Megamacro",
  42830. height: math.unit(300, "feet")
  42831. },
  42832. {
  42833. name: "Gigamacro",
  42834. height: math.unit(5000, "feet")
  42835. },
  42836. {
  42837. name: "Planetary",
  42838. height: math.unit(10000, "miles")
  42839. },
  42840. ]
  42841. ))
  42842. characterMakers.push(() => makeCharacter(
  42843. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  42844. {
  42845. front: {
  42846. height: math.unit(8 + 2/12, "feet"),
  42847. weight: math.unit(600, "lb"),
  42848. name: "Front",
  42849. image: {
  42850. source: "./media/characters/deam-nitrel/front.svg",
  42851. extra: 1308/1234,
  42852. bottom: 125/1433
  42853. }
  42854. },
  42855. },
  42856. [
  42857. {
  42858. name: "Normal",
  42859. height: math.unit(8 + 2/12, "feet"),
  42860. default: true
  42861. },
  42862. ]
  42863. ))
  42864. characterMakers.push(() => makeCharacter(
  42865. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  42866. {
  42867. front: {
  42868. height: math.unit(6.1, "feet"),
  42869. weight: math.unit(180, "lb"),
  42870. name: "Front",
  42871. image: {
  42872. source: "./media/characters/skyress/front.svg",
  42873. extra: 1045/915,
  42874. bottom: 28/1073
  42875. }
  42876. },
  42877. maw: {
  42878. height: math.unit(1, "feet"),
  42879. name: "Maw",
  42880. image: {
  42881. source: "./media/characters/skyress/maw.svg"
  42882. }
  42883. },
  42884. },
  42885. [
  42886. {
  42887. name: "Normal",
  42888. height: math.unit(6.1, "feet"),
  42889. default: true
  42890. },
  42891. {
  42892. name: "Macro",
  42893. height: math.unit(200, "feet")
  42894. },
  42895. ]
  42896. ))
  42897. characterMakers.push(() => makeCharacter(
  42898. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  42899. {
  42900. front: {
  42901. height: math.unit(4 + 2/12, "feet"),
  42902. weight: math.unit(40, "kg"),
  42903. name: "Front",
  42904. image: {
  42905. source: "./media/characters/amethyst-jones/front.svg",
  42906. extra: 1220/1150,
  42907. bottom: 101/1321
  42908. }
  42909. },
  42910. },
  42911. [
  42912. {
  42913. name: "Normal",
  42914. height: math.unit(4 + 2/12, "feet"),
  42915. default: true
  42916. },
  42917. ]
  42918. ))
  42919. characterMakers.push(() => makeCharacter(
  42920. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  42921. {
  42922. front: {
  42923. height: math.unit(1.7, "m"),
  42924. weight: math.unit(135, "lb"),
  42925. name: "Front",
  42926. image: {
  42927. source: "./media/characters/jade/front.svg",
  42928. extra: 1818/1767,
  42929. bottom: 32/1850
  42930. }
  42931. },
  42932. back: {
  42933. height: math.unit(1.7, "m"),
  42934. weight: math.unit(135, "lb"),
  42935. name: "Back",
  42936. image: {
  42937. source: "./media/characters/jade/back.svg",
  42938. extra: 1869/1809,
  42939. bottom: 35/1904
  42940. }
  42941. },
  42942. hand: {
  42943. height: math.unit(0.24, "m"),
  42944. name: "Hand",
  42945. image: {
  42946. source: "./media/characters/jade/hand.svg"
  42947. }
  42948. },
  42949. foot: {
  42950. height: math.unit(0.263, "m"),
  42951. name: "Foot",
  42952. image: {
  42953. source: "./media/characters/jade/foot.svg"
  42954. }
  42955. },
  42956. dick: {
  42957. height: math.unit(0.47, "m"),
  42958. name: "Dick",
  42959. image: {
  42960. source: "./media/characters/jade/dick.svg"
  42961. }
  42962. },
  42963. },
  42964. [
  42965. {
  42966. name: "Micro",
  42967. height: math.unit(22, "cm")
  42968. },
  42969. {
  42970. name: "Normal",
  42971. height: math.unit(1.7, "m"),
  42972. default: true
  42973. },
  42974. {
  42975. name: "Macro",
  42976. height: math.unit(152, "m")
  42977. },
  42978. ]
  42979. ))
  42980. characterMakers.push(() => makeCharacter(
  42981. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  42982. {
  42983. front: {
  42984. height: math.unit(100, "miles"),
  42985. weight: math.unit(20000, "tons"),
  42986. name: "Front",
  42987. image: {
  42988. source: "./media/characters/cookie/front.svg",
  42989. extra: 1125/1070,
  42990. bottom: 30/1155
  42991. }
  42992. },
  42993. },
  42994. [
  42995. {
  42996. name: "Big",
  42997. height: math.unit(50, "feet")
  42998. },
  42999. {
  43000. name: "Macro",
  43001. height: math.unit(100, "miles"),
  43002. default: true
  43003. },
  43004. {
  43005. name: "Megamacro",
  43006. height: math.unit(90000, "miles")
  43007. },
  43008. ]
  43009. ))
  43010. characterMakers.push(() => makeCharacter(
  43011. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  43012. {
  43013. front: {
  43014. height: math.unit(6, "feet"),
  43015. weight: math.unit(145, "lb"),
  43016. name: "Front",
  43017. image: {
  43018. source: "./media/characters/farzian/front.svg",
  43019. extra: 1902/1693,
  43020. bottom: 108/2010
  43021. }
  43022. },
  43023. },
  43024. [
  43025. {
  43026. name: "Macro",
  43027. height: math.unit(500, "feet"),
  43028. default: true
  43029. },
  43030. ]
  43031. ))
  43032. characterMakers.push(() => makeCharacter(
  43033. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  43034. {
  43035. front: {
  43036. height: math.unit(3 + 6/12, "feet"),
  43037. weight: math.unit(50, "lb"),
  43038. name: "Front",
  43039. image: {
  43040. source: "./media/characters/kimberly-tilson/front.svg",
  43041. extra: 1400/1322,
  43042. bottom: 36/1436
  43043. }
  43044. },
  43045. back: {
  43046. height: math.unit(3 + 6/12, "feet"),
  43047. weight: math.unit(50, "lb"),
  43048. name: "Back",
  43049. image: {
  43050. source: "./media/characters/kimberly-tilson/back.svg",
  43051. extra: 1370/1307,
  43052. bottom: 20/1390
  43053. }
  43054. },
  43055. },
  43056. [
  43057. {
  43058. name: "Normal",
  43059. height: math.unit(3 + 6/12, "feet"),
  43060. default: true
  43061. },
  43062. ]
  43063. ))
  43064. characterMakers.push(() => makeCharacter(
  43065. { name: "Harthos", species: ["peacekeeper", "allusus"], tags: ["anthro"] },
  43066. {
  43067. front: {
  43068. height: math.unit(350, "meters"),
  43069. weight: math.unit(7.57059e+8, "lb"),
  43070. name: "Front",
  43071. image: {
  43072. source: "./media/characters/harthos/front.svg",
  43073. extra: 455/446,
  43074. bottom: 15/470
  43075. },
  43076. form: "peacekeeper",
  43077. default: true
  43078. },
  43079. allusus_front: {
  43080. height: math.unit(270, "meters"),
  43081. weight: math.unit(3.47550e+8, "lb"),
  43082. name: "Front",
  43083. image: {
  43084. source: "./media/characters/harthos/allusus-front.svg",
  43085. extra: 455/446,
  43086. bottom: 15/470
  43087. },
  43088. form: "allusus",
  43089. },
  43090. },
  43091. [
  43092. {
  43093. name: "Macro",
  43094. height: math.unit(350, "meters"),
  43095. default: true,
  43096. form: "peacekeeper"
  43097. },
  43098. {
  43099. name: "Macro",
  43100. height: math.unit(270, "meters"),
  43101. default: true,
  43102. form: "allusus"
  43103. },
  43104. ],
  43105. {
  43106. "peacekeeper": {
  43107. name: "Peacekeeper",
  43108. default: true
  43109. },
  43110. "allusus": {
  43111. name: "Allusus",
  43112. },
  43113. }
  43114. ))
  43115. characterMakers.push(() => makeCharacter(
  43116. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  43117. {
  43118. front: {
  43119. height: math.unit(15, "feet"),
  43120. name: "Front",
  43121. image: {
  43122. source: "./media/characters/hypatia/front.svg",
  43123. extra: 1653/1591,
  43124. bottom: 79/1732
  43125. }
  43126. },
  43127. },
  43128. [
  43129. {
  43130. name: "Normal",
  43131. height: math.unit(15, "feet")
  43132. },
  43133. {
  43134. name: "Small",
  43135. height: math.unit(300, "feet")
  43136. },
  43137. {
  43138. name: "Macro",
  43139. height: math.unit(2500, "feet"),
  43140. default: true
  43141. },
  43142. {
  43143. name: "Mega Macro",
  43144. height: math.unit(1500, "miles")
  43145. },
  43146. {
  43147. name: "Giga Macro",
  43148. height: math.unit(1.5e6, "miles")
  43149. },
  43150. ]
  43151. ))
  43152. characterMakers.push(() => makeCharacter(
  43153. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  43154. {
  43155. front: {
  43156. height: math.unit(6, "feet"),
  43157. weight: math.unit(200, "lb"),
  43158. name: "Front",
  43159. image: {
  43160. source: "./media/characters/wulver/front.svg",
  43161. extra: 1724/1632,
  43162. bottom: 130/1854
  43163. }
  43164. },
  43165. frontNsfw: {
  43166. height: math.unit(6, "feet"),
  43167. weight: math.unit(200, "lb"),
  43168. name: "Front (NSFW)",
  43169. image: {
  43170. source: "./media/characters/wulver/front-nsfw.svg",
  43171. extra: 1724/1632,
  43172. bottom: 130/1854
  43173. }
  43174. },
  43175. },
  43176. [
  43177. {
  43178. name: "Human-Sized",
  43179. height: math.unit(6, "feet")
  43180. },
  43181. {
  43182. name: "Normal",
  43183. height: math.unit(4, "meters"),
  43184. default: true
  43185. },
  43186. {
  43187. name: "Large",
  43188. height: math.unit(6, "m")
  43189. },
  43190. ]
  43191. ))
  43192. characterMakers.push(() => makeCharacter(
  43193. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  43194. {
  43195. front: {
  43196. height: math.unit(7, "feet"),
  43197. name: "Front",
  43198. image: {
  43199. source: "./media/characters/maru/front.svg",
  43200. extra: 1595/1570,
  43201. bottom: 0/1595
  43202. }
  43203. },
  43204. },
  43205. [
  43206. {
  43207. name: "Normal",
  43208. height: math.unit(7, "feet"),
  43209. default: true
  43210. },
  43211. {
  43212. name: "Macro",
  43213. height: math.unit(700, "feet")
  43214. },
  43215. {
  43216. name: "Mega Macro",
  43217. height: math.unit(25, "miles")
  43218. },
  43219. ]
  43220. ))
  43221. characterMakers.push(() => makeCharacter(
  43222. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  43223. {
  43224. front: {
  43225. height: math.unit(6, "feet"),
  43226. weight: math.unit(170, "lb"),
  43227. name: "Front",
  43228. image: {
  43229. source: "./media/characters/xenon/front.svg",
  43230. extra: 1376/1305,
  43231. bottom: 56/1432
  43232. }
  43233. },
  43234. back: {
  43235. height: math.unit(6, "feet"),
  43236. weight: math.unit(170, "lb"),
  43237. name: "Back",
  43238. image: {
  43239. source: "./media/characters/xenon/back.svg",
  43240. extra: 1328/1259,
  43241. bottom: 95/1423
  43242. }
  43243. },
  43244. maw: {
  43245. height: math.unit(0.52, "feet"),
  43246. name: "Maw",
  43247. image: {
  43248. source: "./media/characters/xenon/maw.svg"
  43249. }
  43250. },
  43251. handLeft: {
  43252. height: math.unit(0.82 * 169 / 153, "feet"),
  43253. name: "Hand (Left)",
  43254. image: {
  43255. source: "./media/characters/xenon/hand-left.svg"
  43256. }
  43257. },
  43258. handRight: {
  43259. height: math.unit(0.82, "feet"),
  43260. name: "Hand (Right)",
  43261. image: {
  43262. source: "./media/characters/xenon/hand-right.svg"
  43263. }
  43264. },
  43265. footLeft: {
  43266. height: math.unit(1.13, "feet"),
  43267. name: "Foot (Left)",
  43268. image: {
  43269. source: "./media/characters/xenon/foot-left.svg"
  43270. }
  43271. },
  43272. footRight: {
  43273. height: math.unit(1.13 * 194 / 196, "feet"),
  43274. name: "Foot (Right)",
  43275. image: {
  43276. source: "./media/characters/xenon/foot-right.svg"
  43277. }
  43278. },
  43279. },
  43280. [
  43281. {
  43282. name: "Micro",
  43283. height: math.unit(0.8, "inches")
  43284. },
  43285. {
  43286. name: "Normal",
  43287. height: math.unit(6, "feet")
  43288. },
  43289. {
  43290. name: "Macro",
  43291. height: math.unit(50, "feet"),
  43292. default: true
  43293. },
  43294. {
  43295. name: "Macro+",
  43296. height: math.unit(250, "feet")
  43297. },
  43298. {
  43299. name: "Megamacro",
  43300. height: math.unit(1500, "feet")
  43301. },
  43302. ]
  43303. ))
  43304. characterMakers.push(() => makeCharacter(
  43305. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  43306. {
  43307. front: {
  43308. height: math.unit(7 + 5/12, "feet"),
  43309. name: "Front",
  43310. image: {
  43311. source: "./media/characters/zane/front.svg",
  43312. extra: 1260/1203,
  43313. bottom: 94/1354
  43314. }
  43315. },
  43316. back: {
  43317. height: math.unit(5.05, "feet"),
  43318. name: "Back",
  43319. image: {
  43320. source: "./media/characters/zane/back.svg",
  43321. extra: 893/829,
  43322. bottom: 30/923
  43323. }
  43324. },
  43325. werewolf: {
  43326. height: math.unit(11, "feet"),
  43327. name: "Werewolf",
  43328. image: {
  43329. source: "./media/characters/zane/werewolf.svg",
  43330. extra: 1383/1323,
  43331. bottom: 89/1472
  43332. }
  43333. },
  43334. foot: {
  43335. height: math.unit(1.46, "feet"),
  43336. name: "Foot",
  43337. image: {
  43338. source: "./media/characters/zane/foot.svg"
  43339. }
  43340. },
  43341. footFront: {
  43342. height: math.unit(0.784, "feet"),
  43343. name: "Foot (Front)",
  43344. image: {
  43345. source: "./media/characters/zane/foot-front.svg"
  43346. }
  43347. },
  43348. dick: {
  43349. height: math.unit(1.95, "feet"),
  43350. name: "Dick",
  43351. image: {
  43352. source: "./media/characters/zane/dick.svg"
  43353. }
  43354. },
  43355. dickWerewolf: {
  43356. height: math.unit(3.77, "feet"),
  43357. name: "Dick (Werewolf)",
  43358. image: {
  43359. source: "./media/characters/zane/dick.svg"
  43360. }
  43361. },
  43362. },
  43363. [
  43364. {
  43365. name: "Normal",
  43366. height: math.unit(7 + 5/12, "feet"),
  43367. default: true
  43368. },
  43369. ]
  43370. ))
  43371. characterMakers.push(() => makeCharacter(
  43372. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  43373. {
  43374. front: {
  43375. height: math.unit(6 + 2/12, "feet"),
  43376. weight: math.unit(284, "lb"),
  43377. name: "Front",
  43378. image: {
  43379. source: "./media/characters/benni-desparque/front.svg",
  43380. extra: 878/729,
  43381. bottom: 58/936
  43382. }
  43383. },
  43384. back: {
  43385. height: math.unit(6 + 2/12, "feet"),
  43386. weight: math.unit(284, "lb"),
  43387. name: "Back",
  43388. image: {
  43389. source: "./media/characters/benni-desparque/back.svg",
  43390. extra: 901/756,
  43391. bottom: 51/952
  43392. }
  43393. },
  43394. dressed: {
  43395. height: math.unit(6 + 2/12 + 0.5/12, "feet"),
  43396. weight: math.unit(284, "lb"),
  43397. name: "Dressed",
  43398. image: {
  43399. source: "./media/characters/benni-desparque/dressed.svg",
  43400. extra: 1514/1276,
  43401. bottom: 65/1579
  43402. }
  43403. },
  43404. hand: {
  43405. height: math.unit(1.28, "feet"),
  43406. name: "Hand",
  43407. image: {
  43408. source: "./media/characters/benni-desparque/hand.svg"
  43409. }
  43410. },
  43411. foot: {
  43412. height: math.unit(1.53, "feet"),
  43413. name: "Foot",
  43414. image: {
  43415. source: "./media/characters/benni-desparque/foot.svg"
  43416. }
  43417. },
  43418. aiControlUnit: {
  43419. height: math.unit(0.175, "feet"),
  43420. name: "AI Control Unit",
  43421. image: {
  43422. source: "./media/characters/benni-desparque/ai-control-unit.svg"
  43423. }
  43424. },
  43425. },
  43426. [
  43427. {
  43428. name: "Civilian",
  43429. height: math.unit(6 + 2/12, "feet")
  43430. },
  43431. {
  43432. name: "Normal",
  43433. height: math.unit(98, "feet"),
  43434. default: true
  43435. },
  43436. {
  43437. name: "Kaiju Fighter",
  43438. height: math.unit(268, "feet")
  43439. },
  43440. ]
  43441. ))
  43442. characterMakers.push(() => makeCharacter(
  43443. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  43444. {
  43445. front: {
  43446. height: math.unit(5, "feet"),
  43447. weight: math.unit(105, "lb"),
  43448. name: "Front",
  43449. image: {
  43450. source: "./media/characters/maxine/front.svg",
  43451. extra: 1386/1250,
  43452. bottom: 71/1457
  43453. }
  43454. },
  43455. },
  43456. [
  43457. {
  43458. name: "Normal",
  43459. height: math.unit(5, "feet"),
  43460. default: true
  43461. },
  43462. ]
  43463. ))
  43464. characterMakers.push(() => makeCharacter(
  43465. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  43466. {
  43467. front: {
  43468. height: math.unit(11 + 7/12, "feet"),
  43469. weight: math.unit(9576, "lb"),
  43470. name: "Front",
  43471. image: {
  43472. source: "./media/characters/scaly/front.svg",
  43473. extra: 888/867,
  43474. bottom: 36/924
  43475. }
  43476. },
  43477. },
  43478. [
  43479. {
  43480. name: "Normal",
  43481. height: math.unit(11 + 7/12, "feet"),
  43482. default: true
  43483. },
  43484. ]
  43485. ))
  43486. characterMakers.push(() => makeCharacter(
  43487. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  43488. {
  43489. front: {
  43490. height: math.unit(6 + 3/12, "feet"),
  43491. name: "Front",
  43492. image: {
  43493. source: "./media/characters/saelria/front.svg",
  43494. extra: 1243/1138,
  43495. bottom: 46/1289
  43496. }
  43497. },
  43498. },
  43499. [
  43500. {
  43501. name: "Micro",
  43502. height: math.unit(6, "inches"),
  43503. },
  43504. {
  43505. name: "Normal",
  43506. height: math.unit(6 + 3/12, "feet"),
  43507. default: true
  43508. },
  43509. {
  43510. name: "Macro",
  43511. height: math.unit(25, "feet")
  43512. },
  43513. ]
  43514. ))
  43515. characterMakers.push(() => makeCharacter(
  43516. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  43517. {
  43518. front: {
  43519. height: math.unit(80, "meters"),
  43520. weight: math.unit(7000, "tonnes"),
  43521. name: "Front",
  43522. image: {
  43523. source: "./media/characters/tef/front.svg",
  43524. extra: 2036/1991,
  43525. bottom: 54/2090
  43526. }
  43527. },
  43528. back: {
  43529. height: math.unit(80, "meters"),
  43530. weight: math.unit(7000, "tonnes"),
  43531. name: "Back",
  43532. image: {
  43533. source: "./media/characters/tef/back.svg",
  43534. extra: 2036/1991,
  43535. bottom: 54/2090
  43536. }
  43537. },
  43538. },
  43539. [
  43540. {
  43541. name: "Macro",
  43542. height: math.unit(80, "meters"),
  43543. default: true
  43544. },
  43545. ]
  43546. ))
  43547. characterMakers.push(() => makeCharacter(
  43548. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  43549. {
  43550. front: {
  43551. height: math.unit(13, "feet"),
  43552. weight: math.unit(6, "tons"),
  43553. name: "Front",
  43554. image: {
  43555. source: "./media/characters/rover/front.svg",
  43556. extra: 1233/1156,
  43557. bottom: 50/1283
  43558. }
  43559. },
  43560. back: {
  43561. height: math.unit(13, "feet"),
  43562. weight: math.unit(6, "tons"),
  43563. name: "Back",
  43564. image: {
  43565. source: "./media/characters/rover/back.svg",
  43566. extra: 1327/1258,
  43567. bottom: 39/1366
  43568. }
  43569. },
  43570. },
  43571. [
  43572. {
  43573. name: "Normal",
  43574. height: math.unit(13, "feet"),
  43575. default: true
  43576. },
  43577. {
  43578. name: "Macro",
  43579. height: math.unit(1300, "feet")
  43580. },
  43581. {
  43582. name: "Megamacro",
  43583. height: math.unit(1300, "miles")
  43584. },
  43585. {
  43586. name: "Gigamacro",
  43587. height: math.unit(1300000, "miles")
  43588. },
  43589. ]
  43590. ))
  43591. characterMakers.push(() => makeCharacter(
  43592. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  43593. {
  43594. front: {
  43595. height: math.unit(10, "feet"),
  43596. weight: math.unit(500, "lb"),
  43597. name: "Front",
  43598. image: {
  43599. source: "./media/characters/ariz/front.svg",
  43600. extra: 461/450,
  43601. bottom: 16/477
  43602. }
  43603. },
  43604. },
  43605. [
  43606. {
  43607. name: "MiniMacro",
  43608. height: math.unit(10, "feet"),
  43609. default: true
  43610. },
  43611. ]
  43612. ))
  43613. characterMakers.push(() => makeCharacter(
  43614. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  43615. {
  43616. front: {
  43617. height: math.unit(6, "feet"),
  43618. weight: math.unit(140, "lb"),
  43619. name: "Front",
  43620. image: {
  43621. source: "./media/characters/sigrun/front.svg",
  43622. extra: 1418/1359,
  43623. bottom: 27/1445
  43624. }
  43625. },
  43626. },
  43627. [
  43628. {
  43629. name: "Macro",
  43630. height: math.unit(35, "feet"),
  43631. default: true
  43632. },
  43633. ]
  43634. ))
  43635. characterMakers.push(() => makeCharacter(
  43636. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  43637. {
  43638. front: {
  43639. height: math.unit(6, "feet"),
  43640. weight: math.unit(150, "lb"),
  43641. name: "Front",
  43642. image: {
  43643. source: "./media/characters/numin/front.svg",
  43644. extra: 1433/1388,
  43645. bottom: 12/1445
  43646. }
  43647. },
  43648. },
  43649. [
  43650. {
  43651. name: "Macro",
  43652. height: math.unit(21.5, "km"),
  43653. default: true
  43654. },
  43655. ]
  43656. ))
  43657. characterMakers.push(() => makeCharacter(
  43658. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  43659. {
  43660. front: {
  43661. height: math.unit(6, "feet"),
  43662. weight: math.unit(463, "lb"),
  43663. name: "Front",
  43664. image: {
  43665. source: "./media/characters/melwa/front.svg",
  43666. extra: 1307/1248,
  43667. bottom: 93/1400
  43668. }
  43669. },
  43670. },
  43671. [
  43672. {
  43673. name: "Macro",
  43674. height: math.unit(50, "meters"),
  43675. default: true
  43676. },
  43677. ]
  43678. ))
  43679. characterMakers.push(() => makeCharacter(
  43680. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  43681. {
  43682. front: {
  43683. height: math.unit(325, "feet"),
  43684. name: "Front",
  43685. image: {
  43686. source: "./media/characters/zorkaiju/front.svg",
  43687. extra: 1955/1814,
  43688. bottom: 40/1995
  43689. }
  43690. },
  43691. frontExtended: {
  43692. height: math.unit(325, "feet"),
  43693. name: "Front (Extended)",
  43694. image: {
  43695. source: "./media/characters/zorkaiju/front-extended.svg",
  43696. extra: 1955/1814,
  43697. bottom: 40/1995
  43698. }
  43699. },
  43700. side: {
  43701. height: math.unit(325, "feet"),
  43702. name: "Side",
  43703. image: {
  43704. source: "./media/characters/zorkaiju/side.svg",
  43705. extra: 1495/1396,
  43706. bottom: 17/1512
  43707. }
  43708. },
  43709. sideExtended: {
  43710. height: math.unit(325, "feet"),
  43711. name: "Side (Extended)",
  43712. image: {
  43713. source: "./media/characters/zorkaiju/side-extended.svg",
  43714. extra: 1495/1396,
  43715. bottom: 17/1512
  43716. }
  43717. },
  43718. back: {
  43719. height: math.unit(325, "feet"),
  43720. name: "Back",
  43721. image: {
  43722. source: "./media/characters/zorkaiju/back.svg",
  43723. extra: 1959/1821,
  43724. bottom: 31/1990
  43725. }
  43726. },
  43727. backExtended: {
  43728. height: math.unit(325, "feet"),
  43729. name: "Back (Extended)",
  43730. image: {
  43731. source: "./media/characters/zorkaiju/back-extended.svg",
  43732. extra: 1959/1821,
  43733. bottom: 31/1990
  43734. }
  43735. },
  43736. hand: {
  43737. height: math.unit(58.4, "feet"),
  43738. name: "Hand",
  43739. image: {
  43740. source: "./media/characters/zorkaiju/hand.svg"
  43741. }
  43742. },
  43743. handExtended: {
  43744. height: math.unit(61.4, "feet"),
  43745. name: "Hand (Extended)",
  43746. image: {
  43747. source: "./media/characters/zorkaiju/hand-extended.svg"
  43748. }
  43749. },
  43750. foot: {
  43751. height: math.unit(95, "feet"),
  43752. name: "Foot",
  43753. image: {
  43754. source: "./media/characters/zorkaiju/foot.svg"
  43755. }
  43756. },
  43757. leftArm: {
  43758. height: math.unit(59, "feet"),
  43759. name: "Left Arm",
  43760. image: {
  43761. source: "./media/characters/zorkaiju/left-arm.svg"
  43762. }
  43763. },
  43764. rightArm: {
  43765. height: math.unit(59, "feet"),
  43766. name: "Right Arm",
  43767. image: {
  43768. source: "./media/characters/zorkaiju/right-arm.svg"
  43769. }
  43770. },
  43771. leftArmExtended: {
  43772. height: math.unit(59 * 1.033546, "feet"),
  43773. name: "Left Arm (Extended)",
  43774. image: {
  43775. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  43776. }
  43777. },
  43778. rightArmExtended: {
  43779. height: math.unit(59 * 1.0496, "feet"),
  43780. name: "Right Arm (Extended)",
  43781. image: {
  43782. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  43783. }
  43784. },
  43785. tail: {
  43786. height: math.unit(104, "feet"),
  43787. name: "Tail",
  43788. image: {
  43789. source: "./media/characters/zorkaiju/tail.svg"
  43790. }
  43791. },
  43792. tailExtended: {
  43793. height: math.unit(104, "feet"),
  43794. name: "Tail (Extended)",
  43795. image: {
  43796. source: "./media/characters/zorkaiju/tail-extended.svg"
  43797. }
  43798. },
  43799. tailBottom: {
  43800. height: math.unit(104, "feet"),
  43801. name: "Tail Bottom",
  43802. image: {
  43803. source: "./media/characters/zorkaiju/tail-bottom.svg"
  43804. }
  43805. },
  43806. crystal: {
  43807. height: math.unit(27.54, "feet"),
  43808. name: "Crystal",
  43809. image: {
  43810. source: "./media/characters/zorkaiju/crystal.svg"
  43811. }
  43812. },
  43813. },
  43814. [
  43815. {
  43816. name: "Kaiju",
  43817. height: math.unit(325, "feet"),
  43818. default: true
  43819. },
  43820. ]
  43821. ))
  43822. characterMakers.push(() => makeCharacter(
  43823. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  43824. {
  43825. front: {
  43826. height: math.unit(6 + 1/12, "feet"),
  43827. weight: math.unit(115, "lb"),
  43828. name: "Front",
  43829. image: {
  43830. source: "./media/characters/bailey-belfry/front.svg",
  43831. extra: 1240/1121,
  43832. bottom: 101/1341
  43833. }
  43834. },
  43835. },
  43836. [
  43837. {
  43838. name: "Normal",
  43839. height: math.unit(6 + 1/12, "feet"),
  43840. default: true
  43841. },
  43842. ]
  43843. ))
  43844. characterMakers.push(() => makeCharacter(
  43845. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  43846. {
  43847. side: {
  43848. height: math.unit(4, "meters"),
  43849. weight: math.unit(250, "kg"),
  43850. name: "Side",
  43851. image: {
  43852. source: "./media/characters/blacky/side.svg",
  43853. extra: 1027/919,
  43854. bottom: 43/1070
  43855. }
  43856. },
  43857. maw: {
  43858. height: math.unit(1, "meters"),
  43859. name: "Maw",
  43860. image: {
  43861. source: "./media/characters/blacky/maw.svg"
  43862. }
  43863. },
  43864. paw: {
  43865. height: math.unit(1, "meters"),
  43866. name: "Paw",
  43867. image: {
  43868. source: "./media/characters/blacky/paw.svg"
  43869. }
  43870. },
  43871. },
  43872. [
  43873. {
  43874. name: "Normal",
  43875. height: math.unit(4, "meters"),
  43876. default: true
  43877. },
  43878. ]
  43879. ))
  43880. characterMakers.push(() => makeCharacter(
  43881. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  43882. {
  43883. front: {
  43884. height: math.unit(170, "cm"),
  43885. weight: math.unit(66, "kg"),
  43886. name: "Front",
  43887. image: {
  43888. source: "./media/characters/thux-ei/front.svg",
  43889. extra: 1109/1011,
  43890. bottom: 8/1117
  43891. }
  43892. },
  43893. },
  43894. [
  43895. {
  43896. name: "Normal",
  43897. height: math.unit(170, "cm"),
  43898. default: true
  43899. },
  43900. ]
  43901. ))
  43902. characterMakers.push(() => makeCharacter(
  43903. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  43904. {
  43905. front: {
  43906. height: math.unit(5, "feet"),
  43907. weight: math.unit(120, "lb"),
  43908. name: "Front",
  43909. image: {
  43910. source: "./media/characters/roxanne-voltaire/front.svg",
  43911. extra: 1901/1779,
  43912. bottom: 53/1954
  43913. }
  43914. },
  43915. },
  43916. [
  43917. {
  43918. name: "Normal",
  43919. height: math.unit(5, "feet"),
  43920. default: true
  43921. },
  43922. {
  43923. name: "Giant",
  43924. height: math.unit(50, "feet")
  43925. },
  43926. {
  43927. name: "Titan",
  43928. height: math.unit(500, "feet")
  43929. },
  43930. {
  43931. name: "Macro",
  43932. height: math.unit(5000, "feet")
  43933. },
  43934. {
  43935. name: "Megamacro",
  43936. height: math.unit(50000, "feet")
  43937. },
  43938. {
  43939. name: "Gigamacro",
  43940. height: math.unit(500000, "feet")
  43941. },
  43942. {
  43943. name: "Teramacro",
  43944. height: math.unit(5e6, "feet")
  43945. },
  43946. ]
  43947. ))
  43948. characterMakers.push(() => makeCharacter(
  43949. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  43950. {
  43951. front: {
  43952. height: math.unit(6 + 2/12, "feet"),
  43953. name: "Front",
  43954. image: {
  43955. source: "./media/characters/squeaks/front.svg",
  43956. extra: 1823/1768,
  43957. bottom: 138/1961
  43958. }
  43959. },
  43960. },
  43961. [
  43962. {
  43963. name: "Micro",
  43964. height: math.unit(0.5, "inches")
  43965. },
  43966. {
  43967. name: "Normal",
  43968. height: math.unit(6 + 2/12, "feet"),
  43969. default: true
  43970. },
  43971. {
  43972. name: "Macro",
  43973. height: math.unit(600, "feet")
  43974. },
  43975. ]
  43976. ))
  43977. characterMakers.push(() => makeCharacter(
  43978. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  43979. {
  43980. front: {
  43981. height: math.unit(1.72, "meters"),
  43982. name: "Front",
  43983. image: {
  43984. source: "./media/characters/archinger/front.svg",
  43985. extra: 1861/1675,
  43986. bottom: 125/1986
  43987. }
  43988. },
  43989. back: {
  43990. height: math.unit(1.72, "meters"),
  43991. name: "Back",
  43992. image: {
  43993. source: "./media/characters/archinger/back.svg",
  43994. extra: 1844/1701,
  43995. bottom: 104/1948
  43996. }
  43997. },
  43998. cock: {
  43999. height: math.unit(0.59, "feet"),
  44000. name: "Cock",
  44001. image: {
  44002. source: "./media/characters/archinger/cock.svg"
  44003. }
  44004. },
  44005. },
  44006. [
  44007. {
  44008. name: "Normal",
  44009. height: math.unit(1.72, "meters"),
  44010. default: true
  44011. },
  44012. {
  44013. name: "Macro",
  44014. height: math.unit(84, "meters")
  44015. },
  44016. {
  44017. name: "Macro+",
  44018. height: math.unit(112, "meters")
  44019. },
  44020. {
  44021. name: "Macro++",
  44022. height: math.unit(960, "meters")
  44023. },
  44024. {
  44025. name: "Macro+++",
  44026. height: math.unit(4, "km")
  44027. },
  44028. {
  44029. name: "Macro++++",
  44030. height: math.unit(48, "km")
  44031. },
  44032. {
  44033. name: "Macro+++++",
  44034. height: math.unit(4500, "km")
  44035. },
  44036. ]
  44037. ))
  44038. characterMakers.push(() => makeCharacter(
  44039. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  44040. {
  44041. front: {
  44042. height: math.unit(5 + 5/12, "feet"),
  44043. name: "Front",
  44044. image: {
  44045. source: "./media/characters/alsnapz/front.svg",
  44046. extra: 1157/1065,
  44047. bottom: 42/1199
  44048. }
  44049. },
  44050. },
  44051. [
  44052. {
  44053. name: "Normal",
  44054. height: math.unit(5 + 5/12, "feet"),
  44055. default: true
  44056. },
  44057. ]
  44058. ))
  44059. characterMakers.push(() => makeCharacter(
  44060. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  44061. {
  44062. side: {
  44063. height: math.unit(3.2, "earths"),
  44064. name: "Side",
  44065. image: {
  44066. source: "./media/characters/mag/side.svg",
  44067. extra: 1331/1008,
  44068. bottom: 52/1383
  44069. }
  44070. },
  44071. wing: {
  44072. height: math.unit(1.94, "earths"),
  44073. name: "Wing",
  44074. image: {
  44075. source: "./media/characters/mag/wing.svg"
  44076. }
  44077. },
  44078. dick: {
  44079. height: math.unit(1.8, "earths"),
  44080. name: "Dick",
  44081. image: {
  44082. source: "./media/characters/mag/dick.svg"
  44083. }
  44084. },
  44085. ass: {
  44086. height: math.unit(1.33, "earths"),
  44087. name: "Ass",
  44088. image: {
  44089. source: "./media/characters/mag/ass.svg"
  44090. }
  44091. },
  44092. head: {
  44093. height: math.unit(1.1, "earths"),
  44094. name: "Head",
  44095. image: {
  44096. source: "./media/characters/mag/head.svg"
  44097. }
  44098. },
  44099. maw: {
  44100. height: math.unit(1.62, "earths"),
  44101. name: "Maw",
  44102. image: {
  44103. source: "./media/characters/mag/maw.svg"
  44104. }
  44105. },
  44106. },
  44107. [
  44108. {
  44109. name: "Small",
  44110. height: math.unit(162, "feet")
  44111. },
  44112. {
  44113. name: "Normal",
  44114. height: math.unit(3.2, "earths"),
  44115. default: true
  44116. },
  44117. ]
  44118. ))
  44119. characterMakers.push(() => makeCharacter(
  44120. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  44121. {
  44122. front: {
  44123. height: math.unit(512, "feet"),
  44124. weight: math.unit(63509, "tonnes"),
  44125. name: "Front",
  44126. image: {
  44127. source: "./media/characters/vorrel-harroc/front.svg",
  44128. extra: 1075/1063,
  44129. bottom: 62/1137
  44130. }
  44131. },
  44132. },
  44133. [
  44134. {
  44135. name: "Normal",
  44136. height: math.unit(10, "feet")
  44137. },
  44138. {
  44139. name: "Macro",
  44140. height: math.unit(512, "feet"),
  44141. default: true
  44142. },
  44143. {
  44144. name: "Megamacro",
  44145. height: math.unit(256, "miles")
  44146. },
  44147. {
  44148. name: "Gigamacro",
  44149. height: math.unit(4096, "miles")
  44150. },
  44151. ]
  44152. ))
  44153. characterMakers.push(() => makeCharacter(
  44154. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  44155. {
  44156. side: {
  44157. height: math.unit(50, "feet"),
  44158. name: "Side",
  44159. image: {
  44160. source: "./media/characters/froimar/side.svg",
  44161. extra: 855/638,
  44162. bottom: 99/954
  44163. }
  44164. },
  44165. },
  44166. [
  44167. {
  44168. name: "Macro",
  44169. height: math.unit(50, "feet"),
  44170. default: true
  44171. },
  44172. ]
  44173. ))
  44174. characterMakers.push(() => makeCharacter(
  44175. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  44176. {
  44177. front: {
  44178. height: math.unit(210, "miles"),
  44179. name: "Front",
  44180. image: {
  44181. source: "./media/characters/timothy/front.svg",
  44182. extra: 1007/943,
  44183. bottom: 62/1069
  44184. }
  44185. },
  44186. frontSkirt: {
  44187. height: math.unit(210, "miles"),
  44188. name: "Front (Skirt)",
  44189. image: {
  44190. source: "./media/characters/timothy/front-skirt.svg",
  44191. extra: 1007/943,
  44192. bottom: 62/1069
  44193. }
  44194. },
  44195. frontCoat: {
  44196. height: math.unit(210, "miles"),
  44197. name: "Front (Coat)",
  44198. image: {
  44199. source: "./media/characters/timothy/front-coat.svg",
  44200. extra: 1007/943,
  44201. bottom: 62/1069
  44202. }
  44203. },
  44204. },
  44205. [
  44206. {
  44207. name: "Macro",
  44208. height: math.unit(210, "miles"),
  44209. default: true
  44210. },
  44211. {
  44212. name: "Megamacro",
  44213. height: math.unit(210000, "miles")
  44214. },
  44215. ]
  44216. ))
  44217. characterMakers.push(() => makeCharacter(
  44218. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  44219. {
  44220. front: {
  44221. height: math.unit(188, "feet"),
  44222. name: "Front",
  44223. image: {
  44224. source: "./media/characters/pyotr/front.svg",
  44225. extra: 1912/1826,
  44226. bottom: 18/1930
  44227. }
  44228. },
  44229. },
  44230. [
  44231. {
  44232. name: "Macro",
  44233. height: math.unit(188, "feet"),
  44234. default: true
  44235. },
  44236. {
  44237. name: "Megamacro",
  44238. height: math.unit(8, "miles")
  44239. },
  44240. ]
  44241. ))
  44242. characterMakers.push(() => makeCharacter(
  44243. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  44244. {
  44245. side: {
  44246. height: math.unit(10, "feet"),
  44247. weight: math.unit(4500, "lb"),
  44248. name: "Side",
  44249. image: {
  44250. source: "./media/characters/ackart/side.svg",
  44251. extra: 1776/1668,
  44252. bottom: 116/1892
  44253. }
  44254. },
  44255. },
  44256. [
  44257. {
  44258. name: "Normal",
  44259. height: math.unit(10, "feet"),
  44260. default: true
  44261. },
  44262. ]
  44263. ))
  44264. characterMakers.push(() => makeCharacter(
  44265. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  44266. {
  44267. side: {
  44268. height: math.unit(21, "feet"),
  44269. name: "Side",
  44270. image: {
  44271. source: "./media/characters/nolow/side.svg",
  44272. extra: 1484/1434,
  44273. bottom: 85/1569
  44274. }
  44275. },
  44276. sideErect: {
  44277. height: math.unit(21, "feet"),
  44278. name: "Side-erect",
  44279. image: {
  44280. source: "./media/characters/nolow/side-erect.svg",
  44281. extra: 1484/1434,
  44282. bottom: 85/1569
  44283. }
  44284. },
  44285. },
  44286. [
  44287. {
  44288. name: "Regular",
  44289. height: math.unit(12, "feet")
  44290. },
  44291. {
  44292. name: "Big Chee",
  44293. height: math.unit(21, "feet"),
  44294. default: true
  44295. },
  44296. ]
  44297. ))
  44298. characterMakers.push(() => makeCharacter(
  44299. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  44300. {
  44301. front: {
  44302. height: math.unit(7, "feet"),
  44303. weight: math.unit(250, "lb"),
  44304. name: "Front",
  44305. image: {
  44306. source: "./media/characters/nines/front.svg",
  44307. extra: 1741/1607,
  44308. bottom: 41/1782
  44309. }
  44310. },
  44311. side: {
  44312. height: math.unit(7, "feet"),
  44313. weight: math.unit(250, "lb"),
  44314. name: "Side",
  44315. image: {
  44316. source: "./media/characters/nines/side.svg",
  44317. extra: 1854/1735,
  44318. bottom: 93/1947
  44319. }
  44320. },
  44321. back: {
  44322. height: math.unit(7, "feet"),
  44323. weight: math.unit(250, "lb"),
  44324. name: "Back",
  44325. image: {
  44326. source: "./media/characters/nines/back.svg",
  44327. extra: 1748/1615,
  44328. bottom: 20/1768
  44329. }
  44330. },
  44331. },
  44332. [
  44333. {
  44334. name: "Megamacro",
  44335. height: math.unit(99, "km"),
  44336. default: true
  44337. },
  44338. ]
  44339. ))
  44340. characterMakers.push(() => makeCharacter(
  44341. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  44342. {
  44343. front: {
  44344. height: math.unit(5 + 10/12, "feet"),
  44345. weight: math.unit(210, "lb"),
  44346. name: "Front",
  44347. image: {
  44348. source: "./media/characters/zenith/front.svg",
  44349. extra: 1531/1452,
  44350. bottom: 198/1729
  44351. }
  44352. },
  44353. back: {
  44354. height: math.unit(5 + 10/12, "feet"),
  44355. weight: math.unit(210, "lb"),
  44356. name: "Back",
  44357. image: {
  44358. source: "./media/characters/zenith/back.svg",
  44359. extra: 1571/1487,
  44360. bottom: 75/1646
  44361. }
  44362. },
  44363. },
  44364. [
  44365. {
  44366. name: "Normal",
  44367. height: math.unit(5 + 10/12, "feet"),
  44368. default: true
  44369. }
  44370. ]
  44371. ))
  44372. characterMakers.push(() => makeCharacter(
  44373. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  44374. {
  44375. front: {
  44376. height: math.unit(4, "feet"),
  44377. weight: math.unit(60, "lb"),
  44378. name: "Front",
  44379. image: {
  44380. source: "./media/characters/jasper/front.svg",
  44381. extra: 1450/1379,
  44382. bottom: 19/1469
  44383. }
  44384. },
  44385. },
  44386. [
  44387. {
  44388. name: "Normal",
  44389. height: math.unit(4, "feet"),
  44390. default: true
  44391. },
  44392. ]
  44393. ))
  44394. characterMakers.push(() => makeCharacter(
  44395. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  44396. {
  44397. front: {
  44398. height: math.unit(6 + 5/12, "feet"),
  44399. weight: math.unit(290, "lb"),
  44400. name: "Front",
  44401. image: {
  44402. source: "./media/characters/tiberius-thyben/front.svg",
  44403. extra: 757/739,
  44404. bottom: 39/796
  44405. }
  44406. },
  44407. },
  44408. [
  44409. {
  44410. name: "Micro",
  44411. height: math.unit(1.5, "inches")
  44412. },
  44413. {
  44414. name: "Normal",
  44415. height: math.unit(6 + 5/12, "feet"),
  44416. default: true
  44417. },
  44418. {
  44419. name: "Macro",
  44420. height: math.unit(300, "feet")
  44421. },
  44422. ]
  44423. ))
  44424. characterMakers.push(() => makeCharacter(
  44425. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  44426. {
  44427. front: {
  44428. height: math.unit(5 + 6/12, "feet"),
  44429. weight: math.unit(60, "kg"),
  44430. name: "Front",
  44431. image: {
  44432. source: "./media/characters/sabre/front.svg",
  44433. extra: 738/671,
  44434. bottom: 27/765
  44435. }
  44436. },
  44437. },
  44438. [
  44439. {
  44440. name: "Teeny",
  44441. height: math.unit(2, "inches")
  44442. },
  44443. {
  44444. name: "Smol",
  44445. height: math.unit(8, "inches")
  44446. },
  44447. {
  44448. name: "Normal",
  44449. height: math.unit(5 + 6/12, "feet"),
  44450. default: true
  44451. },
  44452. {
  44453. name: "Mini-Macro",
  44454. height: math.unit(15, "feet")
  44455. },
  44456. {
  44457. name: "Macro",
  44458. height: math.unit(50, "feet")
  44459. },
  44460. ]
  44461. ))
  44462. characterMakers.push(() => makeCharacter(
  44463. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  44464. {
  44465. front: {
  44466. height: math.unit(6 + 4/12, "feet"),
  44467. weight: math.unit(170, "lb"),
  44468. name: "Front",
  44469. image: {
  44470. source: "./media/characters/charlie/front.svg",
  44471. extra: 1348/1228,
  44472. bottom: 15/1363
  44473. }
  44474. },
  44475. },
  44476. [
  44477. {
  44478. name: "Macro",
  44479. height: math.unit(1700, "meters"),
  44480. default: true
  44481. },
  44482. {
  44483. name: "MegaMacro",
  44484. height: math.unit(20400, "meters")
  44485. },
  44486. ]
  44487. ))
  44488. characterMakers.push(() => makeCharacter(
  44489. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  44490. {
  44491. front: {
  44492. height: math.unit(1.96, "meters"),
  44493. weight: math.unit(220, "lb"),
  44494. name: "Front",
  44495. image: {
  44496. source: "./media/characters/susan-grant/front.svg",
  44497. extra: 482/478,
  44498. bottom: 7/489
  44499. }
  44500. },
  44501. },
  44502. [
  44503. {
  44504. name: "Normal",
  44505. height: math.unit(1.96, "meters"),
  44506. default: true
  44507. },
  44508. {
  44509. name: "Macro",
  44510. height: math.unit(76.2, "meters")
  44511. },
  44512. {
  44513. name: "MegaMacro",
  44514. height: math.unit(305, "meters")
  44515. },
  44516. {
  44517. name: "GigaMacro",
  44518. height: math.unit(1220, "meters")
  44519. },
  44520. {
  44521. name: "SuperMacro",
  44522. height: math.unit(4878, "meters")
  44523. },
  44524. ]
  44525. ))
  44526. characterMakers.push(() => makeCharacter(
  44527. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  44528. {
  44529. front: {
  44530. height: math.unit(5 + 4/12, "feet"),
  44531. weight: math.unit(110, "lb"),
  44532. name: "Front",
  44533. image: {
  44534. source: "./media/characters/axel-isanov/front.svg",
  44535. extra: 1096/1065,
  44536. bottom: 13/1109
  44537. }
  44538. },
  44539. },
  44540. [
  44541. {
  44542. name: "Normal",
  44543. height: math.unit(5 + 4/12, "feet"),
  44544. default: true
  44545. },
  44546. ]
  44547. ))
  44548. characterMakers.push(() => makeCharacter(
  44549. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  44550. {
  44551. front: {
  44552. height: math.unit(9, "feet"),
  44553. weight: math.unit(467, "lb"),
  44554. name: "Front",
  44555. image: {
  44556. source: "./media/characters/necahual/front.svg",
  44557. extra: 920/873,
  44558. bottom: 26/946
  44559. }
  44560. },
  44561. back: {
  44562. height: math.unit(9, "feet"),
  44563. weight: math.unit(467, "lb"),
  44564. name: "Back",
  44565. image: {
  44566. source: "./media/characters/necahual/back.svg",
  44567. extra: 930/884,
  44568. bottom: 16/946
  44569. }
  44570. },
  44571. frontUnderwear: {
  44572. height: math.unit(9, "feet"),
  44573. weight: math.unit(467, "lb"),
  44574. name: "Front (Underwear)",
  44575. image: {
  44576. source: "./media/characters/necahual/front-underwear.svg",
  44577. extra: 920/873,
  44578. bottom: 26/946
  44579. }
  44580. },
  44581. frontDressed: {
  44582. height: math.unit(9, "feet"),
  44583. weight: math.unit(467, "lb"),
  44584. name: "Front (Dressed)",
  44585. image: {
  44586. source: "./media/characters/necahual/front-dressed.svg",
  44587. extra: 920/873,
  44588. bottom: 26/946
  44589. }
  44590. },
  44591. },
  44592. [
  44593. {
  44594. name: "Comprsesed",
  44595. height: math.unit(9, "feet")
  44596. },
  44597. {
  44598. name: "Natural",
  44599. height: math.unit(15, "feet"),
  44600. default: true
  44601. },
  44602. {
  44603. name: "Boosted",
  44604. height: math.unit(50, "feet")
  44605. },
  44606. {
  44607. name: "Boosted+",
  44608. height: math.unit(150, "feet")
  44609. },
  44610. {
  44611. name: "Max",
  44612. height: math.unit(500, "feet")
  44613. },
  44614. ]
  44615. ))
  44616. characterMakers.push(() => makeCharacter(
  44617. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  44618. {
  44619. front: {
  44620. height: math.unit(22 + 1/12, "feet"),
  44621. weight: math.unit(3200, "lb"),
  44622. name: "Front",
  44623. image: {
  44624. source: "./media/characters/theo-acacia/front.svg",
  44625. extra: 1796/1741,
  44626. bottom: 83/1879
  44627. }
  44628. },
  44629. frontUnderwear: {
  44630. height: math.unit(22 + 1/12, "feet"),
  44631. weight: math.unit(3200, "lb"),
  44632. name: "Front (Underwear)",
  44633. image: {
  44634. source: "./media/characters/theo-acacia/front-underwear.svg",
  44635. extra: 1796/1741,
  44636. bottom: 83/1879
  44637. }
  44638. },
  44639. frontNude: {
  44640. height: math.unit(22 + 1/12, "feet"),
  44641. weight: math.unit(3200, "lb"),
  44642. name: "Front (Nude)",
  44643. image: {
  44644. source: "./media/characters/theo-acacia/front-nude.svg",
  44645. extra: 1796/1741,
  44646. bottom: 83/1879
  44647. }
  44648. },
  44649. },
  44650. [
  44651. {
  44652. name: "Normal",
  44653. height: math.unit(22 + 1/12, "feet"),
  44654. default: true
  44655. },
  44656. ]
  44657. ))
  44658. characterMakers.push(() => makeCharacter(
  44659. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44660. {
  44661. front: {
  44662. height: math.unit(20, "feet"),
  44663. name: "Front",
  44664. image: {
  44665. source: "./media/characters/astra/front.svg",
  44666. extra: 1850/1714,
  44667. bottom: 106/1956
  44668. }
  44669. },
  44670. frontUndressed: {
  44671. height: math.unit(20, "feet"),
  44672. name: "Front (Undressed)",
  44673. image: {
  44674. source: "./media/characters/astra/front-undressed.svg",
  44675. extra: 1926/1749,
  44676. bottom: 0/1926
  44677. }
  44678. },
  44679. hand: {
  44680. height: math.unit(1.53, "feet"),
  44681. name: "Hand",
  44682. image: {
  44683. source: "./media/characters/astra/hand.svg"
  44684. }
  44685. },
  44686. paw: {
  44687. height: math.unit(1.53, "feet"),
  44688. name: "Paw",
  44689. image: {
  44690. source: "./media/characters/astra/paw.svg"
  44691. }
  44692. },
  44693. },
  44694. [
  44695. {
  44696. name: "Smallest",
  44697. height: math.unit(20, "feet")
  44698. },
  44699. {
  44700. name: "Normal",
  44701. height: math.unit(1e9, "miles"),
  44702. default: true
  44703. },
  44704. {
  44705. name: "Larger",
  44706. height: math.unit(5, "multiverses")
  44707. },
  44708. {
  44709. name: "Largest",
  44710. height: math.unit(1e9, "multiverses")
  44711. },
  44712. ]
  44713. ))
  44714. characterMakers.push(() => makeCharacter(
  44715. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44716. {
  44717. front: {
  44718. height: math.unit(8, "feet"),
  44719. name: "Front",
  44720. image: {
  44721. source: "./media/characters/breanna/front.svg",
  44722. extra: 1912/1632,
  44723. bottom: 33/1945
  44724. }
  44725. },
  44726. },
  44727. [
  44728. {
  44729. name: "Smallest",
  44730. height: math.unit(8, "feet")
  44731. },
  44732. {
  44733. name: "Normal",
  44734. height: math.unit(1, "mile"),
  44735. default: true
  44736. },
  44737. {
  44738. name: "Maximum",
  44739. height: math.unit(1500000000000, "lightyears")
  44740. },
  44741. ]
  44742. ))
  44743. characterMakers.push(() => makeCharacter(
  44744. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  44745. {
  44746. front: {
  44747. height: math.unit(5 + 11/12, "feet"),
  44748. weight: math.unit(155, "lb"),
  44749. name: "Front",
  44750. image: {
  44751. source: "./media/characters/cai/front.svg",
  44752. extra: 1823/1702,
  44753. bottom: 32/1855
  44754. }
  44755. },
  44756. back: {
  44757. height: math.unit(5 + 11/12, "feet"),
  44758. weight: math.unit(155, "lb"),
  44759. name: "Back",
  44760. image: {
  44761. source: "./media/characters/cai/back.svg",
  44762. extra: 1809/1708,
  44763. bottom: 31/1840
  44764. }
  44765. },
  44766. },
  44767. [
  44768. {
  44769. name: "Normal",
  44770. height: math.unit(5 + 11/12, "feet"),
  44771. default: true
  44772. },
  44773. {
  44774. name: "Big",
  44775. height: math.unit(15, "feet")
  44776. },
  44777. {
  44778. name: "Macro",
  44779. height: math.unit(200, "feet")
  44780. },
  44781. ]
  44782. ))
  44783. characterMakers.push(() => makeCharacter(
  44784. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  44785. {
  44786. front: {
  44787. height: math.unit(5 + 6/12, "feet"),
  44788. weight: math.unit(160, "lb"),
  44789. name: "Front",
  44790. image: {
  44791. source: "./media/characters/zanna-virtuedòttir/front.svg",
  44792. extra: 1227/1174,
  44793. bottom: 37/1264
  44794. }
  44795. },
  44796. },
  44797. [
  44798. {
  44799. name: "Macro",
  44800. height: math.unit(444, "meters"),
  44801. default: true
  44802. },
  44803. ]
  44804. ))
  44805. characterMakers.push(() => makeCharacter(
  44806. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  44807. {
  44808. front: {
  44809. height: math.unit(18 + 7/12, "feet"),
  44810. name: "Front",
  44811. image: {
  44812. source: "./media/characters/rex/front.svg",
  44813. extra: 1941/1807,
  44814. bottom: 66/2007
  44815. }
  44816. },
  44817. back: {
  44818. height: math.unit(18 + 7/12, "feet"),
  44819. name: "Back",
  44820. image: {
  44821. source: "./media/characters/rex/back.svg",
  44822. extra: 1937/1822,
  44823. bottom: 42/1979
  44824. }
  44825. },
  44826. boot: {
  44827. height: math.unit(3.45, "feet"),
  44828. name: "Boot",
  44829. image: {
  44830. source: "./media/characters/rex/boot.svg"
  44831. }
  44832. },
  44833. paw: {
  44834. height: math.unit(4.17, "feet"),
  44835. name: "Paw",
  44836. image: {
  44837. source: "./media/characters/rex/paw.svg"
  44838. }
  44839. },
  44840. head: {
  44841. height: math.unit(6.728, "feet"),
  44842. name: "Head",
  44843. image: {
  44844. source: "./media/characters/rex/head.svg"
  44845. }
  44846. },
  44847. },
  44848. [
  44849. {
  44850. name: "Nano",
  44851. height: math.unit(18 + 7/12, "feet")
  44852. },
  44853. {
  44854. name: "Micro",
  44855. height: math.unit(1.5, "megameters")
  44856. },
  44857. {
  44858. name: "Normal",
  44859. height: math.unit(440, "megameters"),
  44860. default: true
  44861. },
  44862. {
  44863. name: "Macro",
  44864. height: math.unit(2.5, "gigameters")
  44865. },
  44866. {
  44867. name: "Gigamacro",
  44868. height: math.unit(2, "galaxies")
  44869. },
  44870. ]
  44871. ))
  44872. characterMakers.push(() => makeCharacter(
  44873. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  44874. {
  44875. side: {
  44876. height: math.unit(32, "feet"),
  44877. weight: math.unit(250000, "lb"),
  44878. name: "Side",
  44879. image: {
  44880. source: "./media/characters/silverwing/side.svg",
  44881. extra: 1100/1019,
  44882. bottom: 204/1304
  44883. }
  44884. },
  44885. },
  44886. [
  44887. {
  44888. name: "Normal",
  44889. height: math.unit(32, "feet"),
  44890. default: true
  44891. },
  44892. ]
  44893. ))
  44894. characterMakers.push(() => makeCharacter(
  44895. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  44896. {
  44897. front: {
  44898. height: math.unit(6 + 6/12, "feet"),
  44899. weight: math.unit(350, "lb"),
  44900. name: "Front",
  44901. image: {
  44902. source: "./media/characters/tristan-hawthorne/front.svg",
  44903. extra: 1159/1124,
  44904. bottom: 37/1196
  44905. },
  44906. form: "labrador",
  44907. default: true
  44908. },
  44909. skunkFront: {
  44910. height: math.unit(4 + 6/12, "feet"),
  44911. weight: math.unit(120, "lb"),
  44912. name: "Front",
  44913. image: {
  44914. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  44915. extra: 1609/1551,
  44916. bottom: 169/1778
  44917. },
  44918. form: "skunk",
  44919. default: true
  44920. },
  44921. },
  44922. [
  44923. {
  44924. name: "Normal",
  44925. height: math.unit(6 + 6/12, "feet"),
  44926. form: "labrador",
  44927. default: true
  44928. },
  44929. {
  44930. name: "Normal",
  44931. height: math.unit(4 + 6/12, "feet"),
  44932. form: "skunk",
  44933. default: true
  44934. },
  44935. ],
  44936. {
  44937. "labrador": {
  44938. name: "Labrador",
  44939. default: true
  44940. },
  44941. "skunk": {
  44942. name: "Skunk"
  44943. }
  44944. }
  44945. ))
  44946. characterMakers.push(() => makeCharacter(
  44947. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  44948. {
  44949. front: {
  44950. height: math.unit(5 + 11/12, "feet"),
  44951. weight: math.unit(190, "lb"),
  44952. name: "Front",
  44953. image: {
  44954. source: "./media/characters/mizu/front.svg",
  44955. extra: 1988/1788,
  44956. bottom: 14/2002
  44957. }
  44958. },
  44959. },
  44960. [
  44961. {
  44962. name: "Normal",
  44963. height: math.unit(5 + 11/12, "feet"),
  44964. default: true
  44965. },
  44966. ]
  44967. ))
  44968. characterMakers.push(() => makeCharacter(
  44969. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  44970. {
  44971. front: {
  44972. height: math.unit(1.7, "feet"),
  44973. weight: math.unit(50, "lb"),
  44974. name: "Front",
  44975. image: {
  44976. source: "./media/characters/dechroma/front.svg",
  44977. extra: 1095/859,
  44978. bottom: 64/1159
  44979. }
  44980. },
  44981. },
  44982. [
  44983. {
  44984. name: "Normal",
  44985. height: math.unit(1.7, "feet"),
  44986. default: true
  44987. },
  44988. ]
  44989. ))
  44990. characterMakers.push(() => makeCharacter(
  44991. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  44992. {
  44993. side: {
  44994. height: math.unit(30, "feet"),
  44995. name: "Side",
  44996. image: {
  44997. source: "./media/characters/veluren-thanazel/side.svg",
  44998. extra: 1611/633,
  44999. bottom: 118/1729
  45000. }
  45001. },
  45002. front: {
  45003. height: math.unit(30, "feet"),
  45004. name: "Front",
  45005. image: {
  45006. source: "./media/characters/veluren-thanazel/front.svg",
  45007. extra: 1486/636,
  45008. bottom: 238/1724
  45009. }
  45010. },
  45011. head: {
  45012. height: math.unit(21.4, "feet"),
  45013. name: "Head",
  45014. image: {
  45015. source: "./media/characters/veluren-thanazel/head.svg"
  45016. }
  45017. },
  45018. genitals: {
  45019. height: math.unit(19.4, "feet"),
  45020. name: "Genitals",
  45021. image: {
  45022. source: "./media/characters/veluren-thanazel/genitals.svg"
  45023. }
  45024. },
  45025. },
  45026. [
  45027. {
  45028. name: "Social",
  45029. height: math.unit(6, "feet")
  45030. },
  45031. {
  45032. name: "Play",
  45033. height: math.unit(12, "feet")
  45034. },
  45035. {
  45036. name: "True",
  45037. height: math.unit(30, "feet"),
  45038. default: true
  45039. },
  45040. ]
  45041. ))
  45042. characterMakers.push(() => makeCharacter(
  45043. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  45044. {
  45045. front: {
  45046. height: math.unit(7 + 6/12, "feet"),
  45047. weight: math.unit(500, "kg"),
  45048. name: "Front",
  45049. image: {
  45050. source: "./media/characters/arcturas/front.svg",
  45051. extra: 1700/1500,
  45052. bottom: 145/1845
  45053. }
  45054. },
  45055. },
  45056. [
  45057. {
  45058. name: "Normal",
  45059. height: math.unit(7 + 6/12, "feet"),
  45060. default: true
  45061. },
  45062. ]
  45063. ))
  45064. characterMakers.push(() => makeCharacter(
  45065. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  45066. {
  45067. side: {
  45068. height: math.unit(6, "feet"),
  45069. weight: math.unit(2, "tons"),
  45070. name: "Side",
  45071. image: {
  45072. source: "./media/characters/vitaen/side.svg",
  45073. extra: 1157/617,
  45074. bottom: 122/1279
  45075. }
  45076. },
  45077. },
  45078. [
  45079. {
  45080. name: "Normal",
  45081. height: math.unit(6, "feet"),
  45082. default: true
  45083. },
  45084. ]
  45085. ))
  45086. characterMakers.push(() => makeCharacter(
  45087. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  45088. {
  45089. front: {
  45090. height: math.unit(19, "feet"),
  45091. name: "Front",
  45092. image: {
  45093. source: "./media/characters/fia-dreamweaver/front.svg",
  45094. extra: 1630/1504,
  45095. bottom: 25/1655
  45096. }
  45097. },
  45098. },
  45099. [
  45100. {
  45101. name: "Normal",
  45102. height: math.unit(19, "feet"),
  45103. default: true
  45104. },
  45105. ]
  45106. ))
  45107. characterMakers.push(() => makeCharacter(
  45108. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  45109. {
  45110. front: {
  45111. height: math.unit(5 + 4/12, "feet"),
  45112. name: "Front",
  45113. image: {
  45114. source: "./media/characters/artan/front.svg",
  45115. extra: 1618/1535,
  45116. bottom: 46/1664
  45117. }
  45118. },
  45119. back: {
  45120. height: math.unit(5 + 4/12, "feet"),
  45121. name: "Back",
  45122. image: {
  45123. source: "./media/characters/artan/back.svg",
  45124. extra: 1618/1543,
  45125. bottom: 31/1649
  45126. }
  45127. },
  45128. },
  45129. [
  45130. {
  45131. name: "Normal",
  45132. height: math.unit(5 + 4/12, "feet"),
  45133. default: true
  45134. },
  45135. ]
  45136. ))
  45137. characterMakers.push(() => makeCharacter(
  45138. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  45139. {
  45140. side: {
  45141. height: math.unit(182, "cm"),
  45142. weight: math.unit(1000, "lb"),
  45143. name: "Side",
  45144. image: {
  45145. source: "./media/characters/silver-dragon/side.svg",
  45146. extra: 710/287,
  45147. bottom: 88/798
  45148. }
  45149. },
  45150. },
  45151. [
  45152. {
  45153. name: "Normal",
  45154. height: math.unit(182, "cm"),
  45155. default: true
  45156. },
  45157. ]
  45158. ))
  45159. characterMakers.push(() => makeCharacter(
  45160. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  45161. {
  45162. side: {
  45163. height: math.unit(6 + 6/12, "feet"),
  45164. weight: math.unit(1.5, "tons"),
  45165. name: "Side",
  45166. image: {
  45167. source: "./media/characters/zephyr/side.svg",
  45168. extra: 1433/586,
  45169. bottom: 109/1542
  45170. }
  45171. },
  45172. },
  45173. [
  45174. {
  45175. name: "Normal",
  45176. height: math.unit(6 + 6/12, "feet"),
  45177. default: true
  45178. },
  45179. ]
  45180. ))
  45181. characterMakers.push(() => makeCharacter(
  45182. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  45183. {
  45184. side: {
  45185. height: math.unit(1, "feet"),
  45186. name: "Side",
  45187. image: {
  45188. source: "./media/characters/vixye/side.svg",
  45189. extra: 632/541,
  45190. bottom: 0/632
  45191. }
  45192. },
  45193. },
  45194. [
  45195. {
  45196. name: "Normal",
  45197. height: math.unit(1, "feet"),
  45198. default: true
  45199. },
  45200. {
  45201. name: "True",
  45202. height: math.unit(1e15, "multiverses")
  45203. },
  45204. ]
  45205. ))
  45206. characterMakers.push(() => makeCharacter(
  45207. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  45208. {
  45209. front: {
  45210. height: math.unit(8 + 2/12, "feet"),
  45211. weight: math.unit(650, "lb"),
  45212. name: "Front",
  45213. image: {
  45214. source: "./media/characters/darla-mac-lochlainn/front.svg",
  45215. extra: 1174/1137,
  45216. bottom: 82/1256
  45217. }
  45218. },
  45219. back: {
  45220. height: math.unit(8 + 2/12, "feet"),
  45221. weight: math.unit(650, "lb"),
  45222. name: "Back",
  45223. image: {
  45224. source: "./media/characters/darla-mac-lochlainn/back.svg",
  45225. extra: 1204/1157,
  45226. bottom: 46/1250
  45227. }
  45228. },
  45229. },
  45230. [
  45231. {
  45232. name: "Wildform",
  45233. height: math.unit(8 + 2/12, "feet"),
  45234. default: true
  45235. },
  45236. ]
  45237. ))
  45238. characterMakers.push(() => makeCharacter(
  45239. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  45240. {
  45241. front: {
  45242. height: math.unit(18, "feet"),
  45243. name: "Front",
  45244. image: {
  45245. source: "./media/characters/cyphin/front.svg",
  45246. extra: 970/886,
  45247. bottom: 42/1012
  45248. }
  45249. },
  45250. back: {
  45251. height: math.unit(18, "feet"),
  45252. name: "Back",
  45253. image: {
  45254. source: "./media/characters/cyphin/back.svg",
  45255. extra: 1009/894,
  45256. bottom: 24/1033
  45257. }
  45258. },
  45259. head: {
  45260. height: math.unit(5.05, "feet"),
  45261. name: "Head",
  45262. image: {
  45263. source: "./media/characters/cyphin/head.svg"
  45264. }
  45265. },
  45266. tailbud: {
  45267. height: math.unit(5, "feet"),
  45268. name: "Tailbud",
  45269. image: {
  45270. source: "./media/characters/cyphin/tailbud.svg"
  45271. }
  45272. },
  45273. },
  45274. [
  45275. ]
  45276. ))
  45277. characterMakers.push(() => makeCharacter(
  45278. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  45279. {
  45280. side: {
  45281. height: math.unit(10, "feet"),
  45282. weight: math.unit(6, "tons"),
  45283. name: "Side",
  45284. image: {
  45285. source: "./media/characters/raijin/side.svg",
  45286. extra: 1529/613,
  45287. bottom: 337/1866
  45288. }
  45289. },
  45290. },
  45291. [
  45292. {
  45293. name: "Normal",
  45294. height: math.unit(10, "feet"),
  45295. default: true
  45296. },
  45297. ]
  45298. ))
  45299. characterMakers.push(() => makeCharacter(
  45300. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  45301. {
  45302. side: {
  45303. height: math.unit(9, "feet"),
  45304. name: "Side",
  45305. image: {
  45306. source: "./media/characters/nilghais/side.svg",
  45307. extra: 1047/744,
  45308. bottom: 91/1138
  45309. }
  45310. },
  45311. head: {
  45312. height: math.unit(3.14, "feet"),
  45313. name: "Head",
  45314. image: {
  45315. source: "./media/characters/nilghais/head.svg"
  45316. }
  45317. },
  45318. mouth: {
  45319. height: math.unit(4.6, "feet"),
  45320. name: "Mouth",
  45321. image: {
  45322. source: "./media/characters/nilghais/mouth.svg"
  45323. }
  45324. },
  45325. wings: {
  45326. height: math.unit(24, "feet"),
  45327. name: "Wings",
  45328. image: {
  45329. source: "./media/characters/nilghais/wings.svg"
  45330. }
  45331. },
  45332. ass: {
  45333. height: math.unit(6.12, "feet"),
  45334. name: "Ass",
  45335. image: {
  45336. source: "./media/characters/nilghais/ass.svg"
  45337. }
  45338. },
  45339. },
  45340. [
  45341. {
  45342. name: "Normal",
  45343. height: math.unit(9, "feet"),
  45344. default: true
  45345. },
  45346. ]
  45347. ))
  45348. characterMakers.push(() => makeCharacter(
  45349. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  45350. {
  45351. regular: {
  45352. height: math.unit(16 + 2/12, "feet"),
  45353. weight: math.unit(2300, "lb"),
  45354. name: "Regular",
  45355. image: {
  45356. source: "./media/characters/zolgar/regular.svg",
  45357. extra: 1246/1004,
  45358. bottom: 124/1370
  45359. }
  45360. },
  45361. boxers: {
  45362. height: math.unit(16 + 2/12, "feet"),
  45363. weight: math.unit(2300, "lb"),
  45364. name: "Boxers",
  45365. image: {
  45366. source: "./media/characters/zolgar/boxers.svg",
  45367. extra: 1246/1004,
  45368. bottom: 124/1370
  45369. }
  45370. },
  45371. armored: {
  45372. height: math.unit(16 + 2/12, "feet"),
  45373. weight: math.unit(2300, "lb"),
  45374. name: "Armored",
  45375. image: {
  45376. source: "./media/characters/zolgar/armored.svg",
  45377. extra: 1246/1004,
  45378. bottom: 124/1370
  45379. }
  45380. },
  45381. goth: {
  45382. height: math.unit(16 + 2/12, "feet"),
  45383. weight: math.unit(2300, "lb"),
  45384. name: "Goth",
  45385. image: {
  45386. source: "./media/characters/zolgar/goth.svg",
  45387. extra: 1246/1004,
  45388. bottom: 124/1370
  45389. }
  45390. },
  45391. },
  45392. [
  45393. {
  45394. name: "Shrunken Down",
  45395. height: math.unit(9 + 2/12, "feet")
  45396. },
  45397. {
  45398. name: "Normal",
  45399. height: math.unit(16 + 2/12, "feet"),
  45400. default: true
  45401. },
  45402. ]
  45403. ))
  45404. characterMakers.push(() => makeCharacter(
  45405. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  45406. {
  45407. front: {
  45408. height: math.unit(6, "feet"),
  45409. weight: math.unit(168, "lb"),
  45410. name: "Front",
  45411. image: {
  45412. source: "./media/characters/luca/front.svg",
  45413. extra: 841/667,
  45414. bottom: 102/943
  45415. }
  45416. },
  45417. },
  45418. [
  45419. {
  45420. name: "Normal",
  45421. height: math.unit(6, "feet"),
  45422. default: true
  45423. },
  45424. ]
  45425. ))
  45426. characterMakers.push(() => makeCharacter(
  45427. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  45428. {
  45429. side: {
  45430. height: math.unit(7 + 3/12, "feet"),
  45431. weight: math.unit(312, "lb"),
  45432. name: "Side",
  45433. image: {
  45434. source: "./media/characters/zezo/side.svg",
  45435. extra: 1192/1067,
  45436. bottom: 63/1255
  45437. }
  45438. },
  45439. },
  45440. [
  45441. {
  45442. name: "Normal",
  45443. height: math.unit(7 + 3/12, "feet"),
  45444. default: true
  45445. },
  45446. ]
  45447. ))
  45448. characterMakers.push(() => makeCharacter(
  45449. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  45450. {
  45451. front: {
  45452. height: math.unit(5 + 5/12, "feet"),
  45453. weight: math.unit(170, "lb"),
  45454. name: "Front",
  45455. image: {
  45456. source: "./media/characters/mayso/front.svg",
  45457. extra: 1215/1108,
  45458. bottom: 16/1231
  45459. }
  45460. },
  45461. },
  45462. [
  45463. {
  45464. name: "Normal",
  45465. height: math.unit(5 + 5/12, "feet"),
  45466. default: true
  45467. },
  45468. ]
  45469. ))
  45470. characterMakers.push(() => makeCharacter(
  45471. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  45472. {
  45473. front: {
  45474. height: math.unit(4 + 3/12, "feet"),
  45475. weight: math.unit(80, "lb"),
  45476. name: "Front",
  45477. image: {
  45478. source: "./media/characters/hess/front.svg",
  45479. extra: 1200/1123,
  45480. bottom: 16/1216
  45481. }
  45482. },
  45483. },
  45484. [
  45485. {
  45486. name: "Normal",
  45487. height: math.unit(4 + 3/12, "feet"),
  45488. default: true
  45489. },
  45490. ]
  45491. ))
  45492. characterMakers.push(() => makeCharacter(
  45493. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  45494. {
  45495. front: {
  45496. height: math.unit(1.9, "meters"),
  45497. name: "Front",
  45498. image: {
  45499. source: "./media/characters/ashgar/front.svg",
  45500. extra: 1177/1146,
  45501. bottom: 99/1276
  45502. }
  45503. },
  45504. back: {
  45505. height: math.unit(1.9, "meters"),
  45506. name: "Back",
  45507. image: {
  45508. source: "./media/characters/ashgar/back.svg",
  45509. extra: 1201/1183,
  45510. bottom: 53/1254
  45511. }
  45512. },
  45513. feral: {
  45514. height: math.unit(1.4, "meters"),
  45515. name: "Feral",
  45516. image: {
  45517. source: "./media/characters/ashgar/feral.svg",
  45518. extra: 370/345,
  45519. bottom: 45/415
  45520. }
  45521. },
  45522. },
  45523. [
  45524. {
  45525. name: "Normal",
  45526. height: math.unit(1.9, "meters"),
  45527. default: true
  45528. },
  45529. ]
  45530. ))
  45531. characterMakers.push(() => makeCharacter(
  45532. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  45533. {
  45534. regular: {
  45535. height: math.unit(6, "feet"),
  45536. weight: math.unit(220, "lb"),
  45537. name: "Regular",
  45538. image: {
  45539. source: "./media/characters/phillip/regular.svg",
  45540. extra: 1373/1277,
  45541. bottom: 75/1448
  45542. }
  45543. },
  45544. dressed: {
  45545. height: math.unit(6, "feet"),
  45546. weight: math.unit(220, "lb"),
  45547. name: "Dressed",
  45548. image: {
  45549. source: "./media/characters/phillip/dressed.svg",
  45550. extra: 1373/1277,
  45551. bottom: 75/1448
  45552. }
  45553. },
  45554. paw: {
  45555. height: math.unit(1.44, "feet"),
  45556. name: "Paw",
  45557. image: {
  45558. source: "./media/characters/phillip/paw.svg"
  45559. }
  45560. },
  45561. },
  45562. [
  45563. {
  45564. name: "Normal",
  45565. height: math.unit(6, "feet"),
  45566. default: true
  45567. },
  45568. ]
  45569. ))
  45570. characterMakers.push(() => makeCharacter(
  45571. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  45572. {
  45573. side: {
  45574. height: math.unit(42, "feet"),
  45575. name: "Side",
  45576. image: {
  45577. source: "./media/characters/uvula/side.svg",
  45578. extra: 683/586,
  45579. bottom: 60/743
  45580. }
  45581. },
  45582. front: {
  45583. height: math.unit(42, "feet"),
  45584. name: "Front",
  45585. image: {
  45586. source: "./media/characters/uvula/front.svg",
  45587. extra: 705/613,
  45588. bottom: 54/759
  45589. }
  45590. },
  45591. maw: {
  45592. height: math.unit(23.5, "feet"),
  45593. name: "Maw",
  45594. image: {
  45595. source: "./media/characters/uvula/maw.svg"
  45596. }
  45597. },
  45598. },
  45599. [
  45600. {
  45601. name: "Original Size",
  45602. height: math.unit(14, "inches")
  45603. },
  45604. {
  45605. name: "Human Size",
  45606. height: math.unit(6, "feet")
  45607. },
  45608. {
  45609. name: "Big",
  45610. height: math.unit(42, "feet"),
  45611. default: true
  45612. },
  45613. {
  45614. name: "Bigger",
  45615. height: math.unit(100, "feet")
  45616. },
  45617. ]
  45618. ))
  45619. characterMakers.push(() => makeCharacter(
  45620. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  45621. {
  45622. front: {
  45623. height: math.unit(5 + 11/12, "feet"),
  45624. name: "Front",
  45625. image: {
  45626. source: "./media/characters/lannah/front.svg",
  45627. extra: 1208/1113,
  45628. bottom: 97/1305
  45629. }
  45630. },
  45631. },
  45632. [
  45633. {
  45634. name: "Normal",
  45635. height: math.unit(5 + 11/12, "feet"),
  45636. default: true
  45637. },
  45638. ]
  45639. ))
  45640. characterMakers.push(() => makeCharacter(
  45641. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  45642. {
  45643. front: {
  45644. height: math.unit(6 + 3/12, "feet"),
  45645. weight: math.unit(3.5, "tons"),
  45646. name: "Front",
  45647. image: {
  45648. source: "./media/characters/emberflame/front.svg",
  45649. extra: 1198/672,
  45650. bottom: 82/1280
  45651. }
  45652. },
  45653. side: {
  45654. height: math.unit(6 + 3/12, "feet"),
  45655. weight: math.unit(3.5, "tons"),
  45656. name: "Side",
  45657. image: {
  45658. source: "./media/characters/emberflame/side.svg",
  45659. extra: 938/527,
  45660. bottom: 56/994
  45661. }
  45662. },
  45663. },
  45664. [
  45665. {
  45666. name: "Normal",
  45667. height: math.unit(6 + 3/12, "feet"),
  45668. default: true
  45669. },
  45670. ]
  45671. ))
  45672. characterMakers.push(() => makeCharacter(
  45673. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  45674. {
  45675. side: {
  45676. height: math.unit(17.5, "feet"),
  45677. weight: math.unit(35, "tons"),
  45678. name: "Side",
  45679. image: {
  45680. source: "./media/characters/sophie-ambrose/side.svg",
  45681. extra: 1573/1242,
  45682. bottom: 71/1644
  45683. }
  45684. },
  45685. maw: {
  45686. height: math.unit(7.4, "feet"),
  45687. name: "Maw",
  45688. image: {
  45689. source: "./media/characters/sophie-ambrose/maw.svg"
  45690. }
  45691. },
  45692. },
  45693. [
  45694. {
  45695. name: "Normal",
  45696. height: math.unit(17.5, "feet"),
  45697. default: true
  45698. },
  45699. ]
  45700. ))
  45701. characterMakers.push(() => makeCharacter(
  45702. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  45703. {
  45704. front: {
  45705. height: math.unit(280, "feet"),
  45706. weight: math.unit(550, "tons"),
  45707. name: "Front",
  45708. image: {
  45709. source: "./media/characters/king-mugi/front.svg",
  45710. extra: 1102/947,
  45711. bottom: 104/1206
  45712. }
  45713. },
  45714. },
  45715. [
  45716. {
  45717. name: "King Mugi",
  45718. height: math.unit(280, "feet"),
  45719. default: true
  45720. },
  45721. ]
  45722. ))
  45723. characterMakers.push(() => makeCharacter(
  45724. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  45725. {
  45726. female: {
  45727. height: math.unit(300, "meters"),
  45728. name: "Front",
  45729. image: {
  45730. source: "./media/characters/nova-fox/female.svg",
  45731. extra: 664/632,
  45732. bottom: 51/715
  45733. },
  45734. form: "female",
  45735. default: true
  45736. },
  45737. male: {
  45738. height: math.unit(300, "meters"),
  45739. name: "Front",
  45740. image: {
  45741. source: "./media/characters/nova-fox/male.svg",
  45742. extra: 663/631,
  45743. bottom: 30/693
  45744. },
  45745. form: "male",
  45746. default: true
  45747. },
  45748. },
  45749. [
  45750. {
  45751. name: "Macro",
  45752. height: math.unit(300, "meters"),
  45753. default: true,
  45754. allForms: true
  45755. },
  45756. ],
  45757. {
  45758. "female": {
  45759. name: "Female",
  45760. default: true
  45761. },
  45762. "male": {
  45763. name: "Male",
  45764. },
  45765. }
  45766. ))
  45767. characterMakers.push(() => makeCharacter(
  45768. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  45769. {
  45770. front: {
  45771. height: math.unit(6 + 3/12, "feet"),
  45772. weight: math.unit(170, "lb"),
  45773. name: "Front",
  45774. image: {
  45775. source: "./media/characters/sam-bat/front.svg",
  45776. extra: 1601/1411,
  45777. bottom: 125/1726
  45778. }
  45779. },
  45780. back: {
  45781. height: math.unit(6 + 3/12, "feet"),
  45782. weight: math.unit(170, "lb"),
  45783. name: "Back",
  45784. image: {
  45785. source: "./media/characters/sam-bat/back.svg",
  45786. extra: 1577/1405,
  45787. bottom: 58/1635
  45788. }
  45789. },
  45790. },
  45791. [
  45792. {
  45793. name: "Normal",
  45794. height: math.unit(6 + 3/12, "feet"),
  45795. default: true
  45796. },
  45797. ]
  45798. ))
  45799. characterMakers.push(() => makeCharacter(
  45800. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  45801. {
  45802. front: {
  45803. height: math.unit(59, "feet"),
  45804. weight: math.unit(40000, "lb"),
  45805. name: "Front",
  45806. image: {
  45807. source: "./media/characters/inari/front.svg",
  45808. extra: 1884/1350,
  45809. bottom: 95/1979
  45810. }
  45811. },
  45812. },
  45813. [
  45814. {
  45815. name: "Gigantamax",
  45816. height: math.unit(59, "feet"),
  45817. default: true
  45818. },
  45819. ]
  45820. ))
  45821. characterMakers.push(() => makeCharacter(
  45822. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  45823. {
  45824. front: {
  45825. height: math.unit(5 + 8/12, "feet"),
  45826. name: "Front",
  45827. image: {
  45828. source: "./media/characters/elizabeth/front.svg",
  45829. extra: 1395/1298,
  45830. bottom: 54/1449
  45831. }
  45832. },
  45833. mouth: {
  45834. height: math.unit(1.97, "feet"),
  45835. name: "Mouth",
  45836. image: {
  45837. source: "./media/characters/elizabeth/mouth.svg"
  45838. }
  45839. },
  45840. foot: {
  45841. height: math.unit(1.17, "feet"),
  45842. name: "Foot",
  45843. image: {
  45844. source: "./media/characters/elizabeth/foot.svg"
  45845. }
  45846. },
  45847. },
  45848. [
  45849. {
  45850. name: "Normal",
  45851. height: math.unit(5 + 8/12, "feet"),
  45852. default: true
  45853. },
  45854. {
  45855. name: "Minimacro",
  45856. height: math.unit(18, "feet")
  45857. },
  45858. {
  45859. name: "Macro",
  45860. height: math.unit(180, "feet")
  45861. },
  45862. ]
  45863. ))
  45864. characterMakers.push(() => makeCharacter(
  45865. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  45866. {
  45867. front: {
  45868. height: math.unit(5 + 2/12, "feet"),
  45869. name: "Front",
  45870. image: {
  45871. source: "./media/characters/october-gossamer/front.svg",
  45872. extra: 505/454,
  45873. bottom: 7/512
  45874. }
  45875. },
  45876. back: {
  45877. height: math.unit(5 + 2/12, "feet"),
  45878. name: "Back",
  45879. image: {
  45880. source: "./media/characters/october-gossamer/back.svg",
  45881. extra: 501/454,
  45882. bottom: 11/512
  45883. }
  45884. },
  45885. },
  45886. [
  45887. {
  45888. name: "Normal",
  45889. height: math.unit(5 + 2/12, "feet"),
  45890. default: true
  45891. },
  45892. ]
  45893. ))
  45894. characterMakers.push(() => makeCharacter(
  45895. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  45896. {
  45897. front: {
  45898. height: math.unit(5, "feet"),
  45899. name: "Front",
  45900. image: {
  45901. source: "./media/characters/epiglottis/front.svg",
  45902. extra: 923/849,
  45903. bottom: 17/940
  45904. }
  45905. },
  45906. },
  45907. [
  45908. {
  45909. name: "Original Size",
  45910. height: math.unit(10, "inches")
  45911. },
  45912. {
  45913. name: "Human Size",
  45914. height: math.unit(5, "feet"),
  45915. default: true
  45916. },
  45917. {
  45918. name: "Big",
  45919. height: math.unit(25, "feet")
  45920. },
  45921. {
  45922. name: "Bigger",
  45923. height: math.unit(50, "feet")
  45924. },
  45925. {
  45926. name: "oh lawd",
  45927. height: math.unit(75, "feet")
  45928. },
  45929. ]
  45930. ))
  45931. characterMakers.push(() => makeCharacter(
  45932. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  45933. {
  45934. front: {
  45935. height: math.unit(2 + 4/12, "feet"),
  45936. weight: math.unit(60, "lb"),
  45937. name: "Front",
  45938. image: {
  45939. source: "./media/characters/lerm/front.svg",
  45940. extra: 796/790,
  45941. bottom: 79/875
  45942. }
  45943. },
  45944. },
  45945. [
  45946. {
  45947. name: "Normal",
  45948. height: math.unit(2 + 4/12, "feet"),
  45949. default: true
  45950. },
  45951. ]
  45952. ))
  45953. characterMakers.push(() => makeCharacter(
  45954. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  45955. {
  45956. front: {
  45957. height: math.unit(5.5, "feet"),
  45958. weight: math.unit(130, "lb"),
  45959. name: "Front",
  45960. image: {
  45961. source: "./media/characters/xena-nebadon/front.svg",
  45962. extra: 1828/1730,
  45963. bottom: 79/1907
  45964. }
  45965. },
  45966. },
  45967. [
  45968. {
  45969. name: "Tiny Puppy",
  45970. height: math.unit(3, "inches")
  45971. },
  45972. {
  45973. name: "Normal",
  45974. height: math.unit(5.5, "feet"),
  45975. default: true
  45976. },
  45977. {
  45978. name: "Lotta Lady",
  45979. height: math.unit(12, "feet")
  45980. },
  45981. {
  45982. name: "Pretty Big",
  45983. height: math.unit(100, "feet")
  45984. },
  45985. {
  45986. name: "Big",
  45987. height: math.unit(500, "feet")
  45988. },
  45989. {
  45990. name: "Skyscraper Toys",
  45991. height: math.unit(2500, "feet")
  45992. },
  45993. {
  45994. name: "Plane Catcher",
  45995. height: math.unit(8, "miles")
  45996. },
  45997. {
  45998. name: "Planet Toys",
  45999. height: math.unit(15, "earths")
  46000. },
  46001. {
  46002. name: "Stardust",
  46003. height: math.unit(0.25, "galaxies")
  46004. },
  46005. {
  46006. name: "Snacks",
  46007. height: math.unit(70, "universes")
  46008. },
  46009. ]
  46010. ))
  46011. characterMakers.push(() => makeCharacter(
  46012. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  46013. {
  46014. front: {
  46015. height: math.unit(1.6, "meters"),
  46016. weight: math.unit(60, "kg"),
  46017. name: "Front",
  46018. image: {
  46019. source: "./media/characters/bounty/front.svg",
  46020. extra: 1426/1308,
  46021. bottom: 15/1441
  46022. }
  46023. },
  46024. back: {
  46025. height: math.unit(1.6, "meters"),
  46026. weight: math.unit(60, "kg"),
  46027. name: "Back",
  46028. image: {
  46029. source: "./media/characters/bounty/back.svg",
  46030. extra: 1417/1307,
  46031. bottom: 8/1425
  46032. }
  46033. },
  46034. },
  46035. [
  46036. {
  46037. name: "Normal",
  46038. height: math.unit(1.6, "meters"),
  46039. default: true
  46040. },
  46041. {
  46042. name: "Macro",
  46043. height: math.unit(300, "meters")
  46044. },
  46045. ]
  46046. ))
  46047. characterMakers.push(() => makeCharacter(
  46048. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  46049. {
  46050. front: {
  46051. height: math.unit(2 + 8/12, "feet"),
  46052. weight: math.unit(15, "lb"),
  46053. name: "Front",
  46054. image: {
  46055. source: "./media/characters/mochi/front.svg",
  46056. extra: 1022/852,
  46057. bottom: 435/1457
  46058. }
  46059. },
  46060. back: {
  46061. height: math.unit(2 + 8/12, "feet"),
  46062. weight: math.unit(15, "lb"),
  46063. name: "Back",
  46064. image: {
  46065. source: "./media/characters/mochi/back.svg",
  46066. extra: 1335/1119,
  46067. bottom: 39/1374
  46068. }
  46069. },
  46070. bird: {
  46071. height: math.unit(2 + 8/12, "feet"),
  46072. weight: math.unit(15, "lb"),
  46073. name: "Bird",
  46074. image: {
  46075. source: "./media/characters/mochi/bird.svg",
  46076. extra: 1251/1113,
  46077. bottom: 178/1429
  46078. }
  46079. },
  46080. kaiju: {
  46081. height: math.unit(154, "feet"),
  46082. weight: math.unit(1e7, "lb"),
  46083. name: "Kaiju",
  46084. image: {
  46085. source: "./media/characters/mochi/kaiju.svg",
  46086. extra: 460/324,
  46087. bottom: 40/500
  46088. }
  46089. },
  46090. head: {
  46091. height: math.unit(1.21, "feet"),
  46092. name: "Head",
  46093. image: {
  46094. source: "./media/characters/mochi/head.svg"
  46095. }
  46096. },
  46097. alternateTail: {
  46098. height: math.unit(2 + 8/12, "feet"),
  46099. weight: math.unit(45, "lb"),
  46100. name: "Alternate Tail",
  46101. image: {
  46102. source: "./media/characters/mochi/alternate-tail.svg",
  46103. extra: 139/76,
  46104. bottom: 45/184
  46105. }
  46106. },
  46107. },
  46108. [
  46109. {
  46110. name: "Micro",
  46111. height: math.unit(2, "inches")
  46112. },
  46113. {
  46114. name: "Normal",
  46115. height: math.unit(2 + 8/12, "feet"),
  46116. default: true
  46117. },
  46118. {
  46119. name: "Macro",
  46120. height: math.unit(106, "feet")
  46121. },
  46122. ]
  46123. ))
  46124. characterMakers.push(() => makeCharacter(
  46125. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  46126. {
  46127. front: {
  46128. height: math.unit(5.67, "feet"),
  46129. weight: math.unit(135, "lb"),
  46130. name: "Front",
  46131. image: {
  46132. source: "./media/characters/sarel/front.svg",
  46133. extra: 865/788,
  46134. bottom: 97/962
  46135. }
  46136. },
  46137. back: {
  46138. height: math.unit(5.67, "feet"),
  46139. weight: math.unit(135, "lb"),
  46140. name: "Back",
  46141. image: {
  46142. source: "./media/characters/sarel/back.svg",
  46143. extra: 857/777,
  46144. bottom: 32/889
  46145. }
  46146. },
  46147. chozoan: {
  46148. height: math.unit(5.67, "feet"),
  46149. weight: math.unit(135, "lb"),
  46150. name: "Chozoan",
  46151. image: {
  46152. source: "./media/characters/sarel/chozoan.svg",
  46153. extra: 865/788,
  46154. bottom: 97/962
  46155. }
  46156. },
  46157. current: {
  46158. height: math.unit(5.67, "feet"),
  46159. weight: math.unit(135, "lb"),
  46160. name: "Current",
  46161. image: {
  46162. source: "./media/characters/sarel/current.svg",
  46163. extra: 865/788,
  46164. bottom: 97/962
  46165. }
  46166. },
  46167. head: {
  46168. height: math.unit(1.77, "feet"),
  46169. name: "Head",
  46170. image: {
  46171. source: "./media/characters/sarel/head.svg"
  46172. }
  46173. },
  46174. claws: {
  46175. height: math.unit(1.8, "feet"),
  46176. name: "Claws",
  46177. image: {
  46178. source: "./media/characters/sarel/claws.svg"
  46179. }
  46180. },
  46181. clawsAlt: {
  46182. height: math.unit(1.8, "feet"),
  46183. name: "Claws-alt",
  46184. image: {
  46185. source: "./media/characters/sarel/claws-alt.svg"
  46186. }
  46187. },
  46188. },
  46189. [
  46190. {
  46191. name: "Normal",
  46192. height: math.unit(5.67, "feet"),
  46193. default: true
  46194. },
  46195. ]
  46196. ))
  46197. characterMakers.push(() => makeCharacter(
  46198. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  46199. {
  46200. front: {
  46201. height: math.unit(5500, "feet"),
  46202. name: "Front",
  46203. image: {
  46204. source: "./media/characters/alyonia/front.svg",
  46205. extra: 1200/1135,
  46206. bottom: 29/1229
  46207. }
  46208. },
  46209. back: {
  46210. height: math.unit(5500, "feet"),
  46211. name: "Back",
  46212. image: {
  46213. source: "./media/characters/alyonia/back.svg",
  46214. extra: 1205/1138,
  46215. bottom: 10/1215
  46216. }
  46217. },
  46218. },
  46219. [
  46220. {
  46221. name: "Small",
  46222. height: math.unit(10, "feet")
  46223. },
  46224. {
  46225. name: "Macro",
  46226. height: math.unit(500, "feet")
  46227. },
  46228. {
  46229. name: "Mega Macro",
  46230. height: math.unit(5500, "feet"),
  46231. default: true
  46232. },
  46233. {
  46234. name: "Mega Macro+",
  46235. height: math.unit(500000, "feet")
  46236. },
  46237. {
  46238. name: "Giga Macro",
  46239. height: math.unit(3000, "miles")
  46240. },
  46241. {
  46242. name: "Tera Macro",
  46243. height: math.unit(2.8e6, "miles")
  46244. },
  46245. {
  46246. name: "Galactic",
  46247. height: math.unit(120000, "lightyears")
  46248. },
  46249. ]
  46250. ))
  46251. characterMakers.push(() => makeCharacter(
  46252. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  46253. {
  46254. werewolf: {
  46255. height: math.unit(8, "feet"),
  46256. weight: math.unit(425, "lb"),
  46257. name: "Werewolf",
  46258. image: {
  46259. source: "./media/characters/autumn/werewolf.svg",
  46260. extra: 2154/2031,
  46261. bottom: 160/2314
  46262. }
  46263. },
  46264. human: {
  46265. height: math.unit(5 + 8/12, "feet"),
  46266. weight: math.unit(150, "lb"),
  46267. name: "Human",
  46268. image: {
  46269. source: "./media/characters/autumn/human.svg",
  46270. extra: 1200/1149,
  46271. bottom: 30/1230
  46272. }
  46273. },
  46274. },
  46275. [
  46276. {
  46277. name: "Normal",
  46278. height: math.unit(8, "feet"),
  46279. default: true
  46280. },
  46281. ]
  46282. ))
  46283. characterMakers.push(() => makeCharacter(
  46284. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  46285. {
  46286. front: {
  46287. height: math.unit(8 + 5/12, "feet"),
  46288. weight: math.unit(825, "lb"),
  46289. name: "Front",
  46290. image: {
  46291. source: "./media/characters/cobalt-charizard/front.svg",
  46292. extra: 1268/1155,
  46293. bottom: 122/1390
  46294. }
  46295. },
  46296. side: {
  46297. height: math.unit(8 + 5/12, "feet"),
  46298. weight: math.unit(825, "lb"),
  46299. name: "Side",
  46300. image: {
  46301. source: "./media/characters/cobalt-charizard/side.svg",
  46302. extra: 1348/1257,
  46303. bottom: 58/1406
  46304. }
  46305. },
  46306. gMax: {
  46307. height: math.unit(134 + 11/12, "feet"),
  46308. name: "G-Max",
  46309. image: {
  46310. source: "./media/characters/cobalt-charizard/g-max.svg",
  46311. extra: 1835/1541,
  46312. bottom: 151/1986
  46313. }
  46314. },
  46315. },
  46316. [
  46317. {
  46318. name: "Normal",
  46319. height: math.unit(8 + 5/12, "feet"),
  46320. default: true
  46321. },
  46322. ]
  46323. ))
  46324. characterMakers.push(() => makeCharacter(
  46325. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  46326. {
  46327. front: {
  46328. height: math.unit(6 + 3/12, "feet"),
  46329. weight: math.unit(210, "lb"),
  46330. name: "Front",
  46331. image: {
  46332. source: "./media/characters/stella/front.svg",
  46333. extra: 3549/3335,
  46334. bottom: 51/3600
  46335. }
  46336. },
  46337. },
  46338. [
  46339. {
  46340. name: "Normal",
  46341. height: math.unit(6 + 3/12, "feet"),
  46342. default: true
  46343. },
  46344. ]
  46345. ))
  46346. characterMakers.push(() => makeCharacter(
  46347. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  46348. {
  46349. front: {
  46350. height: math.unit(5, "feet"),
  46351. weight: math.unit(90, "lb"),
  46352. name: "Front",
  46353. image: {
  46354. source: "./media/characters/riley-bishop/front.svg",
  46355. extra: 1450/1428,
  46356. bottom: 152/1602
  46357. }
  46358. },
  46359. },
  46360. [
  46361. {
  46362. name: "Normal",
  46363. height: math.unit(5, "feet"),
  46364. default: true
  46365. },
  46366. ]
  46367. ))
  46368. characterMakers.push(() => makeCharacter(
  46369. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  46370. {
  46371. side: {
  46372. height: math.unit(8 + 2/12, "feet"),
  46373. weight: math.unit(500, "kg"),
  46374. name: "Side",
  46375. image: {
  46376. source: "./media/characters/theo-arcanine/side.svg",
  46377. extra: 1342/1074,
  46378. bottom: 111/1453
  46379. }
  46380. },
  46381. },
  46382. [
  46383. {
  46384. name: "Normal",
  46385. height: math.unit(8 + 2/12, "feet"),
  46386. default: true
  46387. },
  46388. ]
  46389. ))
  46390. characterMakers.push(() => makeCharacter(
  46391. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  46392. {
  46393. front: {
  46394. height: math.unit(4, "feet"),
  46395. name: "Front",
  46396. image: {
  46397. source: "./media/characters/kali/front.svg",
  46398. extra: 1074/867,
  46399. bottom: 34/1108
  46400. }
  46401. },
  46402. back: {
  46403. height: math.unit(4, "feet"),
  46404. name: "Back",
  46405. image: {
  46406. source: "./media/characters/kali/back.svg",
  46407. extra: 1068/863,
  46408. bottom: 26/1094
  46409. }
  46410. },
  46411. frontAlt: {
  46412. height: math.unit(4, "feet"),
  46413. name: "Front (Alt)",
  46414. image: {
  46415. source: "./media/characters/kali/front-alt.svg",
  46416. extra: 1921/1357,
  46417. bottom: 70/1991
  46418. }
  46419. },
  46420. },
  46421. [
  46422. {
  46423. name: "Normal",
  46424. height: math.unit(4, "feet"),
  46425. default: true
  46426. },
  46427. {
  46428. name: "Big'vali",
  46429. height: math.unit(11, "feet")
  46430. },
  46431. {
  46432. name: "Macro",
  46433. height: math.unit(32, "meters")
  46434. },
  46435. {
  46436. name: "Macro+",
  46437. height: math.unit(150, "meters")
  46438. },
  46439. {
  46440. name: "Megamacro",
  46441. height: math.unit(7500, "meters")
  46442. },
  46443. {
  46444. name: "Megamacro+",
  46445. height: math.unit(80, "kilometers")
  46446. },
  46447. ]
  46448. ))
  46449. characterMakers.push(() => makeCharacter(
  46450. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  46451. {
  46452. side: {
  46453. height: math.unit(5 + 11/12, "feet"),
  46454. weight: math.unit(236, "lb"),
  46455. name: "Side",
  46456. image: {
  46457. source: "./media/characters/gapp/side.svg",
  46458. extra: 775/340,
  46459. bottom: 58/833
  46460. }
  46461. },
  46462. mouth: {
  46463. height: math.unit(2.98, "feet"),
  46464. name: "Mouth",
  46465. image: {
  46466. source: "./media/characters/gapp/mouth.svg"
  46467. }
  46468. },
  46469. },
  46470. [
  46471. {
  46472. name: "Normal",
  46473. height: math.unit(5 + 1/12, "feet"),
  46474. default: true
  46475. },
  46476. ]
  46477. ))
  46478. characterMakers.push(() => makeCharacter(
  46479. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  46480. {
  46481. front: {
  46482. height: math.unit(6, "feet"),
  46483. name: "Front",
  46484. image: {
  46485. source: "./media/characters/persephone/front.svg",
  46486. extra: 1895/1717,
  46487. bottom: 96/1991
  46488. }
  46489. },
  46490. back: {
  46491. height: math.unit(6, "feet"),
  46492. name: "Back",
  46493. image: {
  46494. source: "./media/characters/persephone/back.svg",
  46495. extra: 1868/1679,
  46496. bottom: 26/1894
  46497. }
  46498. },
  46499. casual: {
  46500. height: math.unit(6, "feet"),
  46501. name: "Casual",
  46502. image: {
  46503. source: "./media/characters/persephone/casual.svg",
  46504. extra: 1713/1541,
  46505. bottom: 76/1789
  46506. }
  46507. },
  46508. gaming: {
  46509. height: math.unit(3.55, "feet"),
  46510. name: "Gaming",
  46511. image: {
  46512. source: "./media/characters/persephone/gaming.svg",
  46513. extra: 1242/1038,
  46514. bottom: 66/1308
  46515. }
  46516. },
  46517. head: {
  46518. height: math.unit(2.15, "feet"),
  46519. name: "😐",
  46520. image: {
  46521. source: "./media/characters/persephone/head.svg"
  46522. }
  46523. },
  46524. talking: {
  46525. height: math.unit(2.5, "feet"),
  46526. name: "💬",
  46527. image: {
  46528. source: "./media/characters/persephone/talking.svg"
  46529. }
  46530. },
  46531. hmm: {
  46532. height: math.unit(2.28, "feet"),
  46533. name: "🤨",
  46534. image: {
  46535. source: "./media/characters/persephone/hmm.svg"
  46536. }
  46537. },
  46538. },
  46539. [
  46540. {
  46541. name: "Human Size",
  46542. height: math.unit(6, "feet")
  46543. },
  46544. {
  46545. name: "Big Steppy",
  46546. height: math.unit(600, "meters"),
  46547. default: true
  46548. },
  46549. {
  46550. name: "Galaxy Brain",
  46551. height: math.unit(1, "zettameter")
  46552. },
  46553. ]
  46554. ))
  46555. characterMakers.push(() => makeCharacter(
  46556. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  46557. {
  46558. front: {
  46559. height: math.unit(1.85, "meters"),
  46560. name: "Front",
  46561. image: {
  46562. source: "./media/characters/riley-foxthing/front.svg",
  46563. extra: 1495/1354,
  46564. bottom: 122/1617
  46565. }
  46566. },
  46567. frontAlt: {
  46568. height: math.unit(1.85, "meters"),
  46569. name: "Front (Alt)",
  46570. image: {
  46571. source: "./media/characters/riley-foxthing/front-alt.svg",
  46572. extra: 1572/1389,
  46573. bottom: 116/1688
  46574. }
  46575. },
  46576. },
  46577. [
  46578. {
  46579. name: "Normal Sized",
  46580. height: math.unit(1.85, "meters"),
  46581. default: true
  46582. },
  46583. {
  46584. name: "Quite Sizable",
  46585. height: math.unit(5, "meters")
  46586. },
  46587. {
  46588. name: "Rather Large",
  46589. height: math.unit(20, "meters")
  46590. },
  46591. {
  46592. name: "Macro",
  46593. height: math.unit(450, "meters")
  46594. },
  46595. {
  46596. name: "Giga",
  46597. height: math.unit(5, "km")
  46598. },
  46599. ]
  46600. ))
  46601. characterMakers.push(() => makeCharacter(
  46602. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  46603. {
  46604. front: {
  46605. height: math.unit(6, "feet"),
  46606. weight: math.unit(200, "lb"),
  46607. name: "Front",
  46608. image: {
  46609. source: "./media/characters/blizzard/front.svg",
  46610. extra: 1136/990,
  46611. bottom: 136/1272
  46612. }
  46613. },
  46614. back: {
  46615. height: math.unit(6, "feet"),
  46616. weight: math.unit(200, "lb"),
  46617. name: "Back",
  46618. image: {
  46619. source: "./media/characters/blizzard/back.svg",
  46620. extra: 1175/1034,
  46621. bottom: 97/1272
  46622. }
  46623. },
  46624. sitting: {
  46625. height: math.unit(3.725, "feet"),
  46626. weight: math.unit(200, "lb"),
  46627. name: "Sitting",
  46628. image: {
  46629. source: "./media/characters/blizzard/sitting.svg",
  46630. extra: 581/485,
  46631. bottom: 90/671
  46632. }
  46633. },
  46634. frontWizard: {
  46635. height: math.unit(7.9, "feet"),
  46636. weight: math.unit(200, "lb"),
  46637. name: "Front (Wizard)",
  46638. image: {
  46639. source: "./media/characters/blizzard/front-wizard.svg"
  46640. }
  46641. },
  46642. backWizard: {
  46643. height: math.unit(7.9, "feet"),
  46644. weight: math.unit(200, "lb"),
  46645. name: "Back (Wizard)",
  46646. image: {
  46647. source: "./media/characters/blizzard/back-wizard.svg"
  46648. }
  46649. },
  46650. frontNsfw: {
  46651. height: math.unit(6, "feet"),
  46652. weight: math.unit(200, "lb"),
  46653. name: "Front (NSFW)",
  46654. image: {
  46655. source: "./media/characters/blizzard/front-nsfw.svg",
  46656. extra: 1136/990,
  46657. bottom: 136/1272
  46658. }
  46659. },
  46660. backNsfw: {
  46661. height: math.unit(6, "feet"),
  46662. weight: math.unit(200, "lb"),
  46663. name: "Back (NSFW)",
  46664. image: {
  46665. source: "./media/characters/blizzard/back-nsfw.svg",
  46666. extra: 1175/1034,
  46667. bottom: 97/1272
  46668. }
  46669. },
  46670. sittingNsfw: {
  46671. height: math.unit(3.725, "feet"),
  46672. weight: math.unit(200, "lb"),
  46673. name: "Sitting (NSFW)",
  46674. image: {
  46675. source: "./media/characters/blizzard/sitting-nsfw.svg",
  46676. extra: 581/485,
  46677. bottom: 90/671
  46678. }
  46679. },
  46680. wizardFrontNsfw: {
  46681. height: math.unit(7.9, "feet"),
  46682. weight: math.unit(200, "lb"),
  46683. name: "Wizard (Front, NSFW)",
  46684. image: {
  46685. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  46686. }
  46687. },
  46688. },
  46689. [
  46690. {
  46691. name: "Normal",
  46692. height: math.unit(6, "feet"),
  46693. default: true
  46694. },
  46695. ]
  46696. ))
  46697. characterMakers.push(() => makeCharacter(
  46698. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  46699. {
  46700. front: {
  46701. height: math.unit(5 + 2/12, "feet"),
  46702. name: "Front",
  46703. image: {
  46704. source: "./media/characters/lumi/front.svg",
  46705. extra: 1328/1268,
  46706. bottom: 103/1431
  46707. }
  46708. },
  46709. back: {
  46710. height: math.unit(5 + 2/12, "feet"),
  46711. name: "Back",
  46712. image: {
  46713. source: "./media/characters/lumi/back.svg",
  46714. extra: 1381/1327,
  46715. bottom: 43/1424
  46716. }
  46717. },
  46718. },
  46719. [
  46720. {
  46721. name: "Normal",
  46722. height: math.unit(5 + 2/12, "feet"),
  46723. default: true
  46724. },
  46725. ]
  46726. ))
  46727. characterMakers.push(() => makeCharacter(
  46728. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  46729. {
  46730. front: {
  46731. height: math.unit(5 + 9/12, "feet"),
  46732. name: "Front",
  46733. image: {
  46734. source: "./media/characters/aliya-cotton/front.svg",
  46735. extra: 577/564,
  46736. bottom: 29/606
  46737. }
  46738. },
  46739. },
  46740. [
  46741. {
  46742. name: "Normal",
  46743. height: math.unit(5 + 9/12, "feet"),
  46744. default: true
  46745. },
  46746. ]
  46747. ))
  46748. characterMakers.push(() => makeCharacter(
  46749. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  46750. {
  46751. front: {
  46752. height: math.unit(2.7, "meters"),
  46753. weight: math.unit(25000, "lb"),
  46754. name: "Front",
  46755. image: {
  46756. source: "./media/characters/noah-luxray/front.svg",
  46757. extra: 1644/825,
  46758. bottom: 339/1983
  46759. }
  46760. },
  46761. side: {
  46762. height: math.unit(2.97, "meters"),
  46763. weight: math.unit(25000, "lb"),
  46764. name: "Side",
  46765. image: {
  46766. source: "./media/characters/noah-luxray/side.svg",
  46767. extra: 1319/650,
  46768. bottom: 163/1482
  46769. }
  46770. },
  46771. dick: {
  46772. height: math.unit(7.4, "feet"),
  46773. weight: math.unit(2500, "lb"),
  46774. name: "Dick",
  46775. image: {
  46776. source: "./media/characters/noah-luxray/dick.svg"
  46777. }
  46778. },
  46779. dickAlt: {
  46780. height: math.unit(10.83, "feet"),
  46781. weight: math.unit(2500, "lb"),
  46782. name: "Dick-alt",
  46783. image: {
  46784. source: "./media/characters/noah-luxray/dick-alt.svg"
  46785. }
  46786. },
  46787. },
  46788. [
  46789. {
  46790. name: "BIG",
  46791. height: math.unit(2.7, "meters"),
  46792. default: true
  46793. },
  46794. ]
  46795. ))
  46796. characterMakers.push(() => makeCharacter(
  46797. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  46798. {
  46799. standing: {
  46800. height: math.unit(183, "cm"),
  46801. weight: math.unit(68, "kg"),
  46802. name: "Standing",
  46803. image: {
  46804. source: "./media/characters/arion/standing.svg",
  46805. extra: 1869/1807,
  46806. bottom: 93/1962
  46807. }
  46808. },
  46809. reclining: {
  46810. height: math.unit(70.5, "cm"),
  46811. weight: math.unit(68, "lb"),
  46812. name: "Reclining",
  46813. image: {
  46814. source: "./media/characters/arion/reclining.svg",
  46815. extra: 937/870,
  46816. bottom: 63/1000
  46817. }
  46818. },
  46819. },
  46820. [
  46821. {
  46822. name: "Colossus Size, Low",
  46823. height: math.unit(33, "meters"),
  46824. default: true
  46825. },
  46826. {
  46827. name: "Colossus Size, Mid",
  46828. height: math.unit(52, "meters")
  46829. },
  46830. {
  46831. name: "Colossus Size, High",
  46832. height: math.unit(60, "meters")
  46833. },
  46834. {
  46835. name: "Titan Size, Low",
  46836. height: math.unit(91, "meters"),
  46837. },
  46838. {
  46839. name: "Titan Size, Mid",
  46840. height: math.unit(122, "meters")
  46841. },
  46842. {
  46843. name: "Titan Size, High",
  46844. height: math.unit(162, "meters")
  46845. },
  46846. ]
  46847. ))
  46848. characterMakers.push(() => makeCharacter(
  46849. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  46850. {
  46851. front: {
  46852. height: math.unit(53, "meters"),
  46853. name: "Front",
  46854. image: {
  46855. source: "./media/characters/stellar-marbey/front.svg",
  46856. extra: 1913/1805,
  46857. bottom: 92/2005
  46858. }
  46859. },
  46860. back: {
  46861. height: math.unit(53, "meters"),
  46862. name: "Back",
  46863. image: {
  46864. source: "./media/characters/stellar-marbey/back.svg",
  46865. extra: 1960/1851,
  46866. bottom: 28/1988
  46867. }
  46868. },
  46869. mouth: {
  46870. height: math.unit(3.5, "meters"),
  46871. name: "Mouth",
  46872. image: {
  46873. source: "./media/characters/stellar-marbey/mouth.svg"
  46874. }
  46875. },
  46876. },
  46877. [
  46878. {
  46879. name: "Macro",
  46880. height: math.unit(53, "meters"),
  46881. default: true
  46882. },
  46883. ]
  46884. ))
  46885. characterMakers.push(() => makeCharacter(
  46886. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  46887. {
  46888. front: {
  46889. height: math.unit(8 + 1/12, "feet"),
  46890. weight: math.unit(233, "lb"),
  46891. name: "Front",
  46892. image: {
  46893. source: "./media/characters/matsu/front.svg",
  46894. extra: 832/772,
  46895. bottom: 40/872
  46896. }
  46897. },
  46898. back: {
  46899. height: math.unit(8 + 1/12, "feet"),
  46900. weight: math.unit(233, "lb"),
  46901. name: "Back",
  46902. image: {
  46903. source: "./media/characters/matsu/back.svg",
  46904. extra: 839/780,
  46905. bottom: 47/886
  46906. }
  46907. },
  46908. },
  46909. [
  46910. {
  46911. name: "Normal",
  46912. height: math.unit(8 + 1/12, "feet"),
  46913. default: true
  46914. },
  46915. ]
  46916. ))
  46917. characterMakers.push(() => makeCharacter(
  46918. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  46919. {
  46920. front: {
  46921. height: math.unit(4, "feet"),
  46922. weight: math.unit(148, "lb"),
  46923. name: "Front",
  46924. image: {
  46925. source: "./media/characters/thiz/front.svg",
  46926. extra: 1913/1748,
  46927. bottom: 62/1975
  46928. }
  46929. },
  46930. },
  46931. [
  46932. {
  46933. name: "Normal",
  46934. height: math.unit(4, "feet"),
  46935. default: true
  46936. },
  46937. ]
  46938. ))
  46939. characterMakers.push(() => makeCharacter(
  46940. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  46941. {
  46942. front: {
  46943. height: math.unit(7 + 6/12, "feet"),
  46944. weight: math.unit(267, "lb"),
  46945. name: "Front",
  46946. image: {
  46947. source: "./media/characters/marcel/front.svg",
  46948. extra: 1221/1096,
  46949. bottom: 76/1297
  46950. }
  46951. },
  46952. },
  46953. [
  46954. {
  46955. name: "Normal",
  46956. height: math.unit(7 + 6/12, "feet"),
  46957. default: true
  46958. },
  46959. ]
  46960. ))
  46961. characterMakers.push(() => makeCharacter(
  46962. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  46963. {
  46964. side: {
  46965. height: math.unit(42, "meters"),
  46966. name: "Side",
  46967. image: {
  46968. source: "./media/characters/flake/side.svg",
  46969. extra: 1525/1306,
  46970. bottom: 209/1734
  46971. }
  46972. },
  46973. },
  46974. [
  46975. {
  46976. name: "Normal",
  46977. height: math.unit(42, "meters"),
  46978. default: true
  46979. },
  46980. ]
  46981. ))
  46982. characterMakers.push(() => makeCharacter(
  46983. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  46984. {
  46985. dressed: {
  46986. height: math.unit(6 + 4/12, "feet"),
  46987. weight: math.unit(520, "lb"),
  46988. name: "Dressed",
  46989. image: {
  46990. source: "./media/characters/someonne/dressed.svg",
  46991. extra: 1020/1010,
  46992. bottom: 178/1198
  46993. }
  46994. },
  46995. undressed: {
  46996. height: math.unit(6 + 4/12, "feet"),
  46997. weight: math.unit(520, "lb"),
  46998. name: "Undressed",
  46999. image: {
  47000. source: "./media/characters/someonne/undressed.svg",
  47001. extra: 1019/1014,
  47002. bottom: 169/1188
  47003. }
  47004. },
  47005. },
  47006. [
  47007. {
  47008. name: "Normal",
  47009. height: math.unit(6 + 4/12, "feet"),
  47010. default: true
  47011. },
  47012. ]
  47013. ))
  47014. characterMakers.push(() => makeCharacter(
  47015. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  47016. {
  47017. front: {
  47018. height: math.unit(3, "feet"),
  47019. weight: math.unit(30, "lb"),
  47020. name: "Front",
  47021. image: {
  47022. source: "./media/characters/till/front.svg",
  47023. extra: 892/823,
  47024. bottom: 55/947
  47025. }
  47026. },
  47027. },
  47028. [
  47029. {
  47030. name: "Normal",
  47031. height: math.unit(3, "feet"),
  47032. default: true
  47033. },
  47034. ]
  47035. ))
  47036. characterMakers.push(() => makeCharacter(
  47037. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  47038. {
  47039. front: {
  47040. height: math.unit(9 + 8/12, "feet"),
  47041. weight: math.unit(800, "lb"),
  47042. name: "Front",
  47043. image: {
  47044. source: "./media/characters/sydney-heki/front.svg",
  47045. extra: 1360/1300,
  47046. bottom: 22/1382
  47047. }
  47048. },
  47049. back: {
  47050. height: math.unit(9 + 8/12, "feet"),
  47051. weight: math.unit(800, "lb"),
  47052. name: "Back",
  47053. image: {
  47054. source: "./media/characters/sydney-heki/back.svg",
  47055. extra: 1356/1293,
  47056. bottom: 12/1368
  47057. }
  47058. },
  47059. frontDressed: {
  47060. height: math.unit(9 + 8/12, "feet"),
  47061. weight: math.unit(800, "lb"),
  47062. name: "Front-dressed",
  47063. image: {
  47064. source: "./media/characters/sydney-heki/front-dressed.svg",
  47065. extra: 1360/1300,
  47066. bottom: 22/1382
  47067. }
  47068. },
  47069. },
  47070. [
  47071. {
  47072. name: "Normal",
  47073. height: math.unit(9 + 8/12, "feet"),
  47074. default: true
  47075. },
  47076. {
  47077. name: "Macro",
  47078. height: math.unit(500, "feet")
  47079. },
  47080. {
  47081. name: "Megamacro",
  47082. height: math.unit(3.6, "miles")
  47083. },
  47084. ]
  47085. ))
  47086. characterMakers.push(() => makeCharacter(
  47087. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  47088. {
  47089. front: {
  47090. height: math.unit(200, "cm"),
  47091. weight: math.unit(250, "lb"),
  47092. name: "Front",
  47093. image: {
  47094. source: "./media/characters/fowler-karlsson/front.svg",
  47095. extra: 897/845,
  47096. bottom: 123/1020
  47097. }
  47098. },
  47099. back: {
  47100. height: math.unit(200, "cm"),
  47101. weight: math.unit(250, "lb"),
  47102. name: "Back",
  47103. image: {
  47104. source: "./media/characters/fowler-karlsson/back.svg",
  47105. extra: 999/944,
  47106. bottom: 26/1025
  47107. }
  47108. },
  47109. dick: {
  47110. height: math.unit(1.92, "feet"),
  47111. weight: math.unit(150, "lb"),
  47112. name: "Dick",
  47113. image: {
  47114. source: "./media/characters/fowler-karlsson/dick.svg"
  47115. }
  47116. },
  47117. },
  47118. [
  47119. {
  47120. name: "Normal",
  47121. height: math.unit(200, "cm"),
  47122. default: true
  47123. },
  47124. {
  47125. name: "Smaller Macro",
  47126. height: math.unit(90, "m")
  47127. },
  47128. {
  47129. name: "Macro",
  47130. height: math.unit(150, "m")
  47131. },
  47132. {
  47133. name: "Bigger Macro",
  47134. height: math.unit(300, "m")
  47135. },
  47136. ]
  47137. ))
  47138. characterMakers.push(() => makeCharacter(
  47139. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  47140. {
  47141. side: {
  47142. height: math.unit(8 + 2/12, "feet"),
  47143. weight: math.unit(1, "tonne"),
  47144. name: "Side",
  47145. image: {
  47146. source: "./media/characters/rylide/side.svg",
  47147. extra: 1318/1034,
  47148. bottom: 106/1424
  47149. }
  47150. },
  47151. sitting: {
  47152. height: math.unit(303, "cm"),
  47153. weight: math.unit(1, "tonne"),
  47154. name: "Sitting",
  47155. image: {
  47156. source: "./media/characters/rylide/sitting.svg",
  47157. extra: 1303/1103,
  47158. bottom: 36/1339
  47159. }
  47160. },
  47161. },
  47162. [
  47163. {
  47164. name: "Normal",
  47165. height: math.unit(8 + 2/12, "feet"),
  47166. default: true
  47167. },
  47168. ]
  47169. ))
  47170. characterMakers.push(() => makeCharacter(
  47171. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  47172. {
  47173. front: {
  47174. height: math.unit(5 + 10/12, "feet"),
  47175. weight: math.unit(160, "lb"),
  47176. name: "Front",
  47177. image: {
  47178. source: "./media/characters/pudask/front.svg",
  47179. extra: 1616/1590,
  47180. bottom: 161/1777
  47181. }
  47182. },
  47183. },
  47184. [
  47185. {
  47186. name: "Ferret Height",
  47187. height: math.unit(2 + 5/12, "feet")
  47188. },
  47189. {
  47190. name: "Canon Height",
  47191. height: math.unit(5 + 10/12, "feet"),
  47192. default: true
  47193. },
  47194. ]
  47195. ))
  47196. characterMakers.push(() => makeCharacter(
  47197. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  47198. {
  47199. front: {
  47200. height: math.unit(3 + 6/12, "feet"),
  47201. weight: math.unit(60, "lb"),
  47202. name: "Front",
  47203. image: {
  47204. source: "./media/characters/ramita/front.svg",
  47205. extra: 1402/1232,
  47206. bottom: 62/1464
  47207. }
  47208. },
  47209. dressed: {
  47210. height: math.unit(3 + 6/12, "feet"),
  47211. weight: math.unit(60, "lb"),
  47212. name: "Dressed",
  47213. image: {
  47214. source: "./media/characters/ramita/dressed.svg",
  47215. extra: 1534/1249,
  47216. bottom: 50/1584
  47217. }
  47218. },
  47219. },
  47220. [
  47221. {
  47222. name: "Normal",
  47223. height: math.unit(3 + 6/12, "feet"),
  47224. default: true
  47225. },
  47226. ]
  47227. ))
  47228. characterMakers.push(() => makeCharacter(
  47229. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  47230. {
  47231. front: {
  47232. height: math.unit(8, "feet"),
  47233. name: "Front",
  47234. image: {
  47235. source: "./media/characters/ark/front.svg",
  47236. extra: 772/693,
  47237. bottom: 45/817
  47238. }
  47239. },
  47240. },
  47241. [
  47242. {
  47243. name: "Normal",
  47244. height: math.unit(8, "feet"),
  47245. default: true
  47246. },
  47247. ]
  47248. ))
  47249. characterMakers.push(() => makeCharacter(
  47250. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  47251. {
  47252. front: {
  47253. height: math.unit(6, "feet"),
  47254. weight: math.unit(250, "lb"),
  47255. volume: math.unit(5/8, "gallons"),
  47256. name: "Front",
  47257. image: {
  47258. source: "./media/characters/ludwig-horn/front.svg",
  47259. extra: 1782/1635,
  47260. bottom: 96/1878
  47261. }
  47262. },
  47263. back: {
  47264. height: math.unit(6, "feet"),
  47265. weight: math.unit(250, "lb"),
  47266. volume: math.unit(5/8, "gallons"),
  47267. name: "Back",
  47268. image: {
  47269. source: "./media/characters/ludwig-horn/back.svg",
  47270. extra: 1874/1729,
  47271. bottom: 27/1901
  47272. }
  47273. },
  47274. dick: {
  47275. height: math.unit(1.05, "feet"),
  47276. weight: math.unit(15, "lb"),
  47277. volume: math.unit(5/8, "gallons"),
  47278. name: "Dick",
  47279. image: {
  47280. source: "./media/characters/ludwig-horn/dick.svg"
  47281. }
  47282. },
  47283. },
  47284. [
  47285. {
  47286. name: "Small",
  47287. height: math.unit(6, "feet")
  47288. },
  47289. {
  47290. name: "Typical",
  47291. height: math.unit(12, "feet"),
  47292. default: true
  47293. },
  47294. {
  47295. name: "Building",
  47296. height: math.unit(80, "feet")
  47297. },
  47298. {
  47299. name: "Town",
  47300. height: math.unit(800, "feet")
  47301. },
  47302. {
  47303. name: "Kingdom",
  47304. height: math.unit(80000, "feet")
  47305. },
  47306. {
  47307. name: "Planet",
  47308. height: math.unit(8000000, "feet")
  47309. },
  47310. {
  47311. name: "Universe",
  47312. height: math.unit(8000000000, "feet")
  47313. },
  47314. {
  47315. name: "Transcended",
  47316. height: math.unit(8e27, "feet")
  47317. },
  47318. ]
  47319. ))
  47320. characterMakers.push(() => makeCharacter(
  47321. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  47322. {
  47323. front: {
  47324. height: math.unit(5, "feet"),
  47325. weight: math.unit(50, "kg"),
  47326. name: "Front",
  47327. image: {
  47328. source: "./media/characters/biot-avery/front.svg",
  47329. extra: 1295/1232,
  47330. bottom: 86/1381
  47331. }
  47332. },
  47333. },
  47334. [
  47335. {
  47336. name: "Normal",
  47337. height: math.unit(5, "feet"),
  47338. default: true
  47339. },
  47340. ]
  47341. ))
  47342. characterMakers.push(() => makeCharacter(
  47343. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  47344. {
  47345. front: {
  47346. height: math.unit(6, "feet"),
  47347. name: "Front",
  47348. image: {
  47349. source: "./media/characters/kitsune-kiro/front.svg",
  47350. extra: 1270/1158,
  47351. bottom: 42/1312
  47352. }
  47353. },
  47354. frontAlt: {
  47355. height: math.unit(6, "feet"),
  47356. name: "Front-alt",
  47357. image: {
  47358. source: "./media/characters/kitsune-kiro/front-alt.svg",
  47359. extra: 1130/1081,
  47360. bottom: 36/1166
  47361. }
  47362. },
  47363. },
  47364. [
  47365. {
  47366. name: "Smol",
  47367. height: math.unit(3, "feet")
  47368. },
  47369. {
  47370. name: "Normal",
  47371. height: math.unit(6, "feet"),
  47372. default: true
  47373. },
  47374. ]
  47375. ))
  47376. characterMakers.push(() => makeCharacter(
  47377. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  47378. {
  47379. front: {
  47380. height: math.unit(6, "feet"),
  47381. weight: math.unit(125, "lb"),
  47382. name: "Front",
  47383. image: {
  47384. source: "./media/characters/jack-thatcher/front.svg",
  47385. extra: 1474/1370,
  47386. bottom: 26/1500
  47387. }
  47388. },
  47389. back: {
  47390. height: math.unit(6, "feet"),
  47391. weight: math.unit(125, "lb"),
  47392. name: "Back",
  47393. image: {
  47394. source: "./media/characters/jack-thatcher/back.svg",
  47395. extra: 1489/1384,
  47396. bottom: 18/1507
  47397. }
  47398. },
  47399. },
  47400. [
  47401. {
  47402. name: "Normal",
  47403. height: math.unit(6, "feet"),
  47404. default: true
  47405. },
  47406. {
  47407. name: "Macro",
  47408. height: math.unit(75, "feet")
  47409. },
  47410. {
  47411. name: "Macro-er",
  47412. height: math.unit(250, "feet")
  47413. },
  47414. ]
  47415. ))
  47416. characterMakers.push(() => makeCharacter(
  47417. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  47418. {
  47419. front: {
  47420. height: math.unit(7, "feet"),
  47421. weight: math.unit(110, "kg"),
  47422. name: "Front",
  47423. image: {
  47424. source: "./media/characters/max-hyper/front.svg",
  47425. extra: 1969/1881,
  47426. bottom: 49/2018
  47427. }
  47428. },
  47429. },
  47430. [
  47431. {
  47432. name: "Normal",
  47433. height: math.unit(7, "feet"),
  47434. default: true
  47435. },
  47436. ]
  47437. ))
  47438. characterMakers.push(() => makeCharacter(
  47439. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  47440. {
  47441. front: {
  47442. height: math.unit(5 + 5/12, "feet"),
  47443. weight: math.unit(160, "lb"),
  47444. name: "Front",
  47445. image: {
  47446. source: "./media/characters/spook/front.svg",
  47447. extra: 794/791,
  47448. bottom: 54/848
  47449. }
  47450. },
  47451. back: {
  47452. height: math.unit(5 + 5/12, "feet"),
  47453. weight: math.unit(160, "lb"),
  47454. name: "Back",
  47455. image: {
  47456. source: "./media/characters/spook/back.svg",
  47457. extra: 812/798,
  47458. bottom: 32/844
  47459. }
  47460. },
  47461. },
  47462. [
  47463. {
  47464. name: "Normal",
  47465. height: math.unit(5 + 5/12, "feet"),
  47466. default: true
  47467. },
  47468. ]
  47469. ))
  47470. characterMakers.push(() => makeCharacter(
  47471. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  47472. {
  47473. front: {
  47474. height: math.unit(18, "feet"),
  47475. name: "Front",
  47476. image: {
  47477. source: "./media/characters/xeaduulix/front.svg",
  47478. extra: 1380/1166,
  47479. bottom: 110/1490
  47480. }
  47481. },
  47482. back: {
  47483. height: math.unit(18, "feet"),
  47484. name: "Back",
  47485. image: {
  47486. source: "./media/characters/xeaduulix/back.svg",
  47487. extra: 1592/1170,
  47488. bottom: 128/1720
  47489. }
  47490. },
  47491. frontNsfw: {
  47492. height: math.unit(18, "feet"),
  47493. name: "Front (NSFW)",
  47494. image: {
  47495. source: "./media/characters/xeaduulix/front-nsfw.svg",
  47496. extra: 1380/1166,
  47497. bottom: 110/1490
  47498. }
  47499. },
  47500. backNsfw: {
  47501. height: math.unit(18, "feet"),
  47502. name: "Back (NSFW)",
  47503. image: {
  47504. source: "./media/characters/xeaduulix/back-nsfw.svg",
  47505. extra: 1592/1170,
  47506. bottom: 128/1720
  47507. }
  47508. },
  47509. },
  47510. [
  47511. {
  47512. name: "Normal",
  47513. height: math.unit(18, "feet"),
  47514. default: true
  47515. },
  47516. ]
  47517. ))
  47518. characterMakers.push(() => makeCharacter(
  47519. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  47520. {
  47521. spreadWings: {
  47522. height: math.unit(20, "feet"),
  47523. name: "Spread Wings",
  47524. image: {
  47525. source: "./media/characters/fledge/spread-wings.svg",
  47526. extra: 693/635,
  47527. bottom: 26/719
  47528. }
  47529. },
  47530. front: {
  47531. height: math.unit(20, "feet"),
  47532. name: "Front",
  47533. image: {
  47534. source: "./media/characters/fledge/front.svg",
  47535. extra: 684/637,
  47536. bottom: 18/702
  47537. }
  47538. },
  47539. frontAlt: {
  47540. height: math.unit(20, "feet"),
  47541. name: "Front (Alt)",
  47542. image: {
  47543. source: "./media/characters/fledge/front-alt.svg",
  47544. extra: 708/664,
  47545. bottom: 13/721
  47546. }
  47547. },
  47548. back: {
  47549. height: math.unit(20, "feet"),
  47550. name: "Back",
  47551. image: {
  47552. source: "./media/characters/fledge/back.svg",
  47553. extra: 718/634,
  47554. bottom: 22/740
  47555. }
  47556. },
  47557. head: {
  47558. height: math.unit(5.55, "feet"),
  47559. name: "Head",
  47560. image: {
  47561. source: "./media/characters/fledge/head.svg"
  47562. }
  47563. },
  47564. headAlt: {
  47565. height: math.unit(5.1, "feet"),
  47566. name: "Head (Alt)",
  47567. image: {
  47568. source: "./media/characters/fledge/head-alt.svg"
  47569. }
  47570. },
  47571. },
  47572. [
  47573. {
  47574. name: "Small",
  47575. height: math.unit(6 + 2/12, "feet")
  47576. },
  47577. {
  47578. name: "Big",
  47579. height: math.unit(20, "feet"),
  47580. default: true
  47581. },
  47582. {
  47583. name: "Giant",
  47584. height: math.unit(100, "feet")
  47585. },
  47586. {
  47587. name: "Macro",
  47588. height: math.unit(200, "feet")
  47589. },
  47590. ]
  47591. ))
  47592. characterMakers.push(() => makeCharacter(
  47593. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  47594. {
  47595. front: {
  47596. height: math.unit(1, "meter"),
  47597. name: "Front",
  47598. image: {
  47599. source: "./media/characters/atlas-morenai/front.svg",
  47600. extra: 1275/1043,
  47601. bottom: 19/1294
  47602. }
  47603. },
  47604. back: {
  47605. height: math.unit(1, "meter"),
  47606. name: "Back",
  47607. image: {
  47608. source: "./media/characters/atlas-morenai/back.svg",
  47609. extra: 1141/1001,
  47610. bottom: 25/1166
  47611. }
  47612. },
  47613. },
  47614. [
  47615. {
  47616. name: "Normal",
  47617. height: math.unit(1, "meter"),
  47618. default: true
  47619. },
  47620. {
  47621. name: "Magic-Infused",
  47622. height: math.unit(5, "meters")
  47623. },
  47624. ]
  47625. ))
  47626. characterMakers.push(() => makeCharacter(
  47627. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  47628. {
  47629. front: {
  47630. height: math.unit(5, "meters"),
  47631. name: "Front",
  47632. image: {
  47633. source: "./media/characters/cintia/front.svg",
  47634. extra: 1312/1228,
  47635. bottom: 38/1350
  47636. }
  47637. },
  47638. back: {
  47639. height: math.unit(5, "meters"),
  47640. name: "Back",
  47641. image: {
  47642. source: "./media/characters/cintia/back.svg",
  47643. extra: 1260/1166,
  47644. bottom: 98/1358
  47645. }
  47646. },
  47647. frontDick: {
  47648. height: math.unit(5, "meters"),
  47649. name: "Front (Dick)",
  47650. image: {
  47651. source: "./media/characters/cintia/front-dick.svg",
  47652. extra: 1312/1228,
  47653. bottom: 38/1350
  47654. }
  47655. },
  47656. backDick: {
  47657. height: math.unit(5, "meters"),
  47658. name: "Back (Dick)",
  47659. image: {
  47660. source: "./media/characters/cintia/back-dick.svg",
  47661. extra: 1260/1166,
  47662. bottom: 98/1358
  47663. }
  47664. },
  47665. bust: {
  47666. height: math.unit(1.97, "meters"),
  47667. name: "Bust",
  47668. image: {
  47669. source: "./media/characters/cintia/bust.svg",
  47670. extra: 617/565,
  47671. bottom: 0/617
  47672. }
  47673. },
  47674. },
  47675. [
  47676. {
  47677. name: "Normal",
  47678. height: math.unit(5, "meters"),
  47679. default: true
  47680. },
  47681. ]
  47682. ))
  47683. characterMakers.push(() => makeCharacter(
  47684. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  47685. {
  47686. side: {
  47687. height: math.unit(100, "feet"),
  47688. name: "Side",
  47689. image: {
  47690. source: "./media/characters/denora/side.svg",
  47691. extra: 875/803,
  47692. bottom: 9/884
  47693. }
  47694. },
  47695. },
  47696. [
  47697. {
  47698. name: "Standard",
  47699. height: math.unit(100, "feet"),
  47700. default: true
  47701. },
  47702. {
  47703. name: "Grand",
  47704. height: math.unit(1000, "feet")
  47705. },
  47706. {
  47707. name: "Conquering",
  47708. height: math.unit(10000, "feet")
  47709. },
  47710. ]
  47711. ))
  47712. characterMakers.push(() => makeCharacter(
  47713. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  47714. {
  47715. dressed: {
  47716. height: math.unit(8 + 5/12, "feet"),
  47717. weight: math.unit(700, "lb"),
  47718. name: "Dressed",
  47719. image: {
  47720. source: "./media/characters/kiva/dressed.svg",
  47721. extra: 1102/1055,
  47722. bottom: 60/1162
  47723. }
  47724. },
  47725. nude: {
  47726. height: math.unit(8 + 5/12, "feet"),
  47727. weight: math.unit(700, "lb"),
  47728. name: "Nude",
  47729. image: {
  47730. source: "./media/characters/kiva/nude.svg",
  47731. extra: 1102/1055,
  47732. bottom: 60/1162
  47733. }
  47734. },
  47735. },
  47736. [
  47737. {
  47738. name: "Base Height",
  47739. height: math.unit(8 + 5/12, "feet"),
  47740. default: true
  47741. },
  47742. {
  47743. name: "Macro",
  47744. height: math.unit(100, "feet")
  47745. },
  47746. {
  47747. name: "Max",
  47748. height: math.unit(3280, "feet")
  47749. },
  47750. ]
  47751. ))
  47752. characterMakers.push(() => makeCharacter(
  47753. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  47754. {
  47755. front: {
  47756. height: math.unit(6 + 8/12, "feet"),
  47757. weight: math.unit(250, "lb"),
  47758. name: "Front",
  47759. image: {
  47760. source: "./media/characters/ztragon/front.svg",
  47761. extra: 1825/1684,
  47762. bottom: 98/1923
  47763. }
  47764. },
  47765. },
  47766. [
  47767. {
  47768. name: "Normal",
  47769. height: math.unit(6 + 8/12, "feet"),
  47770. default: true
  47771. },
  47772. {
  47773. name: "Macro",
  47774. height: math.unit(80, "feet")
  47775. },
  47776. ]
  47777. ))
  47778. characterMakers.push(() => makeCharacter(
  47779. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  47780. {
  47781. front: {
  47782. height: math.unit(10.4, "feet"),
  47783. weight: math.unit(2, "tons"),
  47784. name: "Front",
  47785. image: {
  47786. source: "./media/characters/yesenia/front.svg",
  47787. extra: 1479/1474,
  47788. bottom: 233/1712
  47789. }
  47790. },
  47791. },
  47792. [
  47793. {
  47794. name: "Normal",
  47795. height: math.unit(10.4, "feet"),
  47796. default: true
  47797. },
  47798. ]
  47799. ))
  47800. characterMakers.push(() => makeCharacter(
  47801. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  47802. {
  47803. normal: {
  47804. height: math.unit(6 + 1/12, "feet"),
  47805. weight: math.unit(180, "lb"),
  47806. name: "Normal",
  47807. image: {
  47808. source: "./media/characters/leanne-lycheborne/normal.svg",
  47809. extra: 1748/1660,
  47810. bottom: 98/1846
  47811. }
  47812. },
  47813. were: {
  47814. height: math.unit(12, "feet"),
  47815. weight: math.unit(1600, "lb"),
  47816. name: "Were",
  47817. image: {
  47818. source: "./media/characters/leanne-lycheborne/were.svg",
  47819. extra: 1485/1432,
  47820. bottom: 66/1551
  47821. }
  47822. },
  47823. },
  47824. [
  47825. {
  47826. name: "Normal",
  47827. height: math.unit(6 + 1/12, "feet"),
  47828. default: true
  47829. },
  47830. ]
  47831. ))
  47832. characterMakers.push(() => makeCharacter(
  47833. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  47834. {
  47835. side: {
  47836. height: math.unit(13, "feet"),
  47837. name: "Side",
  47838. image: {
  47839. source: "./media/characters/kira-tyler/side.svg",
  47840. extra: 693/393,
  47841. bottom: 58/751
  47842. }
  47843. },
  47844. },
  47845. [
  47846. {
  47847. name: "Normal",
  47848. height: math.unit(13, "feet"),
  47849. default: true
  47850. },
  47851. ]
  47852. ))
  47853. characterMakers.push(() => makeCharacter(
  47854. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  47855. {
  47856. front: {
  47857. height: math.unit(10.3, "feet"),
  47858. weight: math.unit(150, "lb"),
  47859. name: "Front",
  47860. image: {
  47861. source: "./media/characters/blaze/front.svg",
  47862. extra: 1378/1286,
  47863. bottom: 172/1550
  47864. }
  47865. },
  47866. },
  47867. [
  47868. {
  47869. name: "Normal",
  47870. height: math.unit(10.3, "feet"),
  47871. default: true
  47872. },
  47873. ]
  47874. ))
  47875. characterMakers.push(() => makeCharacter(
  47876. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  47877. {
  47878. side: {
  47879. height: math.unit(2, "meters"),
  47880. weight: math.unit(400, "kg"),
  47881. name: "Side",
  47882. image: {
  47883. source: "./media/characters/anu/side.svg",
  47884. extra: 506/394,
  47885. bottom: 18/524
  47886. }
  47887. },
  47888. },
  47889. [
  47890. {
  47891. name: "Humanoid",
  47892. height: math.unit(2, "meters")
  47893. },
  47894. {
  47895. name: "Normal",
  47896. height: math.unit(5, "meters"),
  47897. default: true
  47898. },
  47899. ]
  47900. ))
  47901. characterMakers.push(() => makeCharacter(
  47902. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  47903. {
  47904. front: {
  47905. height: math.unit(5 + 5/12, "feet"),
  47906. weight: math.unit(170, "lb"),
  47907. name: "Front",
  47908. image: {
  47909. source: "./media/characters/synx-the-lynx/front.svg",
  47910. extra: 1893/1745,
  47911. bottom: 17/1910
  47912. }
  47913. },
  47914. side: {
  47915. height: math.unit(5 + 5/12, "feet"),
  47916. weight: math.unit(170, "lb"),
  47917. name: "Side",
  47918. image: {
  47919. source: "./media/characters/synx-the-lynx/side.svg",
  47920. extra: 1884/1740,
  47921. bottom: 39/1923
  47922. }
  47923. },
  47924. back: {
  47925. height: math.unit(5 + 5/12, "feet"),
  47926. weight: math.unit(170, "lb"),
  47927. name: "Back",
  47928. image: {
  47929. source: "./media/characters/synx-the-lynx/back.svg",
  47930. extra: 1903/1755,
  47931. bottom: 14/1917
  47932. }
  47933. },
  47934. },
  47935. [
  47936. {
  47937. name: "Normal",
  47938. height: math.unit(5 + 5/12, "feet"),
  47939. default: true
  47940. },
  47941. ]
  47942. ))
  47943. characterMakers.push(() => makeCharacter(
  47944. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  47945. {
  47946. back: {
  47947. height: math.unit(15, "feet"),
  47948. name: "Back",
  47949. image: {
  47950. source: "./media/characters/nadezda-fex/back.svg",
  47951. extra: 1695/1481,
  47952. bottom: 25/1720
  47953. }
  47954. },
  47955. },
  47956. [
  47957. {
  47958. name: "Normal",
  47959. height: math.unit(15, "feet"),
  47960. default: true
  47961. },
  47962. {
  47963. name: "Macro",
  47964. height: math.unit(2.5, "miles")
  47965. },
  47966. {
  47967. name: "Goddess",
  47968. height: math.unit(2, "multiverses")
  47969. },
  47970. ]
  47971. ))
  47972. characterMakers.push(() => makeCharacter(
  47973. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  47974. {
  47975. front: {
  47976. height: math.unit(216, "cm"),
  47977. name: "Front",
  47978. image: {
  47979. source: "./media/characters/lev/front.svg",
  47980. extra: 1728/1670,
  47981. bottom: 82/1810
  47982. }
  47983. },
  47984. back: {
  47985. height: math.unit(216, "cm"),
  47986. name: "Back",
  47987. image: {
  47988. source: "./media/characters/lev/back.svg",
  47989. extra: 1738/1675,
  47990. bottom: 24/1762
  47991. }
  47992. },
  47993. dressed: {
  47994. height: math.unit(216, "cm"),
  47995. name: "Dressed",
  47996. image: {
  47997. source: "./media/characters/lev/dressed.svg",
  47998. extra: 1397/1351,
  47999. bottom: 73/1470
  48000. }
  48001. },
  48002. head: {
  48003. height: math.unit(0.51, "meter"),
  48004. name: "Head",
  48005. image: {
  48006. source: "./media/characters/lev/head.svg"
  48007. }
  48008. },
  48009. },
  48010. [
  48011. {
  48012. name: "Normal",
  48013. height: math.unit(216, "cm"),
  48014. default: true
  48015. },
  48016. {
  48017. name: "Relatively Macro",
  48018. height: math.unit(80, "meters")
  48019. },
  48020. {
  48021. name: "Megamacro",
  48022. height: math.unit(21600, "meters")
  48023. },
  48024. {
  48025. name: "Megamacro+",
  48026. height: math.unit(64800, "meters")
  48027. },
  48028. ]
  48029. ))
  48030. characterMakers.push(() => makeCharacter(
  48031. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  48032. {
  48033. front: {
  48034. height: math.unit(2, "meters"),
  48035. weight: math.unit(80, "kg"),
  48036. name: "Front",
  48037. image: {
  48038. source: "./media/characters/moka/front.svg",
  48039. extra: 1337/1255,
  48040. bottom: 58/1395
  48041. }
  48042. },
  48043. },
  48044. [
  48045. {
  48046. name: "Micro",
  48047. height: math.unit(15, "cm")
  48048. },
  48049. {
  48050. name: "Normal",
  48051. height: math.unit(2, "meters"),
  48052. default: true
  48053. },
  48054. {
  48055. name: "Macro",
  48056. height: math.unit(20, "meters"),
  48057. },
  48058. ]
  48059. ))
  48060. characterMakers.push(() => makeCharacter(
  48061. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  48062. {
  48063. front: {
  48064. height: math.unit(9, "feet"),
  48065. weight: math.unit(240, "lb"),
  48066. name: "Front",
  48067. image: {
  48068. source: "./media/characters/kuzco/front.svg",
  48069. extra: 1593/1487,
  48070. bottom: 32/1625
  48071. }
  48072. },
  48073. side: {
  48074. height: math.unit(9, "feet"),
  48075. weight: math.unit(240, "lb"),
  48076. name: "Side",
  48077. image: {
  48078. source: "./media/characters/kuzco/side.svg",
  48079. extra: 1575/1485,
  48080. bottom: 30/1605
  48081. }
  48082. },
  48083. back: {
  48084. height: math.unit(9, "feet"),
  48085. weight: math.unit(240, "lb"),
  48086. name: "Back",
  48087. image: {
  48088. source: "./media/characters/kuzco/back.svg",
  48089. extra: 1603/1514,
  48090. bottom: 14/1617
  48091. }
  48092. },
  48093. },
  48094. [
  48095. {
  48096. name: "Normal",
  48097. height: math.unit(9, "feet"),
  48098. default: true
  48099. },
  48100. ]
  48101. ))
  48102. characterMakers.push(() => makeCharacter(
  48103. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  48104. {
  48105. side: {
  48106. height: math.unit(2, "meters"),
  48107. weight: math.unit(300, "kg"),
  48108. name: "Side",
  48109. image: {
  48110. source: "./media/characters/ceruleus/side.svg",
  48111. extra: 1068/974,
  48112. bottom: 126/1194
  48113. }
  48114. },
  48115. maw: {
  48116. height: math.unit(0.8125, "meter"),
  48117. name: "Maw",
  48118. image: {
  48119. source: "./media/characters/ceruleus/maw.svg"
  48120. }
  48121. },
  48122. },
  48123. [
  48124. {
  48125. name: "Normal",
  48126. height: math.unit(16, "meters"),
  48127. default: true
  48128. },
  48129. ]
  48130. ))
  48131. characterMakers.push(() => makeCharacter(
  48132. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  48133. {
  48134. front: {
  48135. height: math.unit(9, "feet"),
  48136. weight: math.unit(500, "kg"),
  48137. name: "Front",
  48138. image: {
  48139. source: "./media/characters/acouya/front.svg",
  48140. extra: 1660/1473,
  48141. bottom: 28/1688
  48142. }
  48143. },
  48144. },
  48145. [
  48146. {
  48147. name: "Normal",
  48148. height: math.unit(9, "feet"),
  48149. default: true
  48150. },
  48151. ]
  48152. ))
  48153. characterMakers.push(() => makeCharacter(
  48154. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  48155. {
  48156. front: {
  48157. height: math.unit(5 + 6/12, "feet"),
  48158. weight: math.unit(195, "lb"),
  48159. name: "Front",
  48160. image: {
  48161. source: "./media/characters/vant/front.svg",
  48162. extra: 1396/1320,
  48163. bottom: 20/1416
  48164. }
  48165. },
  48166. back: {
  48167. height: math.unit(5 + 6/12, "feet"),
  48168. weight: math.unit(195, "lb"),
  48169. name: "Back",
  48170. image: {
  48171. source: "./media/characters/vant/back.svg",
  48172. extra: 1396/1320,
  48173. bottom: 20/1416
  48174. }
  48175. },
  48176. maw: {
  48177. height: math.unit(0.75, "feet"),
  48178. name: "Maw",
  48179. image: {
  48180. source: "./media/characters/vant/maw.svg"
  48181. }
  48182. },
  48183. paw: {
  48184. height: math.unit(1.07, "feet"),
  48185. name: "Paw",
  48186. image: {
  48187. source: "./media/characters/vant/paw.svg"
  48188. }
  48189. },
  48190. },
  48191. [
  48192. {
  48193. name: "Micro",
  48194. height: math.unit(0.25, "inches")
  48195. },
  48196. {
  48197. name: "Normal",
  48198. height: math.unit(5 + 6/12, "feet"),
  48199. default: true
  48200. },
  48201. {
  48202. name: "Macro",
  48203. height: math.unit(75, "feet")
  48204. },
  48205. ]
  48206. ))
  48207. characterMakers.push(() => makeCharacter(
  48208. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  48209. {
  48210. front: {
  48211. height: math.unit(30, "meters"),
  48212. weight: math.unit(363, "tons"),
  48213. name: "Front",
  48214. image: {
  48215. source: "./media/characters/ahra/front.svg",
  48216. extra: 1914/1814,
  48217. bottom: 46/1960
  48218. }
  48219. },
  48220. },
  48221. [
  48222. {
  48223. name: "Macro",
  48224. height: math.unit(30, "meters"),
  48225. default: true
  48226. },
  48227. ]
  48228. ))
  48229. characterMakers.push(() => makeCharacter(
  48230. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  48231. {
  48232. undressed: {
  48233. height: math.unit(2, "m"),
  48234. weight: math.unit(250, "kg"),
  48235. name: "Undressed",
  48236. image: {
  48237. source: "./media/characters/coriander/undressed.svg",
  48238. extra: 1757/1606,
  48239. bottom: 107/1864
  48240. }
  48241. },
  48242. dressed: {
  48243. height: math.unit(2, "m"),
  48244. weight: math.unit(250, "kg"),
  48245. name: "Dressed",
  48246. image: {
  48247. source: "./media/characters/coriander/dressed.svg",
  48248. extra: 1757/1606,
  48249. bottom: 107/1864
  48250. }
  48251. },
  48252. },
  48253. [
  48254. {
  48255. name: "Normal",
  48256. height: math.unit(4, "meters"),
  48257. default: true
  48258. },
  48259. {
  48260. name: "XL",
  48261. height: math.unit(6, "meters")
  48262. },
  48263. {
  48264. name: "XXL",
  48265. height: math.unit(8, "meters")
  48266. },
  48267. ]
  48268. ))
  48269. characterMakers.push(() => makeCharacter(
  48270. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  48271. {
  48272. front: {
  48273. height: math.unit(6, "feet"),
  48274. name: "Front",
  48275. image: {
  48276. source: "./media/characters/syrinx/front.svg",
  48277. extra: 1557/1259,
  48278. bottom: 171/1728
  48279. }
  48280. },
  48281. },
  48282. [
  48283. {
  48284. name: "Normal",
  48285. height: math.unit(6 + 3/12, "feet"),
  48286. default: true
  48287. },
  48288. ]
  48289. ))
  48290. characterMakers.push(() => makeCharacter(
  48291. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  48292. {
  48293. front: {
  48294. height: math.unit(11 + 6/12, "feet"),
  48295. weight: math.unit(1.5, "tons"),
  48296. name: "Front",
  48297. image: {
  48298. source: "./media/characters/bor/front.svg",
  48299. extra: 1189/1109,
  48300. bottom: 170/1359
  48301. }
  48302. },
  48303. },
  48304. [
  48305. {
  48306. name: "Normal",
  48307. height: math.unit(11 + 6/12, "feet"),
  48308. default: true
  48309. },
  48310. {
  48311. name: "Macro",
  48312. height: math.unit(32 + 9/12, "feet")
  48313. },
  48314. ]
  48315. ))
  48316. characterMakers.push(() => makeCharacter(
  48317. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  48318. {
  48319. anthro: {
  48320. height: math.unit(9, "feet"),
  48321. weight: math.unit(2076, "lb"),
  48322. name: "Anthro",
  48323. image: {
  48324. source: "./media/characters/abacus/anthro.svg",
  48325. extra: 1540/1494,
  48326. bottom: 233/1773
  48327. }
  48328. },
  48329. pigeon: {
  48330. height: math.unit(1, "feet"),
  48331. name: "Pigeon",
  48332. image: {
  48333. source: "./media/characters/abacus/pigeon.svg",
  48334. extra: 528/525,
  48335. bottom: 46/574
  48336. }
  48337. },
  48338. },
  48339. [
  48340. {
  48341. name: "Normal",
  48342. height: math.unit(9, "feet"),
  48343. default: true
  48344. },
  48345. ]
  48346. ))
  48347. characterMakers.push(() => makeCharacter(
  48348. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  48349. {
  48350. side: {
  48351. height: math.unit(6, "feet"),
  48352. name: "Side",
  48353. image: {
  48354. source: "./media/characters/delkhan/side.svg",
  48355. extra: 1884/1786,
  48356. bottom: 308/2192
  48357. }
  48358. },
  48359. head: {
  48360. height: math.unit(3.38, "feet"),
  48361. name: "Head",
  48362. image: {
  48363. source: "./media/characters/delkhan/head.svg"
  48364. }
  48365. },
  48366. },
  48367. [
  48368. {
  48369. name: "Normal",
  48370. height: math.unit(72, "feet"),
  48371. default: true
  48372. },
  48373. {
  48374. name: "Giant",
  48375. height: math.unit(172, "feet")
  48376. },
  48377. ]
  48378. ))
  48379. characterMakers.push(() => makeCharacter(
  48380. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  48381. {
  48382. standing: {
  48383. height: math.unit(6, "feet"),
  48384. name: "Standing",
  48385. image: {
  48386. source: "./media/characters/euchidat/standing.svg",
  48387. extra: 1612/1553,
  48388. bottom: 116/1728
  48389. }
  48390. },
  48391. leaning: {
  48392. height: math.unit(6, "feet"),
  48393. name: "Leaning",
  48394. image: {
  48395. source: "./media/characters/euchidat/leaning.svg",
  48396. extra: 1719/1674,
  48397. bottom: 27/1746
  48398. }
  48399. },
  48400. },
  48401. [
  48402. {
  48403. name: "Normal",
  48404. height: math.unit(175, "feet"),
  48405. default: true
  48406. },
  48407. {
  48408. name: "Megamacro",
  48409. height: math.unit(190, "miles")
  48410. },
  48411. {
  48412. name: "Gigamacro",
  48413. height: math.unit(190000, "miles")
  48414. },
  48415. ]
  48416. ))
  48417. characterMakers.push(() => makeCharacter(
  48418. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  48419. {
  48420. front: {
  48421. height: math.unit(6, "feet"),
  48422. weight: math.unit(150, "lb"),
  48423. name: "Front",
  48424. image: {
  48425. source: "./media/characters/rebecca-stack/front.svg",
  48426. extra: 1256/1201,
  48427. bottom: 18/1274
  48428. }
  48429. },
  48430. },
  48431. [
  48432. {
  48433. name: "Normal",
  48434. height: math.unit(5 + 8/12, "feet"),
  48435. default: true
  48436. },
  48437. {
  48438. name: "Demolitionist",
  48439. height: math.unit(200, "feet")
  48440. },
  48441. {
  48442. name: "Out of Control",
  48443. height: math.unit(2, "miles")
  48444. },
  48445. {
  48446. name: "Giga",
  48447. height: math.unit(7200, "miles")
  48448. },
  48449. ]
  48450. ))
  48451. characterMakers.push(() => makeCharacter(
  48452. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  48453. {
  48454. front: {
  48455. height: math.unit(6, "feet"),
  48456. weight: math.unit(150, "lb"),
  48457. name: "Front",
  48458. image: {
  48459. source: "./media/characters/jenny-cartwright/front.svg",
  48460. extra: 1384/1376,
  48461. bottom: 58/1442
  48462. }
  48463. },
  48464. },
  48465. [
  48466. {
  48467. name: "Normal",
  48468. height: math.unit(6 + 7/12, "feet"),
  48469. default: true
  48470. },
  48471. {
  48472. name: "Librarian",
  48473. height: math.unit(55, "feet")
  48474. },
  48475. {
  48476. name: "Sightseer",
  48477. height: math.unit(50, "miles")
  48478. },
  48479. {
  48480. name: "Giga",
  48481. height: math.unit(30000, "miles")
  48482. },
  48483. ]
  48484. ))
  48485. characterMakers.push(() => makeCharacter(
  48486. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  48487. {
  48488. nude: {
  48489. height: math.unit(8, "feet"),
  48490. weight: math.unit(225, "lb"),
  48491. name: "Nude",
  48492. image: {
  48493. source: "./media/characters/marvy/nude.svg",
  48494. extra: 1900/1683,
  48495. bottom: 89/1989
  48496. }
  48497. },
  48498. dressed: {
  48499. height: math.unit(8, "feet"),
  48500. weight: math.unit(225, "lb"),
  48501. name: "Dressed",
  48502. image: {
  48503. source: "./media/characters/marvy/dressed.svg",
  48504. extra: 1900/1683,
  48505. bottom: 89/1989
  48506. }
  48507. },
  48508. head: {
  48509. height: math.unit(2.85, "feet"),
  48510. name: "Head",
  48511. image: {
  48512. source: "./media/characters/marvy/head.svg"
  48513. }
  48514. },
  48515. },
  48516. [
  48517. {
  48518. name: "Normal",
  48519. height: math.unit(8, "feet"),
  48520. default: true
  48521. },
  48522. ]
  48523. ))
  48524. characterMakers.push(() => makeCharacter(
  48525. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  48526. {
  48527. front: {
  48528. height: math.unit(8, "feet"),
  48529. weight: math.unit(250, "lb"),
  48530. name: "Front",
  48531. image: {
  48532. source: "./media/characters/leah/front.svg",
  48533. extra: 1257/1149,
  48534. bottom: 109/1366
  48535. }
  48536. },
  48537. },
  48538. [
  48539. {
  48540. name: "Normal",
  48541. height: math.unit(8, "feet"),
  48542. default: true
  48543. },
  48544. {
  48545. name: "Minimacro",
  48546. height: math.unit(40, "feet")
  48547. },
  48548. {
  48549. name: "Macro",
  48550. height: math.unit(124, "feet")
  48551. },
  48552. {
  48553. name: "Megamacro",
  48554. height: math.unit(850, "feet")
  48555. },
  48556. ]
  48557. ))
  48558. characterMakers.push(() => makeCharacter(
  48559. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  48560. {
  48561. side: {
  48562. height: math.unit(13 + 6/12, "feet"),
  48563. weight: math.unit(3200, "lb"),
  48564. name: "Side",
  48565. image: {
  48566. source: "./media/characters/alvir/side.svg",
  48567. extra: 896/589,
  48568. bottom: 26/922
  48569. }
  48570. },
  48571. },
  48572. [
  48573. {
  48574. name: "Normal",
  48575. height: math.unit(13 + 6/12, "feet"),
  48576. default: true
  48577. },
  48578. ]
  48579. ))
  48580. characterMakers.push(() => makeCharacter(
  48581. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  48582. {
  48583. front: {
  48584. height: math.unit(5 + 4/12, "feet"),
  48585. weight: math.unit(236, "lb"),
  48586. name: "Front",
  48587. image: {
  48588. source: "./media/characters/zaina-khalil/front.svg",
  48589. extra: 1533/1485,
  48590. bottom: 94/1627
  48591. }
  48592. },
  48593. side: {
  48594. height: math.unit(5 + 4/12, "feet"),
  48595. weight: math.unit(236, "lb"),
  48596. name: "Side",
  48597. image: {
  48598. source: "./media/characters/zaina-khalil/side.svg",
  48599. extra: 1537/1498,
  48600. bottom: 66/1603
  48601. }
  48602. },
  48603. back: {
  48604. height: math.unit(5 + 4/12, "feet"),
  48605. weight: math.unit(236, "lb"),
  48606. name: "Back",
  48607. image: {
  48608. source: "./media/characters/zaina-khalil/back.svg",
  48609. extra: 1546/1494,
  48610. bottom: 89/1635
  48611. }
  48612. },
  48613. },
  48614. [
  48615. {
  48616. name: "Normal",
  48617. height: math.unit(5 + 4/12, "feet"),
  48618. default: true
  48619. },
  48620. ]
  48621. ))
  48622. characterMakers.push(() => makeCharacter(
  48623. { name: "Terry", species: ["husky"], tags: ["taur"] },
  48624. {
  48625. side: {
  48626. height: math.unit(12, "feet"),
  48627. weight: math.unit(4000, "lb"),
  48628. name: "Side",
  48629. image: {
  48630. source: "./media/characters/terry/side.svg",
  48631. extra: 1518/1439,
  48632. bottom: 149/1667
  48633. }
  48634. },
  48635. },
  48636. [
  48637. {
  48638. name: "Normal",
  48639. height: math.unit(12, "feet"),
  48640. default: true
  48641. },
  48642. ]
  48643. ))
  48644. characterMakers.push(() => makeCharacter(
  48645. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  48646. {
  48647. front: {
  48648. height: math.unit(12, "feet"),
  48649. weight: math.unit(1500, "lb"),
  48650. name: "Front",
  48651. image: {
  48652. source: "./media/characters/kahea/front.svg",
  48653. extra: 1722/1617,
  48654. bottom: 179/1901
  48655. }
  48656. },
  48657. },
  48658. [
  48659. {
  48660. name: "Normal",
  48661. height: math.unit(12, "feet"),
  48662. default: true
  48663. },
  48664. ]
  48665. ))
  48666. characterMakers.push(() => makeCharacter(
  48667. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  48668. {
  48669. demonFront: {
  48670. height: math.unit(36, "feet"),
  48671. name: "Front",
  48672. image: {
  48673. source: "./media/characters/alex-xuria/demon-front.svg",
  48674. extra: 1705/1673,
  48675. bottom: 198/1903
  48676. },
  48677. form: "demon",
  48678. default: true
  48679. },
  48680. demonBack: {
  48681. height: math.unit(36, "feet"),
  48682. name: "Back",
  48683. image: {
  48684. source: "./media/characters/alex-xuria/demon-back.svg",
  48685. extra: 1725/1693,
  48686. bottom: 70/1795
  48687. },
  48688. form: "demon"
  48689. },
  48690. demonHead: {
  48691. height: math.unit(2.14, "meters"),
  48692. name: "Head",
  48693. image: {
  48694. source: "./media/characters/alex-xuria/demon-head.svg"
  48695. },
  48696. form: "demon"
  48697. },
  48698. demonHand: {
  48699. height: math.unit(1.61, "meters"),
  48700. name: "Hand",
  48701. image: {
  48702. source: "./media/characters/alex-xuria/demon-hand.svg"
  48703. },
  48704. form: "demon"
  48705. },
  48706. demonPaw: {
  48707. height: math.unit(1.35, "meters"),
  48708. name: "Paw",
  48709. image: {
  48710. source: "./media/characters/alex-xuria/demon-paw.svg"
  48711. },
  48712. form: "demon"
  48713. },
  48714. demonFoot: {
  48715. height: math.unit(2.2, "meters"),
  48716. name: "Foot",
  48717. image: {
  48718. source: "./media/characters/alex-xuria/demon-foot.svg"
  48719. },
  48720. form: "demon"
  48721. },
  48722. demonCock: {
  48723. height: math.unit(1.74, "meters"),
  48724. name: "Cock",
  48725. image: {
  48726. source: "./media/characters/alex-xuria/demon-cock.svg"
  48727. },
  48728. form: "demon"
  48729. },
  48730. demonTailClosed: {
  48731. height: math.unit(1.47, "meters"),
  48732. name: "Tail (Closed)",
  48733. image: {
  48734. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  48735. },
  48736. form: "demon"
  48737. },
  48738. demonTailOpen: {
  48739. height: math.unit(2.85, "meters"),
  48740. name: "Tail (Open)",
  48741. image: {
  48742. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  48743. },
  48744. form: "demon"
  48745. },
  48746. incubusFront: {
  48747. height: math.unit(12, "feet"),
  48748. name: "Front",
  48749. image: {
  48750. source: "./media/characters/alex-xuria/incubus-front.svg",
  48751. extra: 1754/1677,
  48752. bottom: 125/1879
  48753. },
  48754. form: "incubus",
  48755. default: true
  48756. },
  48757. incubusBack: {
  48758. height: math.unit(12, "feet"),
  48759. name: "Back",
  48760. image: {
  48761. source: "./media/characters/alex-xuria/incubus-back.svg",
  48762. extra: 1702/1647,
  48763. bottom: 30/1732
  48764. },
  48765. form: "incubus"
  48766. },
  48767. incubusHead: {
  48768. height: math.unit(3.45, "feet"),
  48769. name: "Head",
  48770. image: {
  48771. source: "./media/characters/alex-xuria/incubus-head.svg"
  48772. },
  48773. form: "incubus"
  48774. },
  48775. rabbitFront: {
  48776. height: math.unit(6, "feet"),
  48777. name: "Front",
  48778. image: {
  48779. source: "./media/characters/alex-xuria/rabbit-front.svg",
  48780. extra: 1369/1349,
  48781. bottom: 45/1414
  48782. },
  48783. form: "rabbit",
  48784. default: true
  48785. },
  48786. rabbitSide: {
  48787. height: math.unit(6, "feet"),
  48788. name: "Side",
  48789. image: {
  48790. source: "./media/characters/alex-xuria/rabbit-side.svg",
  48791. extra: 1370/1356,
  48792. bottom: 37/1407
  48793. },
  48794. form: "rabbit"
  48795. },
  48796. rabbitBack: {
  48797. height: math.unit(6, "feet"),
  48798. name: "Back",
  48799. image: {
  48800. source: "./media/characters/alex-xuria/rabbit-back.svg",
  48801. extra: 1375/1358,
  48802. bottom: 43/1418
  48803. },
  48804. form: "rabbit"
  48805. },
  48806. },
  48807. [
  48808. {
  48809. name: "Normal",
  48810. height: math.unit(6, "feet"),
  48811. default: true,
  48812. form: "rabbit"
  48813. },
  48814. {
  48815. name: "Incubus",
  48816. height: math.unit(12, "feet"),
  48817. default: true,
  48818. form: "incubus"
  48819. },
  48820. {
  48821. name: "Demon",
  48822. height: math.unit(36, "feet"),
  48823. default: true,
  48824. form: "demon"
  48825. }
  48826. ],
  48827. {
  48828. "demon": {
  48829. name: "Demon",
  48830. default: true
  48831. },
  48832. "incubus": {
  48833. name: "Incubus",
  48834. },
  48835. "rabbit": {
  48836. name: "Rabbit"
  48837. }
  48838. }
  48839. ))
  48840. characterMakers.push(() => makeCharacter(
  48841. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  48842. {
  48843. front: {
  48844. height: math.unit(7 + 5/12, "feet"),
  48845. weight: math.unit(510, "lb"),
  48846. name: "Front",
  48847. image: {
  48848. source: "./media/characters/syrup/front.svg",
  48849. extra: 932/916,
  48850. bottom: 26/958
  48851. }
  48852. },
  48853. },
  48854. [
  48855. {
  48856. name: "Normal",
  48857. height: math.unit(7 + 5/12, "feet"),
  48858. default: true
  48859. },
  48860. {
  48861. name: "Big",
  48862. height: math.unit(50, "feet")
  48863. },
  48864. {
  48865. name: "Macro",
  48866. height: math.unit(300, "feet")
  48867. },
  48868. {
  48869. name: "Megamacro",
  48870. height: math.unit(1, "mile")
  48871. },
  48872. ]
  48873. ))
  48874. characterMakers.push(() => makeCharacter(
  48875. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  48876. {
  48877. front: {
  48878. height: math.unit(6 + 9/12, "feet"),
  48879. name: "Front",
  48880. image: {
  48881. source: "./media/characters/zeimne/front.svg",
  48882. extra: 1969/1806,
  48883. bottom: 53/2022
  48884. }
  48885. },
  48886. },
  48887. [
  48888. {
  48889. name: "Normal",
  48890. height: math.unit(6 + 9/12, "feet"),
  48891. default: true
  48892. },
  48893. {
  48894. name: "Giant",
  48895. height: math.unit(550, "feet")
  48896. },
  48897. {
  48898. name: "Mega",
  48899. height: math.unit(3, "miles")
  48900. },
  48901. {
  48902. name: "Giga",
  48903. height: math.unit(250, "miles")
  48904. },
  48905. {
  48906. name: "Tera",
  48907. height: math.unit(1, "AU")
  48908. },
  48909. ]
  48910. ))
  48911. characterMakers.push(() => makeCharacter(
  48912. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  48913. {
  48914. front: {
  48915. height: math.unit(5 + 2/12, "feet"),
  48916. name: "Front",
  48917. image: {
  48918. source: "./media/characters/grar/front.svg",
  48919. extra: 1331/1119,
  48920. bottom: 60/1391
  48921. }
  48922. },
  48923. back: {
  48924. height: math.unit(5 + 2/12, "feet"),
  48925. name: "Back",
  48926. image: {
  48927. source: "./media/characters/grar/back.svg",
  48928. extra: 1385/1169,
  48929. bottom: 23/1408
  48930. }
  48931. },
  48932. },
  48933. [
  48934. {
  48935. name: "Normal",
  48936. height: math.unit(5 + 2/12, "feet"),
  48937. default: true
  48938. },
  48939. ]
  48940. ))
  48941. characterMakers.push(() => makeCharacter(
  48942. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  48943. {
  48944. front: {
  48945. height: math.unit(13 + 7/12, "feet"),
  48946. weight: math.unit(2200, "lb"),
  48947. name: "Front",
  48948. image: {
  48949. source: "./media/characters/endraya/front.svg",
  48950. extra: 1289/1215,
  48951. bottom: 50/1339
  48952. }
  48953. },
  48954. nude: {
  48955. height: math.unit(13 + 7/12, "feet"),
  48956. weight: math.unit(2200, "lb"),
  48957. name: "Nude",
  48958. image: {
  48959. source: "./media/characters/endraya/nude.svg",
  48960. extra: 1247/1171,
  48961. bottom: 40/1287
  48962. }
  48963. },
  48964. head: {
  48965. height: math.unit(2.6, "feet"),
  48966. name: "Head",
  48967. image: {
  48968. source: "./media/characters/endraya/head.svg"
  48969. }
  48970. },
  48971. slit: {
  48972. height: math.unit(3.4, "feet"),
  48973. name: "Slit",
  48974. image: {
  48975. source: "./media/characters/endraya/slit.svg"
  48976. }
  48977. },
  48978. },
  48979. [
  48980. {
  48981. name: "Normal",
  48982. height: math.unit(13 + 7/12, "feet"),
  48983. default: true
  48984. },
  48985. {
  48986. name: "Macro",
  48987. height: math.unit(200, "feet")
  48988. },
  48989. ]
  48990. ))
  48991. characterMakers.push(() => makeCharacter(
  48992. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  48993. {
  48994. front: {
  48995. height: math.unit(1.81, "meters"),
  48996. weight: math.unit(69, "kg"),
  48997. name: "Front",
  48998. image: {
  48999. source: "./media/characters/rodryana/front.svg",
  49000. extra: 2002/1921,
  49001. bottom: 53/2055
  49002. }
  49003. },
  49004. back: {
  49005. height: math.unit(1.81, "meters"),
  49006. weight: math.unit(69, "kg"),
  49007. name: "Back",
  49008. image: {
  49009. source: "./media/characters/rodryana/back.svg",
  49010. extra: 1993/1926,
  49011. bottom: 48/2041
  49012. }
  49013. },
  49014. maw: {
  49015. height: math.unit(0.19769417475, "meters"),
  49016. name: "Maw",
  49017. image: {
  49018. source: "./media/characters/rodryana/maw.svg"
  49019. }
  49020. },
  49021. slit: {
  49022. height: math.unit(0.31631067961, "meters"),
  49023. name: "Slit",
  49024. image: {
  49025. source: "./media/characters/rodryana/slit.svg"
  49026. }
  49027. },
  49028. },
  49029. [
  49030. {
  49031. name: "Normal",
  49032. height: math.unit(1.81, "meters")
  49033. },
  49034. {
  49035. name: "Mini Macro",
  49036. height: math.unit(181, "meters")
  49037. },
  49038. {
  49039. name: "Macro",
  49040. height: math.unit(452, "meters"),
  49041. default: true
  49042. },
  49043. {
  49044. name: "Mega Macro",
  49045. height: math.unit(1.375, "km")
  49046. },
  49047. {
  49048. name: "Giga Macro",
  49049. height: math.unit(13.575, "km")
  49050. },
  49051. ]
  49052. ))
  49053. characterMakers.push(() => makeCharacter(
  49054. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  49055. {
  49056. front: {
  49057. height: math.unit(6, "feet"),
  49058. weight: math.unit(1000, "lb"),
  49059. name: "Front",
  49060. image: {
  49061. source: "./media/characters/asaya/front.svg",
  49062. extra: 1460/1200,
  49063. bottom: 71/1531
  49064. }
  49065. },
  49066. },
  49067. [
  49068. {
  49069. name: "Normal",
  49070. height: math.unit(8, "km"),
  49071. default: true
  49072. },
  49073. ]
  49074. ))
  49075. characterMakers.push(() => makeCharacter(
  49076. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  49077. {
  49078. front: {
  49079. height: math.unit(3.5, "meters"),
  49080. name: "Front",
  49081. image: {
  49082. source: "./media/characters/sarzu-and-israz/front.svg",
  49083. extra: 1570/1558,
  49084. bottom: 150/1720
  49085. },
  49086. },
  49087. back: {
  49088. height: math.unit(3.5, "meters"),
  49089. name: "Back",
  49090. image: {
  49091. source: "./media/characters/sarzu-and-israz/back.svg",
  49092. extra: 1523/1509,
  49093. bottom: 132/1655
  49094. },
  49095. },
  49096. frontFemale: {
  49097. height: math.unit(3.5, "meters"),
  49098. name: "Front (Female)",
  49099. image: {
  49100. source: "./media/characters/sarzu-and-israz/front-female.svg",
  49101. extra: 1570/1558,
  49102. bottom: 150/1720
  49103. },
  49104. },
  49105. frontHerm: {
  49106. height: math.unit(3.5, "meters"),
  49107. name: "Front (Herm)",
  49108. image: {
  49109. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  49110. extra: 1570/1558,
  49111. bottom: 150/1720
  49112. },
  49113. },
  49114. },
  49115. [
  49116. {
  49117. name: "Normal",
  49118. height: math.unit(3.5, "meters"),
  49119. default: true,
  49120. },
  49121. {
  49122. name: "Macro",
  49123. height: math.unit(65.5, "meters"),
  49124. },
  49125. ],
  49126. ))
  49127. characterMakers.push(() => makeCharacter(
  49128. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  49129. {
  49130. front: {
  49131. height: math.unit(6, "feet"),
  49132. weight: math.unit(250, "lb"),
  49133. name: "Front",
  49134. image: {
  49135. source: "./media/characters/zenimma/front.svg",
  49136. extra: 1346/1320,
  49137. bottom: 58/1404
  49138. }
  49139. },
  49140. back: {
  49141. height: math.unit(6, "feet"),
  49142. weight: math.unit(250, "lb"),
  49143. name: "Back",
  49144. image: {
  49145. source: "./media/characters/zenimma/back.svg",
  49146. extra: 1324/1308,
  49147. bottom: 44/1368
  49148. }
  49149. },
  49150. dick: {
  49151. height: math.unit(1.44, "feet"),
  49152. name: "Dick",
  49153. image: {
  49154. source: "./media/characters/zenimma/dick.svg"
  49155. }
  49156. },
  49157. },
  49158. [
  49159. {
  49160. name: "Canon Height",
  49161. height: math.unit(66, "miles"),
  49162. default: true
  49163. },
  49164. ]
  49165. ))
  49166. characterMakers.push(() => makeCharacter(
  49167. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  49168. {
  49169. nude: {
  49170. height: math.unit(6, "feet"),
  49171. weight: math.unit(150, "lb"),
  49172. name: "Nude",
  49173. image: {
  49174. source: "./media/characters/shavon/nude.svg",
  49175. extra: 1242/1096,
  49176. bottom: 98/1340
  49177. }
  49178. },
  49179. dressed: {
  49180. height: math.unit(6, "feet"),
  49181. weight: math.unit(150, "lb"),
  49182. name: "Dressed",
  49183. image: {
  49184. source: "./media/characters/shavon/dressed.svg",
  49185. extra: 1242/1096,
  49186. bottom: 98/1340
  49187. }
  49188. },
  49189. },
  49190. [
  49191. {
  49192. name: "Macro",
  49193. height: math.unit(255, "feet"),
  49194. default: true
  49195. },
  49196. ]
  49197. ))
  49198. characterMakers.push(() => makeCharacter(
  49199. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  49200. {
  49201. front: {
  49202. height: math.unit(6, "feet"),
  49203. name: "Front",
  49204. image: {
  49205. source: "./media/characters/steph/front.svg",
  49206. extra: 1430/1330,
  49207. bottom: 54/1484
  49208. }
  49209. },
  49210. },
  49211. [
  49212. {
  49213. name: "Normal",
  49214. height: math.unit(6, "feet"),
  49215. default: true
  49216. },
  49217. ]
  49218. ))
  49219. characterMakers.push(() => makeCharacter(
  49220. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  49221. {
  49222. front: {
  49223. height: math.unit(9, "feet"),
  49224. weight: math.unit(400, "lb"),
  49225. name: "Front",
  49226. image: {
  49227. source: "./media/characters/kil'aman/front.svg",
  49228. extra: 1210/1159,
  49229. bottom: 109/1319
  49230. }
  49231. },
  49232. head: {
  49233. height: math.unit(2.14, "feet"),
  49234. name: "Head",
  49235. image: {
  49236. source: "./media/characters/kil'aman/head.svg"
  49237. }
  49238. },
  49239. maw: {
  49240. height: math.unit(1.21, "feet"),
  49241. name: "Maw",
  49242. image: {
  49243. source: "./media/characters/kil'aman/maw.svg"
  49244. }
  49245. },
  49246. foot: {
  49247. height: math.unit(1.7, "feet"),
  49248. name: "Foot",
  49249. image: {
  49250. source: "./media/characters/kil'aman/foot.svg"
  49251. }
  49252. },
  49253. dick: {
  49254. height: math.unit(2.1, "feet"),
  49255. name: "Dick",
  49256. image: {
  49257. source: "./media/characters/kil'aman/dick.svg"
  49258. }
  49259. },
  49260. },
  49261. [
  49262. {
  49263. name: "Normal",
  49264. height: math.unit(9, "feet")
  49265. },
  49266. {
  49267. name: "Canon Height",
  49268. height: math.unit(10, "miles"),
  49269. default: true
  49270. },
  49271. {
  49272. name: "Maximum",
  49273. height: math.unit(6e9, "miles")
  49274. },
  49275. ]
  49276. ))
  49277. characterMakers.push(() => makeCharacter(
  49278. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  49279. {
  49280. front: {
  49281. height: math.unit(90, "feet"),
  49282. weight: math.unit(675000, "lb"),
  49283. name: "Front",
  49284. image: {
  49285. source: "./media/characters/qadan/front.svg",
  49286. extra: 1012/1004,
  49287. bottom: 78/1090
  49288. }
  49289. },
  49290. back: {
  49291. height: math.unit(90, "feet"),
  49292. weight: math.unit(675000, "lb"),
  49293. name: "Back",
  49294. image: {
  49295. source: "./media/characters/qadan/back.svg",
  49296. extra: 1042/1031,
  49297. bottom: 55/1097
  49298. }
  49299. },
  49300. armored: {
  49301. height: math.unit(90, "feet"),
  49302. weight: math.unit(675000, "lb"),
  49303. name: "Armored",
  49304. image: {
  49305. source: "./media/characters/qadan/armored.svg",
  49306. extra: 1047/1037,
  49307. bottom: 48/1095
  49308. }
  49309. },
  49310. },
  49311. [
  49312. {
  49313. name: "Normal",
  49314. height: math.unit(90, "feet"),
  49315. default: true
  49316. },
  49317. ]
  49318. ))
  49319. characterMakers.push(() => makeCharacter(
  49320. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  49321. {
  49322. front: {
  49323. height: math.unit(6, "feet"),
  49324. weight: math.unit(225, "lb"),
  49325. name: "Front",
  49326. image: {
  49327. source: "./media/characters/brooke/front.svg",
  49328. extra: 1050/1010,
  49329. bottom: 66/1116
  49330. }
  49331. },
  49332. back: {
  49333. height: math.unit(6, "feet"),
  49334. weight: math.unit(225, "lb"),
  49335. name: "Back",
  49336. image: {
  49337. source: "./media/characters/brooke/back.svg",
  49338. extra: 1053/1013,
  49339. bottom: 41/1094
  49340. }
  49341. },
  49342. dressed: {
  49343. height: math.unit(6, "feet"),
  49344. weight: math.unit(225, "lb"),
  49345. name: "Dressed",
  49346. image: {
  49347. source: "./media/characters/brooke/dressed.svg",
  49348. extra: 1050/1010,
  49349. bottom: 66/1116
  49350. }
  49351. },
  49352. },
  49353. [
  49354. {
  49355. name: "Canon Height",
  49356. height: math.unit(500, "miles"),
  49357. default: true
  49358. },
  49359. ]
  49360. ))
  49361. characterMakers.push(() => makeCharacter(
  49362. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  49363. {
  49364. front: {
  49365. height: math.unit(6 + 2/12, "feet"),
  49366. weight: math.unit(210, "lb"),
  49367. name: "Front",
  49368. image: {
  49369. source: "./media/characters/wubs/front.svg",
  49370. extra: 1345/1325,
  49371. bottom: 70/1415
  49372. }
  49373. },
  49374. back: {
  49375. height: math.unit(6 + 2/12, "feet"),
  49376. weight: math.unit(210, "lb"),
  49377. name: "Back",
  49378. image: {
  49379. source: "./media/characters/wubs/back.svg",
  49380. extra: 1296/1275,
  49381. bottom: 58/1354
  49382. }
  49383. },
  49384. },
  49385. [
  49386. {
  49387. name: "Normal",
  49388. height: math.unit(6 + 2/12, "feet"),
  49389. default: true
  49390. },
  49391. {
  49392. name: "Macro",
  49393. height: math.unit(1000, "feet")
  49394. },
  49395. {
  49396. name: "Megamacro",
  49397. height: math.unit(1, "mile")
  49398. },
  49399. ]
  49400. ))
  49401. characterMakers.push(() => makeCharacter(
  49402. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  49403. {
  49404. front: {
  49405. height: math.unit(4, "feet"),
  49406. weight: math.unit(120, "lb"),
  49407. name: "Front",
  49408. image: {
  49409. source: "./media/characters/blue/front.svg",
  49410. extra: 1636/1525,
  49411. bottom: 43/1679
  49412. }
  49413. },
  49414. back: {
  49415. height: math.unit(4, "feet"),
  49416. weight: math.unit(120, "lb"),
  49417. name: "Back",
  49418. image: {
  49419. source: "./media/characters/blue/back.svg",
  49420. extra: 1660/1560,
  49421. bottom: 57/1717
  49422. }
  49423. },
  49424. paws: {
  49425. height: math.unit(0.826, "feet"),
  49426. name: "Paws",
  49427. image: {
  49428. source: "./media/characters/blue/paws.svg"
  49429. }
  49430. },
  49431. },
  49432. [
  49433. {
  49434. name: "Micro",
  49435. height: math.unit(3, "inches")
  49436. },
  49437. {
  49438. name: "Normal",
  49439. height: math.unit(4, "feet"),
  49440. default: true
  49441. },
  49442. {
  49443. name: "Femenine Form",
  49444. height: math.unit(14, "feet")
  49445. },
  49446. {
  49447. name: "Werebat Form",
  49448. height: math.unit(18, "feet")
  49449. },
  49450. ]
  49451. ))
  49452. characterMakers.push(() => makeCharacter(
  49453. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  49454. {
  49455. female: {
  49456. height: math.unit(7 + 4/12, "feet"),
  49457. weight: math.unit(243, "lb"),
  49458. name: "Female",
  49459. image: {
  49460. source: "./media/characters/kaya/female.svg",
  49461. extra: 975/898,
  49462. bottom: 34/1009
  49463. }
  49464. },
  49465. herm: {
  49466. height: math.unit(7 + 4/12, "feet"),
  49467. weight: math.unit(243, "lb"),
  49468. name: "Herm",
  49469. image: {
  49470. source: "./media/characters/kaya/herm.svg",
  49471. extra: 975/898,
  49472. bottom: 34/1009
  49473. }
  49474. },
  49475. },
  49476. [
  49477. {
  49478. name: "Normal",
  49479. height: math.unit(7 + 4/12, "feet"),
  49480. default: true
  49481. },
  49482. ]
  49483. ))
  49484. characterMakers.push(() => makeCharacter(
  49485. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  49486. {
  49487. female: {
  49488. height: math.unit(9 + 4/12, "feet"),
  49489. weight: math.unit(398, "lb"),
  49490. name: "Female",
  49491. image: {
  49492. source: "./media/characters/kassandra/female.svg",
  49493. extra: 908/839,
  49494. bottom: 61/969
  49495. }
  49496. },
  49497. intersex: {
  49498. height: math.unit(9 + 4/12, "feet"),
  49499. weight: math.unit(398, "lb"),
  49500. name: "Intersex",
  49501. image: {
  49502. source: "./media/characters/kassandra/intersex.svg",
  49503. extra: 908/839,
  49504. bottom: 61/969
  49505. }
  49506. },
  49507. },
  49508. [
  49509. {
  49510. name: "Normal",
  49511. height: math.unit(9 + 4/12, "feet"),
  49512. default: true
  49513. },
  49514. ]
  49515. ))
  49516. characterMakers.push(() => makeCharacter(
  49517. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  49518. {
  49519. front: {
  49520. height: math.unit(3, "meters"),
  49521. name: "Front",
  49522. image: {
  49523. source: "./media/characters/amy/front.svg",
  49524. extra: 1380/1343,
  49525. bottom: 70/1450
  49526. }
  49527. },
  49528. back: {
  49529. height: math.unit(3, "meters"),
  49530. name: "Back",
  49531. image: {
  49532. source: "./media/characters/amy/back.svg",
  49533. extra: 1380/1347,
  49534. bottom: 66/1446
  49535. }
  49536. },
  49537. },
  49538. [
  49539. {
  49540. name: "Normal",
  49541. height: math.unit(3, "meters"),
  49542. default: true
  49543. },
  49544. ]
  49545. ))
  49546. characterMakers.push(() => makeCharacter(
  49547. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  49548. {
  49549. side: {
  49550. height: math.unit(47, "cm"),
  49551. weight: math.unit(10.8, "kg"),
  49552. name: "Side",
  49553. image: {
  49554. source: "./media/characters/alphaschakal/side.svg",
  49555. extra: 1058/568,
  49556. bottom: 62/1120
  49557. }
  49558. },
  49559. back: {
  49560. height: math.unit(78, "cm"),
  49561. weight: math.unit(10.8, "kg"),
  49562. name: "Back",
  49563. image: {
  49564. source: "./media/characters/alphaschakal/back.svg",
  49565. extra: 1102/942,
  49566. bottom: 185/1287
  49567. }
  49568. },
  49569. head: {
  49570. height: math.unit(28, "cm"),
  49571. name: "Head",
  49572. image: {
  49573. source: "./media/characters/alphaschakal/head.svg",
  49574. extra: 696/508,
  49575. bottom: 0/696
  49576. }
  49577. },
  49578. paw: {
  49579. height: math.unit(16, "cm"),
  49580. name: "Paw",
  49581. image: {
  49582. source: "./media/characters/alphaschakal/paw.svg"
  49583. }
  49584. },
  49585. },
  49586. [
  49587. {
  49588. name: "Normal",
  49589. height: math.unit(47, "cm"),
  49590. default: true
  49591. },
  49592. {
  49593. name: "Macro",
  49594. height: math.unit(340, "cm")
  49595. },
  49596. ]
  49597. ))
  49598. characterMakers.push(() => makeCharacter(
  49599. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  49600. {
  49601. front: {
  49602. height: math.unit(36, "earths"),
  49603. name: "Front",
  49604. image: {
  49605. source: "./media/characters/ecobyss/front.svg",
  49606. extra: 1282/1215,
  49607. bottom: 11/1293
  49608. }
  49609. },
  49610. back: {
  49611. height: math.unit(36, "earths"),
  49612. name: "Back",
  49613. image: {
  49614. source: "./media/characters/ecobyss/back.svg",
  49615. extra: 1291/1222,
  49616. bottom: 8/1299
  49617. }
  49618. },
  49619. },
  49620. [
  49621. {
  49622. name: "Normal",
  49623. height: math.unit(36, "earths"),
  49624. default: true
  49625. },
  49626. ]
  49627. ))
  49628. characterMakers.push(() => makeCharacter(
  49629. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  49630. {
  49631. front: {
  49632. height: math.unit(12, "feet"),
  49633. name: "Front",
  49634. image: {
  49635. source: "./media/characters/vasuk/front.svg",
  49636. extra: 1326/1207,
  49637. bottom: 64/1390
  49638. }
  49639. },
  49640. },
  49641. [
  49642. {
  49643. name: "Normal",
  49644. height: math.unit(12, "feet"),
  49645. default: true
  49646. },
  49647. ]
  49648. ))
  49649. characterMakers.push(() => makeCharacter(
  49650. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  49651. {
  49652. side: {
  49653. height: math.unit(100, "feet"),
  49654. name: "Side",
  49655. image: {
  49656. source: "./media/characters/linneaus/side.svg",
  49657. extra: 987/807,
  49658. bottom: 47/1034
  49659. }
  49660. },
  49661. },
  49662. [
  49663. {
  49664. name: "Macro",
  49665. height: math.unit(100, "feet"),
  49666. default: true
  49667. },
  49668. ]
  49669. ))
  49670. characterMakers.push(() => makeCharacter(
  49671. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  49672. {
  49673. front: {
  49674. height: math.unit(8, "feet"),
  49675. weight: math.unit(1200, "lb"),
  49676. name: "Front",
  49677. image: {
  49678. source: "./media/characters/nyterious-daligdig/front.svg",
  49679. extra: 1284/1094,
  49680. bottom: 84/1368
  49681. }
  49682. },
  49683. back: {
  49684. height: math.unit(8, "feet"),
  49685. weight: math.unit(1200, "lb"),
  49686. name: "Back",
  49687. image: {
  49688. source: "./media/characters/nyterious-daligdig/back.svg",
  49689. extra: 1301/1121,
  49690. bottom: 129/1430
  49691. }
  49692. },
  49693. mouth: {
  49694. height: math.unit(1.464, "feet"),
  49695. name: "Mouth",
  49696. image: {
  49697. source: "./media/characters/nyterious-daligdig/mouth.svg"
  49698. }
  49699. },
  49700. },
  49701. [
  49702. {
  49703. name: "Small",
  49704. height: math.unit(8, "feet"),
  49705. default: true
  49706. },
  49707. {
  49708. name: "Normal",
  49709. height: math.unit(15, "feet")
  49710. },
  49711. {
  49712. name: "Macro",
  49713. height: math.unit(90, "feet")
  49714. },
  49715. ]
  49716. ))
  49717. characterMakers.push(() => makeCharacter(
  49718. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  49719. {
  49720. front: {
  49721. height: math.unit(7 + 4/12, "feet"),
  49722. weight: math.unit(252, "lb"),
  49723. name: "Front",
  49724. image: {
  49725. source: "./media/characters/bandel/front.svg",
  49726. extra: 1946/1775,
  49727. bottom: 26/1972
  49728. }
  49729. },
  49730. back: {
  49731. height: math.unit(7 + 4/12, "feet"),
  49732. weight: math.unit(252, "lb"),
  49733. name: "Back",
  49734. image: {
  49735. source: "./media/characters/bandel/back.svg",
  49736. extra: 1940/1770,
  49737. bottom: 25/1965
  49738. }
  49739. },
  49740. maw: {
  49741. height: math.unit(2.15, "feet"),
  49742. name: "Maw",
  49743. image: {
  49744. source: "./media/characters/bandel/maw.svg"
  49745. }
  49746. },
  49747. stomach: {
  49748. height: math.unit(1.95, "feet"),
  49749. name: "Stomach",
  49750. image: {
  49751. source: "./media/characters/bandel/stomach.svg"
  49752. }
  49753. },
  49754. },
  49755. [
  49756. {
  49757. name: "Normal",
  49758. height: math.unit(7 + 4/12, "feet"),
  49759. default: true
  49760. },
  49761. ]
  49762. ))
  49763. characterMakers.push(() => makeCharacter(
  49764. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  49765. {
  49766. front: {
  49767. height: math.unit(10 + 5/12, "feet"),
  49768. weight: math.unit(773.5, "kg"),
  49769. name: "Front",
  49770. image: {
  49771. source: "./media/characters/zed/front.svg",
  49772. extra: 987/941,
  49773. bottom: 52/1039
  49774. }
  49775. },
  49776. },
  49777. [
  49778. {
  49779. name: "Short",
  49780. height: math.unit(5 + 4/12, "feet")
  49781. },
  49782. {
  49783. name: "Average",
  49784. height: math.unit(10 + 5/12, "feet"),
  49785. default: true
  49786. },
  49787. {
  49788. name: "Mini-Macro",
  49789. height: math.unit(24 + 9/12, "feet")
  49790. },
  49791. {
  49792. name: "Macro",
  49793. height: math.unit(249, "feet")
  49794. },
  49795. {
  49796. name: "Mega-Macro",
  49797. height: math.unit(12490, "feet")
  49798. },
  49799. {
  49800. name: "Giga-Macro",
  49801. height: math.unit(24.9, "miles")
  49802. },
  49803. {
  49804. name: "Tera-Macro",
  49805. height: math.unit(24900, "miles")
  49806. },
  49807. {
  49808. name: "Cosmic Scale",
  49809. height: math.unit(38.9, "lightyears")
  49810. },
  49811. {
  49812. name: "Universal Scale",
  49813. height: math.unit(138e12, "lightyears")
  49814. },
  49815. ]
  49816. ))
  49817. characterMakers.push(() => makeCharacter(
  49818. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  49819. {
  49820. front: {
  49821. height: math.unit(1561, "inches"),
  49822. name: "Front",
  49823. image: {
  49824. source: "./media/characters/ivan/front.svg",
  49825. extra: 1126/1071,
  49826. bottom: 26/1152
  49827. }
  49828. },
  49829. back: {
  49830. height: math.unit(1561, "inches"),
  49831. name: "Back",
  49832. image: {
  49833. source: "./media/characters/ivan/back.svg",
  49834. extra: 1134/1079,
  49835. bottom: 30/1164
  49836. }
  49837. },
  49838. },
  49839. [
  49840. {
  49841. name: "Normal",
  49842. height: math.unit(1561, "inches"),
  49843. default: true
  49844. },
  49845. ]
  49846. ))
  49847. characterMakers.push(() => makeCharacter(
  49848. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  49849. {
  49850. front: {
  49851. height: math.unit(5 + 7/12, "feet"),
  49852. weight: math.unit(150, "lb"),
  49853. name: "Front",
  49854. image: {
  49855. source: "./media/characters/robin-arctic-hare/front.svg",
  49856. extra: 1148/974,
  49857. bottom: 20/1168
  49858. }
  49859. },
  49860. },
  49861. [
  49862. {
  49863. name: "Normal",
  49864. height: math.unit(5 + 7/12, "feet"),
  49865. default: true
  49866. },
  49867. ]
  49868. ))
  49869. characterMakers.push(() => makeCharacter(
  49870. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  49871. {
  49872. side: {
  49873. height: math.unit(5, "feet"),
  49874. name: "Side",
  49875. image: {
  49876. source: "./media/characters/birch/side.svg",
  49877. extra: 985/796,
  49878. bottom: 111/1096
  49879. }
  49880. },
  49881. },
  49882. [
  49883. {
  49884. name: "Normal",
  49885. height: math.unit(5, "feet"),
  49886. default: true
  49887. },
  49888. ]
  49889. ))
  49890. characterMakers.push(() => makeCharacter(
  49891. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  49892. {
  49893. front: {
  49894. height: math.unit(4, "feet"),
  49895. name: "Front",
  49896. image: {
  49897. source: "./media/characters/rasp/front.svg",
  49898. extra: 561/478,
  49899. bottom: 74/635
  49900. }
  49901. },
  49902. },
  49903. [
  49904. {
  49905. name: "Normal",
  49906. height: math.unit(4, "feet"),
  49907. default: true
  49908. },
  49909. ]
  49910. ))
  49911. characterMakers.push(() => makeCharacter(
  49912. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  49913. {
  49914. front: {
  49915. height: math.unit(4 + 6/12, "feet"),
  49916. name: "Front",
  49917. image: {
  49918. source: "./media/characters/agatha/front.svg",
  49919. extra: 947/933,
  49920. bottom: 42/989
  49921. }
  49922. },
  49923. back: {
  49924. height: math.unit(4 + 6/12, "feet"),
  49925. name: "Back",
  49926. image: {
  49927. source: "./media/characters/agatha/back.svg",
  49928. extra: 935/922,
  49929. bottom: 48/983
  49930. }
  49931. },
  49932. },
  49933. [
  49934. {
  49935. name: "Normal",
  49936. height: math.unit(4 + 6 /12, "feet"),
  49937. default: true
  49938. },
  49939. {
  49940. name: "Max Size",
  49941. height: math.unit(500, "feet")
  49942. },
  49943. ]
  49944. ))
  49945. characterMakers.push(() => makeCharacter(
  49946. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  49947. {
  49948. side: {
  49949. height: math.unit(30, "feet"),
  49950. name: "Side",
  49951. image: {
  49952. source: "./media/characters/roggy/side.svg",
  49953. extra: 909/643,
  49954. bottom: 63/972
  49955. }
  49956. },
  49957. lounging: {
  49958. height: math.unit(20, "feet"),
  49959. name: "Lounging",
  49960. image: {
  49961. source: "./media/characters/roggy/lounging.svg",
  49962. extra: 643/479,
  49963. bottom: 145/788
  49964. }
  49965. },
  49966. handpaw: {
  49967. height: math.unit(13.1, "feet"),
  49968. name: "Handpaw",
  49969. image: {
  49970. source: "./media/characters/roggy/handpaw.svg"
  49971. }
  49972. },
  49973. footpaw: {
  49974. height: math.unit(15.8, "feet"),
  49975. name: "Footpaw",
  49976. image: {
  49977. source: "./media/characters/roggy/footpaw.svg"
  49978. }
  49979. },
  49980. },
  49981. [
  49982. {
  49983. name: "Menacing",
  49984. height: math.unit(30, "feet"),
  49985. default: true
  49986. },
  49987. ]
  49988. ))
  49989. characterMakers.push(() => makeCharacter(
  49990. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  49991. {
  49992. front: {
  49993. height: math.unit(5 + 7/12, "feet"),
  49994. weight: math.unit(135, "lb"),
  49995. name: "Front",
  49996. image: {
  49997. source: "./media/characters/naomi/front.svg",
  49998. extra: 1209/1154,
  49999. bottom: 129/1338
  50000. }
  50001. },
  50002. back: {
  50003. height: math.unit(5 + 7/12, "feet"),
  50004. weight: math.unit(135, "lb"),
  50005. name: "Back",
  50006. image: {
  50007. source: "./media/characters/naomi/back.svg",
  50008. extra: 1252/1190,
  50009. bottom: 23/1275
  50010. }
  50011. },
  50012. },
  50013. [
  50014. {
  50015. name: "Normal",
  50016. height: math.unit(5 + 7 /12, "feet"),
  50017. default: true
  50018. },
  50019. ]
  50020. ))
  50021. characterMakers.push(() => makeCharacter(
  50022. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  50023. {
  50024. side: {
  50025. height: math.unit(35, "meters"),
  50026. name: "Side",
  50027. image: {
  50028. source: "./media/characters/kimpi/side.svg",
  50029. extra: 419/382,
  50030. bottom: 63/482
  50031. }
  50032. },
  50033. hand: {
  50034. height: math.unit(8.96, "meters"),
  50035. name: "Hand",
  50036. image: {
  50037. source: "./media/characters/kimpi/hand.svg"
  50038. }
  50039. },
  50040. },
  50041. [
  50042. {
  50043. name: "Normal",
  50044. height: math.unit(35, "meters"),
  50045. default: true
  50046. },
  50047. ]
  50048. ))
  50049. characterMakers.push(() => makeCharacter(
  50050. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  50051. {
  50052. front: {
  50053. height: math.unit(4 + 4/12, "feet"),
  50054. name: "Front",
  50055. image: {
  50056. source: "./media/characters/pepper-purrloin/front.svg",
  50057. extra: 1141/1024,
  50058. bottom: 21/1162
  50059. }
  50060. },
  50061. },
  50062. [
  50063. {
  50064. name: "Normal",
  50065. height: math.unit(4 + 4/12, "feet"),
  50066. default: true
  50067. },
  50068. ]
  50069. ))
  50070. characterMakers.push(() => makeCharacter(
  50071. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  50072. {
  50073. front: {
  50074. height: math.unit(6 + 2/12, "feet"),
  50075. name: "Front",
  50076. image: {
  50077. source: "./media/characters/raphael/front.svg",
  50078. extra: 1101/962,
  50079. bottom: 59/1160
  50080. }
  50081. },
  50082. },
  50083. [
  50084. {
  50085. name: "Normal",
  50086. height: math.unit(6 + 2/12, "feet"),
  50087. default: true
  50088. },
  50089. ]
  50090. ))
  50091. characterMakers.push(() => makeCharacter(
  50092. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  50093. {
  50094. front: {
  50095. height: math.unit(6, "feet"),
  50096. weight: math.unit(150, "lb"),
  50097. name: "Front",
  50098. image: {
  50099. source: "./media/characters/victor-williams/front.svg",
  50100. extra: 1894/1825,
  50101. bottom: 67/1961
  50102. }
  50103. },
  50104. },
  50105. [
  50106. {
  50107. name: "Normal",
  50108. height: math.unit(6, "feet"),
  50109. default: true
  50110. },
  50111. ]
  50112. ))
  50113. characterMakers.push(() => makeCharacter(
  50114. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  50115. {
  50116. front: {
  50117. height: math.unit(5 + 8/12, "feet"),
  50118. weight: math.unit(150, "lb"),
  50119. name: "Front",
  50120. image: {
  50121. source: "./media/characters/rachel/front.svg",
  50122. extra: 1902/1787,
  50123. bottom: 46/1948
  50124. }
  50125. },
  50126. },
  50127. [
  50128. {
  50129. name: "Base Height",
  50130. height: math.unit(5 + 8/12, "feet"),
  50131. default: true
  50132. },
  50133. {
  50134. name: "Macro",
  50135. height: math.unit(200, "feet")
  50136. },
  50137. {
  50138. name: "Mega Macro",
  50139. height: math.unit(1, "mile")
  50140. },
  50141. {
  50142. name: "Giga Macro",
  50143. height: math.unit(1500, "miles")
  50144. },
  50145. {
  50146. name: "Tera Macro",
  50147. height: math.unit(8000, "miles")
  50148. },
  50149. {
  50150. name: "Tera Macro+",
  50151. height: math.unit(2e5, "miles")
  50152. },
  50153. ]
  50154. ))
  50155. characterMakers.push(() => makeCharacter(
  50156. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  50157. {
  50158. front: {
  50159. height: math.unit(6.5, "feet"),
  50160. name: "Front",
  50161. image: {
  50162. source: "./media/characters/svetlana-rozovskaya/front.svg",
  50163. extra: 860/819,
  50164. bottom: 307/1167
  50165. }
  50166. },
  50167. back: {
  50168. height: math.unit(6.5, "feet"),
  50169. name: "Back",
  50170. image: {
  50171. source: "./media/characters/svetlana-rozovskaya/back.svg",
  50172. extra: 880/837,
  50173. bottom: 395/1275
  50174. }
  50175. },
  50176. sleeping: {
  50177. height: math.unit(2.79, "feet"),
  50178. name: "Sleeping",
  50179. image: {
  50180. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  50181. extra: 465/383,
  50182. bottom: 263/728
  50183. }
  50184. },
  50185. maw: {
  50186. height: math.unit(2.52, "feet"),
  50187. name: "Maw",
  50188. image: {
  50189. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  50190. }
  50191. },
  50192. },
  50193. [
  50194. {
  50195. name: "Normal",
  50196. height: math.unit(6.5, "feet"),
  50197. default: true
  50198. },
  50199. ]
  50200. ))
  50201. characterMakers.push(() => makeCharacter(
  50202. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  50203. {
  50204. front: {
  50205. height: math.unit(5, "feet"),
  50206. name: "Front",
  50207. image: {
  50208. source: "./media/characters/nova-nerium/front.svg",
  50209. extra: 1548/1392,
  50210. bottom: 374/1922
  50211. }
  50212. },
  50213. back: {
  50214. height: math.unit(5, "feet"),
  50215. name: "Back",
  50216. image: {
  50217. source: "./media/characters/nova-nerium/back.svg",
  50218. extra: 1658/1468,
  50219. bottom: 257/1915
  50220. }
  50221. },
  50222. },
  50223. [
  50224. {
  50225. name: "Normal",
  50226. height: math.unit(5, "feet"),
  50227. default: true
  50228. },
  50229. ]
  50230. ))
  50231. characterMakers.push(() => makeCharacter(
  50232. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  50233. {
  50234. front: {
  50235. height: math.unit(5 + 4/12, "feet"),
  50236. name: "Front",
  50237. image: {
  50238. source: "./media/characters/ashe-pyriph/front.svg",
  50239. extra: 1935/1747,
  50240. bottom: 60/1995
  50241. }
  50242. },
  50243. },
  50244. [
  50245. {
  50246. name: "Normal",
  50247. height: math.unit(5 + 4/12, "feet"),
  50248. default: true
  50249. },
  50250. ]
  50251. ))
  50252. characterMakers.push(() => makeCharacter(
  50253. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  50254. {
  50255. front: {
  50256. height: math.unit(8.7, "feet"),
  50257. name: "Front",
  50258. image: {
  50259. source: "./media/characters/flicker-wisp/front.svg",
  50260. extra: 1835/1613,
  50261. bottom: 449/2284
  50262. }
  50263. },
  50264. side: {
  50265. height: math.unit(8.7, "feet"),
  50266. name: "Side",
  50267. image: {
  50268. source: "./media/characters/flicker-wisp/side.svg",
  50269. extra: 1841/1642,
  50270. bottom: 336/2177
  50271. },
  50272. default: true
  50273. },
  50274. maw: {
  50275. height: math.unit(3.35, "feet"),
  50276. name: "Maw",
  50277. image: {
  50278. source: "./media/characters/flicker-wisp/maw.svg",
  50279. extra: 2338/1506,
  50280. bottom: 0/2338
  50281. }
  50282. },
  50283. ovipositor: {
  50284. height: math.unit(4.95, "feet"),
  50285. name: "Ovipositor",
  50286. image: {
  50287. source: "./media/characters/flicker-wisp/ovipositor.svg"
  50288. }
  50289. },
  50290. egg: {
  50291. height: math.unit(0.385, "feet"),
  50292. weight: math.unit(2, "lb"),
  50293. name: "Egg",
  50294. image: {
  50295. source: "./media/characters/flicker-wisp/egg.svg"
  50296. }
  50297. },
  50298. },
  50299. [
  50300. {
  50301. name: "Normal",
  50302. height: math.unit(8.7, "feet"),
  50303. default: true
  50304. },
  50305. ]
  50306. ))
  50307. characterMakers.push(() => makeCharacter(
  50308. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  50309. {
  50310. side: {
  50311. height: math.unit(11, "feet"),
  50312. name: "Side",
  50313. image: {
  50314. source: "./media/characters/faefnul/side.svg",
  50315. extra: 1100/1007,
  50316. bottom: 0/1100
  50317. }
  50318. },
  50319. },
  50320. [
  50321. {
  50322. name: "Normal",
  50323. height: math.unit(11, "feet"),
  50324. default: true
  50325. },
  50326. ]
  50327. ))
  50328. characterMakers.push(() => makeCharacter(
  50329. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  50330. {
  50331. front: {
  50332. height: math.unit(6 + 2/12, "feet"),
  50333. name: "Front",
  50334. image: {
  50335. source: "./media/characters/shady/front.svg",
  50336. extra: 502/461,
  50337. bottom: 9/511
  50338. }
  50339. },
  50340. kneeling: {
  50341. height: math.unit(4.6, "feet"),
  50342. name: "Kneeling",
  50343. image: {
  50344. source: "./media/characters/shady/kneeling.svg",
  50345. extra: 1328/1219,
  50346. bottom: 117/1445
  50347. }
  50348. },
  50349. maw: {
  50350. height: math.unit(2, "feet"),
  50351. name: "Maw",
  50352. image: {
  50353. source: "./media/characters/shady/maw.svg"
  50354. }
  50355. },
  50356. },
  50357. [
  50358. {
  50359. name: "Nano",
  50360. height: math.unit(1, "mm")
  50361. },
  50362. {
  50363. name: "Micro",
  50364. height: math.unit(12, "mm")
  50365. },
  50366. {
  50367. name: "Tiny",
  50368. height: math.unit(3, "inches")
  50369. },
  50370. {
  50371. name: "Normal",
  50372. height: math.unit(6 + 2/12, "feet"),
  50373. default: true
  50374. },
  50375. {
  50376. name: "Big",
  50377. height: math.unit(15, "feet")
  50378. },
  50379. {
  50380. name: "Macro",
  50381. height: math.unit(150, "feet")
  50382. },
  50383. {
  50384. name: "Titanic",
  50385. height: math.unit(500, "feet")
  50386. },
  50387. ]
  50388. ))
  50389. characterMakers.push(() => makeCharacter(
  50390. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  50391. {
  50392. front: {
  50393. height: math.unit(12, "feet"),
  50394. name: "Front",
  50395. image: {
  50396. source: "./media/characters/fenrir/front.svg",
  50397. extra: 968/875,
  50398. bottom: 22/990
  50399. }
  50400. },
  50401. },
  50402. [
  50403. {
  50404. name: "Big",
  50405. height: math.unit(12, "feet"),
  50406. default: true
  50407. },
  50408. ]
  50409. ))
  50410. characterMakers.push(() => makeCharacter(
  50411. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  50412. {
  50413. front: {
  50414. height: math.unit(5 + 4/12, "feet"),
  50415. name: "Front",
  50416. image: {
  50417. source: "./media/characters/makar/front.svg",
  50418. extra: 1181/1112,
  50419. bottom: 78/1259
  50420. }
  50421. },
  50422. },
  50423. [
  50424. {
  50425. name: "Normal",
  50426. height: math.unit(5 + 4/12, "feet"),
  50427. default: true
  50428. },
  50429. ]
  50430. ))
  50431. characterMakers.push(() => makeCharacter(
  50432. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  50433. {
  50434. front: {
  50435. height: math.unit(5 + 7/12, "feet"),
  50436. name: "Front",
  50437. image: {
  50438. source: "./media/characters/callow/front.svg",
  50439. extra: 1482/1304,
  50440. bottom: 23/1505
  50441. }
  50442. },
  50443. back: {
  50444. height: math.unit(5 + 7/12, "feet"),
  50445. name: "Back",
  50446. image: {
  50447. source: "./media/characters/callow/back.svg",
  50448. extra: 1484/1296,
  50449. bottom: 25/1509
  50450. }
  50451. },
  50452. },
  50453. [
  50454. {
  50455. name: "Micro",
  50456. height: math.unit(3, "inches"),
  50457. default: true
  50458. },
  50459. {
  50460. name: "Normal",
  50461. height: math.unit(5 + 7/12, "feet")
  50462. },
  50463. ]
  50464. ))
  50465. characterMakers.push(() => makeCharacter(
  50466. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  50467. {
  50468. front: {
  50469. height: math.unit(6 + 2/12, "feet"),
  50470. name: "Front",
  50471. image: {
  50472. source: "./media/characters/natel/front.svg",
  50473. extra: 1833/1692,
  50474. bottom: 166/1999
  50475. }
  50476. },
  50477. },
  50478. [
  50479. {
  50480. name: "Normal",
  50481. height: math.unit(6 + 2/12, "feet"),
  50482. default: true
  50483. },
  50484. ]
  50485. ))
  50486. characterMakers.push(() => makeCharacter(
  50487. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  50488. {
  50489. front: {
  50490. height: math.unit(1.75, "meters"),
  50491. name: "Front",
  50492. image: {
  50493. source: "./media/characters/misu/front.svg",
  50494. extra: 1690/1558,
  50495. bottom: 234/1924
  50496. }
  50497. },
  50498. back: {
  50499. height: math.unit(1.75, "meters"),
  50500. name: "Back",
  50501. image: {
  50502. source: "./media/characters/misu/back.svg",
  50503. extra: 1762/1618,
  50504. bottom: 146/1908
  50505. }
  50506. },
  50507. frontNude: {
  50508. height: math.unit(1.75, "meters"),
  50509. name: "Front (Nude)",
  50510. image: {
  50511. source: "./media/characters/misu/front-nude.svg",
  50512. extra: 1690/1558,
  50513. bottom: 234/1924
  50514. }
  50515. },
  50516. backNude: {
  50517. height: math.unit(1.75, "meters"),
  50518. name: "Back (Nude)",
  50519. image: {
  50520. source: "./media/characters/misu/back-nude.svg",
  50521. extra: 1762/1618,
  50522. bottom: 146/1908
  50523. }
  50524. },
  50525. frontErect: {
  50526. height: math.unit(1.75, "meters"),
  50527. name: "Front (Erect)",
  50528. image: {
  50529. source: "./media/characters/misu/front-erect.svg",
  50530. extra: 1690/1558,
  50531. bottom: 234/1924
  50532. }
  50533. },
  50534. maw: {
  50535. height: math.unit(0.47, "meters"),
  50536. name: "Maw",
  50537. image: {
  50538. source: "./media/characters/misu/maw.svg"
  50539. }
  50540. },
  50541. head: {
  50542. height: math.unit(0.35, "meters"),
  50543. name: "Head",
  50544. image: {
  50545. source: "./media/characters/misu/head.svg"
  50546. }
  50547. },
  50548. rear: {
  50549. height: math.unit(0.47, "meters"),
  50550. name: "Rear",
  50551. image: {
  50552. source: "./media/characters/misu/rear.svg"
  50553. }
  50554. },
  50555. },
  50556. [
  50557. {
  50558. name: "Normal",
  50559. height: math.unit(1.75, "meters")
  50560. },
  50561. {
  50562. name: "Not good for the people",
  50563. height: math.unit(42, "meters")
  50564. },
  50565. {
  50566. name: "Not good for the neighborhood",
  50567. height: math.unit(135, "meters")
  50568. },
  50569. {
  50570. name: "Bit bigger problem",
  50571. height: math.unit(380, "meters"),
  50572. default: true
  50573. },
  50574. {
  50575. name: "Not good for the city",
  50576. height: math.unit(1.5, "km")
  50577. },
  50578. {
  50579. name: "Not good for the county",
  50580. height: math.unit(5.5, "km")
  50581. },
  50582. {
  50583. name: "Not good for the state",
  50584. height: math.unit(25, "km")
  50585. },
  50586. {
  50587. name: "Not good for the country",
  50588. height: math.unit(125, "km")
  50589. },
  50590. {
  50591. name: "Not good for the continent",
  50592. height: math.unit(2100, "km")
  50593. },
  50594. {
  50595. name: "Not good for the planet",
  50596. height: math.unit(35000, "km")
  50597. },
  50598. {
  50599. name: "Just no",
  50600. height: math.unit(8.5e18, "km")
  50601. },
  50602. ]
  50603. ))
  50604. characterMakers.push(() => makeCharacter(
  50605. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  50606. {
  50607. front: {
  50608. height: math.unit(6.5, "feet"),
  50609. name: "Front",
  50610. image: {
  50611. source: "./media/characters/poppy/front.svg",
  50612. extra: 1878/1812,
  50613. bottom: 43/1921
  50614. }
  50615. },
  50616. feet: {
  50617. height: math.unit(1.06, "feet"),
  50618. name: "Feet",
  50619. image: {
  50620. source: "./media/characters/poppy/feet.svg",
  50621. extra: 1083/1083,
  50622. bottom: 87/1170
  50623. }
  50624. },
  50625. },
  50626. [
  50627. {
  50628. name: "Human",
  50629. height: math.unit(6.5, "feet")
  50630. },
  50631. {
  50632. name: "Default",
  50633. height: math.unit(300, "feet"),
  50634. default: true
  50635. },
  50636. {
  50637. name: "Huge",
  50638. height: math.unit(850, "feet")
  50639. },
  50640. {
  50641. name: "Mega",
  50642. height: math.unit(8000, "feet")
  50643. },
  50644. {
  50645. name: "Giga",
  50646. height: math.unit(300, "miles")
  50647. },
  50648. ]
  50649. ))
  50650. characterMakers.push(() => makeCharacter(
  50651. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  50652. {
  50653. bipedal: {
  50654. height: math.unit(7, "feet"),
  50655. name: "Bipedal",
  50656. image: {
  50657. source: "./media/characters/zener/bipedal.svg",
  50658. extra: 874/805,
  50659. bottom: 109/983
  50660. }
  50661. },
  50662. quadrupedal: {
  50663. height: math.unit(4.64, "feet"),
  50664. name: "Quadrupedal",
  50665. image: {
  50666. source: "./media/characters/zener/quadrupedal.svg",
  50667. extra: 638/507,
  50668. bottom: 190/828
  50669. }
  50670. },
  50671. cock: {
  50672. height: math.unit(18, "inches"),
  50673. name: "Cock",
  50674. image: {
  50675. source: "./media/characters/zener/cock.svg"
  50676. }
  50677. },
  50678. },
  50679. [
  50680. {
  50681. name: "Normal",
  50682. height: math.unit(7, "feet"),
  50683. default: true
  50684. },
  50685. ]
  50686. ))
  50687. characterMakers.push(() => makeCharacter(
  50688. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  50689. {
  50690. nude: {
  50691. height: math.unit(5 + 6/12, "feet"),
  50692. name: "Nude",
  50693. image: {
  50694. source: "./media/characters/charlie-dog/nude.svg",
  50695. extra: 768/734,
  50696. bottom: 26/794
  50697. }
  50698. },
  50699. dressed: {
  50700. height: math.unit(5 + 6/12, "feet"),
  50701. name: "Dressed",
  50702. image: {
  50703. source: "./media/characters/charlie-dog/dressed.svg",
  50704. extra: 768/734,
  50705. bottom: 26/794
  50706. }
  50707. },
  50708. },
  50709. [
  50710. {
  50711. name: "Normal",
  50712. height: math.unit(5 + 6/12, "feet"),
  50713. default: true
  50714. },
  50715. ]
  50716. ))
  50717. characterMakers.push(() => makeCharacter(
  50718. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  50719. {
  50720. front: {
  50721. height: math.unit(6 + 4/12, "feet"),
  50722. name: "Front",
  50723. image: {
  50724. source: "./media/characters/ir'istrasz/front.svg",
  50725. extra: 1014/977,
  50726. bottom: 65/1079
  50727. }
  50728. },
  50729. back: {
  50730. height: math.unit(6 + 4/12, "feet"),
  50731. name: "Back",
  50732. image: {
  50733. source: "./media/characters/ir'istrasz/back.svg",
  50734. extra: 1024/992,
  50735. bottom: 34/1058
  50736. }
  50737. },
  50738. },
  50739. [
  50740. {
  50741. name: "Normal",
  50742. height: math.unit(6 + 4/12, "feet"),
  50743. default: true
  50744. },
  50745. ]
  50746. ))
  50747. characterMakers.push(() => makeCharacter(
  50748. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  50749. {
  50750. front: {
  50751. height: math.unit(5 + 8/12, "feet"),
  50752. name: "Front",
  50753. image: {
  50754. source: "./media/characters/dee-ditto/front.svg",
  50755. extra: 1874/1785,
  50756. bottom: 68/1942
  50757. }
  50758. },
  50759. back: {
  50760. height: math.unit(5 + 8/12, "feet"),
  50761. name: "Back",
  50762. image: {
  50763. source: "./media/characters/dee-ditto/back.svg",
  50764. extra: 1870/1783,
  50765. bottom: 77/1947
  50766. }
  50767. },
  50768. },
  50769. [
  50770. {
  50771. name: "Normal",
  50772. height: math.unit(5 + 8/12, "feet"),
  50773. default: true
  50774. },
  50775. ]
  50776. ))
  50777. characterMakers.push(() => makeCharacter(
  50778. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  50779. {
  50780. front: {
  50781. height: math.unit(7 + 6/12, "feet"),
  50782. name: "Front",
  50783. image: {
  50784. source: "./media/characters/fey/front.svg",
  50785. extra: 995/979,
  50786. bottom: 30/1025
  50787. }
  50788. },
  50789. back: {
  50790. height: math.unit(7 + 6/12, "feet"),
  50791. name: "Back",
  50792. image: {
  50793. source: "./media/characters/fey/back.svg",
  50794. extra: 1079/1008,
  50795. bottom: 5/1084
  50796. }
  50797. },
  50798. dressed: {
  50799. height: math.unit(7 + 6/12, "feet"),
  50800. name: "Dressed",
  50801. image: {
  50802. source: "./media/characters/fey/dressed.svg",
  50803. extra: 995/979,
  50804. bottom: 30/1025
  50805. }
  50806. },
  50807. },
  50808. [
  50809. {
  50810. name: "Normal",
  50811. height: math.unit(7 + 6/12, "feet"),
  50812. default: true
  50813. },
  50814. ]
  50815. ))
  50816. characterMakers.push(() => makeCharacter(
  50817. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  50818. {
  50819. standing: {
  50820. height: math.unit(17, "feet"),
  50821. name: "Standing",
  50822. image: {
  50823. source: "./media/characters/aster/standing.svg",
  50824. extra: 1798/1598,
  50825. bottom: 117/1915
  50826. }
  50827. },
  50828. },
  50829. [
  50830. {
  50831. name: "Normal",
  50832. height: math.unit(17, "feet"),
  50833. default: true
  50834. },
  50835. {
  50836. name: "Homewrecker",
  50837. height: math.unit(95, "feet")
  50838. },
  50839. {
  50840. name: "Planet Devourer",
  50841. height: math.unit(1008000, "miles")
  50842. },
  50843. ]
  50844. ))
  50845. characterMakers.push(() => makeCharacter(
  50846. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  50847. {
  50848. front: {
  50849. height: math.unit(6 + 5/12, "feet"),
  50850. weight: math.unit(265, "lb"),
  50851. name: "Front",
  50852. image: {
  50853. source: "./media/characters/devon-childs/front.svg",
  50854. extra: 1795/1721,
  50855. bottom: 41/1836
  50856. }
  50857. },
  50858. side: {
  50859. height: math.unit(6 + 5/12, "feet"),
  50860. weight: math.unit(265, "lb"),
  50861. name: "Side",
  50862. image: {
  50863. source: "./media/characters/devon-childs/side.svg",
  50864. extra: 1812/1738,
  50865. bottom: 30/1842
  50866. }
  50867. },
  50868. back: {
  50869. height: math.unit(6 + 5/12, "feet"),
  50870. weight: math.unit(265, "lb"),
  50871. name: "Back",
  50872. image: {
  50873. source: "./media/characters/devon-childs/back.svg",
  50874. extra: 1808/1735,
  50875. bottom: 23/1831
  50876. }
  50877. },
  50878. hand: {
  50879. height: math.unit(1.464, "feet"),
  50880. name: "Hand",
  50881. image: {
  50882. source: "./media/characters/devon-childs/hand.svg"
  50883. }
  50884. },
  50885. foot: {
  50886. height: math.unit(1.6, "feet"),
  50887. name: "Foot",
  50888. image: {
  50889. source: "./media/characters/devon-childs/foot.svg"
  50890. }
  50891. },
  50892. },
  50893. [
  50894. {
  50895. name: "Micro",
  50896. height: math.unit(7, "cm")
  50897. },
  50898. {
  50899. name: "Normal",
  50900. height: math.unit(6 + 5/12, "feet"),
  50901. default: true
  50902. },
  50903. {
  50904. name: "Macro",
  50905. height: math.unit(154, "feet")
  50906. },
  50907. ]
  50908. ))
  50909. characterMakers.push(() => makeCharacter(
  50910. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  50911. {
  50912. front: {
  50913. height: math.unit(6, "feet"),
  50914. weight: math.unit(180, "lb"),
  50915. name: "Front",
  50916. image: {
  50917. source: "./media/characters/lydemox-vir/front.svg",
  50918. extra: 1632/1435,
  50919. bottom: 58/1690
  50920. }
  50921. },
  50922. frontSFW: {
  50923. height: math.unit(6, "feet"),
  50924. weight: math.unit(180, "lb"),
  50925. name: "Front (SFW)",
  50926. image: {
  50927. source: "./media/characters/lydemox-vir/front-sfw.svg",
  50928. extra: 1632/1435,
  50929. bottom: 58/1690
  50930. }
  50931. },
  50932. back: {
  50933. height: math.unit(6, "feet"),
  50934. weight: math.unit(180, "lb"),
  50935. name: "Back",
  50936. image: {
  50937. source: "./media/characters/lydemox-vir/back.svg",
  50938. extra: 1593/1408,
  50939. bottom: 31/1624
  50940. }
  50941. },
  50942. paw: {
  50943. height: math.unit(1.85, "feet"),
  50944. name: "Paw",
  50945. image: {
  50946. source: "./media/characters/lydemox-vir/paw.svg"
  50947. }
  50948. },
  50949. dick: {
  50950. height: math.unit(1.8, "feet"),
  50951. name: "Dick",
  50952. image: {
  50953. source: "./media/characters/lydemox-vir/dick.svg"
  50954. }
  50955. },
  50956. },
  50957. [
  50958. {
  50959. name: "Macro",
  50960. height: math.unit(100, "feet"),
  50961. default: true
  50962. },
  50963. {
  50964. name: "Teramacro",
  50965. height: math.unit(1, "earth")
  50966. },
  50967. {
  50968. name: "Planetary",
  50969. height: math.unit(20, "earths")
  50970. },
  50971. ]
  50972. ))
  50973. characterMakers.push(() => makeCharacter(
  50974. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  50975. {
  50976. front: {
  50977. height: math.unit(15 + 8/12, "feet"),
  50978. weight: math.unit(1237, "kg"),
  50979. name: "Front",
  50980. image: {
  50981. source: "./media/characters/mia/front.svg",
  50982. extra: 1573/1446,
  50983. bottom: 58/1631
  50984. }
  50985. },
  50986. },
  50987. [
  50988. {
  50989. name: "Small",
  50990. height: math.unit(9 + 5/12, "feet")
  50991. },
  50992. {
  50993. name: "Normal",
  50994. height: math.unit(15 + 8/12, "feet"),
  50995. default: true
  50996. },
  50997. ]
  50998. ))
  50999. characterMakers.push(() => makeCharacter(
  51000. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  51001. {
  51002. front: {
  51003. height: math.unit(10 + 6/12, "feet"),
  51004. weight: math.unit(1.3, "tons"),
  51005. name: "Front",
  51006. image: {
  51007. source: "./media/characters/mr-graves/front.svg",
  51008. extra: 1779/1695,
  51009. bottom: 198/1977
  51010. }
  51011. },
  51012. },
  51013. [
  51014. {
  51015. name: "Normal",
  51016. height: math.unit(10 + 6 /12, "feet"),
  51017. default: true
  51018. },
  51019. ]
  51020. ))
  51021. characterMakers.push(() => makeCharacter(
  51022. { name: "Jess", species: ["human"], tags: ["anthro"] },
  51023. {
  51024. dressedFront: {
  51025. height: math.unit(5 + 8/12, "feet"),
  51026. weight: math.unit(125, "lb"),
  51027. name: "Dressed (Front)",
  51028. image: {
  51029. source: "./media/characters/jess/dressed-front.svg",
  51030. extra: 1176/1152,
  51031. bottom: 42/1218
  51032. }
  51033. },
  51034. dressedSide: {
  51035. height: math.unit(5 + 8/12, "feet"),
  51036. weight: math.unit(125, "lb"),
  51037. name: "Dressed (Side)",
  51038. image: {
  51039. source: "./media/characters/jess/dressed-side.svg",
  51040. extra: 1204/1190,
  51041. bottom: 6/1210
  51042. }
  51043. },
  51044. nudeFront: {
  51045. height: math.unit(5 + 8/12, "feet"),
  51046. weight: math.unit(125, "lb"),
  51047. name: "Nude (Front)",
  51048. image: {
  51049. source: "./media/characters/jess/nude-front.svg",
  51050. extra: 1176/1152,
  51051. bottom: 42/1218
  51052. }
  51053. },
  51054. nudeSide: {
  51055. height: math.unit(5 + 8/12, "feet"),
  51056. weight: math.unit(125, "lb"),
  51057. name: "Nude (Side)",
  51058. image: {
  51059. source: "./media/characters/jess/nude-side.svg",
  51060. extra: 1204/1190,
  51061. bottom: 6/1210
  51062. }
  51063. },
  51064. organsFront: {
  51065. height: math.unit(2.83799342105, "feet"),
  51066. name: "Organs (Front)",
  51067. image: {
  51068. source: "./media/characters/jess/organs-front.svg"
  51069. }
  51070. },
  51071. organsSide: {
  51072. height: math.unit(2.64225290474, "feet"),
  51073. name: "Organs (Side)",
  51074. image: {
  51075. source: "./media/characters/jess/organs-side.svg"
  51076. }
  51077. },
  51078. digestiveTractFront: {
  51079. height: math.unit(2.8106580871, "feet"),
  51080. name: "Digestive Tract (Front)",
  51081. image: {
  51082. source: "./media/characters/jess/digestive-tract-front.svg"
  51083. }
  51084. },
  51085. digestiveTractSide: {
  51086. height: math.unit(2.54365045014, "feet"),
  51087. name: "Digestive Tract (Side)",
  51088. image: {
  51089. source: "./media/characters/jess/digestive-tract-side.svg"
  51090. }
  51091. },
  51092. respiratorySystemFront: {
  51093. height: math.unit(1.11196233456, "feet"),
  51094. name: "Respiratory System (Front)",
  51095. image: {
  51096. source: "./media/characters/jess/respiratory-system-front.svg"
  51097. }
  51098. },
  51099. respiratorySystemSide: {
  51100. height: math.unit(0.89327966297, "feet"),
  51101. name: "Respiratory System (Side)",
  51102. image: {
  51103. source: "./media/characters/jess/respiratory-system-side.svg"
  51104. }
  51105. },
  51106. urinaryTractFront: {
  51107. height: math.unit(1.16126356186, "feet"),
  51108. name: "Urinary Tract (Front)",
  51109. image: {
  51110. source: "./media/characters/jess/urinary-tract-front.svg"
  51111. }
  51112. },
  51113. urinaryTractSide: {
  51114. height: math.unit(1.20910039627, "feet"),
  51115. name: "Urinary Tract (Side)",
  51116. image: {
  51117. source: "./media/characters/jess/urinary-tract-side.svg"
  51118. }
  51119. },
  51120. reproductiveOrgansFront: {
  51121. height: math.unit(0.48422591566, "feet"),
  51122. name: "Reproductive Organs (Front)",
  51123. image: {
  51124. source: "./media/characters/jess/reproductive-organs-front.svg"
  51125. }
  51126. },
  51127. reproductiveOrgansSide: {
  51128. height: math.unit(0.61553314481, "feet"),
  51129. name: "Reproductive Organs (Side)",
  51130. image: {
  51131. source: "./media/characters/jess/reproductive-organs-side.svg"
  51132. }
  51133. },
  51134. breastsFront: {
  51135. height: math.unit(0.47690395121, "feet"),
  51136. name: "Breasts (Front)",
  51137. image: {
  51138. source: "./media/characters/jess/breasts-front.svg"
  51139. }
  51140. },
  51141. breastsSide: {
  51142. height: math.unit(0.30556998307, "feet"),
  51143. name: "Breasts (Side)",
  51144. image: {
  51145. source: "./media/characters/jess/breasts-side.svg"
  51146. }
  51147. },
  51148. heartFront: {
  51149. height: math.unit(0.53011022622, "feet"),
  51150. name: "Heart (Front)",
  51151. image: {
  51152. source: "./media/characters/jess/heart-front.svg"
  51153. }
  51154. },
  51155. heartSide: {
  51156. height: math.unit(0.51790695213, "feet"),
  51157. name: "Heart (Side)",
  51158. image: {
  51159. source: "./media/characters/jess/heart-side.svg"
  51160. }
  51161. },
  51162. earsAndNoseFront: {
  51163. height: math.unit(0.29385483995, "feet"),
  51164. name: "Ears and Nose (Front)",
  51165. image: {
  51166. source: "./media/characters/jess/ears-and-nose-front.svg"
  51167. }
  51168. },
  51169. earsAndNoseSide: {
  51170. height: math.unit(0.18109658741, "feet"),
  51171. name: "Ears and Nose (Side)",
  51172. image: {
  51173. source: "./media/characters/jess/ears-and-nose-side.svg"
  51174. }
  51175. },
  51176. },
  51177. [
  51178. {
  51179. name: "Normal",
  51180. height: math.unit(5 + 8/12, "feet"),
  51181. default: true
  51182. },
  51183. ]
  51184. ))
  51185. characterMakers.push(() => makeCharacter(
  51186. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  51187. {
  51188. front: {
  51189. height: math.unit(6, "feet"),
  51190. weight: math.unit(6.64467e-7, "grams"),
  51191. name: "Front",
  51192. image: {
  51193. source: "./media/characters/wimpering/front.svg",
  51194. extra: 597/587,
  51195. bottom: 34/631
  51196. }
  51197. },
  51198. },
  51199. [
  51200. {
  51201. name: "Micro",
  51202. height: math.unit(0.4, "mm"),
  51203. default: true
  51204. },
  51205. ]
  51206. ))
  51207. characterMakers.push(() => makeCharacter(
  51208. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  51209. {
  51210. front: {
  51211. height: math.unit(5 + 2/12, "feet"),
  51212. weight: math.unit(110, "lb"),
  51213. name: "Front",
  51214. image: {
  51215. source: "./media/characters/keltre/front.svg",
  51216. extra: 1099/1057,
  51217. bottom: 22/1121
  51218. }
  51219. },
  51220. back: {
  51221. height: math.unit(5 + 2/12, "feet"),
  51222. weight: math.unit(110, "lb"),
  51223. name: "Back",
  51224. image: {
  51225. source: "./media/characters/keltre/back.svg",
  51226. extra: 1095/1053,
  51227. bottom: 17/1112
  51228. }
  51229. },
  51230. dressed: {
  51231. height: math.unit(5 + 2/12, "feet"),
  51232. weight: math.unit(110, "lb"),
  51233. name: "Dressed",
  51234. image: {
  51235. source: "./media/characters/keltre/dressed.svg",
  51236. extra: 1099/1057,
  51237. bottom: 22/1121
  51238. }
  51239. },
  51240. winter: {
  51241. height: math.unit(5 + 2/12, "feet"),
  51242. weight: math.unit(110, "lb"),
  51243. name: "Winter",
  51244. image: {
  51245. source: "./media/characters/keltre/winter.svg",
  51246. extra: 1099/1057,
  51247. bottom: 22/1121
  51248. }
  51249. },
  51250. head: {
  51251. height: math.unit(1.61 * 0.86, "feet"),
  51252. name: "Head",
  51253. image: {
  51254. source: "./media/characters/keltre/head.svg",
  51255. extra: 534/421,
  51256. bottom: 0/534
  51257. }
  51258. },
  51259. hand: {
  51260. height: math.unit(1.3 * 0.86, "feet"),
  51261. name: "Hand",
  51262. image: {
  51263. source: "./media/characters/keltre/hand.svg"
  51264. }
  51265. },
  51266. foot: {
  51267. height: math.unit(1.8 * 0.86, "feet"),
  51268. name: "Foot",
  51269. image: {
  51270. source: "./media/characters/keltre/foot.svg"
  51271. }
  51272. },
  51273. },
  51274. [
  51275. {
  51276. name: "Fine",
  51277. height: math.unit(1, "inch")
  51278. },
  51279. {
  51280. name: "Dimnutive",
  51281. height: math.unit(4, "inches")
  51282. },
  51283. {
  51284. name: "Tiny",
  51285. height: math.unit(1, "foot")
  51286. },
  51287. {
  51288. name: "Small",
  51289. height: math.unit(3, "feet")
  51290. },
  51291. {
  51292. name: "Normal",
  51293. height: math.unit(5 + 2/12, "feet"),
  51294. default: true
  51295. },
  51296. ]
  51297. ))
  51298. characterMakers.push(() => makeCharacter(
  51299. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  51300. {
  51301. front: {
  51302. height: math.unit(6 + 2/12, "feet"),
  51303. name: "Front",
  51304. image: {
  51305. source: "./media/characters/nox/front.svg",
  51306. extra: 1917/1830,
  51307. bottom: 74/1991
  51308. }
  51309. },
  51310. back: {
  51311. height: math.unit(6 + 2/12, "feet"),
  51312. name: "Back",
  51313. image: {
  51314. source: "./media/characters/nox/back.svg",
  51315. extra: 1896/1815,
  51316. bottom: 21/1917
  51317. }
  51318. },
  51319. head: {
  51320. height: math.unit(1.1, "feet"),
  51321. name: "Head",
  51322. image: {
  51323. source: "./media/characters/nox/head.svg",
  51324. extra: 874/704,
  51325. bottom: 0/874
  51326. }
  51327. },
  51328. tattoo: {
  51329. height: math.unit(0.729, "feet"),
  51330. name: "Tattoo",
  51331. image: {
  51332. source: "./media/characters/nox/tattoo.svg"
  51333. }
  51334. },
  51335. },
  51336. [
  51337. {
  51338. name: "Normal",
  51339. height: math.unit(6 + 2/12, "feet")
  51340. },
  51341. {
  51342. name: "Gigamacro",
  51343. height: math.unit(2, "earths"),
  51344. default: true
  51345. },
  51346. {
  51347. name: "Cosmic",
  51348. height: math.unit(867, "yottameters")
  51349. },
  51350. ]
  51351. ))
  51352. characterMakers.push(() => makeCharacter(
  51353. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  51354. {
  51355. front: {
  51356. height: math.unit(6, "feet"),
  51357. weight: math.unit(150, "lb"),
  51358. name: "Front",
  51359. image: {
  51360. source: "./media/characters/caspian/front.svg",
  51361. extra: 1443/1359,
  51362. bottom: 0/1443
  51363. }
  51364. },
  51365. back: {
  51366. height: math.unit(6, "feet"),
  51367. weight: math.unit(150, "lb"),
  51368. name: "Back",
  51369. image: {
  51370. source: "./media/characters/caspian/back.svg",
  51371. extra: 1379/1309,
  51372. bottom: 0/1379
  51373. }
  51374. },
  51375. head: {
  51376. height: math.unit(0.9, "feet"),
  51377. name: "Head",
  51378. image: {
  51379. source: "./media/characters/caspian/head.svg",
  51380. extra: 692/492,
  51381. bottom: 0/692
  51382. }
  51383. },
  51384. headAlt: {
  51385. height: math.unit(0.95, "feet"),
  51386. name: "Head (Alt)",
  51387. image: {
  51388. source: "./media/characters/caspian/head-alt.svg",
  51389. extra: 668/508,
  51390. bottom: 0/668
  51391. }
  51392. },
  51393. hand: {
  51394. height: math.unit(0.8, "feet"),
  51395. name: "Hand",
  51396. image: {
  51397. source: "./media/characters/caspian/hand.svg"
  51398. }
  51399. },
  51400. paw: {
  51401. height: math.unit(0.95, "feet"),
  51402. name: "Paw",
  51403. image: {
  51404. source: "./media/characters/caspian/paw.svg"
  51405. }
  51406. },
  51407. },
  51408. [
  51409. {
  51410. name: "Normal",
  51411. height: math.unit(162, "feet"),
  51412. default: true
  51413. },
  51414. ]
  51415. ))
  51416. characterMakers.push(() => makeCharacter(
  51417. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  51418. {
  51419. front: {
  51420. height: math.unit(6, "feet"),
  51421. name: "Front",
  51422. image: {
  51423. source: "./media/characters/myra-aisling/front.svg",
  51424. extra: 1268/1166,
  51425. bottom: 73/1341
  51426. }
  51427. },
  51428. back: {
  51429. height: math.unit(6, "feet"),
  51430. name: "Back",
  51431. image: {
  51432. source: "./media/characters/myra-aisling/back.svg",
  51433. extra: 1249/1149,
  51434. bottom: 79/1328
  51435. }
  51436. },
  51437. dressed: {
  51438. height: math.unit(6, "feet"),
  51439. name: "Dressed",
  51440. image: {
  51441. source: "./media/characters/myra-aisling/dressed.svg",
  51442. extra: 1290/1189,
  51443. bottom: 47/1337
  51444. }
  51445. },
  51446. hand: {
  51447. height: math.unit(1.1, "feet"),
  51448. name: "Hand",
  51449. image: {
  51450. source: "./media/characters/myra-aisling/hand.svg"
  51451. }
  51452. },
  51453. paw: {
  51454. height: math.unit(1.23, "feet"),
  51455. name: "Paw",
  51456. image: {
  51457. source: "./media/characters/myra-aisling/paw.svg"
  51458. }
  51459. },
  51460. },
  51461. [
  51462. {
  51463. name: "Normal",
  51464. height: math.unit(160, "feet"),
  51465. default: true
  51466. },
  51467. ]
  51468. ))
  51469. characterMakers.push(() => makeCharacter(
  51470. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  51471. {
  51472. front: {
  51473. height: math.unit(6, "feet"),
  51474. name: "Front",
  51475. image: {
  51476. source: "./media/characters/tenley-sidero/front.svg",
  51477. extra: 1365/1276,
  51478. bottom: 47/1412
  51479. }
  51480. },
  51481. back: {
  51482. height: math.unit(6, "feet"),
  51483. name: "Back",
  51484. image: {
  51485. source: "./media/characters/tenley-sidero/back.svg",
  51486. extra: 1383/1283,
  51487. bottom: 35/1418
  51488. }
  51489. },
  51490. dressed: {
  51491. height: math.unit(6, "feet"),
  51492. name: "Dressed",
  51493. image: {
  51494. source: "./media/characters/tenley-sidero/dressed.svg",
  51495. extra: 1364/1275,
  51496. bottom: 42/1406
  51497. }
  51498. },
  51499. head: {
  51500. height: math.unit(1.47, "feet"),
  51501. name: "Head",
  51502. image: {
  51503. source: "./media/characters/tenley-sidero/head.svg",
  51504. extra: 610/490,
  51505. bottom: 0/610
  51506. }
  51507. },
  51508. },
  51509. [
  51510. {
  51511. name: "Normal",
  51512. height: math.unit(154, "feet"),
  51513. default: true
  51514. },
  51515. ]
  51516. ))
  51517. characterMakers.push(() => makeCharacter(
  51518. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  51519. {
  51520. front: {
  51521. height: math.unit(5, "inches"),
  51522. name: "Front",
  51523. image: {
  51524. source: "./media/characters/mallory/front.svg",
  51525. extra: 1919/1678,
  51526. bottom: 29/1948
  51527. }
  51528. },
  51529. hand: {
  51530. height: math.unit(0.73, "inches"),
  51531. name: "Hand",
  51532. image: {
  51533. source: "./media/characters/mallory/hand.svg"
  51534. }
  51535. },
  51536. paw: {
  51537. height: math.unit(0.68, "inches"),
  51538. name: "Paw",
  51539. image: {
  51540. source: "./media/characters/mallory/paw.svg"
  51541. }
  51542. },
  51543. },
  51544. [
  51545. {
  51546. name: "Small",
  51547. height: math.unit(5, "inches"),
  51548. default: true
  51549. },
  51550. ]
  51551. ))
  51552. characterMakers.push(() => makeCharacter(
  51553. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  51554. {
  51555. naked: {
  51556. height: math.unit(6, "feet"),
  51557. name: "Naked",
  51558. image: {
  51559. source: "./media/characters/mab/naked.svg",
  51560. extra: 1855/1757,
  51561. bottom: 208/2063
  51562. }
  51563. },
  51564. outside: {
  51565. height: math.unit(6, "feet"),
  51566. name: "Outside",
  51567. image: {
  51568. source: "./media/characters/mab/outside.svg",
  51569. extra: 1855/1757,
  51570. bottom: 208/2063
  51571. }
  51572. },
  51573. party: {
  51574. height: math.unit(6, "feet"),
  51575. name: "Party",
  51576. image: {
  51577. source: "./media/characters/mab/party.svg",
  51578. extra: 1855/1757,
  51579. bottom: 208/2063
  51580. }
  51581. },
  51582. },
  51583. [
  51584. {
  51585. name: "Normal",
  51586. height: math.unit(165, "feet"),
  51587. default: true
  51588. },
  51589. ]
  51590. ))
  51591. characterMakers.push(() => makeCharacter(
  51592. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  51593. {
  51594. feral: {
  51595. height: math.unit(12, "feet"),
  51596. weight: math.unit(20000, "lb"),
  51597. name: "Side",
  51598. image: {
  51599. source: "./media/characters/winter/feral.svg",
  51600. extra: 1286/943,
  51601. bottom: 112/1398
  51602. },
  51603. form: "feral",
  51604. default: true
  51605. },
  51606. feralNsfw: {
  51607. height: math.unit(12, "feet"),
  51608. weight: math.unit(20000, "lb"),
  51609. name: "Side (NSFW)",
  51610. image: {
  51611. source: "./media/characters/winter/feral-nsfw.svg",
  51612. extra: 1286/943,
  51613. bottom: 112/1398
  51614. },
  51615. form: "feral"
  51616. },
  51617. dick: {
  51618. height: math.unit(3.79, "feet"),
  51619. name: "Dick",
  51620. image: {
  51621. source: "./media/characters/winter/dick.svg"
  51622. },
  51623. form: "feral"
  51624. },
  51625. anthro: {
  51626. height: math.unit(12, "feet"),
  51627. weight: math.unit(10, "tons"),
  51628. name: "Anthro",
  51629. image: {
  51630. source: "./media/characters/winter/anthro.svg",
  51631. extra: 1701/1553,
  51632. bottom: 64/1765
  51633. },
  51634. form: "anthro",
  51635. default: true
  51636. },
  51637. },
  51638. [
  51639. {
  51640. name: "Big",
  51641. height: math.unit(12, "feet"),
  51642. default: true,
  51643. form: "feral"
  51644. },
  51645. {
  51646. name: "Big",
  51647. height: math.unit(12, "feet"),
  51648. default: true,
  51649. form: "anthro"
  51650. },
  51651. ],
  51652. {
  51653. "feral": {
  51654. name: "Feral",
  51655. default: true
  51656. },
  51657. "anthro": {
  51658. name: "Anthro"
  51659. }
  51660. }
  51661. ))
  51662. characterMakers.push(() => makeCharacter(
  51663. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  51664. {
  51665. front: {
  51666. height: math.unit(4.1, "inches"),
  51667. name: "Front",
  51668. image: {
  51669. source: "./media/characters/alto/front.svg",
  51670. extra: 736/627,
  51671. bottom: 90/826
  51672. }
  51673. },
  51674. },
  51675. [
  51676. {
  51677. name: "Normal",
  51678. height: math.unit(4.1, "inches"),
  51679. default: true
  51680. },
  51681. ]
  51682. ))
  51683. characterMakers.push(() => makeCharacter(
  51684. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  51685. {
  51686. sitting: {
  51687. height: math.unit(3, "feet"),
  51688. name: "Sitting",
  51689. image: {
  51690. source: "./media/characters/ratstrid-v/sitting.svg",
  51691. extra: 355/310,
  51692. bottom: 136/491
  51693. }
  51694. },
  51695. },
  51696. [
  51697. {
  51698. name: "Normal",
  51699. height: math.unit(3, "feet"),
  51700. default: true
  51701. },
  51702. ]
  51703. ))
  51704. characterMakers.push(() => makeCharacter(
  51705. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  51706. {
  51707. back: {
  51708. height: math.unit(6, "feet"),
  51709. weight: math.unit(450, "lb"),
  51710. name: "Back",
  51711. image: {
  51712. source: "./media/characters/siz/back.svg",
  51713. extra: 1449/1274,
  51714. bottom: 13/1462
  51715. }
  51716. },
  51717. },
  51718. [
  51719. {
  51720. name: "Smallest",
  51721. height: math.unit(18 + 3/12, "feet")
  51722. },
  51723. {
  51724. name: "Modest",
  51725. height: math.unit(56 + 8/12, "feet"),
  51726. default: true
  51727. },
  51728. {
  51729. name: "Largest",
  51730. height: math.unit(3590, "feet")
  51731. },
  51732. ]
  51733. ))
  51734. characterMakers.push(() => makeCharacter(
  51735. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  51736. {
  51737. front: {
  51738. height: math.unit(5 + 9/12, "feet"),
  51739. weight: math.unit(150, "lb"),
  51740. name: "Front",
  51741. image: {
  51742. source: "./media/characters/ven/front.svg",
  51743. extra: 1372/1320,
  51744. bottom: 73/1445
  51745. }
  51746. },
  51747. side: {
  51748. height: math.unit(5 + 9/12, "feet"),
  51749. weight: math.unit(1150, "lb"),
  51750. name: "Side",
  51751. image: {
  51752. source: "./media/characters/ven/side.svg",
  51753. extra: 1119/1070,
  51754. bottom: 42/1161
  51755. },
  51756. default: true
  51757. },
  51758. },
  51759. [
  51760. {
  51761. name: "Normal",
  51762. height: math.unit(5 + 9/12, "feet"),
  51763. default: true
  51764. },
  51765. ]
  51766. ))
  51767. characterMakers.push(() => makeCharacter(
  51768. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  51769. {
  51770. front: {
  51771. height: math.unit(12, "feet"),
  51772. weight: math.unit(1000, "kg"),
  51773. name: "Front",
  51774. image: {
  51775. source: "./media/characters/maple/front.svg",
  51776. extra: 1193/1081,
  51777. bottom: 22/1215
  51778. }
  51779. },
  51780. },
  51781. [
  51782. {
  51783. name: "Compressed",
  51784. height: math.unit(7, "feet")
  51785. },
  51786. {
  51787. name: "Normal",
  51788. height: math.unit(12, "feet"),
  51789. default: true
  51790. },
  51791. ]
  51792. ))
  51793. characterMakers.push(() => makeCharacter(
  51794. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  51795. {
  51796. front: {
  51797. height: math.unit(9, "feet"),
  51798. weight: math.unit(1500, "lb"),
  51799. name: "Front",
  51800. image: {
  51801. source: "./media/characters/nora/front.svg",
  51802. extra: 1348/1286,
  51803. bottom: 218/1566
  51804. }
  51805. },
  51806. erect: {
  51807. height: math.unit(9, "feet"),
  51808. weight: math.unit(11500, "lb"),
  51809. name: "Erect",
  51810. image: {
  51811. source: "./media/characters/nora/erect.svg",
  51812. extra: 1488/1433,
  51813. bottom: 133/1621
  51814. }
  51815. },
  51816. },
  51817. [
  51818. {
  51819. name: "Normal",
  51820. height: math.unit(9, "feet"),
  51821. default: true
  51822. },
  51823. ]
  51824. ))
  51825. characterMakers.push(() => makeCharacter(
  51826. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  51827. {
  51828. front: {
  51829. height: math.unit(25, "feet"),
  51830. weight: math.unit(27500, "lb"),
  51831. name: "Front",
  51832. image: {
  51833. source: "./media/characters/north-caudin/front.svg",
  51834. extra: 1184/1082,
  51835. bottom: 23/1207
  51836. }
  51837. },
  51838. },
  51839. [
  51840. {
  51841. name: "Compressed",
  51842. height: math.unit(10, "feet")
  51843. },
  51844. {
  51845. name: "Normal",
  51846. height: math.unit(25, "feet"),
  51847. default: true
  51848. },
  51849. ]
  51850. ))
  51851. characterMakers.push(() => makeCharacter(
  51852. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  51853. {
  51854. front: {
  51855. height: math.unit(9, "feet"),
  51856. weight: math.unit(1250, "lb"),
  51857. name: "Front",
  51858. image: {
  51859. source: "./media/characters/merrian/front.svg",
  51860. extra: 2393/2304,
  51861. bottom: 40/2433
  51862. }
  51863. },
  51864. },
  51865. [
  51866. {
  51867. name: "Normal",
  51868. height: math.unit(9, "feet"),
  51869. default: true
  51870. },
  51871. ]
  51872. ))
  51873. characterMakers.push(() => makeCharacter(
  51874. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  51875. {
  51876. front: {
  51877. height: math.unit(9, "feet"),
  51878. weight: math.unit(1000, "lb"),
  51879. name: "Front",
  51880. image: {
  51881. source: "./media/characters/hazel/front.svg",
  51882. extra: 2351/2298,
  51883. bottom: 38/2389
  51884. }
  51885. },
  51886. },
  51887. [
  51888. {
  51889. name: "Normal",
  51890. height: math.unit(9, "feet"),
  51891. default: true
  51892. },
  51893. ]
  51894. ))
  51895. characterMakers.push(() => makeCharacter(
  51896. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  51897. {
  51898. front: {
  51899. height: math.unit(13, "feet"),
  51900. weight: math.unit(3200, "lb"),
  51901. name: "Front",
  51902. image: {
  51903. source: "./media/characters/emma/front.svg",
  51904. extra: 2263/2029,
  51905. bottom: 68/2331
  51906. }
  51907. },
  51908. },
  51909. [
  51910. {
  51911. name: "Normal",
  51912. height: math.unit(13, "feet"),
  51913. default: true
  51914. },
  51915. ]
  51916. ))
  51917. characterMakers.push(() => makeCharacter(
  51918. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  51919. {
  51920. front: {
  51921. height: math.unit(11 + 9/12, "feet"),
  51922. weight: math.unit(2500, "lb"),
  51923. name: "Front",
  51924. image: {
  51925. source: "./media/characters/ilumina/front.svg",
  51926. extra: 2248/2209,
  51927. bottom: 164/2412
  51928. }
  51929. },
  51930. },
  51931. [
  51932. {
  51933. name: "Normal",
  51934. height: math.unit(11 + 9/12, "feet"),
  51935. default: true
  51936. },
  51937. ]
  51938. ))
  51939. characterMakers.push(() => makeCharacter(
  51940. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  51941. {
  51942. front: {
  51943. height: math.unit(8 + 10/12, "feet"),
  51944. weight: math.unit(1350, "lb"),
  51945. name: "Front",
  51946. image: {
  51947. source: "./media/characters/moonshine/front.svg",
  51948. extra: 2395/2288,
  51949. bottom: 40/2435
  51950. }
  51951. },
  51952. },
  51953. [
  51954. {
  51955. name: "Normal",
  51956. height: math.unit(8 + 10/12, "feet"),
  51957. default: true
  51958. },
  51959. ]
  51960. ))
  51961. characterMakers.push(() => makeCharacter(
  51962. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  51963. {
  51964. front: {
  51965. height: math.unit(14, "feet"),
  51966. weight: math.unit(3400, "lb"),
  51967. name: "Front",
  51968. image: {
  51969. source: "./media/characters/aletia/front.svg",
  51970. extra: 1185/1052,
  51971. bottom: 21/1206
  51972. }
  51973. },
  51974. },
  51975. [
  51976. {
  51977. name: "Compressed",
  51978. height: math.unit(8, "feet")
  51979. },
  51980. {
  51981. name: "Normal",
  51982. height: math.unit(14, "feet"),
  51983. default: true
  51984. },
  51985. ]
  51986. ))
  51987. characterMakers.push(() => makeCharacter(
  51988. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  51989. {
  51990. front: {
  51991. height: math.unit(17, "feet"),
  51992. weight: math.unit(6500, "lb"),
  51993. name: "Front",
  51994. image: {
  51995. source: "./media/characters/deidra/front.svg",
  51996. extra: 1201/1081,
  51997. bottom: 16/1217
  51998. }
  51999. },
  52000. },
  52001. [
  52002. {
  52003. name: "Compressed",
  52004. height: math.unit(9 + 6/12, "feet")
  52005. },
  52006. {
  52007. name: "Normal",
  52008. height: math.unit(17, "feet"),
  52009. default: true
  52010. },
  52011. ]
  52012. ))
  52013. characterMakers.push(() => makeCharacter(
  52014. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  52015. {
  52016. front: {
  52017. height: math.unit(7 + 4/12, "feet"),
  52018. weight: math.unit(280, "lb"),
  52019. name: "Front",
  52020. image: {
  52021. source: "./media/characters/freki-yrmori/front.svg",
  52022. extra: 1286/1182,
  52023. bottom: 29/1315
  52024. }
  52025. },
  52026. maw: {
  52027. height: math.unit(0.9, "feet"),
  52028. name: "Maw",
  52029. image: {
  52030. source: "./media/characters/freki-yrmori/maw.svg"
  52031. }
  52032. },
  52033. },
  52034. [
  52035. {
  52036. name: "Normal",
  52037. height: math.unit(7 + 4/12, "feet"),
  52038. default: true
  52039. },
  52040. {
  52041. name: "Macro",
  52042. height: math.unit(38.5, "meters")
  52043. },
  52044. ]
  52045. ))
  52046. characterMakers.push(() => makeCharacter(
  52047. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  52048. {
  52049. side: {
  52050. height: math.unit(47.2, "meters"),
  52051. weight: math.unit(10000, "tons"),
  52052. name: "Side",
  52053. image: {
  52054. source: "./media/characters/aetherios/side.svg",
  52055. extra: 2363/642,
  52056. bottom: 221/2584
  52057. }
  52058. },
  52059. top: {
  52060. height: math.unit(240, "meters"),
  52061. weight: math.unit(10000, "tons"),
  52062. name: "Top",
  52063. image: {
  52064. source: "./media/characters/aetherios/top.svg"
  52065. }
  52066. },
  52067. bottom: {
  52068. height: math.unit(240, "meters"),
  52069. weight: math.unit(10000, "tons"),
  52070. name: "Bottom",
  52071. image: {
  52072. source: "./media/characters/aetherios/bottom.svg"
  52073. }
  52074. },
  52075. head: {
  52076. height: math.unit(38.6, "meters"),
  52077. name: "Head",
  52078. image: {
  52079. source: "./media/characters/aetherios/head.svg",
  52080. extra: 1335/1112,
  52081. bottom: 0/1335
  52082. }
  52083. },
  52084. front: {
  52085. height: math.unit(29, "meters"),
  52086. name: "Front",
  52087. image: {
  52088. source: "./media/characters/aetherios/front.svg",
  52089. extra: 1266/953,
  52090. bottom: 158/1424
  52091. }
  52092. },
  52093. maw: {
  52094. height: math.unit(16.37, "meters"),
  52095. name: "Maw",
  52096. image: {
  52097. source: "./media/characters/aetherios/maw.svg",
  52098. extra: 748/637,
  52099. bottom: 0/748
  52100. },
  52101. extraAttributes: {
  52102. preyCapacity: {
  52103. name: "Capacity",
  52104. power: 3,
  52105. type: "volume",
  52106. base: math.unit(1000, "people")
  52107. },
  52108. tongueSize: {
  52109. name: "Tongue Size",
  52110. power: 2,
  52111. type: "area",
  52112. base: math.unit(21, "m^2")
  52113. }
  52114. }
  52115. },
  52116. forepaw: {
  52117. height: math.unit(18, "meters"),
  52118. name: "Forepaw",
  52119. image: {
  52120. source: "./media/characters/aetherios/forepaw.svg"
  52121. }
  52122. },
  52123. hindpaw: {
  52124. height: math.unit(23, "meters"),
  52125. name: "Hindpaw",
  52126. image: {
  52127. source: "./media/characters/aetherios/hindpaw.svg"
  52128. }
  52129. },
  52130. genitals: {
  52131. height: math.unit(42, "meters"),
  52132. name: "Genitals",
  52133. image: {
  52134. source: "./media/characters/aetherios/genitals.svg"
  52135. }
  52136. },
  52137. },
  52138. [
  52139. {
  52140. name: "Normal",
  52141. height: math.unit(47.2, "meters"),
  52142. default: true
  52143. },
  52144. {
  52145. name: "Macro",
  52146. height: math.unit(160, "meters")
  52147. },
  52148. {
  52149. name: "Mega",
  52150. height: math.unit(1.87, "km")
  52151. },
  52152. {
  52153. name: "Giga",
  52154. height: math.unit(40000, "km")
  52155. },
  52156. {
  52157. name: "Stellar",
  52158. height: math.unit(158000000, "km")
  52159. },
  52160. {
  52161. name: "Cosmic",
  52162. height: math.unit(9.46e12, "km")
  52163. },
  52164. ]
  52165. ))
  52166. characterMakers.push(() => makeCharacter(
  52167. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  52168. {
  52169. front: {
  52170. height: math.unit(5 + 4/12, "feet"),
  52171. weight: math.unit(80, "lb"),
  52172. name: "Front",
  52173. image: {
  52174. source: "./media/characters/mizu-gieeg/front.svg",
  52175. extra: 850/709,
  52176. bottom: 52/902
  52177. }
  52178. },
  52179. back: {
  52180. height: math.unit(5 + 4/12, "feet"),
  52181. weight: math.unit(80, "lb"),
  52182. name: "Back",
  52183. image: {
  52184. source: "./media/characters/mizu-gieeg/back.svg",
  52185. extra: 882/745,
  52186. bottom: 25/907
  52187. }
  52188. },
  52189. },
  52190. [
  52191. {
  52192. name: "Normal",
  52193. height: math.unit(5 + 4/12, "feet"),
  52194. default: true
  52195. },
  52196. ]
  52197. ))
  52198. characterMakers.push(() => makeCharacter(
  52199. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  52200. {
  52201. front: {
  52202. height: math.unit(6, "feet"),
  52203. name: "Front",
  52204. image: {
  52205. source: "./media/characters/roselle-st-papier/front.svg",
  52206. extra: 1430/1280,
  52207. bottom: 37/1467
  52208. }
  52209. },
  52210. back: {
  52211. height: math.unit(6, "feet"),
  52212. name: "Back",
  52213. image: {
  52214. source: "./media/characters/roselle-st-papier/back.svg",
  52215. extra: 1491/1296,
  52216. bottom: 23/1514
  52217. }
  52218. },
  52219. ear: {
  52220. height: math.unit(1.26, "feet"),
  52221. name: "Ear",
  52222. image: {
  52223. source: "./media/characters/roselle-st-papier/ear.svg"
  52224. }
  52225. },
  52226. },
  52227. [
  52228. {
  52229. name: "Normal",
  52230. height: math.unit(150, "feet"),
  52231. default: true
  52232. },
  52233. ]
  52234. ))
  52235. characterMakers.push(() => makeCharacter(
  52236. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  52237. {
  52238. front: {
  52239. height: math.unit(1, "inches"),
  52240. name: "Front",
  52241. image: {
  52242. source: "./media/characters/valargent/front.svg",
  52243. extra: 1825/1694,
  52244. bottom: 62/1887
  52245. }
  52246. },
  52247. back: {
  52248. height: math.unit(1, "inches"),
  52249. name: "Back",
  52250. image: {
  52251. source: "./media/characters/valargent/back.svg",
  52252. extra: 1775/1682,
  52253. bottom: 88/1863
  52254. }
  52255. },
  52256. },
  52257. [
  52258. {
  52259. name: "Micro",
  52260. height: math.unit(1, "inch"),
  52261. default: true
  52262. },
  52263. ]
  52264. ))
  52265. characterMakers.push(() => makeCharacter(
  52266. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  52267. {
  52268. front: {
  52269. height: math.unit(3.4, "meters"),
  52270. name: "Front",
  52271. image: {
  52272. source: "./media/characters/zarina/front.svg",
  52273. extra: 1733/1425,
  52274. bottom: 93/1826
  52275. }
  52276. },
  52277. squatting: {
  52278. height: math.unit(2.14, "meters"),
  52279. name: "Squatting",
  52280. image: {
  52281. source: "./media/characters/zarina/squatting.svg",
  52282. extra: 1073/788,
  52283. bottom: 63/1136
  52284. }
  52285. },
  52286. back: {
  52287. height: math.unit(2.14, "meters"),
  52288. name: "Back",
  52289. image: {
  52290. source: "./media/characters/zarina/back.svg",
  52291. extra: 1128/885,
  52292. bottom: 0/1128
  52293. }
  52294. },
  52295. },
  52296. [
  52297. {
  52298. name: "Normal",
  52299. height: math.unit(3.4, "meters"),
  52300. default: true
  52301. },
  52302. {
  52303. name: "Big",
  52304. height: math.unit(5, "meters")
  52305. },
  52306. {
  52307. name: "Macro",
  52308. height: math.unit(110, "meters")
  52309. },
  52310. ]
  52311. ))
  52312. characterMakers.push(() => makeCharacter(
  52313. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  52314. {
  52315. front: {
  52316. height: math.unit(7, "feet"),
  52317. name: "Front",
  52318. image: {
  52319. source: "./media/characters/ventus-astro-fox/front.svg",
  52320. extra: 1792/1623,
  52321. bottom: 28/1820
  52322. }
  52323. },
  52324. back: {
  52325. height: math.unit(7, "feet"),
  52326. name: "Back",
  52327. image: {
  52328. source: "./media/characters/ventus-astro-fox/back.svg",
  52329. extra: 1789/1620,
  52330. bottom: 31/1820
  52331. }
  52332. },
  52333. outfit: {
  52334. height: math.unit(7, "feet"),
  52335. name: "Outfit",
  52336. image: {
  52337. source: "./media/characters/ventus-astro-fox/outfit.svg",
  52338. extra: 1054/925,
  52339. bottom: 15/1069
  52340. }
  52341. },
  52342. head: {
  52343. height: math.unit(1.12, "feet"),
  52344. name: "Head",
  52345. image: {
  52346. source: "./media/characters/ventus-astro-fox/head.svg",
  52347. extra: 866/504,
  52348. bottom: 0/866
  52349. }
  52350. },
  52351. hand: {
  52352. height: math.unit(1, "feet"),
  52353. name: "Hand",
  52354. image: {
  52355. source: "./media/characters/ventus-astro-fox/hand.svg"
  52356. }
  52357. },
  52358. paw: {
  52359. height: math.unit(1.5, "feet"),
  52360. name: "Paw",
  52361. image: {
  52362. source: "./media/characters/ventus-astro-fox/paw.svg"
  52363. }
  52364. },
  52365. },
  52366. [
  52367. {
  52368. name: "Normal",
  52369. height: math.unit(7, "feet"),
  52370. default: true
  52371. },
  52372. {
  52373. name: "Macro",
  52374. height: math.unit(200, "feet")
  52375. },
  52376. {
  52377. name: "Cosmic",
  52378. height: math.unit(3, "universes")
  52379. },
  52380. ]
  52381. ))
  52382. characterMakers.push(() => makeCharacter(
  52383. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  52384. {
  52385. front: {
  52386. height: math.unit(3, "meters"),
  52387. weight: math.unit(7000, "lb"),
  52388. name: "Front",
  52389. image: {
  52390. source: "./media/characters/core-t/front.svg",
  52391. extra: 5729/4941,
  52392. bottom: 1129/6858
  52393. }
  52394. },
  52395. },
  52396. [
  52397. {
  52398. name: "Big",
  52399. height: math.unit(3, "meters"),
  52400. default: true
  52401. },
  52402. ]
  52403. ))
  52404. characterMakers.push(() => makeCharacter(
  52405. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  52406. {
  52407. normal: {
  52408. height: math.unit(6 + 6/12, "feet"),
  52409. weight: math.unit(275, "lb"),
  52410. name: "Front",
  52411. image: {
  52412. source: "./media/characters/cadbunny/normal.svg",
  52413. extra: 1129/947,
  52414. bottom: 93/1222
  52415. },
  52416. default: true,
  52417. form: "normal"
  52418. },
  52419. gigantamax: {
  52420. height: math.unit(26, "feet"),
  52421. weight: math.unit(16000, "lb"),
  52422. name: "Front",
  52423. image: {
  52424. source: "./media/characters/cadbunny/gigantamax.svg",
  52425. extra: 1133/944,
  52426. bottom: 90/1223
  52427. },
  52428. default: true,
  52429. form: "gigantamax"
  52430. },
  52431. },
  52432. [
  52433. {
  52434. name: "Normal",
  52435. height: math.unit(6 + 6/12, "feet"),
  52436. default: true,
  52437. form: "normal"
  52438. },
  52439. {
  52440. name: "Small",
  52441. height: math.unit(26, "feet"),
  52442. default: true,
  52443. form: "gigantamax"
  52444. },
  52445. {
  52446. name: "Large",
  52447. height: math.unit(78, "feet"),
  52448. form: "gigantamax"
  52449. },
  52450. ],
  52451. {
  52452. "normal": {
  52453. name: "Normal",
  52454. default: true
  52455. },
  52456. "gigantamax": {
  52457. name: "Gigantamax"
  52458. }
  52459. }
  52460. ))
  52461. characterMakers.push(() => makeCharacter(
  52462. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  52463. {
  52464. anthroFront: {
  52465. height: math.unit(8, "feet"),
  52466. weight: math.unit(300, "lb"),
  52467. name: "Front",
  52468. image: {
  52469. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  52470. extra: 1272/1176,
  52471. bottom: 53/1325
  52472. },
  52473. form: "anthro",
  52474. default: true
  52475. },
  52476. feralSide: {
  52477. height: math.unit(4, "feet"),
  52478. weight: math.unit(250, "lb"),
  52479. name: "Side",
  52480. image: {
  52481. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  52482. extra: 731/621,
  52483. bottom: 0/731
  52484. },
  52485. form: "feral",
  52486. default: true
  52487. },
  52488. },
  52489. [
  52490. {
  52491. name: "Regular",
  52492. height: math.unit(8, "feet"),
  52493. form: "anthro"
  52494. },
  52495. {
  52496. name: "Macro",
  52497. height: math.unit(250, "feet"),
  52498. form: "anthro",
  52499. default: true
  52500. },
  52501. {
  52502. name: "Regular",
  52503. height: math.unit(4, "feet"),
  52504. form: "feral"
  52505. },
  52506. {
  52507. name: "Macro",
  52508. height: math.unit(125, "feet"),
  52509. form: "feral",
  52510. default: true
  52511. },
  52512. ],
  52513. {
  52514. "anthro": {
  52515. name: "Anthro",
  52516. default: true
  52517. },
  52518. "feral": {
  52519. name: "Feral",
  52520. },
  52521. }
  52522. ))
  52523. characterMakers.push(() => makeCharacter(
  52524. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  52525. {
  52526. front: {
  52527. height: math.unit(11 + 10/12, "feet"),
  52528. weight: math.unit(1587, "kg"),
  52529. name: "Front",
  52530. image: {
  52531. source: "./media/characters/maple-javira-dragon/front.svg",
  52532. extra: 1136/744,
  52533. bottom: 73/1209
  52534. }
  52535. },
  52536. side: {
  52537. height: math.unit(11 + 10/12, "feet"),
  52538. weight: math.unit(1587, "kg"),
  52539. name: "Side",
  52540. image: {
  52541. source: "./media/characters/maple-javira-dragon/side.svg",
  52542. extra: 712/505,
  52543. bottom: 17/729
  52544. }
  52545. },
  52546. head: {
  52547. height: math.unit(8.05, "feet"),
  52548. name: "Head",
  52549. image: {
  52550. source: "./media/characters/maple-javira-dragon/head.svg",
  52551. extra: 1420/1344,
  52552. bottom: 0/1420
  52553. }
  52554. },
  52555. },
  52556. [
  52557. {
  52558. name: "Normal",
  52559. height: math.unit(11 + 10/12, "feet"),
  52560. default: true
  52561. },
  52562. ]
  52563. ))
  52564. characterMakers.push(() => makeCharacter(
  52565. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  52566. {
  52567. front: {
  52568. height: math.unit(117, "cm"),
  52569. weight: math.unit(50, "kg"),
  52570. name: "Front",
  52571. image: {
  52572. source: "./media/characters/sonia-wyverntail/front.svg",
  52573. extra: 708/592,
  52574. bottom: 25/733
  52575. }
  52576. },
  52577. },
  52578. [
  52579. {
  52580. name: "Normal",
  52581. height: math.unit(117, "cm"),
  52582. default: true
  52583. },
  52584. ]
  52585. ))
  52586. characterMakers.push(() => makeCharacter(
  52587. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  52588. {
  52589. front: {
  52590. height: math.unit(6 + 5/12, "feet"),
  52591. name: "Front",
  52592. image: {
  52593. source: "./media/characters/micah/front.svg",
  52594. extra: 1758/1546,
  52595. bottom: 214/1972
  52596. }
  52597. },
  52598. },
  52599. [
  52600. {
  52601. name: "Normal",
  52602. height: math.unit(6 + 5/12, "feet"),
  52603. default: true
  52604. },
  52605. ]
  52606. ))
  52607. characterMakers.push(() => makeCharacter(
  52608. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  52609. {
  52610. front: {
  52611. height: math.unit(1.75, "meters"),
  52612. weight: math.unit(100, "kg"),
  52613. name: "Front",
  52614. image: {
  52615. source: "./media/characters/zarya/front.svg",
  52616. extra: 741/735,
  52617. bottom: 44/785
  52618. },
  52619. extraAttributes: {
  52620. "tailLength": {
  52621. name: "Tail Length",
  52622. power: 1,
  52623. type: "length",
  52624. base: math.unit(180, "cm")
  52625. },
  52626. "pawLength": {
  52627. name: "Paw Length",
  52628. power: 1,
  52629. type: "length",
  52630. base: math.unit(31, "cm")
  52631. },
  52632. }
  52633. },
  52634. side: {
  52635. height: math.unit(1.75, "meters"),
  52636. weight: math.unit(100, "kg"),
  52637. name: "Side",
  52638. image: {
  52639. source: "./media/characters/zarya/side.svg",
  52640. extra: 776/770,
  52641. bottom: 17/793
  52642. },
  52643. extraAttributes: {
  52644. "tailLength": {
  52645. name: "Tail Length",
  52646. power: 1,
  52647. type: "length",
  52648. base: math.unit(180, "cm")
  52649. },
  52650. "pawLength": {
  52651. name: "Paw Length",
  52652. power: 1,
  52653. type: "length",
  52654. base: math.unit(31, "cm")
  52655. },
  52656. }
  52657. },
  52658. back: {
  52659. height: math.unit(1.75, "meters"),
  52660. weight: math.unit(100, "kg"),
  52661. name: "Back",
  52662. image: {
  52663. source: "./media/characters/zarya/back.svg",
  52664. extra: 741/735,
  52665. bottom: 44/785
  52666. },
  52667. extraAttributes: {
  52668. "tailLength": {
  52669. name: "Tail Length",
  52670. power: 1,
  52671. type: "length",
  52672. base: math.unit(180, "cm")
  52673. },
  52674. "pawLength": {
  52675. name: "Paw Length",
  52676. power: 1,
  52677. type: "length",
  52678. base: math.unit(31, "cm")
  52679. },
  52680. }
  52681. },
  52682. frontNoTail: {
  52683. height: math.unit(1.75, "meters"),
  52684. weight: math.unit(100, "kg"),
  52685. name: "Front (No Tail)",
  52686. image: {
  52687. source: "./media/characters/zarya/front-no-tail.svg",
  52688. extra: 741/735,
  52689. bottom: 44/785
  52690. },
  52691. extraAttributes: {
  52692. "tailLength": {
  52693. name: "Tail Length",
  52694. power: 1,
  52695. type: "length",
  52696. base: math.unit(180, "cm")
  52697. },
  52698. "pawLength": {
  52699. name: "Paw Length",
  52700. power: 1,
  52701. type: "length",
  52702. base: math.unit(31, "cm")
  52703. },
  52704. }
  52705. },
  52706. dressed: {
  52707. height: math.unit(1.75, "meters"),
  52708. weight: math.unit(100, "kg"),
  52709. name: "Dressed",
  52710. image: {
  52711. source: "./media/characters/zarya/dressed.svg",
  52712. extra: 683/672,
  52713. bottom: 79/762
  52714. },
  52715. extraAttributes: {
  52716. "tailLength": {
  52717. name: "Tail Length",
  52718. power: 1,
  52719. type: "length",
  52720. base: math.unit(180, "cm")
  52721. },
  52722. "pawLength": {
  52723. name: "Paw Length",
  52724. power: 1,
  52725. type: "length",
  52726. base: math.unit(31, "cm")
  52727. },
  52728. }
  52729. },
  52730. },
  52731. [
  52732. {
  52733. name: "Micro",
  52734. height: math.unit(5, "cm")
  52735. },
  52736. {
  52737. name: "Normal",
  52738. height: math.unit(1.75, "meters"),
  52739. default: true
  52740. },
  52741. {
  52742. name: "Macro",
  52743. height: math.unit(122, "meters")
  52744. },
  52745. ]
  52746. ))
  52747. characterMakers.push(() => makeCharacter(
  52748. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  52749. {
  52750. front: {
  52751. height: math.unit(7.5, "feet"),
  52752. name: "Front",
  52753. image: {
  52754. source: "./media/characters/sven-hatisson/front.svg",
  52755. extra: 917/857,
  52756. bottom: 42/959
  52757. }
  52758. },
  52759. back: {
  52760. height: math.unit(7.5, "feet"),
  52761. name: "Back",
  52762. image: {
  52763. source: "./media/characters/sven-hatisson/back.svg",
  52764. extra: 903/856,
  52765. bottom: 15/918
  52766. }
  52767. },
  52768. },
  52769. [
  52770. {
  52771. name: "Base Height",
  52772. height: math.unit(7.5, "feet")
  52773. },
  52774. {
  52775. name: "Usual Height",
  52776. height: math.unit(13.5, "feet"),
  52777. default: true
  52778. },
  52779. {
  52780. name: "Smaller Macro",
  52781. height: math.unit(85, "feet")
  52782. },
  52783. {
  52784. name: "Moderate Macro",
  52785. height: math.unit(320, "feet")
  52786. },
  52787. {
  52788. name: "Large Macro",
  52789. height: math.unit(1000, "feet")
  52790. },
  52791. {
  52792. name: "Largest Size",
  52793. height: math.unit(2, "miles")
  52794. },
  52795. ]
  52796. ))
  52797. characterMakers.push(() => makeCharacter(
  52798. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  52799. {
  52800. side: {
  52801. height: math.unit(1.8, "meters"),
  52802. weight: math.unit(275, "kg"),
  52803. name: "Side",
  52804. image: {
  52805. source: "./media/characters/terra/side.svg",
  52806. extra: 1273/1147,
  52807. bottom: 0/1273
  52808. }
  52809. },
  52810. },
  52811. [
  52812. {
  52813. name: "Normal",
  52814. height: math.unit(16.2, "meters"),
  52815. default: true
  52816. },
  52817. ]
  52818. ))
  52819. characterMakers.push(() => makeCharacter(
  52820. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  52821. {
  52822. borzoiFront: {
  52823. height: math.unit(6 + 9/12, "feet"),
  52824. name: "Front",
  52825. image: {
  52826. source: "./media/characters/rae/borzoi-front.svg",
  52827. extra: 1161/1098,
  52828. bottom: 31/1192
  52829. },
  52830. form: "borzoi",
  52831. default: true
  52832. },
  52833. werewolfFront: {
  52834. height: math.unit(8 + 7/12, "feet"),
  52835. name: "Front",
  52836. image: {
  52837. source: "./media/characters/rae/werewolf-front.svg",
  52838. extra: 1411/1334,
  52839. bottom: 127/1538
  52840. },
  52841. form: "werewolf",
  52842. default: true
  52843. },
  52844. },
  52845. [
  52846. {
  52847. name: "Normal",
  52848. height: math.unit(6 + 9/12, "feet"),
  52849. default: true,
  52850. form: "borzoi"
  52851. },
  52852. {
  52853. name: "Normal",
  52854. height: math.unit(8 + 7/12, "feet"),
  52855. default: true,
  52856. form: "werewolf"
  52857. },
  52858. ],
  52859. {
  52860. "borzoi": {
  52861. name: "Borzoi",
  52862. default: true
  52863. },
  52864. "werewolf": {
  52865. name: "Werewolf",
  52866. },
  52867. }
  52868. ))
  52869. characterMakers.push(() => makeCharacter(
  52870. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  52871. {
  52872. front: {
  52873. height: math.unit(8 + 7/12, "feet"),
  52874. weight: math.unit(482, "lb"),
  52875. name: "Front",
  52876. image: {
  52877. source: "./media/characters/kit/front.svg",
  52878. extra: 1247/1103,
  52879. bottom: 41/1288
  52880. }
  52881. },
  52882. back: {
  52883. height: math.unit(8 + 7/12, "feet"),
  52884. weight: math.unit(482, "lb"),
  52885. name: "Back",
  52886. image: {
  52887. source: "./media/characters/kit/back.svg",
  52888. extra: 1252/1123,
  52889. bottom: 21/1273
  52890. }
  52891. },
  52892. paw: {
  52893. height: math.unit(1.46, "feet"),
  52894. name: "Paw",
  52895. image: {
  52896. source: "./media/characters/kit/paw.svg"
  52897. }
  52898. },
  52899. },
  52900. [
  52901. {
  52902. name: "Normal",
  52903. height: math.unit(2.61, "meters"),
  52904. default: true
  52905. },
  52906. {
  52907. name: "\"Tall\"",
  52908. height: math.unit(8.21, "meters")
  52909. },
  52910. {
  52911. name: "Tall",
  52912. height: math.unit(19.6, "meters")
  52913. },
  52914. {
  52915. name: "Very Tall",
  52916. height: math.unit(57.91, "meters")
  52917. },
  52918. {
  52919. name: "Semi-Macro",
  52920. height: math.unit(138.64, "meters")
  52921. },
  52922. {
  52923. name: "Macro",
  52924. height: math.unit(831.99, "meters")
  52925. },
  52926. {
  52927. name: "EX-Macro",
  52928. height: math.unit(96451121, "meters")
  52929. },
  52930. {
  52931. name: "S1-Omnipotent",
  52932. height: math.unit(4.42074e+9, "meters")
  52933. },
  52934. {
  52935. name: "S2-Omnipotent",
  52936. height: math.unit(9.42074e+17, "meters")
  52937. },
  52938. {
  52939. name: "Omnipotent",
  52940. height: math.unit(4.23112e+24, "meters")
  52941. },
  52942. {
  52943. name: "Hypergod",
  52944. height: math.unit(5.05176e+27, "meters")
  52945. },
  52946. {
  52947. name: "Hypergod-EX",
  52948. height: math.unit(9.45532e+49, "meters")
  52949. },
  52950. {
  52951. name: "Hypergod-SP",
  52952. height: math.unit(9.45532e+195, "meters")
  52953. },
  52954. ]
  52955. ))
  52956. characterMakers.push(() => makeCharacter(
  52957. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  52958. {
  52959. side: {
  52960. height: math.unit(0.6, "meters"),
  52961. weight: math.unit(24, "kg"),
  52962. name: "Side",
  52963. image: {
  52964. source: "./media/characters/celeste/side.svg",
  52965. extra: 810/517,
  52966. bottom: 53/863
  52967. }
  52968. },
  52969. },
  52970. [
  52971. {
  52972. name: "Velociraptor",
  52973. height: math.unit(0.6, "meters"),
  52974. default: true
  52975. },
  52976. {
  52977. name: "Utahraptor",
  52978. height: math.unit(1.8, "meters")
  52979. },
  52980. {
  52981. name: "Gallimimus",
  52982. height: math.unit(4.0, "meters")
  52983. },
  52984. {
  52985. name: "Large",
  52986. height: math.unit(20, "meters")
  52987. },
  52988. {
  52989. name: "Planetary",
  52990. height: math.unit(50, "megameters")
  52991. },
  52992. {
  52993. name: "Stellar",
  52994. height: math.unit(1.5, "gigameters")
  52995. },
  52996. {
  52997. name: "Galactic",
  52998. height: math.unit(100, "exameters")
  52999. },
  53000. ]
  53001. ))
  53002. characterMakers.push(() => makeCharacter(
  53003. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  53004. {
  53005. front: {
  53006. height: math.unit(6, "feet"),
  53007. weight: math.unit(210, "lb"),
  53008. name: "Front",
  53009. image: {
  53010. source: "./media/characters/glacia/front.svg",
  53011. extra: 958/901,
  53012. bottom: 45/1003
  53013. }
  53014. },
  53015. },
  53016. [
  53017. {
  53018. name: "Macro",
  53019. height: math.unit(1000, "meters"),
  53020. default: true
  53021. },
  53022. ]
  53023. ))
  53024. characterMakers.push(() => makeCharacter(
  53025. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  53026. {
  53027. front: {
  53028. height: math.unit(4, "meters"),
  53029. name: "Front",
  53030. image: {
  53031. source: "./media/characters/giri/front.svg",
  53032. extra: 966/894,
  53033. bottom: 21/987
  53034. }
  53035. },
  53036. },
  53037. [
  53038. {
  53039. name: "Normal",
  53040. height: math.unit(4, "meters"),
  53041. default: true
  53042. },
  53043. ]
  53044. ))
  53045. characterMakers.push(() => makeCharacter(
  53046. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  53047. {
  53048. back: {
  53049. height: math.unit(4, "feet"),
  53050. weight: math.unit(37, "lb"),
  53051. name: "Back",
  53052. image: {
  53053. source: "./media/characters/tin/back.svg",
  53054. extra: 845/780,
  53055. bottom: 28/873
  53056. }
  53057. },
  53058. },
  53059. [
  53060. {
  53061. name: "Normal",
  53062. height: math.unit(4, "feet"),
  53063. default: true
  53064. },
  53065. ]
  53066. ))
  53067. characterMakers.push(() => makeCharacter(
  53068. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  53069. {
  53070. front: {
  53071. height: math.unit(25, "feet"),
  53072. name: "Front",
  53073. image: {
  53074. source: "./media/characters/cadenza-vivace/front.svg",
  53075. extra: 1842/1578,
  53076. bottom: 30/1872
  53077. }
  53078. },
  53079. },
  53080. [
  53081. {
  53082. name: "Macro",
  53083. height: math.unit(25, "feet"),
  53084. default: true
  53085. },
  53086. ]
  53087. ))
  53088. characterMakers.push(() => makeCharacter(
  53089. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  53090. {
  53091. front: {
  53092. height: math.unit(10, "feet"),
  53093. weight: math.unit(625, "kg"),
  53094. name: "Front",
  53095. image: {
  53096. source: "./media/characters/zain/front.svg",
  53097. extra: 1682/1498,
  53098. bottom: 223/1905
  53099. }
  53100. },
  53101. back: {
  53102. height: math.unit(10, "feet"),
  53103. weight: math.unit(625, "kg"),
  53104. name: "Back",
  53105. image: {
  53106. source: "./media/characters/zain/back.svg",
  53107. extra: 1814/1657,
  53108. bottom: 152/1966
  53109. }
  53110. },
  53111. head: {
  53112. height: math.unit(10, "feet"),
  53113. weight: math.unit(625, "kg"),
  53114. name: "Head",
  53115. image: {
  53116. source: "./media/characters/zain/head.svg",
  53117. extra: 1059/762,
  53118. bottom: 0/1059
  53119. }
  53120. },
  53121. },
  53122. [
  53123. {
  53124. name: "Normal",
  53125. height: math.unit(10, "feet"),
  53126. default: true
  53127. },
  53128. ]
  53129. ))
  53130. characterMakers.push(() => makeCharacter(
  53131. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  53132. {
  53133. front: {
  53134. height: math.unit(6 + 5/12, "feet"),
  53135. weight: math.unit(750, "lb"),
  53136. name: "Front",
  53137. image: {
  53138. source: "./media/characters/ruchex/front.svg",
  53139. extra: 877/820,
  53140. bottom: 17/894
  53141. },
  53142. extraAttributes: {
  53143. "width": {
  53144. name: "Width",
  53145. power: 1,
  53146. type: "length",
  53147. base: math.unit(4.757, "feet")
  53148. },
  53149. }
  53150. },
  53151. },
  53152. [
  53153. {
  53154. name: "Normal",
  53155. height: math.unit(6 + 5/12, "feet"),
  53156. default: true
  53157. },
  53158. ]
  53159. ))
  53160. characterMakers.push(() => makeCharacter(
  53161. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  53162. {
  53163. dressedFront: {
  53164. height: math.unit(191, "cm"),
  53165. weight: math.unit(80, "kg"),
  53166. name: "Front",
  53167. image: {
  53168. source: "./media/characters/buster/dressed-front.svg",
  53169. extra: 1022/973,
  53170. bottom: 69/1091
  53171. }
  53172. },
  53173. dressedBack: {
  53174. height: math.unit(191, "cm"),
  53175. weight: math.unit(80, "kg"),
  53176. name: "Back",
  53177. image: {
  53178. source: "./media/characters/buster/dressed-back.svg",
  53179. extra: 1018/970,
  53180. bottom: 55/1073
  53181. }
  53182. },
  53183. nudeFront: {
  53184. height: math.unit(191, "cm"),
  53185. weight: math.unit(80, "kg"),
  53186. name: "Front (Nude)",
  53187. image: {
  53188. source: "./media/characters/buster/nude-front.svg",
  53189. extra: 1022/973,
  53190. bottom: 69/1091
  53191. }
  53192. },
  53193. nudeBack: {
  53194. height: math.unit(191, "cm"),
  53195. weight: math.unit(80, "kg"),
  53196. name: "Back (Nude)",
  53197. image: {
  53198. source: "./media/characters/buster/nude-back.svg",
  53199. extra: 1018/970,
  53200. bottom: 55/1073
  53201. }
  53202. },
  53203. dick: {
  53204. height: math.unit(2.59, "feet"),
  53205. name: "Dick",
  53206. image: {
  53207. source: "./media/characters/buster/dick.svg"
  53208. }
  53209. },
  53210. ass: {
  53211. height: math.unit(1.2, "feet"),
  53212. name: "Ass",
  53213. image: {
  53214. source: "./media/characters/buster/ass.svg"
  53215. }
  53216. },
  53217. },
  53218. [
  53219. {
  53220. name: "Normal",
  53221. height: math.unit(191, "cm"),
  53222. default: true
  53223. },
  53224. ]
  53225. ))
  53226. characterMakers.push(() => makeCharacter(
  53227. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  53228. {
  53229. side: {
  53230. height: math.unit(8.1, "feet"),
  53231. weight: math.unit(3500, "lb"),
  53232. name: "Side",
  53233. image: {
  53234. source: "./media/characters/sonya/side.svg",
  53235. extra: 1730/1317,
  53236. bottom: 86/1816
  53237. }
  53238. },
  53239. },
  53240. [
  53241. {
  53242. name: "Normal",
  53243. height: math.unit(8.1, "feet"),
  53244. default: true
  53245. },
  53246. ]
  53247. ))
  53248. characterMakers.push(() => makeCharacter(
  53249. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  53250. {
  53251. front: {
  53252. height: math.unit(6, "feet"),
  53253. weight: math.unit(150, "lb"),
  53254. name: "Front",
  53255. image: {
  53256. source: "./media/characters/cadence-andrysiak/front.svg",
  53257. extra: 1164/1121,
  53258. bottom: 60/1224
  53259. }
  53260. },
  53261. back: {
  53262. height: math.unit(6, "feet"),
  53263. weight: math.unit(150, "lb"),
  53264. name: "Back",
  53265. image: {
  53266. source: "./media/characters/cadence-andrysiak/back.svg",
  53267. extra: 1200/1165,
  53268. bottom: 9/1209
  53269. }
  53270. },
  53271. dressed: {
  53272. height: math.unit(6, "feet"),
  53273. weight: math.unit(150, "lb"),
  53274. name: "Dressed",
  53275. image: {
  53276. source: "./media/characters/cadence-andrysiak/dressed.svg",
  53277. extra: 1164/1121,
  53278. bottom: 60/1224
  53279. }
  53280. },
  53281. },
  53282. [
  53283. {
  53284. name: "Micro",
  53285. height: math.unit(1, "mm")
  53286. },
  53287. {
  53288. name: "Normal",
  53289. height: math.unit(6, "feet"),
  53290. default: true
  53291. },
  53292. ]
  53293. ))
  53294. characterMakers.push(() => makeCharacter(
  53295. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  53296. {
  53297. front: {
  53298. height: math.unit(60, "inches"),
  53299. weight: math.unit(16, "lb"),
  53300. preyCapacity: math.unit(80, "liters"),
  53301. name: "Front",
  53302. image: {
  53303. source: "./media/characters/penny-lynx/front.svg",
  53304. extra: 1959/1769,
  53305. bottom: 49/2008
  53306. }
  53307. },
  53308. },
  53309. [
  53310. {
  53311. name: "Nokia",
  53312. height: math.unit(2, "inches")
  53313. },
  53314. {
  53315. name: "Desktop",
  53316. height: math.unit(24, "inches")
  53317. },
  53318. {
  53319. name: "TV",
  53320. height: math.unit(60, "inches")
  53321. },
  53322. {
  53323. name: "Jumbotron",
  53324. height: math.unit(12, "feet")
  53325. },
  53326. {
  53327. name: "Billboard",
  53328. height: math.unit(48, "feet"),
  53329. default: true
  53330. },
  53331. {
  53332. name: "IMAX",
  53333. height: math.unit(96, "feet")
  53334. },
  53335. {
  53336. name: "SINGULARITY",
  53337. height: math.unit(864938, "miles")
  53338. },
  53339. ]
  53340. ))
  53341. characterMakers.push(() => makeCharacter(
  53342. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  53343. {
  53344. front: {
  53345. height: math.unit(5 + 4/12, "feet"),
  53346. weight: math.unit(230, "lb"),
  53347. name: "Front",
  53348. image: {
  53349. source: "./media/characters/sukebe/front.svg",
  53350. extra: 2130/2038,
  53351. bottom: 90/2220
  53352. }
  53353. },
  53354. back: {
  53355. height: math.unit(3.48, "feet"),
  53356. weight: math.unit(230, "lb"),
  53357. name: "Back",
  53358. image: {
  53359. source: "./media/characters/sukebe/back.svg",
  53360. extra: 1670/1604,
  53361. bottom: 0/1670
  53362. }
  53363. },
  53364. },
  53365. [
  53366. {
  53367. name: "Normal",
  53368. height: math.unit(5 + 4/12, "feet"),
  53369. default: true
  53370. },
  53371. ]
  53372. ))
  53373. characterMakers.push(() => makeCharacter(
  53374. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  53375. {
  53376. front: {
  53377. height: math.unit(6, "feet"),
  53378. name: "Front",
  53379. image: {
  53380. source: "./media/characters/nylla/front.svg",
  53381. extra: 1868/1699,
  53382. bottom: 97/1965
  53383. }
  53384. },
  53385. back: {
  53386. height: math.unit(6, "feet"),
  53387. name: "Back",
  53388. image: {
  53389. source: "./media/characters/nylla/back.svg",
  53390. extra: 1889/1712,
  53391. bottom: 93/1982
  53392. }
  53393. },
  53394. frontNsfw: {
  53395. height: math.unit(6, "feet"),
  53396. name: "Front (NSFW)",
  53397. image: {
  53398. source: "./media/characters/nylla/front-nsfw.svg",
  53399. extra: 1868/1699,
  53400. bottom: 97/1965
  53401. },
  53402. extraAttributes: {
  53403. "dickLength": {
  53404. name: "Dick Length",
  53405. power: 1,
  53406. type: "length",
  53407. base: math.unit(1.4, "feet")
  53408. },
  53409. "cumVolume": {
  53410. name: "Cum Volume",
  53411. power: 3,
  53412. type: "volume",
  53413. base: math.unit(100, "mL")
  53414. },
  53415. }
  53416. },
  53417. backNsfw: {
  53418. height: math.unit(6, "feet"),
  53419. name: "Back (NSFW)",
  53420. image: {
  53421. source: "./media/characters/nylla/back-nsfw.svg",
  53422. extra: 1889/1712,
  53423. bottom: 93/1982
  53424. }
  53425. },
  53426. maw: {
  53427. height: math.unit(2.10, "feet"),
  53428. name: "Maw",
  53429. image: {
  53430. source: "./media/characters/nylla/maw.svg"
  53431. }
  53432. },
  53433. paws: {
  53434. height: math.unit(2.06, "feet"),
  53435. name: "Paws",
  53436. image: {
  53437. source: "./media/characters/nylla/paws.svg"
  53438. }
  53439. },
  53440. muzzle: {
  53441. height: math.unit(0.61, "feet"),
  53442. name: "Muzzle",
  53443. image: {
  53444. source: "./media/characters/nylla/muzzle.svg"
  53445. }
  53446. },
  53447. sheath: {
  53448. height: math.unit(1.305, "feet"),
  53449. name: "Sheath",
  53450. image: {
  53451. source: "./media/characters/nylla/sheath.svg"
  53452. }
  53453. },
  53454. },
  53455. [
  53456. {
  53457. name: "Micro",
  53458. height: math.unit(7.5, "inches")
  53459. },
  53460. {
  53461. name: "Normal",
  53462. height: math.unit(7, "feet"),
  53463. default: true
  53464. },
  53465. {
  53466. name: "Macro",
  53467. height: math.unit(60, "feet")
  53468. },
  53469. {
  53470. name: "Mega",
  53471. height: math.unit(200, "feet")
  53472. },
  53473. ]
  53474. ))
  53475. characterMakers.push(() => makeCharacter(
  53476. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  53477. {
  53478. front: {
  53479. height: math.unit(10, "feet"),
  53480. weight: math.unit(2300, "lb"),
  53481. name: "Front",
  53482. image: {
  53483. source: "./media/characters/hunt3r/front.svg",
  53484. extra: 1909/1742,
  53485. bottom: 46/1955
  53486. }
  53487. },
  53488. },
  53489. [
  53490. {
  53491. name: "Normal",
  53492. height: math.unit(10, "feet"),
  53493. default: true
  53494. },
  53495. ]
  53496. ))
  53497. characterMakers.push(() => makeCharacter(
  53498. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  53499. {
  53500. dressed: {
  53501. height: math.unit(11, "feet"),
  53502. weight: math.unit(18500, "lb"),
  53503. preyCapacity: math.unit(9, "people"),
  53504. name: "Dressed",
  53505. image: {
  53506. source: "./media/characters/cylphis/dressed.svg",
  53507. extra: 1028/1003,
  53508. bottom: 75/1103
  53509. },
  53510. },
  53511. undressed: {
  53512. height: math.unit(11, "feet"),
  53513. weight: math.unit(18500, "lb"),
  53514. preyCapacity: math.unit(9, "people"),
  53515. name: "Undressed",
  53516. image: {
  53517. source: "./media/characters/cylphis/undressed.svg",
  53518. extra: 1028/1003,
  53519. bottom: 75/1103
  53520. }
  53521. },
  53522. full: {
  53523. height: math.unit(11, "feet"),
  53524. weight: math.unit(18500 + 150*9, "lb"),
  53525. preyCapacity: math.unit(9, "people"),
  53526. name: "Full",
  53527. image: {
  53528. source: "./media/characters/cylphis/full.svg",
  53529. extra: 1028/1003,
  53530. bottom: 75/1103
  53531. }
  53532. },
  53533. },
  53534. [
  53535. {
  53536. name: "Small",
  53537. height: math.unit(8, "feet")
  53538. },
  53539. {
  53540. name: "Normal",
  53541. height: math.unit(11, "feet"),
  53542. default: true
  53543. },
  53544. ]
  53545. ))
  53546. characterMakers.push(() => makeCharacter(
  53547. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  53548. {
  53549. front: {
  53550. height: math.unit(2 + 7/12, "feet"),
  53551. name: "Front",
  53552. image: {
  53553. source: "./media/characters/orishan/front.svg",
  53554. extra: 1058/1023,
  53555. bottom: 23/1081
  53556. }
  53557. },
  53558. back: {
  53559. height: math.unit(2 + 7/12, "feet"),
  53560. name: "Back",
  53561. image: {
  53562. source: "./media/characters/orishan/back.svg",
  53563. extra: 1058/1023,
  53564. bottom: 23/1081
  53565. }
  53566. },
  53567. },
  53568. [
  53569. {
  53570. name: "Micro",
  53571. height: math.unit(2, "cm")
  53572. },
  53573. {
  53574. name: "Normal",
  53575. height: math.unit(2 + 7/12, "feet"),
  53576. default: true
  53577. },
  53578. ]
  53579. ))
  53580. characterMakers.push(() => makeCharacter(
  53581. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  53582. {
  53583. front: {
  53584. height: math.unit(3, "meters"),
  53585. weight: math.unit(508, "kg"),
  53586. name: "Front",
  53587. image: {
  53588. source: "./media/characters/seranis/front.svg",
  53589. extra: 1478/1454,
  53590. bottom: 41/1519
  53591. }
  53592. },
  53593. },
  53594. [
  53595. {
  53596. name: "Normal",
  53597. height: math.unit(3, "meters"),
  53598. default: true
  53599. },
  53600. {
  53601. name: "Macro",
  53602. height: math.unit(108, "meters")
  53603. },
  53604. {
  53605. name: "Megamacro",
  53606. height: math.unit(1250, "meters")
  53607. },
  53608. ]
  53609. ))
  53610. characterMakers.push(() => makeCharacter(
  53611. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  53612. {
  53613. undressed: {
  53614. height: math.unit(5 + 3/12, "feet"),
  53615. name: "Undressed",
  53616. image: {
  53617. source: "./media/characters/ankou/undressed.svg",
  53618. extra: 1301/1213,
  53619. bottom: 87/1388
  53620. }
  53621. },
  53622. dressed: {
  53623. height: math.unit(5 + 3/12, "feet"),
  53624. name: "Dressed",
  53625. image: {
  53626. source: "./media/characters/ankou/dressed.svg",
  53627. extra: 1301/1213,
  53628. bottom: 87/1388
  53629. }
  53630. },
  53631. head: {
  53632. height: math.unit(1.61, "feet"),
  53633. name: "Head",
  53634. image: {
  53635. source: "./media/characters/ankou/head.svg"
  53636. }
  53637. },
  53638. },
  53639. [
  53640. {
  53641. name: "Normal",
  53642. height: math.unit(5 + 3/12, "feet"),
  53643. default: true
  53644. },
  53645. ]
  53646. ))
  53647. characterMakers.push(() => makeCharacter(
  53648. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  53649. {
  53650. side: {
  53651. height: math.unit(6 + 3/12, "feet"),
  53652. weight: math.unit(200, "kg"),
  53653. name: "Side",
  53654. image: {
  53655. source: "./media/characters/juniper-skunktaur/side.svg",
  53656. extra: 1574/1229,
  53657. bottom: 38/1612
  53658. }
  53659. },
  53660. front: {
  53661. height: math.unit(6 + 3/12, "feet"),
  53662. weight: math.unit(200, "kg"),
  53663. name: "Front",
  53664. image: {
  53665. source: "./media/characters/juniper-skunktaur/front.svg",
  53666. extra: 1337/1278,
  53667. bottom: 22/1359
  53668. }
  53669. },
  53670. back: {
  53671. height: math.unit(6 + 3/12, "feet"),
  53672. weight: math.unit(200, "kg"),
  53673. name: "Back",
  53674. image: {
  53675. source: "./media/characters/juniper-skunktaur/back.svg",
  53676. extra: 1618/1273,
  53677. bottom: 13/1631
  53678. }
  53679. },
  53680. top: {
  53681. height: math.unit(2.62, "feet"),
  53682. weight: math.unit(200, "kg"),
  53683. name: "Top",
  53684. image: {
  53685. source: "./media/characters/juniper-skunktaur/top.svg"
  53686. }
  53687. },
  53688. },
  53689. [
  53690. {
  53691. name: "Normal",
  53692. height: math.unit(6 + 3/12, "feet"),
  53693. default: true
  53694. },
  53695. ]
  53696. ))
  53697. characterMakers.push(() => makeCharacter(
  53698. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  53699. {
  53700. front: {
  53701. height: math.unit(20.5, "feet"),
  53702. name: "Front",
  53703. image: {
  53704. source: "./media/characters/rei/front.svg",
  53705. extra: 1349/1195,
  53706. bottom: 31/1380
  53707. }
  53708. },
  53709. back: {
  53710. height: math.unit(20.5, "feet"),
  53711. name: "Back",
  53712. image: {
  53713. source: "./media/characters/rei/back.svg",
  53714. extra: 1358/1204,
  53715. bottom: 22/1380
  53716. }
  53717. },
  53718. pawsDigi: {
  53719. height: math.unit(3.45, "feet"),
  53720. name: "Paws (Digi)",
  53721. image: {
  53722. source: "./media/characters/rei/paws-digi.svg"
  53723. }
  53724. },
  53725. pawsPlanti: {
  53726. height: math.unit(3.45, "feet"),
  53727. name: "Paws (Planti)",
  53728. image: {
  53729. source: "./media/characters/rei/paws-planti.svg"
  53730. }
  53731. },
  53732. },
  53733. [
  53734. {
  53735. name: "Normal",
  53736. height: math.unit(20.5, "feet"),
  53737. default: true
  53738. },
  53739. ]
  53740. ))
  53741. characterMakers.push(() => makeCharacter(
  53742. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  53743. {
  53744. front: {
  53745. height: math.unit(5 + 11/12, "feet"),
  53746. name: "Front",
  53747. image: {
  53748. source: "./media/characters/carina/front.svg",
  53749. extra: 1720/1449,
  53750. bottom: 14/1734
  53751. }
  53752. },
  53753. back: {
  53754. height: math.unit(5 + 11/12, "feet"),
  53755. name: "Back",
  53756. image: {
  53757. source: "./media/characters/carina/back.svg",
  53758. extra: 1493/1445,
  53759. bottom: 17/1510
  53760. }
  53761. },
  53762. paw: {
  53763. height: math.unit(0.92, "feet"),
  53764. name: "Paw",
  53765. image: {
  53766. source: "./media/characters/carina/paw.svg"
  53767. }
  53768. },
  53769. },
  53770. [
  53771. {
  53772. name: "Normal",
  53773. height: math.unit(5 + 11/12, "feet"),
  53774. default: true
  53775. },
  53776. ]
  53777. ))
  53778. characterMakers.push(() => makeCharacter(
  53779. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  53780. {
  53781. normal_front: {
  53782. height: math.unit(4.88, "meters"),
  53783. name: "Front",
  53784. image: {
  53785. source: "./media/characters/maya/normal-front.svg",
  53786. extra: 1222/1145,
  53787. bottom: 57/1279
  53788. },
  53789. form: "normal",
  53790. default: true
  53791. },
  53792. monstrous_front: {
  53793. height: math.unit(10, "meters"),
  53794. name: "Front",
  53795. image: {
  53796. source: "./media/characters/maya/monstrous-front.svg",
  53797. extra: 1523/1109,
  53798. bottom: 113/1636
  53799. },
  53800. form: "monstrous",
  53801. extraAttributes: {
  53802. "swallowSize": {
  53803. name: "Tailmaw Bite Size",
  53804. power: 3,
  53805. type: "volume",
  53806. base: math.unit(43000, "liters")
  53807. },
  53808. }
  53809. },
  53810. taur_front: {
  53811. height: math.unit(10, "meters"),
  53812. name: "Front",
  53813. image: {
  53814. source: "./media/characters/maya/taur-front.svg",
  53815. extra: 743/506,
  53816. bottom: 101/844
  53817. },
  53818. form: "taur",
  53819. },
  53820. },
  53821. [
  53822. {
  53823. name: "Normal",
  53824. height: math.unit(4.88, "meters"),
  53825. default: true,
  53826. form: "normal"
  53827. },
  53828. {
  53829. name: "Macro",
  53830. height: math.unit(38.1, "meters"),
  53831. form: "normal"
  53832. },
  53833. {
  53834. name: "Macro+",
  53835. height: math.unit(152.4, "meters"),
  53836. form: "normal"
  53837. },
  53838. {
  53839. name: "Macro++",
  53840. height: math.unit(16.09, "km"),
  53841. form: "normal"
  53842. },
  53843. {
  53844. name: "Mega-macro",
  53845. height: math.unit(700, "megameters"),
  53846. form: "normal"
  53847. },
  53848. {
  53849. name: "Satiated",
  53850. height: math.unit(10, "meters"),
  53851. default: true,
  53852. form: "monstrous"
  53853. },
  53854. {
  53855. name: "Hungry",
  53856. height: math.unit(75, "meters"),
  53857. form: "monstrous"
  53858. },
  53859. {
  53860. name: "Ravenous",
  53861. height: math.unit(500, "meters"),
  53862. form: "monstrous"
  53863. },
  53864. {
  53865. name: "\"Normal\"",
  53866. height: math.unit(10, "meters"),
  53867. form: "taur"
  53868. },
  53869. {
  53870. name: "Macro",
  53871. height: math.unit(50, "meters"),
  53872. form: "taur"
  53873. },
  53874. ],
  53875. {
  53876. "normal": {
  53877. name: "Normal",
  53878. default: true
  53879. },
  53880. "monstrous": {
  53881. name: "Monstrous",
  53882. },
  53883. "taur": {
  53884. name: "Taur",
  53885. },
  53886. }
  53887. ))
  53888. characterMakers.push(() => makeCharacter(
  53889. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  53890. {
  53891. front: {
  53892. height: math.unit(6 + 2/12, "feet"),
  53893. weight: math.unit(500, "lb"),
  53894. preyCapacity: math.unit(4, "people"),
  53895. name: "Front",
  53896. image: {
  53897. source: "./media/characters/yepir/front.svg"
  53898. }
  53899. },
  53900. side: {
  53901. height: math.unit(6 + 2/12, "feet"),
  53902. weight: math.unit(500, "lb"),
  53903. preyCapacity: math.unit(4, "people"),
  53904. name: "Side",
  53905. image: {
  53906. source: "./media/characters/yepir/side.svg"
  53907. }
  53908. },
  53909. paw: {
  53910. height: math.unit(1.05, "feet"),
  53911. name: "Paw",
  53912. image: {
  53913. source: "./media/characters/yepir/paw.svg"
  53914. }
  53915. },
  53916. },
  53917. [
  53918. {
  53919. name: "Normal",
  53920. height: math.unit(6 + 2/12, "feet"),
  53921. default: true
  53922. },
  53923. ]
  53924. ))
  53925. characterMakers.push(() => makeCharacter(
  53926. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  53927. {
  53928. front: {
  53929. height: math.unit(5 + 4/12, "feet"),
  53930. name: "Front",
  53931. image: {
  53932. source: "./media/characters/russec/front.svg",
  53933. extra: 1926/1626,
  53934. bottom: 72/1998
  53935. }
  53936. },
  53937. back: {
  53938. height: math.unit(5 + 4/12, "feet"),
  53939. name: "Back",
  53940. image: {
  53941. source: "./media/characters/russec/back.svg",
  53942. extra: 1910/1591,
  53943. bottom: 48/1958
  53944. }
  53945. },
  53946. },
  53947. [
  53948. {
  53949. name: "Small",
  53950. height: math.unit(5 + 4/12, "feet")
  53951. },
  53952. {
  53953. name: "Normal",
  53954. height: math.unit(72, "feet"),
  53955. default: true
  53956. },
  53957. ]
  53958. ))
  53959. characterMakers.push(() => makeCharacter(
  53960. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  53961. {
  53962. side: {
  53963. height: math.unit(12, "feet"),
  53964. name: "Side",
  53965. image: {
  53966. source: "./media/characters/cianus/side.svg",
  53967. extra: 808/526,
  53968. bottom: 61/869
  53969. }
  53970. },
  53971. },
  53972. [
  53973. {
  53974. name: "Normal",
  53975. height: math.unit(12, "feet"),
  53976. default: true
  53977. },
  53978. ]
  53979. ))
  53980. characterMakers.push(() => makeCharacter(
  53981. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  53982. {
  53983. front: {
  53984. height: math.unit(9 + 6/12, "feet"),
  53985. weight: math.unit(300, "lb"),
  53986. name: "Front",
  53987. image: {
  53988. source: "./media/characters/ahab/front.svg",
  53989. extra: 1897/1868,
  53990. bottom: 121/2018
  53991. }
  53992. },
  53993. frontNsfw: {
  53994. height: math.unit(9 + 6/12, "feet"),
  53995. weight: math.unit(300, "lb"),
  53996. name: "Front-nsfw",
  53997. image: {
  53998. source: "./media/characters/ahab/front-nsfw.svg",
  53999. extra: 1897/1868,
  54000. bottom: 121/2018
  54001. }
  54002. },
  54003. },
  54004. [
  54005. {
  54006. name: "Normal",
  54007. height: math.unit(9 + 6/12, "feet")
  54008. },
  54009. {
  54010. name: "Macro",
  54011. height: math.unit(657, "feet"),
  54012. default: true
  54013. },
  54014. ]
  54015. ))
  54016. characterMakers.push(() => makeCharacter(
  54017. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  54018. {
  54019. front: {
  54020. height: math.unit(2.69, "meters"),
  54021. weight: math.unit(132, "kg"),
  54022. name: "Front",
  54023. image: {
  54024. source: "./media/characters/aarkus/front.svg",
  54025. extra: 1400/1231,
  54026. bottom: 34/1434
  54027. }
  54028. },
  54029. back: {
  54030. height: math.unit(2.69, "meters"),
  54031. weight: math.unit(132, "kg"),
  54032. name: "Back",
  54033. image: {
  54034. source: "./media/characters/aarkus/back.svg",
  54035. extra: 1381/1218,
  54036. bottom: 30/1411
  54037. }
  54038. },
  54039. frontNsfw: {
  54040. height: math.unit(2.69, "meters"),
  54041. weight: math.unit(132, "kg"),
  54042. name: "Front (NSFW)",
  54043. image: {
  54044. source: "./media/characters/aarkus/front-nsfw.svg",
  54045. extra: 1400/1231,
  54046. bottom: 34/1434
  54047. }
  54048. },
  54049. foot: {
  54050. height: math.unit(1.45, "feet"),
  54051. name: "Foot",
  54052. image: {
  54053. source: "./media/characters/aarkus/foot.svg"
  54054. }
  54055. },
  54056. head: {
  54057. height: math.unit(2.85, "feet"),
  54058. name: "Head",
  54059. image: {
  54060. source: "./media/characters/aarkus/head.svg"
  54061. }
  54062. },
  54063. headAlt: {
  54064. height: math.unit(3.07, "feet"),
  54065. name: "Head (Alt)",
  54066. image: {
  54067. source: "./media/characters/aarkus/head-alt.svg"
  54068. }
  54069. },
  54070. mouth: {
  54071. height: math.unit(1.25, "feet"),
  54072. name: "Mouth",
  54073. image: {
  54074. source: "./media/characters/aarkus/mouth.svg"
  54075. }
  54076. },
  54077. dick: {
  54078. height: math.unit(1.77, "feet"),
  54079. name: "Dick",
  54080. image: {
  54081. source: "./media/characters/aarkus/dick.svg"
  54082. }
  54083. },
  54084. },
  54085. [
  54086. {
  54087. name: "Normal",
  54088. height: math.unit(2.69, "meters"),
  54089. default: true
  54090. },
  54091. {
  54092. name: "Macro",
  54093. height: math.unit(269, "meters")
  54094. },
  54095. {
  54096. name: "Macro+",
  54097. height: math.unit(672.5, "meters")
  54098. },
  54099. {
  54100. name: "Megamacro",
  54101. height: math.unit(2.017, "km")
  54102. },
  54103. ]
  54104. ))
  54105. characterMakers.push(() => makeCharacter(
  54106. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  54107. {
  54108. front: {
  54109. height: math.unit(23.47, "cm"),
  54110. weight: math.unit(600, "grams"),
  54111. name: "Front",
  54112. image: {
  54113. source: "./media/characters/diode/front.svg",
  54114. extra: 1778/1396,
  54115. bottom: 95/1873
  54116. }
  54117. },
  54118. side: {
  54119. height: math.unit(23.47, "cm"),
  54120. weight: math.unit(600, "grams"),
  54121. name: "Side",
  54122. image: {
  54123. source: "./media/characters/diode/side.svg",
  54124. extra: 1831/1404,
  54125. bottom: 86/1917
  54126. }
  54127. },
  54128. wings: {
  54129. height: math.unit(0.683, "feet"),
  54130. name: "Wings",
  54131. image: {
  54132. source: "./media/characters/diode/wings.svg"
  54133. }
  54134. },
  54135. },
  54136. [
  54137. {
  54138. name: "Normal",
  54139. height: math.unit(23.47, "cm"),
  54140. default: true
  54141. },
  54142. ]
  54143. ))
  54144. characterMakers.push(() => makeCharacter(
  54145. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  54146. {
  54147. front: {
  54148. height: math.unit(6 + 3/12, "feet"),
  54149. weight: math.unit(250, "lb"),
  54150. name: "Front",
  54151. image: {
  54152. source: "./media/characters/reika/front.svg",
  54153. extra: 1120/1078,
  54154. bottom: 86/1206
  54155. }
  54156. },
  54157. },
  54158. [
  54159. {
  54160. name: "Normal",
  54161. height: math.unit(6 + 3/12, "feet"),
  54162. default: true
  54163. },
  54164. ]
  54165. ))
  54166. characterMakers.push(() => makeCharacter(
  54167. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  54168. {
  54169. front: {
  54170. height: math.unit(16 + 8/12, "feet"),
  54171. weight: math.unit(9000, "lb"),
  54172. name: "Front",
  54173. image: {
  54174. source: "./media/characters/lokuto-takama/front.svg",
  54175. extra: 1774/1632,
  54176. bottom: 147/1921
  54177. },
  54178. extraAttributes: {
  54179. "bustWidth": {
  54180. name: "Bust Width",
  54181. power: 1,
  54182. type: "length",
  54183. base: math.unit(2.4, "meters")
  54184. },
  54185. "breastWeight": {
  54186. name: "Breast Weight",
  54187. power: 3,
  54188. type: "mass",
  54189. base: math.unit(1000, "kg")
  54190. },
  54191. }
  54192. },
  54193. },
  54194. [
  54195. {
  54196. name: "Normal",
  54197. height: math.unit(16 + 8/12, "feet"),
  54198. default: true
  54199. },
  54200. ]
  54201. ))
  54202. characterMakers.push(() => makeCharacter(
  54203. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  54204. {
  54205. front: {
  54206. height: math.unit(10, "cm"),
  54207. weight: math.unit(850, "grams"),
  54208. name: "Front",
  54209. image: {
  54210. source: "./media/characters/owak-bone/front.svg",
  54211. extra: 1965/1801,
  54212. bottom: 31/1996
  54213. }
  54214. },
  54215. },
  54216. [
  54217. {
  54218. name: "Normal",
  54219. height: math.unit(10, "cm"),
  54220. default: true
  54221. },
  54222. ]
  54223. ))
  54224. characterMakers.push(() => makeCharacter(
  54225. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  54226. {
  54227. front: {
  54228. height: math.unit(2 + 6/12, "feet"),
  54229. weight: math.unit(9, "lb"),
  54230. name: "Front",
  54231. image: {
  54232. source: "./media/characters/muffin/front.svg",
  54233. extra: 1220/1195,
  54234. bottom: 84/1304
  54235. }
  54236. },
  54237. },
  54238. [
  54239. {
  54240. name: "Normal",
  54241. height: math.unit(2 + 6/12, "feet"),
  54242. default: true
  54243. },
  54244. ]
  54245. ))
  54246. characterMakers.push(() => makeCharacter(
  54247. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  54248. {
  54249. front: {
  54250. height: math.unit(7, "feet"),
  54251. name: "Front",
  54252. image: {
  54253. source: "./media/characters/chimera/front.svg",
  54254. extra: 1752/1614,
  54255. bottom: 68/1820
  54256. }
  54257. },
  54258. },
  54259. [
  54260. {
  54261. name: "Normal",
  54262. height: math.unit(7, "feet")
  54263. },
  54264. {
  54265. name: "Gigamacro",
  54266. height: math.unit(2.9, "gigameters"),
  54267. default: true
  54268. },
  54269. {
  54270. name: "Universal",
  54271. height: math.unit(1.56e26, "yottameters")
  54272. },
  54273. ]
  54274. ))
  54275. characterMakers.push(() => makeCharacter(
  54276. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  54277. {
  54278. front: {
  54279. height: math.unit(3, "feet"),
  54280. weight: math.unit(20, "lb"),
  54281. name: "Front",
  54282. image: {
  54283. source: "./media/characters/kit-fennec-fox/front.svg",
  54284. extra: 1027/932,
  54285. bottom: 16/1043
  54286. }
  54287. },
  54288. back: {
  54289. height: math.unit(3, "feet"),
  54290. weight: math.unit(20, "lb"),
  54291. name: "Back",
  54292. image: {
  54293. source: "./media/characters/kit-fennec-fox/back.svg",
  54294. extra: 1027/932,
  54295. bottom: 16/1043
  54296. }
  54297. },
  54298. },
  54299. [
  54300. {
  54301. name: "Normal",
  54302. height: math.unit(3, "feet"),
  54303. default: true
  54304. },
  54305. ]
  54306. ))
  54307. characterMakers.push(() => makeCharacter(
  54308. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  54309. {
  54310. front: {
  54311. height: math.unit(167, "cm"),
  54312. name: "Front",
  54313. image: {
  54314. source: "./media/characters/blue-otter/front.svg",
  54315. extra: 1951/1920,
  54316. bottom: 31/1982
  54317. }
  54318. },
  54319. },
  54320. [
  54321. {
  54322. name: "Otter-Sized",
  54323. height: math.unit(100, "cm")
  54324. },
  54325. {
  54326. name: "Normal",
  54327. height: math.unit(167, "cm"),
  54328. default: true
  54329. },
  54330. ]
  54331. ))
  54332. characterMakers.push(() => makeCharacter(
  54333. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  54334. {
  54335. front: {
  54336. height: math.unit(4 + 4/12, "feet"),
  54337. name: "Front",
  54338. image: {
  54339. source: "./media/characters/maverick-leopard-gecko/front.svg",
  54340. extra: 1072/1067,
  54341. bottom: 117/1189
  54342. }
  54343. },
  54344. back: {
  54345. height: math.unit(4 + 4/12, "feet"),
  54346. name: "Back",
  54347. image: {
  54348. source: "./media/characters/maverick-leopard-gecko/back.svg",
  54349. extra: 1135/1129,
  54350. bottom: 57/1192
  54351. }
  54352. },
  54353. head: {
  54354. height: math.unit(1.77, "feet"),
  54355. name: "Head",
  54356. image: {
  54357. source: "./media/characters/maverick-leopard-gecko/head.svg"
  54358. }
  54359. },
  54360. },
  54361. [
  54362. {
  54363. name: "Normal",
  54364. height: math.unit(4 + 4/12, "feet"),
  54365. default: true
  54366. },
  54367. ]
  54368. ))
  54369. characterMakers.push(() => makeCharacter(
  54370. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  54371. {
  54372. front: {
  54373. height: math.unit(2, "inches"),
  54374. name: "Front",
  54375. image: {
  54376. source: "./media/characters/carley-hartford/front.svg",
  54377. extra: 1035/988,
  54378. bottom: 23/1058
  54379. }
  54380. },
  54381. back: {
  54382. height: math.unit(2, "inches"),
  54383. name: "Back",
  54384. image: {
  54385. source: "./media/characters/carley-hartford/back.svg",
  54386. extra: 1035/988,
  54387. bottom: 23/1058
  54388. }
  54389. },
  54390. dressed: {
  54391. height: math.unit(2, "inches"),
  54392. name: "Dressed",
  54393. image: {
  54394. source: "./media/characters/carley-hartford/dressed.svg",
  54395. extra: 651/620,
  54396. bottom: 0/651
  54397. }
  54398. },
  54399. },
  54400. [
  54401. {
  54402. name: "Micro",
  54403. height: math.unit(2, "inches"),
  54404. default: true
  54405. },
  54406. {
  54407. name: "Macro",
  54408. height: math.unit(6 + 3/12, "feet")
  54409. },
  54410. ]
  54411. ))
  54412. characterMakers.push(() => makeCharacter(
  54413. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  54414. {
  54415. front: {
  54416. height: math.unit(2 + 3/12, "feet"),
  54417. weight: math.unit(15 + 7/16, "lb"),
  54418. name: "Front",
  54419. image: {
  54420. source: "./media/characters/duke/front.svg",
  54421. extra: 910/815,
  54422. bottom: 30/940
  54423. }
  54424. },
  54425. },
  54426. [
  54427. {
  54428. name: "Normal",
  54429. height: math.unit(2 + 3/12, "feet"),
  54430. default: true
  54431. },
  54432. ]
  54433. ))
  54434. characterMakers.push(() => makeCharacter(
  54435. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  54436. {
  54437. front: {
  54438. height: math.unit(5 + 4/12, "feet"),
  54439. weight: math.unit(156, "lb"),
  54440. name: "Front",
  54441. image: {
  54442. source: "./media/characters/dein/front.svg",
  54443. extra: 855/815,
  54444. bottom: 48/903
  54445. }
  54446. },
  54447. side: {
  54448. height: math.unit(5 + 4/12, "feet"),
  54449. weight: math.unit(156, "lb"),
  54450. name: "side",
  54451. image: {
  54452. source: "./media/characters/dein/side.svg",
  54453. extra: 846/803,
  54454. bottom: 25/871
  54455. }
  54456. },
  54457. maw: {
  54458. height: math.unit(1.45, "feet"),
  54459. name: "Maw",
  54460. image: {
  54461. source: "./media/characters/dein/maw.svg"
  54462. }
  54463. },
  54464. },
  54465. [
  54466. {
  54467. name: "Ferret Sized",
  54468. height: math.unit(2 + 5/12, "feet")
  54469. },
  54470. {
  54471. name: "Normal",
  54472. height: math.unit(5 + 4/12, "feet"),
  54473. default: true
  54474. },
  54475. ]
  54476. ))
  54477. characterMakers.push(() => makeCharacter(
  54478. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  54479. {
  54480. front: {
  54481. height: math.unit(84 + 8/12, "feet"),
  54482. weight: math.unit(942180, "lb"),
  54483. name: "Front",
  54484. image: {
  54485. source: "./media/characters/daurine-arima/front.svg",
  54486. extra: 1989/1782,
  54487. bottom: 37/2026
  54488. }
  54489. },
  54490. side: {
  54491. height: math.unit(84 + 8/12, "feet"),
  54492. weight: math.unit(942180, "lb"),
  54493. name: "Side",
  54494. image: {
  54495. source: "./media/characters/daurine-arima/side.svg",
  54496. extra: 1997/1790,
  54497. bottom: 21/2018
  54498. }
  54499. },
  54500. back: {
  54501. height: math.unit(84 + 8/12, "feet"),
  54502. weight: math.unit(942180, "lb"),
  54503. name: "Back",
  54504. image: {
  54505. source: "./media/characters/daurine-arima/back.svg",
  54506. extra: 1992/1800,
  54507. bottom: 12/2004
  54508. }
  54509. },
  54510. head: {
  54511. height: math.unit(15.5, "feet"),
  54512. name: "Head",
  54513. image: {
  54514. source: "./media/characters/daurine-arima/head.svg"
  54515. }
  54516. },
  54517. headAlt: {
  54518. height: math.unit(19.19, "feet"),
  54519. name: "Head (Alt)",
  54520. image: {
  54521. source: "./media/characters/daurine-arima/head-alt.svg"
  54522. }
  54523. },
  54524. },
  54525. [
  54526. {
  54527. name: "Minimum height",
  54528. height: math.unit(8 + 10/12, "feet")
  54529. },
  54530. {
  54531. name: "Comfort height",
  54532. height: math.unit(19 + 6 /12, "feet")
  54533. },
  54534. {
  54535. name: "\"Normal\" height",
  54536. height: math.unit(28 + 10/12, "feet")
  54537. },
  54538. {
  54539. name: "Base height",
  54540. height: math.unit(84 + 8/12, "feet"),
  54541. default: true
  54542. },
  54543. {
  54544. name: "Mini-macro",
  54545. height: math.unit(2360, "feet")
  54546. },
  54547. {
  54548. name: "Macro",
  54549. height: math.unit(10, "miles")
  54550. },
  54551. {
  54552. name: "Goddess",
  54553. height: math.unit(9.99e40, "yottameters")
  54554. },
  54555. ]
  54556. ))
  54557. characterMakers.push(() => makeCharacter(
  54558. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  54559. {
  54560. front: {
  54561. height: math.unit(2.3, "meters"),
  54562. name: "Front",
  54563. image: {
  54564. source: "./media/characters/cilenomon/front.svg",
  54565. extra: 1963/1778,
  54566. bottom: 54/2017
  54567. }
  54568. },
  54569. },
  54570. [
  54571. {
  54572. name: "Normal",
  54573. height: math.unit(2.3, "meters"),
  54574. default: true
  54575. },
  54576. {
  54577. name: "Big",
  54578. height: math.unit(5, "meters")
  54579. },
  54580. {
  54581. name: "Macro",
  54582. height: math.unit(30, "meters")
  54583. },
  54584. {
  54585. name: "True",
  54586. height: math.unit(1, "universe")
  54587. },
  54588. ]
  54589. ))
  54590. characterMakers.push(() => makeCharacter(
  54591. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  54592. {
  54593. front: {
  54594. height: math.unit(5, "feet"),
  54595. name: "Front",
  54596. image: {
  54597. source: "./media/characters/sen-mink/front.svg",
  54598. extra: 1727/1675,
  54599. bottom: 35/1762
  54600. }
  54601. },
  54602. },
  54603. [
  54604. {
  54605. name: "Normal",
  54606. height: math.unit(5, "feet"),
  54607. default: true
  54608. },
  54609. ]
  54610. ))
  54611. characterMakers.push(() => makeCharacter(
  54612. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  54613. {
  54614. front: {
  54615. height: math.unit(5.42999, "feet"),
  54616. weight: math.unit(100, "lb"),
  54617. name: "Front",
  54618. image: {
  54619. source: "./media/characters/ophois/front.svg",
  54620. extra: 1429/1286,
  54621. bottom: 60/1489
  54622. }
  54623. },
  54624. },
  54625. [
  54626. {
  54627. name: "Normal",
  54628. height: math.unit(5.42999, "feet"),
  54629. default: true
  54630. },
  54631. ]
  54632. ))
  54633. characterMakers.push(() => makeCharacter(
  54634. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  54635. {
  54636. front: {
  54637. height: math.unit(2, "meters"),
  54638. name: "Front",
  54639. image: {
  54640. source: "./media/characters/riley/front.svg",
  54641. extra: 1779/1754,
  54642. bottom: 139/1918
  54643. }
  54644. },
  54645. },
  54646. [
  54647. {
  54648. name: "Normal",
  54649. height: math.unit(2, "meters"),
  54650. default: true
  54651. },
  54652. ]
  54653. ))
  54654. characterMakers.push(() => makeCharacter(
  54655. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  54656. {
  54657. front: {
  54658. height: math.unit(6 + 2/12, "feet"),
  54659. weight: math.unit(195, "lb"),
  54660. preyCapacity: math.unit(6, "people"),
  54661. name: "Front",
  54662. image: {
  54663. source: "./media/characters/shuken-flash/front.svg",
  54664. extra: 1905/1739,
  54665. bottom: 65/1970
  54666. }
  54667. },
  54668. back: {
  54669. height: math.unit(6 + 2/12, "feet"),
  54670. weight: math.unit(195, "lb"),
  54671. preyCapacity: math.unit(6, "people"),
  54672. name: "Back",
  54673. image: {
  54674. source: "./media/characters/shuken-flash/back.svg",
  54675. extra: 1912/1751,
  54676. bottom: 13/1925
  54677. }
  54678. },
  54679. },
  54680. [
  54681. {
  54682. name: "Normal",
  54683. height: math.unit(6 + 2/12, "feet"),
  54684. default: true
  54685. },
  54686. ]
  54687. ))
  54688. characterMakers.push(() => makeCharacter(
  54689. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  54690. {
  54691. front: {
  54692. height: math.unit(5 + 9/12, "feet"),
  54693. weight: math.unit(150, "lb"),
  54694. name: "Front",
  54695. image: {
  54696. source: "./media/characters/plat/front.svg",
  54697. extra: 1816/1703,
  54698. bottom: 43/1859
  54699. }
  54700. },
  54701. side: {
  54702. height: math.unit(5 + 9/12, "feet"),
  54703. weight: math.unit(300, "lb"),
  54704. name: "Side",
  54705. image: {
  54706. source: "./media/characters/plat/side.svg",
  54707. extra: 1824/1699,
  54708. bottom: 18/1842
  54709. }
  54710. },
  54711. },
  54712. [
  54713. {
  54714. name: "Normal",
  54715. height: math.unit(5 + 9/12, "feet"),
  54716. default: true
  54717. },
  54718. ]
  54719. ))
  54720. characterMakers.push(() => makeCharacter(
  54721. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  54722. {
  54723. front: {
  54724. height: math.unit(9, "feet"),
  54725. weight: math.unit(1800, "lb"),
  54726. name: "Front",
  54727. image: {
  54728. source: "./media/characters/elaine/front.svg",
  54729. extra: 1833/1354,
  54730. bottom: 25/1858
  54731. }
  54732. },
  54733. back: {
  54734. height: math.unit(8.8, "feet"),
  54735. weight: math.unit(1800, "lb"),
  54736. name: "Back",
  54737. image: {
  54738. source: "./media/characters/elaine/back.svg",
  54739. extra: 1641/1233,
  54740. bottom: 53/1694
  54741. }
  54742. },
  54743. },
  54744. [
  54745. {
  54746. name: "Normal",
  54747. height: math.unit(9, "feet"),
  54748. default: true
  54749. },
  54750. ]
  54751. ))
  54752. characterMakers.push(() => makeCharacter(
  54753. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  54754. {
  54755. front: {
  54756. height: math.unit(17 + 9/12, "feet"),
  54757. weight: math.unit(8000, "lb"),
  54758. name: "Front",
  54759. image: {
  54760. source: "./media/characters/vera-raven/front.svg",
  54761. extra: 1457/1412,
  54762. bottom: 121/1578
  54763. }
  54764. },
  54765. side: {
  54766. height: math.unit(17 + 9/12, "feet"),
  54767. weight: math.unit(8000, "lb"),
  54768. name: "Side",
  54769. image: {
  54770. source: "./media/characters/vera-raven/side.svg",
  54771. extra: 1510/1464,
  54772. bottom: 54/1564
  54773. }
  54774. },
  54775. },
  54776. [
  54777. {
  54778. name: "Normal",
  54779. height: math.unit(17 + 9/12, "feet"),
  54780. default: true
  54781. },
  54782. ]
  54783. ))
  54784. characterMakers.push(() => makeCharacter(
  54785. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  54786. {
  54787. dressed: {
  54788. height: math.unit(6 + 9/12, "feet"),
  54789. name: "Dressed",
  54790. image: {
  54791. source: "./media/characters/nakisha/dressed.svg",
  54792. extra: 1909/1757,
  54793. bottom: 48/1957
  54794. }
  54795. },
  54796. nude: {
  54797. height: math.unit(6 + 9/12, "feet"),
  54798. name: "Nude",
  54799. image: {
  54800. source: "./media/characters/nakisha/nude.svg",
  54801. extra: 1917/1765,
  54802. bottom: 34/1951
  54803. }
  54804. },
  54805. },
  54806. [
  54807. {
  54808. name: "Normal",
  54809. height: math.unit(6 + 9/12, "feet"),
  54810. default: true
  54811. },
  54812. ]
  54813. ))
  54814. characterMakers.push(() => makeCharacter(
  54815. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  54816. {
  54817. front: {
  54818. height: math.unit(87, "meters"),
  54819. name: "Front",
  54820. image: {
  54821. source: "./media/characters/serafin/front.svg",
  54822. extra: 1919/1776,
  54823. bottom: 65/1984
  54824. }
  54825. },
  54826. },
  54827. [
  54828. {
  54829. name: "Normal",
  54830. height: math.unit(87, "meters"),
  54831. default: true
  54832. },
  54833. ]
  54834. ))
  54835. characterMakers.push(() => makeCharacter(
  54836. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  54837. {
  54838. front: {
  54839. height: math.unit(6, "feet"),
  54840. weight: math.unit(200, "lb"),
  54841. name: "Front",
  54842. image: {
  54843. source: "./media/characters/poptart/front.svg",
  54844. extra: 615/583,
  54845. bottom: 23/638
  54846. }
  54847. },
  54848. back: {
  54849. height: math.unit(6, "feet"),
  54850. weight: math.unit(200, "lb"),
  54851. name: "Back",
  54852. image: {
  54853. source: "./media/characters/poptart/back.svg",
  54854. extra: 617/584,
  54855. bottom: 22/639
  54856. }
  54857. },
  54858. frontNsfw: {
  54859. height: math.unit(6, "feet"),
  54860. weight: math.unit(200, "lb"),
  54861. name: "Front (NSFW)",
  54862. image: {
  54863. source: "./media/characters/poptart/front-nsfw.svg",
  54864. extra: 615/583,
  54865. bottom: 23/638
  54866. }
  54867. },
  54868. backNsfw: {
  54869. height: math.unit(6, "feet"),
  54870. weight: math.unit(200, "lb"),
  54871. name: "Back (NSFW)",
  54872. image: {
  54873. source: "./media/characters/poptart/back-nsfw.svg",
  54874. extra: 617/584,
  54875. bottom: 22/639
  54876. }
  54877. },
  54878. hand: {
  54879. height: math.unit(1.14, "feet"),
  54880. name: "Hand",
  54881. image: {
  54882. source: "./media/characters/poptart/hand.svg"
  54883. }
  54884. },
  54885. foot: {
  54886. height: math.unit(1.5, "feet"),
  54887. name: "Foot",
  54888. image: {
  54889. source: "./media/characters/poptart/foot.svg"
  54890. }
  54891. },
  54892. },
  54893. [
  54894. {
  54895. name: "Normal",
  54896. height: math.unit(6, "feet"),
  54897. default: true
  54898. },
  54899. {
  54900. name: "Grande",
  54901. height: math.unit(350, "feet")
  54902. },
  54903. {
  54904. name: "Massif",
  54905. height: math.unit(967, "feet")
  54906. },
  54907. ]
  54908. ))
  54909. characterMakers.push(() => makeCharacter(
  54910. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  54911. {
  54912. hyenaSide: {
  54913. height: math.unit(120, "cm"),
  54914. weight: math.unit(120, "lb"),
  54915. name: "Side",
  54916. image: {
  54917. source: "./media/characters/trance/hyena-side.svg",
  54918. extra: 998/904,
  54919. bottom: 76/1074
  54920. }
  54921. },
  54922. },
  54923. [
  54924. {
  54925. name: "Normal",
  54926. height: math.unit(120, "cm"),
  54927. default: true
  54928. },
  54929. {
  54930. name: "Dire",
  54931. height: math.unit(230, "cm")
  54932. },
  54933. {
  54934. name: "Macro",
  54935. height: math.unit(37, "feet")
  54936. },
  54937. ]
  54938. ))
  54939. characterMakers.push(() => makeCharacter(
  54940. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  54941. {
  54942. front: {
  54943. height: math.unit(6 + 3/12, "feet"),
  54944. name: "Front",
  54945. image: {
  54946. source: "./media/characters/michael-berretta/front.svg",
  54947. extra: 515/494,
  54948. bottom: 20/535
  54949. }
  54950. },
  54951. back: {
  54952. height: math.unit(6 + 3/12, "feet"),
  54953. name: "Back",
  54954. image: {
  54955. source: "./media/characters/michael-berretta/back.svg",
  54956. extra: 520/497,
  54957. bottom: 21/541
  54958. }
  54959. },
  54960. frontNsfw: {
  54961. height: math.unit(6 + 3/12, "feet"),
  54962. name: "Front (NSFW)",
  54963. image: {
  54964. source: "./media/characters/michael-berretta/front-nsfw.svg",
  54965. extra: 515/494,
  54966. bottom: 20/535
  54967. }
  54968. },
  54969. dick: {
  54970. height: math.unit(1, "feet"),
  54971. name: "Dick",
  54972. image: {
  54973. source: "./media/characters/michael-berretta/dick.svg"
  54974. }
  54975. },
  54976. },
  54977. [
  54978. {
  54979. name: "Normal",
  54980. height: math.unit(6 + 3/12, "feet"),
  54981. default: true
  54982. },
  54983. {
  54984. name: "Big",
  54985. height: math.unit(12, "feet")
  54986. },
  54987. {
  54988. name: "Macro",
  54989. height: math.unit(187.5, "feet")
  54990. },
  54991. ]
  54992. ))
  54993. characterMakers.push(() => makeCharacter(
  54994. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  54995. {
  54996. front: {
  54997. height: math.unit(9 + 9/12, "feet"),
  54998. weight: math.unit(1244, "lb"),
  54999. name: "Front",
  55000. image: {
  55001. source: "./media/characters/stella-edgecomb/front.svg",
  55002. extra: 1835/1706,
  55003. bottom: 49/1884
  55004. }
  55005. },
  55006. pen: {
  55007. height: math.unit(0.95, "feet"),
  55008. name: "Pen",
  55009. image: {
  55010. source: "./media/characters/stella-edgecomb/pen.svg"
  55011. }
  55012. },
  55013. },
  55014. [
  55015. {
  55016. name: "Cozy Bear",
  55017. height: math.unit(0.5, "inches")
  55018. },
  55019. {
  55020. name: "Normal",
  55021. height: math.unit(9 + 9/12, "feet"),
  55022. default: true
  55023. },
  55024. {
  55025. name: "Giga Bear",
  55026. height: math.unit(1, "mile")
  55027. },
  55028. {
  55029. name: "Great Bear",
  55030. height: math.unit(53, "miles")
  55031. },
  55032. {
  55033. name: "Goddess Bear",
  55034. height: math.unit(40000, "miles")
  55035. },
  55036. {
  55037. name: "Sun Bear",
  55038. height: math.unit(900000, "miles")
  55039. },
  55040. ]
  55041. ))
  55042. characterMakers.push(() => makeCharacter(
  55043. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  55044. {
  55045. anthroFront: {
  55046. height: math.unit(556, "cm"),
  55047. weight: math.unit(2650, "kg"),
  55048. preyCapacity: math.unit(3, "people"),
  55049. name: "Front",
  55050. image: {
  55051. source: "./media/characters/ash´iika/front.svg",
  55052. extra: 710/673,
  55053. bottom: 15/725
  55054. },
  55055. form: "anthro",
  55056. default: true
  55057. },
  55058. anthroSide: {
  55059. height: math.unit(556, "cm"),
  55060. weight: math.unit(2650, "kg"),
  55061. preyCapacity: math.unit(3, "people"),
  55062. name: "Side",
  55063. image: {
  55064. source: "./media/characters/ash´iika/side.svg",
  55065. extra: 696/676,
  55066. bottom: 13/709
  55067. },
  55068. form: "anthro"
  55069. },
  55070. anthroDressed: {
  55071. height: math.unit(556, "cm"),
  55072. weight: math.unit(2650, "kg"),
  55073. preyCapacity: math.unit(3, "people"),
  55074. name: "Dressed",
  55075. image: {
  55076. source: "./media/characters/ash´iika/dressed.svg",
  55077. extra: 710/673,
  55078. bottom: 15/725
  55079. },
  55080. form: "anthro"
  55081. },
  55082. anthroHead: {
  55083. height: math.unit(3.5, "feet"),
  55084. name: "Head",
  55085. image: {
  55086. source: "./media/characters/ash´iika/head.svg",
  55087. extra: 348/291,
  55088. bottom: 45/393
  55089. },
  55090. form: "anthro"
  55091. },
  55092. feralSide: {
  55093. height: math.unit(870, "cm"),
  55094. weight: math.unit(17500, "kg"),
  55095. preyCapacity: math.unit(15, "people"),
  55096. name: "Side",
  55097. image: {
  55098. source: "./media/characters/ash´iika/feral.svg",
  55099. extra: 595/199,
  55100. bottom: 7/602
  55101. },
  55102. form: "feral",
  55103. default: true,
  55104. },
  55105. },
  55106. [
  55107. {
  55108. name: "Normal",
  55109. height: math.unit(556, "cm"),
  55110. default: true,
  55111. form: "anthro"
  55112. },
  55113. {
  55114. name: "Macro",
  55115. height: math.unit(88, "meters"),
  55116. form: "anthro"
  55117. },
  55118. {
  55119. name: "Normal",
  55120. height: math.unit(870, "cm"),
  55121. default: true,
  55122. form: "feral"
  55123. },
  55124. {
  55125. name: "Large",
  55126. height: math.unit(25, "meters"),
  55127. form: "feral"
  55128. },
  55129. ],
  55130. {
  55131. "anthro": {
  55132. name: "Anthro",
  55133. default: true
  55134. },
  55135. "feral": {
  55136. name: "Feral",
  55137. },
  55138. }
  55139. ))
  55140. characterMakers.push(() => makeCharacter(
  55141. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  55142. {
  55143. front: {
  55144. height: math.unit(10, "feet"),
  55145. weight: math.unit(800, "lb"),
  55146. name: "Front",
  55147. image: {
  55148. source: "./media/characters/yen/front.svg",
  55149. extra: 443/411,
  55150. bottom: 6/449
  55151. }
  55152. },
  55153. sleeping: {
  55154. height: math.unit(10, "feet"),
  55155. weight: math.unit(800, "lb"),
  55156. name: "Sleeping",
  55157. image: {
  55158. source: "./media/characters/yen/sleeping.svg",
  55159. extra: 470/422,
  55160. bottom: 0/470
  55161. }
  55162. },
  55163. head: {
  55164. height: math.unit(2.2, "feet"),
  55165. name: "Head",
  55166. image: {
  55167. source: "./media/characters/yen/head.svg"
  55168. }
  55169. },
  55170. headAlt: {
  55171. height: math.unit(2.1, "feet"),
  55172. name: "Head (Alt)",
  55173. image: {
  55174. source: "./media/characters/yen/head-alt.svg"
  55175. }
  55176. },
  55177. },
  55178. [
  55179. {
  55180. name: "Normal",
  55181. height: math.unit(10, "feet"),
  55182. default: true
  55183. },
  55184. ]
  55185. ))
  55186. characterMakers.push(() => makeCharacter(
  55187. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  55188. {
  55189. front: {
  55190. height: math.unit(12, "feet"),
  55191. name: "Front",
  55192. image: {
  55193. source: "./media/characters/citra/front.svg",
  55194. extra: 1950/1710,
  55195. bottom: 47/1997
  55196. }
  55197. },
  55198. },
  55199. [
  55200. {
  55201. name: "Normal",
  55202. height: math.unit(12, "feet"),
  55203. default: true
  55204. },
  55205. ]
  55206. ))
  55207. characterMakers.push(() => makeCharacter(
  55208. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  55209. {
  55210. side: {
  55211. height: math.unit(7 + 10/12, "feet"),
  55212. name: "Side",
  55213. image: {
  55214. source: "./media/characters/sholstim/side.svg",
  55215. extra: 786/682,
  55216. bottom: 40/826
  55217. }
  55218. },
  55219. },
  55220. [
  55221. {
  55222. name: "Normal",
  55223. height: math.unit(7 + 10/12, "feet"),
  55224. default: true
  55225. },
  55226. ]
  55227. ))
  55228. characterMakers.push(() => makeCharacter(
  55229. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  55230. {
  55231. front: {
  55232. height: math.unit(3.10, "meters"),
  55233. name: "Front",
  55234. image: {
  55235. source: "./media/characters/aggyn/front.svg",
  55236. extra: 1188/963,
  55237. bottom: 24/1212
  55238. }
  55239. },
  55240. },
  55241. [
  55242. {
  55243. name: "Normal",
  55244. height: math.unit(3.10, "meters"),
  55245. default: true
  55246. },
  55247. ]
  55248. ))
  55249. characterMakers.push(() => makeCharacter(
  55250. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  55251. {
  55252. front: {
  55253. height: math.unit(7 + 5/12, "feet"),
  55254. weight: math.unit(687, "lb"),
  55255. name: "Front",
  55256. image: {
  55257. source: "./media/characters/alsandair-hergenroether/front.svg",
  55258. extra: 1251/1186,
  55259. bottom: 75/1326
  55260. }
  55261. },
  55262. back: {
  55263. height: math.unit(7 + 5/12, "feet"),
  55264. weight: math.unit(687, "lb"),
  55265. name: "Back",
  55266. image: {
  55267. source: "./media/characters/alsandair-hergenroether/back.svg",
  55268. extra: 1290/1229,
  55269. bottom: 17/1307
  55270. }
  55271. },
  55272. },
  55273. [
  55274. {
  55275. name: "Max Compression",
  55276. height: math.unit(7 + 5/12, "feet"),
  55277. default: true
  55278. },
  55279. {
  55280. name: "\"Normal\"",
  55281. height: math.unit(2, "universes")
  55282. },
  55283. ]
  55284. ))
  55285. characterMakers.push(() => makeCharacter(
  55286. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  55287. {
  55288. front: {
  55289. height: math.unit(4 + 1/12, "feet"),
  55290. weight: math.unit(92, "lb"),
  55291. name: "Front",
  55292. image: {
  55293. source: "./media/characters/ie/front.svg",
  55294. extra: 1585/1352,
  55295. bottom: 91/1676
  55296. }
  55297. },
  55298. },
  55299. [
  55300. {
  55301. name: "Normal",
  55302. height: math.unit(4 + 1/12, "feet"),
  55303. default: true
  55304. },
  55305. ]
  55306. ))
  55307. characterMakers.push(() => makeCharacter(
  55308. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  55309. {
  55310. anthro: {
  55311. height: math.unit(6, "feet"),
  55312. weight: math.unit(150, "lb"),
  55313. name: "Front",
  55314. image: {
  55315. source: "./media/characters/willow/anthro.svg",
  55316. extra: 1073/986,
  55317. bottom: 34/1107
  55318. },
  55319. form: "anthro",
  55320. default: true
  55321. },
  55322. taur: {
  55323. height: math.unit(6, "feet"),
  55324. weight: math.unit(150, "lb"),
  55325. name: "Side",
  55326. image: {
  55327. source: "./media/characters/willow/taur.svg",
  55328. extra: 647/512,
  55329. bottom: 136/783
  55330. },
  55331. form: "taur",
  55332. default: true
  55333. },
  55334. },
  55335. [
  55336. {
  55337. name: "Humanoid",
  55338. height: math.unit(2.7, "meters"),
  55339. form: "anthro"
  55340. },
  55341. {
  55342. name: "Normal",
  55343. height: math.unit(9, "meters"),
  55344. form: "anthro",
  55345. default: true
  55346. },
  55347. {
  55348. name: "Humanoid",
  55349. height: math.unit(2.1, "meters"),
  55350. form: "taur"
  55351. },
  55352. {
  55353. name: "Normal",
  55354. height: math.unit(7, "meters"),
  55355. form: "taur",
  55356. default: true
  55357. },
  55358. ],
  55359. {
  55360. "anthro": {
  55361. name: "Anthro",
  55362. default: true
  55363. },
  55364. "taur": {
  55365. name: "Taur",
  55366. },
  55367. }
  55368. ))
  55369. characterMakers.push(() => makeCharacter(
  55370. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  55371. {
  55372. front: {
  55373. height: math.unit(2 + 5/12, "feet"),
  55374. name: "Front",
  55375. image: {
  55376. source: "./media/characters/kyan/front.svg",
  55377. extra: 460/334,
  55378. bottom: 23/483
  55379. },
  55380. extraAttributes: {
  55381. "toeLength": {
  55382. name: "Toe Length",
  55383. power: 1,
  55384. type: "length",
  55385. base: math.unit(7, "cm")
  55386. },
  55387. "toeclawLength": {
  55388. name: "Toeclaw Length",
  55389. power: 1,
  55390. type: "length",
  55391. base: math.unit(4.7, "cm")
  55392. },
  55393. "earHeight": {
  55394. name: "Ear Height",
  55395. power: 1,
  55396. type: "length",
  55397. base: math.unit(14.1, "cm")
  55398. },
  55399. }
  55400. },
  55401. paws: {
  55402. height: math.unit(0.45, "feet"),
  55403. name: "Paws",
  55404. image: {
  55405. source: "./media/characters/kyan/paws.svg",
  55406. extra: 581/581,
  55407. bottom: 114/695
  55408. }
  55409. },
  55410. },
  55411. [
  55412. {
  55413. name: "Normal",
  55414. height: math.unit(2 + 5/12, "feet"),
  55415. default: true
  55416. },
  55417. ]
  55418. ))
  55419. characterMakers.push(() => makeCharacter(
  55420. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  55421. {
  55422. front: {
  55423. height: math.unit(2 + 2/3, "feet"),
  55424. name: "Front",
  55425. image: {
  55426. source: "./media/characters/xazzon/front.svg",
  55427. extra: 1109/984,
  55428. bottom: 42/1151
  55429. }
  55430. },
  55431. back: {
  55432. height: math.unit(2 + 2/3, "feet"),
  55433. name: "Back",
  55434. image: {
  55435. source: "./media/characters/xazzon/back.svg",
  55436. extra: 1095/971,
  55437. bottom: 23/1118
  55438. }
  55439. },
  55440. },
  55441. [
  55442. {
  55443. name: "Normal",
  55444. height: math.unit(2 + 2/3, "feet"),
  55445. default: true
  55446. },
  55447. ]
  55448. ))
  55449. characterMakers.push(() => makeCharacter(
  55450. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  55451. {
  55452. front: {
  55453. height: math.unit(8, "feet"),
  55454. weight: math.unit(300, "lb"),
  55455. name: "Front",
  55456. image: {
  55457. source: "./media/characters/khyla-shadowsong/front.svg",
  55458. extra: 861/798,
  55459. bottom: 32/893
  55460. }
  55461. },
  55462. side: {
  55463. height: math.unit(8, "feet"),
  55464. weight: math.unit(300, "lb"),
  55465. name: "Side",
  55466. image: {
  55467. source: "./media/characters/khyla-shadowsong/side.svg",
  55468. extra: 790/750,
  55469. bottom: 87/877
  55470. }
  55471. },
  55472. back: {
  55473. height: math.unit(8, "feet"),
  55474. weight: math.unit(300, "lb"),
  55475. name: "Back",
  55476. image: {
  55477. source: "./media/characters/khyla-shadowsong/back.svg",
  55478. extra: 855/808,
  55479. bottom: 14/869
  55480. }
  55481. },
  55482. head: {
  55483. height: math.unit(2.7, "feet"),
  55484. name: "Head",
  55485. image: {
  55486. source: "./media/characters/khyla-shadowsong/head.svg"
  55487. }
  55488. },
  55489. },
  55490. [
  55491. {
  55492. name: "Micro",
  55493. height: math.unit(6, "inches")
  55494. },
  55495. {
  55496. name: "Normal",
  55497. height: math.unit(8, "feet"),
  55498. default: true
  55499. },
  55500. ]
  55501. ))
  55502. characterMakers.push(() => makeCharacter(
  55503. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  55504. {
  55505. hyperFront: {
  55506. height: math.unit(9 + 4/12, "feet"),
  55507. weight: math.unit(2000, "lb"),
  55508. name: "Front",
  55509. image: {
  55510. source: "./media/characters/tiden/hyper-front.svg",
  55511. extra: 400/382,
  55512. bottom: 6/406
  55513. },
  55514. form: "hyper",
  55515. },
  55516. regularFront: {
  55517. height: math.unit(7 + 10/12, "feet"),
  55518. weight: math.unit(470, "lb"),
  55519. name: "Front",
  55520. image: {
  55521. source: "./media/characters/tiden/regular-front.svg",
  55522. extra: 468/442,
  55523. bottom: 6/474
  55524. },
  55525. form: "regular",
  55526. },
  55527. },
  55528. [
  55529. {
  55530. name: "Normal",
  55531. height: math.unit(9 + 4/12, "feet"),
  55532. default: true,
  55533. form: "hyper"
  55534. },
  55535. {
  55536. name: "Normal",
  55537. height: math.unit(7 + 10/12, "feet"),
  55538. default: true,
  55539. form: "regular"
  55540. },
  55541. ],
  55542. {
  55543. "hyper": {
  55544. name: "Hyper",
  55545. default: true
  55546. },
  55547. "regular": {
  55548. name: "Regular",
  55549. },
  55550. }
  55551. ))
  55552. characterMakers.push(() => makeCharacter(
  55553. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  55554. {
  55555. side: {
  55556. height: math.unit(6, "feet"),
  55557. weight: math.unit(150, "lb"),
  55558. name: "Side",
  55559. image: {
  55560. source: "./media/characters/jason-crowe/side.svg",
  55561. extra: 1771/766,
  55562. bottom: 219/1990
  55563. }
  55564. },
  55565. },
  55566. [
  55567. {
  55568. name: "Pocket Gryphon",
  55569. height: math.unit(6, "cm")
  55570. },
  55571. {
  55572. name: "Raven",
  55573. height: math.unit(60, "cm")
  55574. },
  55575. {
  55576. name: "Normal",
  55577. height: math.unit(1, "meter"),
  55578. default: true
  55579. },
  55580. ]
  55581. ))
  55582. characterMakers.push(() => makeCharacter(
  55583. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  55584. {
  55585. front: {
  55586. height: math.unit(9 + 6/12, "feet"),
  55587. weight: math.unit(1100, "lb"),
  55588. name: "Front",
  55589. image: {
  55590. source: "./media/characters/django/front.svg",
  55591. extra: 1231/1136,
  55592. bottom: 34/1265
  55593. }
  55594. },
  55595. side: {
  55596. height: math.unit(9 + 6/12, "feet"),
  55597. weight: math.unit(1100, "lb"),
  55598. name: "Side",
  55599. image: {
  55600. source: "./media/characters/django/side.svg",
  55601. extra: 1267/1174,
  55602. bottom: 9/1276
  55603. }
  55604. },
  55605. },
  55606. [
  55607. {
  55608. name: "Normal",
  55609. height: math.unit(9 + 6/12, "feet"),
  55610. default: true
  55611. },
  55612. {
  55613. name: "Macro 1",
  55614. height: math.unit(50, "feet")
  55615. },
  55616. {
  55617. name: "Macro 2",
  55618. height: math.unit(500, "feet")
  55619. },
  55620. {
  55621. name: "Mega Macro",
  55622. height: math.unit(5300, "feet")
  55623. },
  55624. ]
  55625. ))
  55626. characterMakers.push(() => makeCharacter(
  55627. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  55628. {
  55629. frontSfw: {
  55630. height: math.unit(120, "cm"),
  55631. weight: math.unit(15, "kg"),
  55632. name: "Front (SFW)",
  55633. image: {
  55634. source: "./media/characters/eri/front-sfw.svg",
  55635. extra: 1014/939,
  55636. bottom: 37/1051
  55637. },
  55638. form: "moth",
  55639. },
  55640. frontNsfw: {
  55641. height: math.unit(120, "cm"),
  55642. weight: math.unit(15, "kg"),
  55643. name: "Front (NSFW)",
  55644. image: {
  55645. source: "./media/characters/eri/front-nsfw.svg",
  55646. extra: 1014/939,
  55647. bottom: 37/1051
  55648. },
  55649. form: "moth",
  55650. default: true
  55651. },
  55652. egg: {
  55653. height: math.unit(10, "cm"),
  55654. name: "Egg",
  55655. image: {
  55656. source: "./media/characters/eri/egg.svg"
  55657. },
  55658. form: "egg",
  55659. default: true
  55660. },
  55661. },
  55662. [
  55663. {
  55664. name: "Normal",
  55665. height: math.unit(120, "cm"),
  55666. default: true,
  55667. form: "moth"
  55668. },
  55669. {
  55670. name: "Normal",
  55671. height: math.unit(10, "cm"),
  55672. default: true,
  55673. form: "egg"
  55674. },
  55675. ],
  55676. {
  55677. "moth": {
  55678. name: "Moth",
  55679. default: true
  55680. },
  55681. "egg": {
  55682. name: "Egg",
  55683. },
  55684. }
  55685. ))
  55686. characterMakers.push(() => makeCharacter(
  55687. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  55688. {
  55689. front: {
  55690. height: math.unit(200, "feet"),
  55691. name: "Front",
  55692. image: {
  55693. source: "./media/characters/bishop-dowser/front.svg",
  55694. extra: 933/868,
  55695. bottom: 106/1039
  55696. }
  55697. },
  55698. },
  55699. [
  55700. {
  55701. name: "Giant",
  55702. height: math.unit(200, "feet"),
  55703. default: true
  55704. },
  55705. ]
  55706. ))
  55707. characterMakers.push(() => makeCharacter(
  55708. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  55709. {
  55710. front: {
  55711. height: math.unit(2, "meters"),
  55712. preyCapacity: math.unit(3, "people"),
  55713. name: "Front",
  55714. image: {
  55715. source: "./media/characters/fryra/front.svg",
  55716. extra: 1025/948,
  55717. bottom: 30/1055
  55718. },
  55719. extraAttributes: {
  55720. "breastVolume": {
  55721. name: "Breast Volume",
  55722. power: 3,
  55723. type: "volume",
  55724. base: math.unit(8, "liters")
  55725. },
  55726. }
  55727. },
  55728. back: {
  55729. height: math.unit(2, "meters"),
  55730. preyCapacity: math.unit(3, "people"),
  55731. name: "Back",
  55732. image: {
  55733. source: "./media/characters/fryra/back.svg",
  55734. extra: 993/938,
  55735. bottom: 38/1031
  55736. },
  55737. extraAttributes: {
  55738. "breastVolume": {
  55739. name: "Breast Volume",
  55740. power: 3,
  55741. type: "volume",
  55742. base: math.unit(8, "liters")
  55743. },
  55744. }
  55745. },
  55746. head: {
  55747. height: math.unit(1.33, "feet"),
  55748. name: "Head",
  55749. image: {
  55750. source: "./media/characters/fryra/head.svg"
  55751. }
  55752. },
  55753. maw: {
  55754. height: math.unit(0.56, "feet"),
  55755. name: "Maw",
  55756. image: {
  55757. source: "./media/characters/fryra/maw.svg"
  55758. }
  55759. },
  55760. },
  55761. [
  55762. {
  55763. name: "Micro",
  55764. height: math.unit(5, "cm")
  55765. },
  55766. {
  55767. name: "Normal",
  55768. height: math.unit(2, "meters"),
  55769. default: true
  55770. },
  55771. {
  55772. name: "Small Macro",
  55773. height: math.unit(8, "meters")
  55774. },
  55775. {
  55776. name: "Macro",
  55777. height: math.unit(50, "meters")
  55778. },
  55779. {
  55780. name: "Megamacro",
  55781. height: math.unit(1, "km")
  55782. },
  55783. {
  55784. name: "Planetary",
  55785. height: math.unit(300000, "km")
  55786. },
  55787. {
  55788. name: "Universal",
  55789. height: math.unit(250, "lightyears")
  55790. },
  55791. {
  55792. name: "Fabric of Reality",
  55793. height: math.unit(1000, "multiverses")
  55794. },
  55795. ]
  55796. ))
  55797. characterMakers.push(() => makeCharacter(
  55798. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  55799. {
  55800. frontDressed: {
  55801. height: math.unit(6 + 2/12, "feet"),
  55802. name: "Front (Dressed)",
  55803. image: {
  55804. source: "./media/characters/fiera/front-dressed.svg",
  55805. extra: 1883/1793,
  55806. bottom: 70/1953
  55807. }
  55808. },
  55809. backDressed: {
  55810. height: math.unit(6 + 2/12, "feet"),
  55811. name: "Back (Dressed)",
  55812. image: {
  55813. source: "./media/characters/fiera/back-dressed.svg",
  55814. extra: 1847/1780,
  55815. bottom: 70/1917
  55816. }
  55817. },
  55818. frontNude: {
  55819. height: math.unit(6 + 2/12, "feet"),
  55820. name: "Front (Nude)",
  55821. image: {
  55822. source: "./media/characters/fiera/front-nude.svg",
  55823. extra: 1875/1785,
  55824. bottom: 66/1941
  55825. }
  55826. },
  55827. backNude: {
  55828. height: math.unit(6 + 2/12, "feet"),
  55829. name: "Back (Nude)",
  55830. image: {
  55831. source: "./media/characters/fiera/back-nude.svg",
  55832. extra: 1855/1788,
  55833. bottom: 44/1899
  55834. }
  55835. },
  55836. maw: {
  55837. height: math.unit(1.3, "feet"),
  55838. name: "Maw",
  55839. image: {
  55840. source: "./media/characters/fiera/maw.svg"
  55841. }
  55842. },
  55843. paw: {
  55844. height: math.unit(1, "feet"),
  55845. name: "Paw",
  55846. image: {
  55847. source: "./media/characters/fiera/paw.svg"
  55848. }
  55849. },
  55850. shoe: {
  55851. height: math.unit(1.05, "feet"),
  55852. name: "Shoe",
  55853. image: {
  55854. source: "./media/characters/fiera/shoe.svg"
  55855. }
  55856. },
  55857. },
  55858. [
  55859. {
  55860. name: "Normal",
  55861. height: math.unit(6 + 2/12, "feet"),
  55862. default: true
  55863. },
  55864. {
  55865. name: "Size Difference",
  55866. height: math.unit(13, "feet")
  55867. },
  55868. {
  55869. name: "Macro",
  55870. height: math.unit(60, "feet")
  55871. },
  55872. {
  55873. name: "Mega Macro",
  55874. height: math.unit(200, "feet")
  55875. },
  55876. ]
  55877. ))
  55878. characterMakers.push(() => makeCharacter(
  55879. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  55880. {
  55881. back: {
  55882. height: math.unit(6, "feet"),
  55883. name: "Back",
  55884. image: {
  55885. source: "./media/characters/flare/back.svg",
  55886. extra: 1883/1765,
  55887. bottom: 32/1915
  55888. }
  55889. },
  55890. },
  55891. [
  55892. {
  55893. name: "Normal",
  55894. height: math.unit(6 + 2/12, "feet"),
  55895. default: true
  55896. },
  55897. {
  55898. name: "Size Difference",
  55899. height: math.unit(13, "feet")
  55900. },
  55901. {
  55902. name: "Macro",
  55903. height: math.unit(60, "feet")
  55904. },
  55905. {
  55906. name: "Macro 2",
  55907. height: math.unit(100, "feet")
  55908. },
  55909. {
  55910. name: "Mega Macro",
  55911. height: math.unit(200, "feet")
  55912. },
  55913. ]
  55914. ))
  55915. characterMakers.push(() => makeCharacter(
  55916. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  55917. {
  55918. front: {
  55919. height: math.unit(2.2, "m"),
  55920. weight: math.unit(300, "kg"),
  55921. name: "Front",
  55922. image: {
  55923. source: "./media/characters/hanna/front.svg",
  55924. extra: 1696/1502,
  55925. bottom: 206/1902
  55926. }
  55927. },
  55928. },
  55929. [
  55930. {
  55931. name: "Humanoid",
  55932. height: math.unit(2.2, "meters")
  55933. },
  55934. {
  55935. name: "Normal",
  55936. height: math.unit(4.8, "meters"),
  55937. default: true
  55938. },
  55939. ]
  55940. ))
  55941. characterMakers.push(() => makeCharacter(
  55942. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  55943. {
  55944. front: {
  55945. height: math.unit(2.8, "meters"),
  55946. name: "Front",
  55947. image: {
  55948. source: "./media/characters/argo/front.svg",
  55949. extra: 731/518,
  55950. bottom: 84/815
  55951. }
  55952. },
  55953. },
  55954. [
  55955. {
  55956. name: "Normal",
  55957. height: math.unit(3, "meters"),
  55958. default: true
  55959. },
  55960. ]
  55961. ))
  55962. characterMakers.push(() => makeCharacter(
  55963. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  55964. {
  55965. side: {
  55966. height: math.unit(3.8, "meters"),
  55967. name: "Side",
  55968. image: {
  55969. source: "./media/characters/sybil/side.svg",
  55970. extra: 382/361,
  55971. bottom: 25/407
  55972. }
  55973. },
  55974. },
  55975. [
  55976. {
  55977. name: "Normal",
  55978. height: math.unit(3.8, "meters"),
  55979. default: true
  55980. },
  55981. ]
  55982. ))
  55983. characterMakers.push(() => makeCharacter(
  55984. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  55985. {
  55986. side: {
  55987. height: math.unit(6, "meters"),
  55988. name: "Side",
  55989. image: {
  55990. source: "./media/characters/plum/side.svg",
  55991. extra: 858/755,
  55992. bottom: 45/903
  55993. },
  55994. form: "taur",
  55995. default: true
  55996. },
  55997. back: {
  55998. height: math.unit(6.3, "meters"),
  55999. name: "Back",
  56000. image: {
  56001. source: "./media/characters/plum/back.svg",
  56002. extra: 887/813,
  56003. bottom: 32/919
  56004. },
  56005. form: "taur",
  56006. },
  56007. feral: {
  56008. height: math.unit(5.5, "meter"),
  56009. name: "Front",
  56010. image: {
  56011. source: "./media/characters/plum/feral.svg",
  56012. extra: 568/403,
  56013. bottom: 51/619
  56014. },
  56015. form: "feral",
  56016. default: true
  56017. },
  56018. head: {
  56019. height: math.unit(1.46, "meter"),
  56020. name: "Head",
  56021. image: {
  56022. source: "./media/characters/plum/head.svg"
  56023. },
  56024. form: "taur"
  56025. },
  56026. tailTop: {
  56027. height: math.unit(5.6, "meter"),
  56028. name: "Tail (Top)",
  56029. image: {
  56030. source: "./media/characters/plum/tail-top.svg"
  56031. },
  56032. form: "taur",
  56033. },
  56034. tailBottom: {
  56035. height: math.unit(5.6, "meter"),
  56036. name: "Tail (Bottom)",
  56037. image: {
  56038. source: "./media/characters/plum/tail-bottom.svg"
  56039. },
  56040. form: "taur",
  56041. },
  56042. feralHead: {
  56043. height: math.unit(2.56549521, "meter"),
  56044. name: "Head",
  56045. image: {
  56046. source: "./media/characters/plum/head.svg"
  56047. },
  56048. form: "feral"
  56049. },
  56050. feralTailTop: {
  56051. height: math.unit(5.44728435, "meter"),
  56052. name: "Tail (Top)",
  56053. image: {
  56054. source: "./media/characters/plum/tail-top.svg"
  56055. },
  56056. form: "feral",
  56057. },
  56058. feralTailBottom: {
  56059. height: math.unit(5.44728435, "meter"),
  56060. name: "Tail (Bottom)",
  56061. image: {
  56062. source: "./media/characters/plum/tail-bottom.svg"
  56063. },
  56064. form: "feral",
  56065. },
  56066. },
  56067. [
  56068. {
  56069. name: "Normal",
  56070. height: math.unit(6, "meters"),
  56071. default: true,
  56072. form: "taur"
  56073. },
  56074. {
  56075. name: "Normal",
  56076. height: math.unit(5.5, "meters"),
  56077. default: true,
  56078. form: "feral"
  56079. },
  56080. ],
  56081. {
  56082. "taur": {
  56083. name: "Taur",
  56084. default: true
  56085. },
  56086. "feral": {
  56087. name: "Feral",
  56088. },
  56089. }
  56090. ))
  56091. characterMakers.push(() => makeCharacter(
  56092. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  56093. {
  56094. front: {
  56095. height: math.unit(6, "feet"),
  56096. weight: math.unit(115, "lb"),
  56097. name: "Front",
  56098. image: {
  56099. source: "./media/characters/celeste-kitsune/front.svg",
  56100. extra: 393/366,
  56101. bottom: 7/400
  56102. }
  56103. },
  56104. side: {
  56105. height: math.unit(6, "feet"),
  56106. weight: math.unit(115, "lb"),
  56107. name: "Side",
  56108. image: {
  56109. source: "./media/characters/celeste-kitsune/side.svg",
  56110. extra: 818/765,
  56111. bottom: 40/858
  56112. }
  56113. },
  56114. },
  56115. [
  56116. {
  56117. name: "Megamacro",
  56118. height: math.unit(1500, "miles"),
  56119. default: true
  56120. },
  56121. ]
  56122. ))
  56123. characterMakers.push(() => makeCharacter(
  56124. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  56125. {
  56126. front: {
  56127. height: math.unit(8, "meters"),
  56128. name: "Front",
  56129. image: {
  56130. source: "./media/characters/io/front.svg",
  56131. extra: 865/722,
  56132. bottom: 58/923
  56133. }
  56134. },
  56135. back: {
  56136. height: math.unit(8, "meters"),
  56137. name: "Back",
  56138. image: {
  56139. source: "./media/characters/io/back.svg",
  56140. extra: 920/776,
  56141. bottom: 42/962
  56142. }
  56143. },
  56144. head: {
  56145. height: math.unit(5.09, "meters"),
  56146. name: "Head",
  56147. image: {
  56148. source: "./media/characters/io/head.svg"
  56149. }
  56150. },
  56151. hand: {
  56152. height: math.unit(1.6, "meters"),
  56153. name: "Hand",
  56154. image: {
  56155. source: "./media/characters/io/hand.svg"
  56156. }
  56157. },
  56158. foot: {
  56159. height: math.unit(2.4, "meters"),
  56160. name: "Foot",
  56161. image: {
  56162. source: "./media/characters/io/foot.svg"
  56163. }
  56164. },
  56165. },
  56166. [
  56167. {
  56168. name: "Normal",
  56169. height: math.unit(8, "meters"),
  56170. default: true
  56171. },
  56172. ]
  56173. ))
  56174. characterMakers.push(() => makeCharacter(
  56175. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  56176. {
  56177. side: {
  56178. height: math.unit(6 + 3/12, "feet"),
  56179. weight: math.unit(225, "lb"),
  56180. name: "Side",
  56181. image: {
  56182. source: "./media/characters/silas/side.svg",
  56183. extra: 703/653,
  56184. bottom: 23/726
  56185. },
  56186. extraAttributes: {
  56187. "pawLength": {
  56188. name: "Paw Length",
  56189. power: 1,
  56190. type: "length",
  56191. base: math.unit(12, "inches")
  56192. },
  56193. "pawWidth": {
  56194. name: "Paw Width",
  56195. power: 1,
  56196. type: "length",
  56197. base: math.unit(4.5, "inches")
  56198. },
  56199. "pawArea": {
  56200. name: "Paw Area",
  56201. power: 2,
  56202. type: "area",
  56203. base: math.unit(12 * 4.5, "inches^2")
  56204. },
  56205. }
  56206. },
  56207. },
  56208. [
  56209. {
  56210. name: "Normal",
  56211. height: math.unit(6 + 3/12, "feet"),
  56212. default: true
  56213. },
  56214. ]
  56215. ))
  56216. characterMakers.push(() => makeCharacter(
  56217. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  56218. {
  56219. back: {
  56220. height: math.unit(1.6, "meters"),
  56221. weight: math.unit(150, "lb"),
  56222. name: "Back",
  56223. image: {
  56224. source: "./media/characters/zari/back.svg",
  56225. extra: 424/411,
  56226. bottom: 32/456
  56227. },
  56228. extraAttributes: {
  56229. "bladderCapacity": {
  56230. name: "Bladder Size",
  56231. power: 3,
  56232. type: "volume",
  56233. base: math.unit(500, "mL")
  56234. },
  56235. "bladderFlow": {
  56236. name: "Flow Rate",
  56237. power: 3,
  56238. type: "volume",
  56239. base: math.unit(25, "mL")
  56240. },
  56241. }
  56242. },
  56243. },
  56244. [
  56245. {
  56246. name: "Normal",
  56247. height: math.unit(1.6, "meters"),
  56248. default: true
  56249. },
  56250. ]
  56251. ))
  56252. characterMakers.push(() => makeCharacter(
  56253. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  56254. {
  56255. front: {
  56256. height: math.unit(25, "feet"),
  56257. weight: math.unit(5, "tons"),
  56258. name: "Front",
  56259. image: {
  56260. source: "./media/characters/charlie-human/front.svg",
  56261. extra: 1870/1740,
  56262. bottom: 102/1972
  56263. },
  56264. extraAttributes: {
  56265. "dickLength": {
  56266. name: "Dick Length",
  56267. power: 1,
  56268. type: "length",
  56269. base: math.unit(9, "feet")
  56270. },
  56271. }
  56272. },
  56273. back: {
  56274. height: math.unit(25, "feet"),
  56275. weight: math.unit(5, "tons"),
  56276. name: "Back",
  56277. image: {
  56278. source: "./media/characters/charlie-human/back.svg",
  56279. extra: 1858/1733,
  56280. bottom: 105/1963
  56281. },
  56282. extraAttributes: {
  56283. "dickLength": {
  56284. name: "Dick Length",
  56285. power: 1,
  56286. type: "length",
  56287. base: math.unit(9, "feet")
  56288. },
  56289. }
  56290. },
  56291. },
  56292. [
  56293. {
  56294. name: "\"Normal\"",
  56295. height: math.unit(6 + 4/12, "feet")
  56296. },
  56297. {
  56298. name: "Big",
  56299. height: math.unit(25, "feet"),
  56300. default: true
  56301. },
  56302. ]
  56303. ))
  56304. characterMakers.push(() => makeCharacter(
  56305. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  56306. {
  56307. front: {
  56308. height: math.unit(6 + 4/12, "feet"),
  56309. weight: math.unit(320, "lb"),
  56310. name: "Front",
  56311. image: {
  56312. source: "./media/characters/ookitsu/front.svg",
  56313. extra: 1160/976,
  56314. bottom: 38/1198
  56315. }
  56316. },
  56317. frontNsfw: {
  56318. height: math.unit(6 + 4/12, "feet"),
  56319. weight: math.unit(320, "lb"),
  56320. name: "Front (NSFW)",
  56321. image: {
  56322. source: "./media/characters/ookitsu/front-nsfw.svg",
  56323. extra: 1160/976,
  56324. bottom: 38/1198
  56325. }
  56326. },
  56327. back: {
  56328. height: math.unit(6 + 4/12, "feet"),
  56329. weight: math.unit(320, "lb"),
  56330. name: "Back",
  56331. image: {
  56332. source: "./media/characters/ookitsu/back.svg",
  56333. extra: 1030/975,
  56334. bottom: 70/1100
  56335. }
  56336. },
  56337. head: {
  56338. height: math.unit(1.79, "feet"),
  56339. name: "Head",
  56340. image: {
  56341. source: "./media/characters/ookitsu/head.svg"
  56342. }
  56343. },
  56344. hand: {
  56345. height: math.unit(0.92, "feet"),
  56346. name: "Hand",
  56347. image: {
  56348. source: "./media/characters/ookitsu/hand.svg"
  56349. }
  56350. },
  56351. tails: {
  56352. height: math.unit(3.3, "feet"),
  56353. name: "Tails",
  56354. image: {
  56355. source: "./media/characters/ookitsu/tails.svg"
  56356. }
  56357. },
  56358. dick: {
  56359. height: math.unit(1.10833, "feet"),
  56360. name: "Dick",
  56361. image: {
  56362. source: "./media/characters/ookitsu/dick.svg"
  56363. }
  56364. },
  56365. },
  56366. [
  56367. {
  56368. name: "Normal",
  56369. height: math.unit(6 + 4/12, "feet"),
  56370. default: true
  56371. },
  56372. {
  56373. name: "Macro",
  56374. height: math.unit(30, "feet")
  56375. },
  56376. ]
  56377. ))
  56378. characterMakers.push(() => makeCharacter(
  56379. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  56380. {
  56381. anthroFront: {
  56382. height: math.unit(6, "feet"),
  56383. weight: math.unit(250, "lb"),
  56384. name: "Front",
  56385. image: {
  56386. source: "./media/characters/jhusky/anthro-front.svg",
  56387. extra: 474/439,
  56388. bottom: 7/481
  56389. },
  56390. form: "anthro",
  56391. default: true
  56392. },
  56393. taurSideSfw: {
  56394. height: math.unit(6 + 4/12, "feet"),
  56395. weight: math.unit(500, "lb"),
  56396. name: "Side (SFW)",
  56397. image: {
  56398. source: "./media/characters/jhusky/taur-side-sfw.svg",
  56399. extra: 1741/1629,
  56400. bottom: 196/1937
  56401. },
  56402. form: "taur",
  56403. default: true
  56404. },
  56405. taurSideNsfw: {
  56406. height: math.unit(6 + 4/12, "feet"),
  56407. weight: math.unit(500, "lb"),
  56408. name: "Taur (NSFW)",
  56409. image: {
  56410. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  56411. extra: 1741/1629,
  56412. bottom: 196/1937
  56413. },
  56414. form: "taur",
  56415. },
  56416. },
  56417. [
  56418. {
  56419. name: "Huge",
  56420. height: math.unit(500, "feet"),
  56421. form: "anthro"
  56422. },
  56423. {
  56424. name: "Macro",
  56425. height: math.unit(1000, "feet"),
  56426. default: true,
  56427. form: "anthro"
  56428. },
  56429. {
  56430. name: "Megamacro",
  56431. height: math.unit(10000, "feet"),
  56432. form: "anthro"
  56433. },
  56434. {
  56435. name: "Huge",
  56436. height: math.unit(528, "feet"),
  56437. form: "taur"
  56438. },
  56439. {
  56440. name: "Macro",
  56441. height: math.unit(1056, "feet"),
  56442. default: true,
  56443. form: "taur"
  56444. },
  56445. {
  56446. name: "Megamacro",
  56447. height: math.unit(10556, "feet"),
  56448. form: "taur"
  56449. },
  56450. ],
  56451. {
  56452. "anthro": {
  56453. name: "Anthro",
  56454. default: true
  56455. },
  56456. "taur": {
  56457. name: "Taur",
  56458. },
  56459. }
  56460. ))
  56461. characterMakers.push(() => makeCharacter(
  56462. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  56463. {
  56464. front: {
  56465. height: math.unit(8, "feet"),
  56466. weight: math.unit(500, "lb"),
  56467. name: "Front",
  56468. image: {
  56469. source: "./media/characters/armail/front.svg",
  56470. extra: 1753/1669,
  56471. bottom: 155/1908
  56472. }
  56473. },
  56474. back: {
  56475. height: math.unit(8, "feet"),
  56476. weight: math.unit(500, "lb"),
  56477. name: "Back",
  56478. image: {
  56479. source: "./media/characters/armail/back.svg",
  56480. extra: 1872/1803,
  56481. bottom: 63/1935
  56482. }
  56483. },
  56484. },
  56485. [
  56486. {
  56487. name: "Micro",
  56488. height: math.unit(0.25, "feet")
  56489. },
  56490. {
  56491. name: "Normal",
  56492. height: math.unit(8, "feet"),
  56493. default: true
  56494. },
  56495. {
  56496. name: "Mini-macro",
  56497. height: math.unit(30, "feet")
  56498. },
  56499. {
  56500. name: "Macro",
  56501. height: math.unit(400, "feet")
  56502. },
  56503. {
  56504. name: "Mega-macro",
  56505. height: math.unit(6000, "feet")
  56506. },
  56507. ]
  56508. ))
  56509. characterMakers.push(() => makeCharacter(
  56510. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  56511. {
  56512. front: {
  56513. height: math.unit(6 + 7/12, "feet"),
  56514. weight: math.unit(210, "lb"),
  56515. name: "Front",
  56516. image: {
  56517. source: "./media/characters/wilfred-t-buxton/front.svg",
  56518. extra: 1068/882,
  56519. bottom: 28/1096
  56520. }
  56521. },
  56522. },
  56523. [
  56524. {
  56525. name: "Normal",
  56526. height: math.unit(6 + 7/12, "feet"),
  56527. default: true
  56528. },
  56529. ]
  56530. ))
  56531. characterMakers.push(() => makeCharacter(
  56532. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  56533. {
  56534. front: {
  56535. height: math.unit(5 + 2/12, "feet"),
  56536. weight: math.unit(120, "lb"),
  56537. name: "Front",
  56538. image: {
  56539. source: "./media/characters/leighton-marrow/front.svg",
  56540. extra: 441/409,
  56541. bottom: 37/478
  56542. }
  56543. },
  56544. },
  56545. [
  56546. {
  56547. name: "Normal",
  56548. height: math.unit(5 + 2/12, "feet"),
  56549. default: true
  56550. },
  56551. ]
  56552. ))
  56553. characterMakers.push(() => makeCharacter(
  56554. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  56555. {
  56556. front: {
  56557. height: math.unit(4, "meters"),
  56558. weight: math.unit(1200, "kg"),
  56559. name: "Front",
  56560. image: {
  56561. source: "./media/characters/licos/front.svg",
  56562. extra: 1727/1604,
  56563. bottom: 101/1828
  56564. },
  56565. form: "anthro",
  56566. default: true
  56567. },
  56568. taur_side: {
  56569. height: math.unit(20, "meters"),
  56570. weight: math.unit(1100000, "kg"),
  56571. name: "Side",
  56572. image: {
  56573. source: "./media/characters/licos/taur.svg",
  56574. extra: 1158/1091,
  56575. bottom: 80/1238
  56576. },
  56577. form: "taur",
  56578. default: true
  56579. },
  56580. },
  56581. [
  56582. {
  56583. name: "Normal",
  56584. height: math.unit(4, "meters"),
  56585. default: true,
  56586. form: "anthro"
  56587. },
  56588. {
  56589. name: "Normal",
  56590. height: math.unit(20, "meters"),
  56591. default: true,
  56592. form: "taur"
  56593. },
  56594. ],
  56595. {
  56596. "anthro": {
  56597. name: "Anthro",
  56598. default: true
  56599. },
  56600. "taur": {
  56601. name: "Taur",
  56602. },
  56603. }
  56604. ))
  56605. characterMakers.push(() => makeCharacter(
  56606. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  56607. {
  56608. front: {
  56609. height: math.unit(10 + 3/12, "feet"),
  56610. name: "Front",
  56611. image: {
  56612. source: "./media/characters/theo-monkey/front.svg",
  56613. extra: 1735/1658,
  56614. bottom: 73/1808
  56615. }
  56616. },
  56617. back: {
  56618. height: math.unit(10 + 3/12, "feet"),
  56619. name: "Back",
  56620. image: {
  56621. source: "./media/characters/theo-monkey/back.svg",
  56622. extra: 1742/1664,
  56623. bottom: 33/1775
  56624. }
  56625. },
  56626. head: {
  56627. height: math.unit(2.29, "feet"),
  56628. name: "Head",
  56629. image: {
  56630. source: "./media/characters/theo-monkey/head.svg"
  56631. }
  56632. },
  56633. handPalm: {
  56634. height: math.unit(1.73, "feet"),
  56635. name: "Hand (Palm)",
  56636. image: {
  56637. source: "./media/characters/theo-monkey/hand-palm.svg"
  56638. }
  56639. },
  56640. handBack: {
  56641. height: math.unit(1.63, "feet"),
  56642. name: "Hand (Back)",
  56643. image: {
  56644. source: "./media/characters/theo-monkey/hand-back.svg"
  56645. }
  56646. },
  56647. footSole: {
  56648. height: math.unit(2.15, "feet"),
  56649. name: "Foot (Sole)",
  56650. image: {
  56651. source: "./media/characters/theo-monkey/foot-sole.svg"
  56652. }
  56653. },
  56654. footSide: {
  56655. height: math.unit(1.6, "feet"),
  56656. name: "Foot (Side)",
  56657. image: {
  56658. source: "./media/characters/theo-monkey/foot-side.svg"
  56659. }
  56660. },
  56661. },
  56662. [
  56663. {
  56664. name: "Normal",
  56665. height: math.unit(10 + 3/12, "feet"),
  56666. default: true
  56667. },
  56668. ]
  56669. ))
  56670. characterMakers.push(() => makeCharacter(
  56671. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  56672. {
  56673. front: {
  56674. height: math.unit(11, "feet"),
  56675. weight: math.unit(3000, "lb"),
  56676. preyCapacity: math.unit(10, "people"),
  56677. name: "Front",
  56678. image: {
  56679. source: "./media/characters/brook/front.svg",
  56680. extra: 909/835,
  56681. bottom: 108/1017
  56682. }
  56683. },
  56684. back: {
  56685. height: math.unit(11, "feet"),
  56686. weight: math.unit(3000, "lb"),
  56687. preyCapacity: math.unit(10, "people"),
  56688. name: "Back",
  56689. image: {
  56690. source: "./media/characters/brook/back.svg",
  56691. extra: 976/916,
  56692. bottom: 34/1010
  56693. }
  56694. },
  56695. backAlt: {
  56696. height: math.unit(11, "feet"),
  56697. weight: math.unit(3000, "lb"),
  56698. preyCapacity: math.unit(10, "people"),
  56699. name: "Back (Alt)",
  56700. image: {
  56701. source: "./media/characters/brook/back-alt.svg",
  56702. extra: 1283/1213,
  56703. bottom: 35/1318
  56704. }
  56705. },
  56706. bust: {
  56707. height: math.unit(9.0859030837, "feet"),
  56708. weight: math.unit(3000, "lb"),
  56709. preyCapacity: math.unit(10, "people"),
  56710. name: "Bust",
  56711. image: {
  56712. source: "./media/characters/brook/bust.svg",
  56713. extra: 2043/1923,
  56714. bottom: 0/2043
  56715. }
  56716. },
  56717. },
  56718. [
  56719. {
  56720. name: "Small",
  56721. height: math.unit(11, "feet"),
  56722. default: true
  56723. },
  56724. {
  56725. name: "Towering",
  56726. height: math.unit(5, "km")
  56727. },
  56728. {
  56729. name: "Enormous",
  56730. height: math.unit(25, "earths")
  56731. },
  56732. ]
  56733. ))
  56734. characterMakers.push(() => makeCharacter(
  56735. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  56736. {
  56737. front: {
  56738. height: math.unit(4, "feet"),
  56739. weight: math.unit(150, "lb"),
  56740. name: "Front",
  56741. image: {
  56742. source: "./media/characters/squishi/front.svg",
  56743. extra: 1428/1271,
  56744. bottom: 30/1458
  56745. },
  56746. extraAttributes: {
  56747. "pawSize": {
  56748. name: "Paw Size",
  56749. power: 1,
  56750. type: "length",
  56751. base: math.unit(14, "ShoeSizeMensUS"),
  56752. defaultUnit: "ShoeSizeMensUS"
  56753. },
  56754. }
  56755. },
  56756. side: {
  56757. height: math.unit(4, "feet"),
  56758. weight: math.unit(150, "lb"),
  56759. name: "Side",
  56760. image: {
  56761. source: "./media/characters/squishi/side.svg",
  56762. extra: 1428/1271,
  56763. bottom: 30/1458
  56764. },
  56765. extraAttributes: {
  56766. "pawSize": {
  56767. name: "Paw Size",
  56768. power: 1,
  56769. type: "length",
  56770. base: math.unit(14, "ShoeSizeMensUS"),
  56771. defaultUnit: "ShoeSizeMensUS"
  56772. },
  56773. }
  56774. },
  56775. back: {
  56776. height: math.unit(4, "feet"),
  56777. weight: math.unit(150, "lb"),
  56778. name: "Back",
  56779. image: {
  56780. source: "./media/characters/squishi/back.svg",
  56781. extra: 1428/1271,
  56782. bottom: 30/1458
  56783. },
  56784. extraAttributes: {
  56785. "pawSize": {
  56786. name: "Paw Size",
  56787. power: 1,
  56788. type: "length",
  56789. base: math.unit(14, "ShoeSizeMensUS"),
  56790. defaultUnit: "ShoeSizeMensUS"
  56791. },
  56792. }
  56793. },
  56794. },
  56795. [
  56796. {
  56797. name: "Normal",
  56798. height: math.unit(4, "feet"),
  56799. default: true
  56800. },
  56801. ]
  56802. ))
  56803. characterMakers.push(() => makeCharacter(
  56804. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  56805. {
  56806. front: {
  56807. height: math.unit(7 + 8/12, "feet"),
  56808. weight: math.unit(333, "lb"),
  56809. name: "Front",
  56810. image: {
  56811. source: "./media/characters/vincent-vasroc/front.svg",
  56812. extra: 1962/1860,
  56813. bottom: 41/2003
  56814. }
  56815. },
  56816. back: {
  56817. height: math.unit(7 + 8/12, "feet"),
  56818. weight: math.unit(333, "lb"),
  56819. name: "Back",
  56820. image: {
  56821. source: "./media/characters/vincent-vasroc/back.svg",
  56822. extra: 1952/1815,
  56823. bottom: 33/1985
  56824. }
  56825. },
  56826. paw: {
  56827. height: math.unit(1.24, "feet"),
  56828. name: "Paw",
  56829. image: {
  56830. source: "./media/characters/vincent-vasroc/paw.svg"
  56831. }
  56832. },
  56833. ear: {
  56834. height: math.unit(0.75, "feet"),
  56835. name: "Ear",
  56836. image: {
  56837. source: "./media/characters/vincent-vasroc/ear.svg"
  56838. }
  56839. },
  56840. },
  56841. [
  56842. {
  56843. name: "Nano",
  56844. height: math.unit(92, "micrometers")
  56845. },
  56846. {
  56847. name: "Normal",
  56848. height: math.unit(7 + 8/12, "feet"),
  56849. default: true
  56850. },
  56851. ]
  56852. ))
  56853. characterMakers.push(() => makeCharacter(
  56854. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  56855. {
  56856. frontNsfw: {
  56857. height: math.unit(40, "feet"),
  56858. weight: math.unit(58, "tons"),
  56859. name: "Front (NSFW)",
  56860. image: {
  56861. source: "./media/characters/ru-kahn/front-nsfw.svg",
  56862. extra: 1265/965,
  56863. bottom: 155/1420
  56864. }
  56865. },
  56866. frontSfw: {
  56867. height: math.unit(40, "feet"),
  56868. weight: math.unit(58, "tons"),
  56869. name: "Front (SFW)",
  56870. image: {
  56871. source: "./media/characters/ru-kahn/front-sfw.svg",
  56872. extra: 1265/965,
  56873. bottom: 80/1345
  56874. }
  56875. },
  56876. },
  56877. [
  56878. {
  56879. name: "Small",
  56880. height: math.unit(4, "feet")
  56881. },
  56882. {
  56883. name: "Normal",
  56884. height: math.unit(40, "feet"),
  56885. default: true
  56886. },
  56887. {
  56888. name: "Macro",
  56889. height: math.unit(400, "feet")
  56890. },
  56891. ]
  56892. ))
  56893. characterMakers.push(() => makeCharacter(
  56894. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  56895. {
  56896. frontNude: {
  56897. height: math.unit(6 + 5/12, "feet"),
  56898. name: "Front (Nude)",
  56899. image: {
  56900. source: "./media/characters/sylvie-laforge/front-nude.svg",
  56901. extra: 1369/1366,
  56902. bottom: 68/1437
  56903. }
  56904. },
  56905. frontDressed: {
  56906. height: math.unit(6 + 5/12, "feet"),
  56907. name: "Front (Dressed)",
  56908. image: {
  56909. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  56910. extra: 1369/1366,
  56911. bottom: 68/1437
  56912. }
  56913. },
  56914. },
  56915. [
  56916. {
  56917. name: "Normal",
  56918. height: math.unit(6 + 5/12, "feet"),
  56919. default: true
  56920. },
  56921. {
  56922. name: "Maximum",
  56923. height: math.unit(1930, "feet")
  56924. },
  56925. ]
  56926. ))
  56927. characterMakers.push(() => makeCharacter(
  56928. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  56929. {
  56930. front: {
  56931. height: math.unit(5 + 6/12, "feet"),
  56932. name: "Front",
  56933. image: {
  56934. source: "./media/characters/kaja/front.svg",
  56935. extra: 1874/1514,
  56936. bottom: 117/1991
  56937. }
  56938. },
  56939. },
  56940. [
  56941. {
  56942. name: "Normal",
  56943. height: math.unit(5 + 6/12, "feet"),
  56944. default: true
  56945. },
  56946. ]
  56947. ))
  56948. characterMakers.push(() => makeCharacter(
  56949. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  56950. {
  56951. front: {
  56952. height: math.unit(5 + 9/12, "feet"),
  56953. weight: math.unit(200, "lb"),
  56954. name: "Front",
  56955. image: {
  56956. source: "./media/characters/mark-smith/front.svg",
  56957. extra: 1004/943,
  56958. bottom: 58/1062
  56959. }
  56960. },
  56961. back: {
  56962. height: math.unit(5 + 9/12, "feet"),
  56963. weight: math.unit(200, "lb"),
  56964. name: "Back",
  56965. image: {
  56966. source: "./media/characters/mark-smith/back.svg",
  56967. extra: 1023/953,
  56968. bottom: 24/1047
  56969. }
  56970. },
  56971. head: {
  56972. height: math.unit(1.82, "feet"),
  56973. name: "Head",
  56974. image: {
  56975. source: "./media/characters/mark-smith/head.svg"
  56976. }
  56977. },
  56978. hand: {
  56979. height: math.unit(1.4, "feet"),
  56980. name: "Hand",
  56981. image: {
  56982. source: "./media/characters/mark-smith/hand.svg"
  56983. }
  56984. },
  56985. paw: {
  56986. height: math.unit(1.69, "feet"),
  56987. name: "Paw",
  56988. image: {
  56989. source: "./media/characters/mark-smith/paw.svg"
  56990. }
  56991. },
  56992. },
  56993. [
  56994. {
  56995. name: "Micro",
  56996. height: math.unit(0.25, "inches")
  56997. },
  56998. {
  56999. name: "Normal",
  57000. height: math.unit(5 + 9/12, "feet"),
  57001. default: true
  57002. },
  57003. {
  57004. name: "Macro",
  57005. height: math.unit(500, "feet")
  57006. },
  57007. ]
  57008. ))
  57009. characterMakers.push(() => makeCharacter(
  57010. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  57011. {
  57012. frontNude: {
  57013. height: math.unit(6, "feet"),
  57014. name: "Front (Nude)",
  57015. image: {
  57016. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  57017. extra: 1384/1321,
  57018. bottom: 57/1441
  57019. }
  57020. },
  57021. frontDressed: {
  57022. height: math.unit(6, "feet"),
  57023. name: "Front (Dressed)",
  57024. image: {
  57025. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  57026. extra: 1384/1321,
  57027. bottom: 57/1441
  57028. }
  57029. },
  57030. },
  57031. [
  57032. {
  57033. name: "Normal",
  57034. height: math.unit(6, "feet"),
  57035. default: true
  57036. },
  57037. {
  57038. name: "Maximum",
  57039. height: math.unit(1776, "feet")
  57040. },
  57041. ]
  57042. ))
  57043. characterMakers.push(() => makeCharacter(
  57044. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  57045. {
  57046. front: {
  57047. height: math.unit(2 + 4/12, "feet"),
  57048. weight: math.unit(350, "lb"),
  57049. name: "Front",
  57050. image: {
  57051. source: "./media/characters/devos/front.svg",
  57052. extra: 958/852,
  57053. bottom: 143/1101
  57054. }
  57055. },
  57056. },
  57057. [
  57058. {
  57059. name: "Base",
  57060. height: math.unit(2 + 4/12, "feet"),
  57061. default: true
  57062. },
  57063. ]
  57064. ))
  57065. characterMakers.push(() => makeCharacter(
  57066. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  57067. {
  57068. front: {
  57069. height: math.unit(9 + 2/12, "feet"),
  57070. name: "Front",
  57071. image: {
  57072. source: "./media/characters/hiveheart/front.svg",
  57073. extra: 394/364,
  57074. bottom: 65/459
  57075. }
  57076. },
  57077. back: {
  57078. height: math.unit(9 + 2/12, "feet"),
  57079. name: "Back",
  57080. image: {
  57081. source: "./media/characters/hiveheart/back.svg",
  57082. extra: 374/357,
  57083. bottom: 63/437
  57084. }
  57085. },
  57086. },
  57087. [
  57088. {
  57089. name: "Base",
  57090. height: math.unit(9 + 2/12, "feet"),
  57091. default: true
  57092. },
  57093. ]
  57094. ))
  57095. characterMakers.push(() => makeCharacter(
  57096. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  57097. {
  57098. front: {
  57099. height: math.unit(2.5, "inches"),
  57100. weight: math.unit(0.6, "oz"),
  57101. name: "Front",
  57102. image: {
  57103. source: "./media/characters/bryn/front.svg",
  57104. extra: 1484/1119,
  57105. bottom: 66/1550
  57106. }
  57107. },
  57108. back: {
  57109. height: math.unit(2.5, "inches"),
  57110. weight: math.unit(0.6, "oz"),
  57111. name: "Back",
  57112. image: {
  57113. source: "./media/characters/bryn/back.svg",
  57114. extra: 1472/1170,
  57115. bottom: 32/1504
  57116. }
  57117. },
  57118. wings: {
  57119. height: math.unit(2.5, "inches"),
  57120. weight: math.unit(0.6, "oz"),
  57121. name: "Wings",
  57122. image: {
  57123. source: "./media/characters/bryn/wings.svg",
  57124. extra: 567/448,
  57125. bottom: 10/577
  57126. }
  57127. },
  57128. dressed: {
  57129. height: math.unit(2.5, "inches"),
  57130. weight: math.unit(0.6, "oz"),
  57131. name: "Dressed",
  57132. image: {
  57133. source: "./media/characters/bryn/dressed.svg",
  57134. extra: 719/589,
  57135. bottom: 54/773
  57136. }
  57137. },
  57138. head: {
  57139. height: math.unit(1.75, "inches"),
  57140. name: "Head",
  57141. image: {
  57142. source: "./media/characters/bryn/head.svg"
  57143. }
  57144. },
  57145. foot: {
  57146. height: math.unit(0.4, "inches"),
  57147. name: "Foot",
  57148. image: {
  57149. source: "./media/characters/bryn/foot.svg"
  57150. }
  57151. },
  57152. },
  57153. [
  57154. {
  57155. name: "Normal",
  57156. height: math.unit(2.5, "inches"),
  57157. default: true
  57158. },
  57159. ]
  57160. ))
  57161. characterMakers.push(() => makeCharacter(
  57162. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  57163. {
  57164. side: {
  57165. height: math.unit(7, "feet"),
  57166. weight: math.unit(657, "kg"),
  57167. name: "Side",
  57168. image: {
  57169. source: "./media/characters/delta/side.svg",
  57170. extra: 781/212,
  57171. bottom: 7/788
  57172. },
  57173. extraAttributes: {
  57174. "wingspan": {
  57175. name: "Wingspan",
  57176. power: 1,
  57177. type: "length",
  57178. base: math.unit(48, "feet")
  57179. },
  57180. "length": {
  57181. name: "Length",
  57182. power: 1,
  57183. type: "length",
  57184. base: math.unit(21, "feet")
  57185. },
  57186. "pawSize": {
  57187. name: "Paw Size",
  57188. power: 2,
  57189. type: "area",
  57190. base: math.unit(1.5*1.4, "feet^2")
  57191. },
  57192. }
  57193. },
  57194. },
  57195. [
  57196. {
  57197. name: "Normal",
  57198. height: math.unit(6, "feet"),
  57199. default: true
  57200. },
  57201. ]
  57202. ))
  57203. characterMakers.push(() => makeCharacter(
  57204. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  57205. {
  57206. front: {
  57207. height: math.unit(6, "feet"),
  57208. name: "Front",
  57209. image: {
  57210. source: "./media/characters/pyrow/front.svg",
  57211. extra: 513/486,
  57212. bottom: 14/527
  57213. }
  57214. },
  57215. frontWing: {
  57216. height: math.unit(6, "feet"),
  57217. name: "Front (Wing)",
  57218. image: {
  57219. source: "./media/characters/pyrow/front-wing.svg",
  57220. extra: 539/383,
  57221. bottom: 20/559
  57222. }
  57223. },
  57224. back: {
  57225. height: math.unit(6, "feet"),
  57226. name: "Back",
  57227. image: {
  57228. source: "./media/characters/pyrow/back.svg",
  57229. extra: 500/473,
  57230. bottom: 9/509
  57231. }
  57232. },
  57233. },
  57234. [
  57235. {
  57236. name: "Normal",
  57237. height: math.unit(6, "feet"),
  57238. default: true
  57239. },
  57240. ]
  57241. ))
  57242. characterMakers.push(() => makeCharacter(
  57243. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  57244. {
  57245. front: {
  57246. height: math.unit(5, "meters"),
  57247. weight: math.unit(3, "tonnes"),
  57248. name: "Front",
  57249. image: {
  57250. source: "./media/characters/velikan/front.svg",
  57251. extra: 867/744,
  57252. bottom: 71/938
  57253. },
  57254. extraAttributes: {
  57255. "shoeSize": {
  57256. name: "Shoe Size",
  57257. power: 1,
  57258. type: "length",
  57259. base: math.unit(135, "ShoeSizeUK"),
  57260. defaultUnit: "ShoeSizeUK"
  57261. },
  57262. }
  57263. },
  57264. },
  57265. [
  57266. {
  57267. name: "Normal",
  57268. height: math.unit(5, "meters"),
  57269. default: true
  57270. },
  57271. {
  57272. name: "Macro",
  57273. height: math.unit(1, "km")
  57274. },
  57275. {
  57276. name: "Mega Macro",
  57277. height: math.unit(100, "km")
  57278. },
  57279. {
  57280. name: "Giga Macro",
  57281. height: math.unit(2, "megameters")
  57282. },
  57283. {
  57284. name: "Planetary",
  57285. height: math.unit(22, "megameters")
  57286. },
  57287. {
  57288. name: "Solar",
  57289. height: math.unit(8, "gigameters")
  57290. },
  57291. {
  57292. name: "Cosmic",
  57293. height: math.unit(10, "zettameters")
  57294. },
  57295. {
  57296. name: "Omni",
  57297. height: math.unit(9e260, "multiverses")
  57298. },
  57299. ]
  57300. ))
  57301. characterMakers.push(() => makeCharacter(
  57302. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  57303. {
  57304. front: {
  57305. height: math.unit(4 + 3/12, "feet"),
  57306. weight: math.unit(90, "lb"),
  57307. name: "Front",
  57308. image: {
  57309. source: "./media/characters/sabiki/front.svg",
  57310. extra: 1662/1423,
  57311. bottom: 65/1727
  57312. }
  57313. },
  57314. },
  57315. [
  57316. {
  57317. name: "Normal",
  57318. height: math.unit(4 + 3/12, "feet"),
  57319. default: true
  57320. },
  57321. ]
  57322. ))
  57323. characterMakers.push(() => makeCharacter(
  57324. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  57325. {
  57326. frontSfw: {
  57327. height: math.unit(2, "mm"),
  57328. name: "Front (SFW)",
  57329. image: {
  57330. source: "./media/characters/carmel/front-sfw.svg",
  57331. extra: 1131/1006,
  57332. bottom: 66/1197
  57333. }
  57334. },
  57335. frontNsfw: {
  57336. height: math.unit(2, "mm"),
  57337. name: "Front (NSFW)",
  57338. image: {
  57339. source: "./media/characters/carmel/front-nsfw.svg",
  57340. extra: 1131/1006,
  57341. bottom: 66/1197
  57342. }
  57343. },
  57344. foot: {
  57345. height: math.unit(0.3, "mm"),
  57346. name: "Foot",
  57347. image: {
  57348. source: "./media/characters/carmel/foot.svg"
  57349. }
  57350. },
  57351. tongue: {
  57352. height: math.unit(0.71, "mm"),
  57353. name: "Tongue",
  57354. image: {
  57355. source: "./media/characters/carmel/tongue.svg"
  57356. }
  57357. },
  57358. dick: {
  57359. height: math.unit(0.085, "mm"),
  57360. name: "Dick",
  57361. image: {
  57362. source: "./media/characters/carmel/dick.svg"
  57363. }
  57364. },
  57365. },
  57366. [
  57367. {
  57368. name: "Micro",
  57369. height: math.unit(2, "mm"),
  57370. default: true
  57371. },
  57372. {
  57373. name: "Normal",
  57374. height: math.unit(4 + 8/12, "feet")
  57375. },
  57376. {
  57377. name: "Mega Macro",
  57378. height: math.unit(250, "feet")
  57379. },
  57380. {
  57381. name: "BIGGER",
  57382. height: math.unit(1000, "feet")
  57383. },
  57384. {
  57385. name: "BIGGEST",
  57386. height: math.unit(2, "miles")
  57387. },
  57388. ]
  57389. ))
  57390. characterMakers.push(() => makeCharacter(
  57391. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  57392. {
  57393. front: {
  57394. height: math.unit(6.5, "feet"),
  57395. weight: math.unit(198, "lb"),
  57396. name: "Front",
  57397. image: {
  57398. source: "./media/characters/tamani/anthro.svg",
  57399. extra: 930/890,
  57400. bottom: 34/964
  57401. },
  57402. form: "anthro",
  57403. default: true
  57404. },
  57405. side: {
  57406. height: math.unit(6, "feet"),
  57407. weight: math.unit(198*2, "lb"),
  57408. name: "Side",
  57409. image: {
  57410. source: "./media/characters/tamani/feral.svg",
  57411. extra: 559/519,
  57412. bottom: 43/602
  57413. },
  57414. form: "feral"
  57415. },
  57416. },
  57417. [
  57418. {
  57419. name: "Normal",
  57420. height: math.unit(6.5, "feet"),
  57421. default: true,
  57422. form: "anthro"
  57423. },
  57424. {
  57425. name: "Normal",
  57426. height: math.unit(6, "feet"),
  57427. default: true,
  57428. form: "feral"
  57429. },
  57430. ],
  57431. {
  57432. "anthro": {
  57433. name: "Anthro",
  57434. default: true
  57435. },
  57436. "feral": {
  57437. name: "Feral",
  57438. },
  57439. }
  57440. ))
  57441. characterMakers.push(() => makeCharacter(
  57442. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  57443. {
  57444. front: {
  57445. height: math.unit(4 + 1/12, "feet"),
  57446. weight: math.unit(114, "lb"),
  57447. name: "Front",
  57448. image: {
  57449. source: "./media/characters/dex/front.svg",
  57450. extra: 787/680,
  57451. bottom: 18/805
  57452. }
  57453. },
  57454. side: {
  57455. height: math.unit(4 + 1/12, "feet"),
  57456. weight: math.unit(114, "lb"),
  57457. name: "Side",
  57458. image: {
  57459. source: "./media/characters/dex/side.svg",
  57460. extra: 785/680,
  57461. bottom: 12/797
  57462. }
  57463. },
  57464. back: {
  57465. height: math.unit(4 + 1/12, "feet"),
  57466. weight: math.unit(114, "lb"),
  57467. name: "Back",
  57468. image: {
  57469. source: "./media/characters/dex/back.svg",
  57470. extra: 785/681,
  57471. bottom: 17/802
  57472. }
  57473. },
  57474. loungewear: {
  57475. height: math.unit(4 + 1/12, "feet"),
  57476. weight: math.unit(114, "lb"),
  57477. name: "Loungewear",
  57478. image: {
  57479. source: "./media/characters/dex/loungewear.svg",
  57480. extra: 787/680,
  57481. bottom: 18/805
  57482. }
  57483. },
  57484. workout: {
  57485. height: math.unit(4 + 1/12, "feet"),
  57486. weight: math.unit(114, "lb"),
  57487. name: "Workout",
  57488. image: {
  57489. source: "./media/characters/dex/workout.svg",
  57490. extra: 787/680,
  57491. bottom: 18/805
  57492. }
  57493. },
  57494. schoolUniform: {
  57495. height: math.unit(4 + 1/12, "feet"),
  57496. weight: math.unit(114, "lb"),
  57497. name: "School-uniform",
  57498. image: {
  57499. source: "./media/characters/dex/school-uniform.svg",
  57500. extra: 787/680,
  57501. bottom: 18/805
  57502. }
  57503. },
  57504. maw: {
  57505. height: math.unit(0.55, "feet"),
  57506. name: "Maw",
  57507. image: {
  57508. source: "./media/characters/dex/maw.svg"
  57509. }
  57510. },
  57511. paw: {
  57512. height: math.unit(0.87, "feet"),
  57513. name: "Paw",
  57514. image: {
  57515. source: "./media/characters/dex/paw.svg"
  57516. }
  57517. },
  57518. bust: {
  57519. height: math.unit(1.67, "feet"),
  57520. name: "Bust",
  57521. image: {
  57522. source: "./media/characters/dex/bust.svg"
  57523. }
  57524. },
  57525. },
  57526. [
  57527. {
  57528. name: "Normal",
  57529. height: math.unit(4 + 1/12, "feet"),
  57530. default: true
  57531. },
  57532. ]
  57533. ))
  57534. characterMakers.push(() => makeCharacter(
  57535. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  57536. {
  57537. front: {
  57538. height: math.unit(4 + 3/12, "feet"),
  57539. weight: math.unit(60, "lb"),
  57540. name: "Front",
  57541. image: {
  57542. source: "./media/characters/silke/front.svg",
  57543. extra: 1334/1122,
  57544. bottom: 21/1355
  57545. }
  57546. },
  57547. back: {
  57548. height: math.unit(4 + 3/12, "feet"),
  57549. weight: math.unit(60, "lb"),
  57550. name: "Back",
  57551. image: {
  57552. source: "./media/characters/silke/back.svg",
  57553. extra: 1328/1092,
  57554. bottom: 16/1344
  57555. }
  57556. },
  57557. dressed: {
  57558. height: math.unit(4 + 3/12, "feet"),
  57559. weight: math.unit(60, "lb"),
  57560. name: "Dressed",
  57561. image: {
  57562. source: "./media/characters/silke/dressed.svg",
  57563. extra: 1334/1122,
  57564. bottom: 43/1377
  57565. }
  57566. },
  57567. },
  57568. [
  57569. {
  57570. name: "Normal",
  57571. height: math.unit(4 + 3/12, "feet"),
  57572. default: true
  57573. },
  57574. ]
  57575. ))
  57576. characterMakers.push(() => makeCharacter(
  57577. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  57578. {
  57579. front: {
  57580. height: math.unit(1.58, "meters"),
  57581. weight: math.unit(47, "kg"),
  57582. name: "Front",
  57583. image: {
  57584. source: "./media/characters/wireshark/front.svg",
  57585. extra: 883/838,
  57586. bottom: 66/949
  57587. }
  57588. },
  57589. },
  57590. [
  57591. {
  57592. name: "Normal",
  57593. height: math.unit(1.58, "meters"),
  57594. default: true
  57595. },
  57596. ]
  57597. ))
  57598. characterMakers.push(() => makeCharacter(
  57599. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  57600. {
  57601. front: {
  57602. height: math.unit(6, "meters"),
  57603. weight: math.unit(15000, "kg"),
  57604. name: "Front",
  57605. image: {
  57606. source: "./media/characters/gallagher/front.svg",
  57607. extra: 532/493,
  57608. bottom: 0/532
  57609. }
  57610. },
  57611. },
  57612. [
  57613. {
  57614. name: "Normal",
  57615. height: math.unit(6, "meters"),
  57616. default: true
  57617. },
  57618. ]
  57619. ))
  57620. characterMakers.push(() => makeCharacter(
  57621. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  57622. {
  57623. front: {
  57624. height: math.unit(2.4, "meters"),
  57625. weight: math.unit(270, "kg"),
  57626. name: "Front",
  57627. image: {
  57628. source: "./media/characters/alice/front.svg",
  57629. extra: 950/900,
  57630. bottom: 36/986
  57631. }
  57632. },
  57633. side: {
  57634. height: math.unit(2.4, "meters"),
  57635. weight: math.unit(270, "kg"),
  57636. name: "Side",
  57637. image: {
  57638. source: "./media/characters/alice/side.svg",
  57639. extra: 921/876,
  57640. bottom: 19/940
  57641. }
  57642. },
  57643. dressed: {
  57644. height: math.unit(2.4, "meters"),
  57645. weight: math.unit(270, "kg"),
  57646. name: "Dressed",
  57647. image: {
  57648. source: "./media/characters/alice/dressed.svg",
  57649. extra: 905/850,
  57650. bottom: 81/986
  57651. }
  57652. },
  57653. fishnet: {
  57654. height: math.unit(2.4, "meters"),
  57655. weight: math.unit(270, "kg"),
  57656. name: "Fishnet",
  57657. image: {
  57658. source: "./media/characters/alice/fishnet.svg",
  57659. extra: 905/850,
  57660. bottom: 81/986
  57661. }
  57662. },
  57663. },
  57664. [
  57665. {
  57666. name: "Normal",
  57667. height: math.unit(2.4, "meters"),
  57668. default: true
  57669. },
  57670. ]
  57671. ))
  57672. characterMakers.push(() => makeCharacter(
  57673. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  57674. {
  57675. front: {
  57676. height: math.unit(175.25, "feet"),
  57677. name: "Front",
  57678. image: {
  57679. source: "./media/characters/fio/front.svg",
  57680. extra: 1883/1591,
  57681. bottom: 34/1917
  57682. }
  57683. },
  57684. },
  57685. [
  57686. {
  57687. name: "Normal",
  57688. height: math.unit(175.25, "cm"),
  57689. default: true
  57690. },
  57691. ]
  57692. ))
  57693. characterMakers.push(() => makeCharacter(
  57694. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  57695. {
  57696. side: {
  57697. height: math.unit(6, "meters"),
  57698. weight: math.unit(3400, "kg"),
  57699. preyCapacity: math.unit(1700, "liters"),
  57700. name: "Side",
  57701. image: {
  57702. source: "./media/characters/hass/side.svg",
  57703. extra: 1058/997,
  57704. bottom: 177/1235
  57705. }
  57706. },
  57707. feeding: {
  57708. height: math.unit(6*0.63, "meters"),
  57709. weight: math.unit(3400, "kg"),
  57710. preyCapacity: math.unit(1700, "liters"),
  57711. name: "Feeding",
  57712. image: {
  57713. source: "./media/characters/hass/feeding.svg",
  57714. extra: 689/579,
  57715. bottom: 146/835
  57716. }
  57717. },
  57718. guts: {
  57719. height: math.unit(6, "meters"),
  57720. weight: math.unit(3400, "kg"),
  57721. name: "Guts",
  57722. image: {
  57723. source: "./media/characters/hass/guts.svg",
  57724. extra: 1223/1198,
  57725. bottom: 182/1405
  57726. }
  57727. },
  57728. dickFront: {
  57729. height: math.unit(1.4, "meters"),
  57730. name: "Dick (Front)",
  57731. image: {
  57732. source: "./media/characters/hass/dick-front.svg"
  57733. }
  57734. },
  57735. dickSide: {
  57736. height: math.unit(1.3, "meters"),
  57737. name: "Dick (Side)",
  57738. image: {
  57739. source: "./media/characters/hass/dick-side.svg"
  57740. }
  57741. },
  57742. dickBack: {
  57743. height: math.unit(1.4, "meters"),
  57744. name: "Dick (Back)",
  57745. image: {
  57746. source: "./media/characters/hass/dick-back.svg"
  57747. }
  57748. },
  57749. },
  57750. [
  57751. {
  57752. name: "Normal",
  57753. height: math.unit(6, "meters"),
  57754. default: true
  57755. },
  57756. ]
  57757. ))
  57758. characterMakers.push(() => makeCharacter(
  57759. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  57760. {
  57761. front: {
  57762. height: math.unit(4, "feet"),
  57763. weight: math.unit(60, "lb"),
  57764. name: "Front",
  57765. image: {
  57766. source: "./media/characters/hickory-finnegan/front.svg",
  57767. extra: 444/411,
  57768. bottom: 10/454
  57769. }
  57770. },
  57771. side: {
  57772. height: math.unit(4, "feet"),
  57773. weight: math.unit(60, "lb"),
  57774. name: "Side",
  57775. image: {
  57776. source: "./media/characters/hickory-finnegan/side.svg",
  57777. extra: 444/411,
  57778. bottom: 10/454
  57779. }
  57780. },
  57781. back: {
  57782. height: math.unit(4, "feet"),
  57783. weight: math.unit(60, "lb"),
  57784. name: "Back",
  57785. image: {
  57786. source: "./media/characters/hickory-finnegan/back.svg",
  57787. extra: 444/411,
  57788. bottom: 10/454
  57789. }
  57790. },
  57791. },
  57792. [
  57793. {
  57794. name: "Normal",
  57795. height: math.unit(4, "feet"),
  57796. default: true
  57797. },
  57798. ]
  57799. ))
  57800. characterMakers.push(() => makeCharacter(
  57801. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  57802. {
  57803. snivy_front: {
  57804. height: math.unit(2, "feet"),
  57805. weight: math.unit(17.9, "lb"),
  57806. name: "Front",
  57807. image: {
  57808. source: "./media/characters/robin-phox/snivy-front.svg",
  57809. extra: 569/504,
  57810. bottom: 33/602
  57811. },
  57812. form: "snivy",
  57813. default: true
  57814. },
  57815. snivy_frontNsfw: {
  57816. height: math.unit(2, "feet"),
  57817. weight: math.unit(17.9, "lb"),
  57818. name: "Front (NSFW)",
  57819. image: {
  57820. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  57821. extra: 569/504,
  57822. bottom: 33/602
  57823. },
  57824. form: "snivy",
  57825. },
  57826. snivy_back: {
  57827. height: math.unit(2, "feet"),
  57828. weight: math.unit(17.9, "lb"),
  57829. name: "Back",
  57830. image: {
  57831. source: "./media/characters/robin-phox/snivy-back.svg",
  57832. extra: 577/508,
  57833. bottom: 21/598
  57834. },
  57835. form: "snivy",
  57836. },
  57837. snivy_foot: {
  57838. height: math.unit(0.68, "feet"),
  57839. name: "Foot",
  57840. image: {
  57841. source: "./media/characters/robin-phox/snivy-foot.svg"
  57842. },
  57843. form: "snivy",
  57844. },
  57845. snivy_sole: {
  57846. height: math.unit(0.68, "feet"),
  57847. name: "Sole",
  57848. image: {
  57849. source: "./media/characters/robin-phox/snivy-sole.svg"
  57850. },
  57851. form: "snivy",
  57852. },
  57853. yoshi_front: {
  57854. height: math.unit(6, "feet"),
  57855. weight: math.unit(150, "lb"),
  57856. name: "Front",
  57857. image: {
  57858. source: "./media/characters/robin-phox/yoshi-front.svg",
  57859. extra: 890/792,
  57860. bottom: 29/919
  57861. },
  57862. form: "yoshi",
  57863. default: true
  57864. },
  57865. yoshi_frontNsfw: {
  57866. height: math.unit(6, "feet"),
  57867. weight: math.unit(150, "lb"),
  57868. name: "Front (NSFW)",
  57869. image: {
  57870. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  57871. extra: 890/792,
  57872. bottom: 29/919
  57873. },
  57874. form: "yoshi",
  57875. },
  57876. yoshi_back: {
  57877. height: math.unit(6, "feet"),
  57878. weight: math.unit(150, "lb"),
  57879. name: "Back",
  57880. image: {
  57881. source: "./media/characters/robin-phox/yoshi-back.svg",
  57882. extra: 890/792,
  57883. bottom: 29/919
  57884. },
  57885. form: "yoshi",
  57886. },
  57887. yoshi_foot: {
  57888. height: math.unit(1.5, "feet"),
  57889. name: "Foot",
  57890. image: {
  57891. source: "./media/characters/robin-phox/yoshi-foot.svg"
  57892. },
  57893. form: "yoshi",
  57894. },
  57895. delphox_front: {
  57896. height: math.unit(4 + 11/12, "feet"),
  57897. weight: math.unit(86, "lb"),
  57898. name: "Front",
  57899. image: {
  57900. source: "./media/characters/robin-phox/delphox-front.svg",
  57901. extra: 1266/1069,
  57902. bottom: 32/1298
  57903. },
  57904. form: "delphox",
  57905. default: true
  57906. },
  57907. delphox_frontNsfw: {
  57908. height: math.unit(4 + 11/12, "feet"),
  57909. weight: math.unit(86, "lb"),
  57910. name: "Front (NSFW)",
  57911. image: {
  57912. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  57913. extra: 1266/1069,
  57914. bottom: 32/1298
  57915. },
  57916. form: "delphox",
  57917. },
  57918. delphox_back: {
  57919. height: math.unit(4 + 11/12, "feet"),
  57920. weight: math.unit(86, "lb"),
  57921. name: "Back",
  57922. image: {
  57923. source: "./media/characters/robin-phox/delphox-back.svg",
  57924. extra: 1269/1083,
  57925. bottom: 15/1284
  57926. },
  57927. form: "delphox",
  57928. },
  57929. mienshao_front: {
  57930. height: math.unit(4 + 7/12, "feet"),
  57931. weight: math.unit(78.3, "lb"),
  57932. name: "Front",
  57933. image: {
  57934. source: "./media/characters/robin-phox/mienshao-front.svg",
  57935. extra: 1052/970,
  57936. bottom: 108/1160
  57937. },
  57938. form: "mienshao",
  57939. default: true
  57940. },
  57941. mienshao_frontNsfw: {
  57942. height: math.unit(4 + 7/12, "feet"),
  57943. weight: math.unit(78.3, "lb"),
  57944. name: "Front (NSFW)",
  57945. image: {
  57946. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  57947. extra: 1052/970,
  57948. bottom: 108/1160
  57949. },
  57950. form: "mienshao",
  57951. },
  57952. mienshao_back: {
  57953. height: math.unit(4 + 7/12, "feet"),
  57954. weight: math.unit(78.3, "lb"),
  57955. name: "Back",
  57956. image: {
  57957. source: "./media/characters/robin-phox/mienshao-back.svg",
  57958. extra: 1102/982,
  57959. bottom: 32/1134
  57960. },
  57961. form: "mienshao",
  57962. },
  57963. inteleon_front: {
  57964. height: math.unit(6 + 3/12, "feet"),
  57965. weight: math.unit(99.6, "lb"),
  57966. name: "Front",
  57967. image: {
  57968. source: "./media/characters/robin-phox/inteleon-front.svg",
  57969. extra: 910/799,
  57970. bottom: 76/986
  57971. },
  57972. form: "inteleon",
  57973. default: true
  57974. },
  57975. inteleon_frontNsfw: {
  57976. height: math.unit(6 + 3/12, "feet"),
  57977. weight: math.unit(99.6, "lb"),
  57978. name: "Front (NSFW)",
  57979. image: {
  57980. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  57981. extra: 910/799,
  57982. bottom: 76/986
  57983. },
  57984. form: "inteleon",
  57985. },
  57986. inteleon_back: {
  57987. height: math.unit(6 + 3/12, "feet"),
  57988. weight: math.unit(99.6, "lb"),
  57989. name: "Back",
  57990. image: {
  57991. source: "./media/characters/robin-phox/inteleon-back.svg",
  57992. extra: 907/796,
  57993. bottom: 25/932
  57994. },
  57995. form: "inteleon",
  57996. },
  57997. reshiram_front: {
  57998. height: math.unit(10 + 6/12, "feet"),
  57999. weight: math.unit(727.5, "lb"),
  58000. name: "Front",
  58001. image: {
  58002. source: "./media/characters/robin-phox/reshiram-front.svg",
  58003. extra: 1198/940,
  58004. bottom: 123/1321
  58005. },
  58006. form: "reshiram",
  58007. },
  58008. reshiram_frontNsfw: {
  58009. height: math.unit(10 + 6/12, "feet"),
  58010. weight: math.unit(727.5, "lb"),
  58011. name: "Front-nsfw",
  58012. image: {
  58013. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  58014. extra: 1198/940,
  58015. bottom: 123/1321
  58016. },
  58017. form: "reshiram",
  58018. },
  58019. reshiram_back: {
  58020. height: math.unit(10 + 6/12, "feet"),
  58021. weight: math.unit(727.5, "lb"),
  58022. name: "Back",
  58023. image: {
  58024. source: "./media/characters/robin-phox/reshiram-back.svg",
  58025. extra: 1024/904,
  58026. bottom: 85/1109
  58027. },
  58028. form: "reshiram",
  58029. },
  58030. samurott_front: {
  58031. height: math.unit(8, "feet"),
  58032. weight: math.unit(208.6, "lb"),
  58033. name: "Front",
  58034. image: {
  58035. source: "./media/characters/robin-phox/samurott-front.svg",
  58036. extra: 1048/984,
  58037. bottom: 100/1148
  58038. },
  58039. form: "samurott",
  58040. },
  58041. samurott_frontNsfw: {
  58042. height: math.unit(8, "feet"),
  58043. weight: math.unit(208.6, "lb"),
  58044. name: "Front-nsfw",
  58045. image: {
  58046. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  58047. extra: 1048/984,
  58048. bottom: 100/1148
  58049. },
  58050. form: "samurott",
  58051. },
  58052. samurott_back: {
  58053. height: math.unit(8, "feet"),
  58054. weight: math.unit(208.6, "lb"),
  58055. name: "Back",
  58056. image: {
  58057. source: "./media/characters/robin-phox/samurott-back.svg",
  58058. extra: 1110/1042,
  58059. bottom: 12/1122
  58060. },
  58061. form: "samurott",
  58062. },
  58063. samurott_feral: {
  58064. height: math.unit(4 + 11/12, "feet"),
  58065. weight: math.unit(208.6, "lb"),
  58066. name: "Feral",
  58067. image: {
  58068. source: "./media/characters/robin-phox/samurott-feral.svg",
  58069. extra: 766/681,
  58070. bottom: 108/874
  58071. },
  58072. form: "samurott",
  58073. },
  58074. },
  58075. [
  58076. {
  58077. name: "Normal",
  58078. height: math.unit(2, "feet"),
  58079. default: true,
  58080. form: "snivy"
  58081. },
  58082. {
  58083. name: "Normal",
  58084. height: math.unit(6, "feet"),
  58085. default: true,
  58086. form: "yoshi"
  58087. },
  58088. {
  58089. name: "Normal",
  58090. height: math.unit(4 + 11/12, "feet"),
  58091. default: true,
  58092. form: "delphox"
  58093. },
  58094. {
  58095. name: "Normal",
  58096. height: math.unit(4 + 7/12, "feet"),
  58097. default: true,
  58098. form: "mienshao"
  58099. },
  58100. {
  58101. name: "Normal",
  58102. height: math.unit(6 + 3/12, "feet"),
  58103. default: true,
  58104. form: "inteleon"
  58105. },
  58106. {
  58107. name: "Normal",
  58108. height: math.unit(10 + 6/12, "feet"),
  58109. default: true,
  58110. form: "reshiram"
  58111. },
  58112. {
  58113. name: "Normal",
  58114. height: math.unit(8, "feet"),
  58115. default: true,
  58116. form: "samurott"
  58117. },
  58118. {
  58119. name: "Macro",
  58120. height: math.unit(500, "feet"),
  58121. allForms: true
  58122. },
  58123. {
  58124. name: "Mega Macro",
  58125. height: math.unit(10, "earths"),
  58126. allForms: true
  58127. },
  58128. {
  58129. name: "Giga Macro",
  58130. height: math.unit(1, "galaxy"),
  58131. allForms: true
  58132. },
  58133. {
  58134. name: "Godly Macro",
  58135. height: math.unit(1e10, "multiverses"),
  58136. allForms: true
  58137. },
  58138. ],
  58139. {
  58140. "snivy": {
  58141. name: "Snivy",
  58142. default: true
  58143. },
  58144. "yoshi": {
  58145. name: "Yoshi",
  58146. },
  58147. "delphox": {
  58148. name: "Delphox",
  58149. },
  58150. "mienshao": {
  58151. name: "Mienshao",
  58152. },
  58153. "inteleon": {
  58154. name: "Inteleon",
  58155. },
  58156. "reshiram": {
  58157. name: "Reshiram",
  58158. },
  58159. "samurott": {
  58160. name: "Samurott",
  58161. },
  58162. }
  58163. ))
  58164. characterMakers.push(() => makeCharacter(
  58165. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  58166. {
  58167. front: {
  58168. height: math.unit(4, "feet"),
  58169. name: "Front",
  58170. image: {
  58171. source: "./media/characters/ash-leung/front.svg",
  58172. extra: 1916/1792,
  58173. bottom: 50/1966
  58174. }
  58175. },
  58176. },
  58177. [
  58178. {
  58179. name: "Atomic",
  58180. height: math.unit(1, "angstrom")
  58181. },
  58182. {
  58183. name: "Microscopic",
  58184. height: math.unit(4000, "angstroms")
  58185. },
  58186. {
  58187. name: "Speck",
  58188. height: math.unit(1, "mm")
  58189. },
  58190. {
  58191. name: "Small",
  58192. height: math.unit(1, "inch")
  58193. },
  58194. {
  58195. name: "Normal",
  58196. height: math.unit(4, "feet"),
  58197. default: true
  58198. },
  58199. ]
  58200. ))
  58201. characterMakers.push(() => makeCharacter(
  58202. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  58203. {
  58204. frontDressed: {
  58205. height: math.unit(2.08, "meters"),
  58206. weight: math.unit(175, "lb"),
  58207. name: "Front (Dressed)",
  58208. image: {
  58209. source: "./media/characters/carie/front-dressed.svg",
  58210. extra: 456/417,
  58211. bottom: 7/463
  58212. }
  58213. },
  58214. backDressed: {
  58215. height: math.unit(2.08, "meters"),
  58216. weight: math.unit(175, "lb"),
  58217. name: "Back (Dressed)",
  58218. image: {
  58219. source: "./media/characters/carie/back-dressed.svg",
  58220. extra: 455/414,
  58221. bottom: 11/466
  58222. }
  58223. },
  58224. front: {
  58225. height: math.unit(2, "meters"),
  58226. weight: math.unit(175, "lb"),
  58227. name: "Front",
  58228. image: {
  58229. source: "./media/characters/carie/front.svg",
  58230. extra: 438/399,
  58231. bottom: 12/450
  58232. }
  58233. },
  58234. back: {
  58235. height: math.unit(2, "meters"),
  58236. weight: math.unit(175, "lb"),
  58237. name: "Back",
  58238. image: {
  58239. source: "./media/characters/carie/back.svg",
  58240. extra: 438/397,
  58241. bottom: 7/445
  58242. }
  58243. },
  58244. },
  58245. [
  58246. {
  58247. name: "Normal",
  58248. height: math.unit(2.08, "meters"),
  58249. default: true
  58250. },
  58251. {
  58252. name: "Macro",
  58253. height: math.unit(2.08e3, "meters")
  58254. },
  58255. {
  58256. name: "Mega Macro",
  58257. height: math.unit(2.08e6, "meters")
  58258. },
  58259. {
  58260. name: "Giga Macro",
  58261. height: math.unit(2.08e9, "meters")
  58262. },
  58263. {
  58264. name: "Tera Macro",
  58265. height: math.unit(2.08e12, "meters")
  58266. },
  58267. {
  58268. name: "Peta Macro",
  58269. height: math.unit(2.08e15, "meters")
  58270. },
  58271. {
  58272. name: "Exa Macro",
  58273. height: math.unit(2.08e18, "meters")
  58274. },
  58275. {
  58276. name: "Zetta Macro",
  58277. height: math.unit(2.08e21, "meters")
  58278. },
  58279. {
  58280. name: "Yotta Macro",
  58281. height: math.unit(2.08e24, "meters")
  58282. },
  58283. ]
  58284. ))
  58285. characterMakers.push(() => makeCharacter(
  58286. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  58287. {
  58288. front: {
  58289. height: math.unit(5 + 2/12, "feet"),
  58290. weight: math.unit(120, "lb"),
  58291. name: "Front",
  58292. image: {
  58293. source: "./media/characters/sai-bree/front.svg",
  58294. extra: 1843/1702,
  58295. bottom: 91/1934
  58296. }
  58297. },
  58298. back: {
  58299. height: math.unit(5 + 2/12, "feet"),
  58300. weight: math.unit(120, "lb"),
  58301. name: "Back",
  58302. image: {
  58303. source: "./media/characters/sai-bree/back.svg",
  58304. extra: 1809/1637,
  58305. bottom: 56/1865
  58306. }
  58307. },
  58308. },
  58309. [
  58310. {
  58311. name: "Normal",
  58312. height: math.unit(5 + 2/12, "feet"),
  58313. default: true
  58314. },
  58315. {
  58316. name: "Macro",
  58317. height: math.unit(500, "feet")
  58318. },
  58319. ]
  58320. ))
  58321. characterMakers.push(() => makeCharacter(
  58322. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  58323. {
  58324. side: {
  58325. height: math.unit(0.77, "meters"),
  58326. weight: math.unit(120, "lb"),
  58327. name: "Side",
  58328. image: {
  58329. source: "./media/characters/davwyn/side.svg",
  58330. extra: 1557/1225,
  58331. bottom: 131/1688
  58332. }
  58333. },
  58334. front: {
  58335. height: math.unit(0.835410, "meters"),
  58336. weight: math.unit(120, "lb"),
  58337. name: "Front",
  58338. image: {
  58339. source: "./media/characters/davwyn/front.svg",
  58340. extra: 870/843,
  58341. bottom: 175/1045
  58342. }
  58343. },
  58344. },
  58345. [
  58346. {
  58347. name: "Minidrake",
  58348. height: math.unit(0.77/4, "meters")
  58349. },
  58350. {
  58351. name: "Normal",
  58352. height: math.unit(0.77, "meters"),
  58353. default: true
  58354. },
  58355. ]
  58356. ))
  58357. characterMakers.push(() => makeCharacter(
  58358. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  58359. {
  58360. front: {
  58361. height: math.unit(10 + 3/12, "feet"),
  58362. weight: math.unit(2857, "lb"),
  58363. name: "Front",
  58364. image: {
  58365. source: "./media/characters/balans/front.svg",
  58366. extra: 427/402,
  58367. bottom: 26/453
  58368. }
  58369. },
  58370. side: {
  58371. height: math.unit(10 + 3/12, "feet"),
  58372. weight: math.unit(2857, "lb"),
  58373. name: "Side",
  58374. image: {
  58375. source: "./media/characters/balans/side.svg",
  58376. extra: 397/371,
  58377. bottom: 17/414
  58378. }
  58379. },
  58380. back: {
  58381. height: math.unit(10 + 3/12, "feet"),
  58382. weight: math.unit(2857, "lb"),
  58383. name: "Back",
  58384. image: {
  58385. source: "./media/characters/balans/back.svg",
  58386. extra: 408/381,
  58387. bottom: 14/422
  58388. }
  58389. },
  58390. hand: {
  58391. height: math.unit(1.15, "feet"),
  58392. name: "Hand",
  58393. image: {
  58394. source: "./media/characters/balans/hand.svg"
  58395. }
  58396. },
  58397. footRest: {
  58398. height: math.unit(3.1, "feet"),
  58399. name: "Foot (Rest)",
  58400. image: {
  58401. source: "./media/characters/balans/foot-rest.svg"
  58402. }
  58403. },
  58404. footActive: {
  58405. height: math.unit(3.5, "feet"),
  58406. name: "Foot (Active)",
  58407. image: {
  58408. source: "./media/characters/balans/foot-active.svg"
  58409. }
  58410. },
  58411. },
  58412. [
  58413. {
  58414. name: "Normal",
  58415. height: math.unit(10 + 3/12, "feet"),
  58416. default: true
  58417. },
  58418. ]
  58419. ))
  58420. characterMakers.push(() => makeCharacter(
  58421. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  58422. {
  58423. side: {
  58424. height: math.unit(9, "meters"),
  58425. weight: math.unit(114, "tonnes"),
  58426. name: "Side",
  58427. image: {
  58428. source: "./media/characters/eldkveikir/side.svg",
  58429. extra: 1927/338,
  58430. bottom: 42/1969
  58431. }
  58432. },
  58433. sitting: {
  58434. height: math.unit(13.4, "meters"),
  58435. weight: math.unit(114, "tonnes"),
  58436. name: "Sitting",
  58437. image: {
  58438. source: "./media/characters/eldkveikir/sitting.svg",
  58439. extra: 1108/963,
  58440. bottom: 610/1718
  58441. }
  58442. },
  58443. maw: {
  58444. height: math.unit(8.36, "meters"),
  58445. name: "Maw",
  58446. image: {
  58447. source: "./media/characters/eldkveikir/maw.svg"
  58448. }
  58449. },
  58450. hand: {
  58451. height: math.unit(4.84, "meters"),
  58452. name: "Hand",
  58453. image: {
  58454. source: "./media/characters/eldkveikir/hand.svg"
  58455. }
  58456. },
  58457. foot: {
  58458. height: math.unit(6.9, "meters"),
  58459. name: "Foot",
  58460. image: {
  58461. source: "./media/characters/eldkveikir/foot.svg"
  58462. }
  58463. },
  58464. genitals: {
  58465. height: math.unit(9.6, "meters"),
  58466. name: "Genitals",
  58467. image: {
  58468. source: "./media/characters/eldkveikir/genitals.svg"
  58469. }
  58470. },
  58471. },
  58472. [
  58473. {
  58474. name: "Normal",
  58475. height: math.unit(9, "meters"),
  58476. default: true
  58477. },
  58478. ]
  58479. ))
  58480. characterMakers.push(() => makeCharacter(
  58481. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  58482. {
  58483. front: {
  58484. height: math.unit(14, "feet"),
  58485. weight: math.unit(4100, "lb"),
  58486. name: "Front",
  58487. image: {
  58488. source: "./media/characters/arrow/front.svg",
  58489. extra: 330/318,
  58490. bottom: 56/386
  58491. }
  58492. },
  58493. },
  58494. [
  58495. {
  58496. name: "Normal",
  58497. height: math.unit(14, "feet"),
  58498. default: true
  58499. },
  58500. {
  58501. name: "Minimacro",
  58502. height: math.unit(63, "feet")
  58503. },
  58504. {
  58505. name: "Macro",
  58506. height: math.unit(630, "feet")
  58507. },
  58508. {
  58509. name: "Megamacro",
  58510. height: math.unit(12600, "feet")
  58511. },
  58512. {
  58513. name: "Gigamacro",
  58514. height: math.unit(18000, "miles")
  58515. },
  58516. ]
  58517. ))
  58518. characterMakers.push(() => makeCharacter(
  58519. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  58520. {
  58521. front: {
  58522. height: math.unit(10, "feet"),
  58523. weight: math.unit(2.4, "tons"),
  58524. name: "Front",
  58525. image: {
  58526. source: "./media/characters/3yk-k0-unit/front.svg",
  58527. extra: 573/561,
  58528. bottom: 33/606
  58529. }
  58530. },
  58531. back: {
  58532. height: math.unit(10, "feet"),
  58533. weight: math.unit(2.4, "tons"),
  58534. name: "Back",
  58535. image: {
  58536. source: "./media/characters/3yk-k0-unit/back.svg",
  58537. extra: 614/573,
  58538. bottom: 32/646
  58539. }
  58540. },
  58541. maw: {
  58542. height: math.unit(2.15, "feet"),
  58543. name: "Maw",
  58544. image: {
  58545. source: "./media/characters/3yk-k0-unit/maw.svg"
  58546. }
  58547. },
  58548. },
  58549. [
  58550. {
  58551. name: "Normal",
  58552. height: math.unit(10, "feet"),
  58553. default: true
  58554. },
  58555. ]
  58556. ))
  58557. characterMakers.push(() => makeCharacter(
  58558. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  58559. {
  58560. front: {
  58561. height: math.unit(8 + 8/12, "feet"),
  58562. name: "Front",
  58563. image: {
  58564. source: "./media/characters/nemo/front.svg",
  58565. extra: 1308/1217,
  58566. bottom: 57/1365
  58567. }
  58568. },
  58569. },
  58570. [
  58571. {
  58572. name: "Normal",
  58573. height: math.unit(8 + 8/12, "feet"),
  58574. default: true
  58575. },
  58576. ]
  58577. ))
  58578. characterMakers.push(() => makeCharacter(
  58579. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  58580. {
  58581. front: {
  58582. height: math.unit(8, "feet"),
  58583. weight: math.unit(760, "lb"),
  58584. name: "Front",
  58585. image: {
  58586. source: "./media/characters/rexx/front.svg",
  58587. extra: 786/750,
  58588. bottom: 17/803
  58589. },
  58590. extraAttributes: {
  58591. "pawLength": {
  58592. name: "Paw Length",
  58593. power: 1,
  58594. type: "length",
  58595. base: math.unit(27, "inches")
  58596. },
  58597. }
  58598. },
  58599. },
  58600. [
  58601. {
  58602. name: "Micro",
  58603. height: math.unit(2, "inches")
  58604. },
  58605. {
  58606. name: "Normal",
  58607. height: math.unit(8, "feet"),
  58608. default: true
  58609. },
  58610. {
  58611. name: "Macro",
  58612. height: math.unit(150, "feet")
  58613. },
  58614. ]
  58615. ))
  58616. characterMakers.push(() => makeCharacter(
  58617. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  58618. {
  58619. front: {
  58620. height: math.unit(18, "feet"),
  58621. weight: math.unit(1975, "lb"),
  58622. name: "Front",
  58623. image: {
  58624. source: "./media/characters/draco/front.svg",
  58625. extra: 1325/1241,
  58626. bottom: 83/1408
  58627. }
  58628. },
  58629. back: {
  58630. height: math.unit(18, "feet"),
  58631. weight: math.unit(1975, "lb"),
  58632. name: "Back",
  58633. image: {
  58634. source: "./media/characters/draco/back.svg",
  58635. extra: 1332/1250,
  58636. bottom: 43/1375
  58637. }
  58638. },
  58639. dick: {
  58640. height: math.unit(7.5, "feet"),
  58641. name: "Dick",
  58642. image: {
  58643. source: "./media/characters/draco/dick.svg"
  58644. }
  58645. },
  58646. },
  58647. [
  58648. {
  58649. name: "Normal",
  58650. height: math.unit(18, "feet"),
  58651. default: true
  58652. },
  58653. ]
  58654. ))
  58655. characterMakers.push(() => makeCharacter(
  58656. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  58657. {
  58658. front: {
  58659. height: math.unit(3.2, "meters"),
  58660. name: "Front",
  58661. image: {
  58662. source: "./media/characters/harriett/front.svg",
  58663. extra: 1966/1915,
  58664. bottom: 9/1975
  58665. }
  58666. },
  58667. },
  58668. [
  58669. {
  58670. name: "Normal",
  58671. height: math.unit(3.2, "meters"),
  58672. default: true
  58673. },
  58674. ]
  58675. ))
  58676. characterMakers.push(() => makeCharacter(
  58677. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  58678. {
  58679. standing: {
  58680. height: math.unit(180, "cm"),
  58681. weight: math.unit(185, "lb"),
  58682. name: "Standing",
  58683. image: {
  58684. source: "./media/characters/serpentus/standing.svg",
  58685. extra: 882/878,
  58686. bottom: 16/898
  58687. }
  58688. },
  58689. sitting: {
  58690. height: math.unit(0.8, "meter"),
  58691. weight: math.unit(155, "lb"),
  58692. name: "Sitting",
  58693. image: {
  58694. source: "./media/characters/serpentus/sitting.svg",
  58695. extra: 293/290,
  58696. bottom: 140/433
  58697. }
  58698. },
  58699. },
  58700. [
  58701. {
  58702. name: "Normal",
  58703. height: math.unit(1.8, "meter"),
  58704. default: true
  58705. },
  58706. ]
  58707. ))
  58708. characterMakers.push(() => makeCharacter(
  58709. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  58710. {
  58711. front: {
  58712. height: math.unit(5.7174385736, "feet"),
  58713. name: "Front",
  58714. image: {
  58715. source: "./media/characters/nova-polecat/front.svg",
  58716. extra: 1317/1216,
  58717. bottom: 92/1409
  58718. }
  58719. },
  58720. },
  58721. [
  58722. {
  58723. name: "Normal",
  58724. height: math.unit(5.7174385736, "feet"),
  58725. default: true
  58726. },
  58727. ]
  58728. ))
  58729. characterMakers.push(() => makeCharacter(
  58730. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  58731. {
  58732. front: {
  58733. height: math.unit(5 + 4/12, "feet"),
  58734. weight: math.unit(250, "lb"),
  58735. name: "Front",
  58736. image: {
  58737. source: "./media/characters/mook/front.svg",
  58738. extra: 1088/1037,
  58739. bottom: 132/1220
  58740. }
  58741. },
  58742. back: {
  58743. height: math.unit(5 + 1/12, "feet"),
  58744. weight: math.unit(250, "lb"),
  58745. name: "Back",
  58746. image: {
  58747. source: "./media/characters/mook/back.svg",
  58748. extra: 1184/905,
  58749. bottom: 96/1280
  58750. }
  58751. },
  58752. head: {
  58753. height: math.unit(1.85, "feet"),
  58754. name: "Head",
  58755. image: {
  58756. source: "./media/characters/mook/head.svg"
  58757. }
  58758. },
  58759. hand: {
  58760. height: math.unit(1.9, "feet"),
  58761. name: "Hand",
  58762. image: {
  58763. source: "./media/characters/mook/hand.svg"
  58764. }
  58765. },
  58766. palm: {
  58767. height: math.unit(1.84, "feet"),
  58768. name: "Palm",
  58769. image: {
  58770. source: "./media/characters/mook/palm.svg"
  58771. }
  58772. },
  58773. foot: {
  58774. height: math.unit(1.44, "feet"),
  58775. name: "Foot",
  58776. image: {
  58777. source: "./media/characters/mook/foot.svg"
  58778. }
  58779. },
  58780. sole: {
  58781. height: math.unit(1.44, "feet"),
  58782. name: "Sole",
  58783. image: {
  58784. source: "./media/characters/mook/sole.svg"
  58785. }
  58786. },
  58787. },
  58788. [
  58789. {
  58790. name: "Normal",
  58791. height: math.unit(5 + 4/12, "feet"),
  58792. default: true
  58793. },
  58794. {
  58795. name: "Big",
  58796. height: math.unit(12, "feet")
  58797. },
  58798. ]
  58799. ))
  58800. characterMakers.push(() => makeCharacter(
  58801. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  58802. {
  58803. front: {
  58804. height: math.unit(6 + 10/12, "feet"),
  58805. weight: math.unit(233, "lb"),
  58806. name: "Front",
  58807. image: {
  58808. source: "./media/characters/kayla/front.svg",
  58809. extra: 1850/1775,
  58810. bottom: 65/1915
  58811. }
  58812. },
  58813. },
  58814. [
  58815. {
  58816. name: "Normal",
  58817. height: math.unit(6 + 10/12, "feet"),
  58818. default: true
  58819. },
  58820. {
  58821. name: "Amazonian",
  58822. height: math.unit(12 + 5/12, "feet")
  58823. },
  58824. {
  58825. name: "Mini Giantess",
  58826. height: math.unit(26, "feet")
  58827. },
  58828. {
  58829. name: "Giantess",
  58830. height: math.unit(200, "feet")
  58831. },
  58832. {
  58833. name: "Mega Giantess",
  58834. height: math.unit(2500, "feet")
  58835. },
  58836. {
  58837. name: "City Sized",
  58838. height: math.unit(50, "miles")
  58839. },
  58840. {
  58841. name: "Country Sized",
  58842. height: math.unit(500, "miles")
  58843. },
  58844. {
  58845. name: "Continent Sized",
  58846. height: math.unit(2500, "miles")
  58847. },
  58848. {
  58849. name: "Planet Sized",
  58850. height: math.unit(10000, "miles")
  58851. },
  58852. {
  58853. name: "Star Sized",
  58854. height: math.unit(5e6, "miles")
  58855. },
  58856. {
  58857. name: "Solar System Sized",
  58858. height: math.unit(125, "AU")
  58859. },
  58860. {
  58861. name: "Galaxy Sized",
  58862. height: math.unit(300e3, "lightyears")
  58863. },
  58864. {
  58865. name: "Universe Sized",
  58866. height: math.unit(200e9, "lightyears")
  58867. },
  58868. {
  58869. name: "Multiverse Sized",
  58870. height: math.unit(20, "exauniverses")
  58871. },
  58872. {
  58873. name: "Mother of Existence",
  58874. height: math.unit(1e6, "yottauniverses")
  58875. },
  58876. ]
  58877. ))
  58878. characterMakers.push(() => makeCharacter(
  58879. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  58880. {
  58881. side: {
  58882. height: math.unit(9.5, "meters"),
  58883. name: "Side",
  58884. image: {
  58885. source: "./media/characters/kulve-ragnarok/side.svg",
  58886. extra: 364/326,
  58887. bottom: 50/414
  58888. }
  58889. },
  58890. },
  58891. [
  58892. {
  58893. name: "Normal",
  58894. height: math.unit(9.5, "meters"),
  58895. default: true
  58896. },
  58897. ]
  58898. ))
  58899. characterMakers.push(() => makeCharacter(
  58900. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  58901. {
  58902. front: {
  58903. height: math.unit(8 + 9/12, "feet"),
  58904. name: "Front",
  58905. image: {
  58906. source: "./media/characters/atlas-goat/front.svg",
  58907. extra: 1462/1323,
  58908. bottom: 12/1474
  58909. }
  58910. },
  58911. },
  58912. [
  58913. {
  58914. name: "Normal",
  58915. height: math.unit(8 + 9/12, "feet"),
  58916. default: true
  58917. },
  58918. {
  58919. name: "Skyline",
  58920. height: math.unit(845, "feet")
  58921. },
  58922. {
  58923. name: "Orbital",
  58924. height: math.unit(93000, "miles")
  58925. },
  58926. {
  58927. name: "Constellation",
  58928. height: math.unit(27000, "lightyears")
  58929. },
  58930. ]
  58931. ))
  58932. characterMakers.push(() => makeCharacter(
  58933. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  58934. {
  58935. side: {
  58936. height: math.unit(1.8, "meters"),
  58937. weight: math.unit(120, "kg"),
  58938. name: "Side",
  58939. image: {
  58940. source: "./media/characters/xie-ling/side.svg",
  58941. extra: 646/574,
  58942. bottom: 44/690
  58943. }
  58944. },
  58945. },
  58946. [
  58947. {
  58948. name: "Tiny",
  58949. height: math.unit(1.80, "meters")
  58950. },
  58951. {
  58952. name: "Small",
  58953. height: math.unit(6, "meters")
  58954. },
  58955. {
  58956. name: "Medium",
  58957. height: math.unit(15, "meters")
  58958. },
  58959. {
  58960. name: "Normal",
  58961. height: math.unit(30, "meters"),
  58962. default: true
  58963. },
  58964. {
  58965. name: "Above Normal",
  58966. height: math.unit(60, "meters")
  58967. },
  58968. {
  58969. name: "Big",
  58970. height: math.unit(220, "meters")
  58971. },
  58972. {
  58973. name: "Giant",
  58974. height: math.unit(2.2, "km")
  58975. },
  58976. {
  58977. name: "Macro",
  58978. height: math.unit(25, "km")
  58979. },
  58980. {
  58981. name: "Mega Macro",
  58982. height: math.unit(350, "km")
  58983. },
  58984. {
  58985. name: "Mega Macro+",
  58986. height: math.unit(5000, "km")
  58987. },
  58988. {
  58989. name: "Goddess",
  58990. height: math.unit(3, "multiverses")
  58991. },
  58992. ]
  58993. ))
  58994. characterMakers.push(() => makeCharacter(
  58995. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  58996. {
  58997. frontSfw: {
  58998. height: math.unit(5 + 11/12, "feet"),
  58999. weight: math.unit(210, "lb"),
  59000. name: "Front",
  59001. image: {
  59002. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  59003. extra: 1928/1821,
  59004. bottom: 45/1973
  59005. }
  59006. },
  59007. backSfw: {
  59008. height: math.unit(5 + 11/12, "feet"),
  59009. weight: math.unit(210, "lb"),
  59010. name: "Back",
  59011. image: {
  59012. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  59013. extra: 1920/1813,
  59014. bottom: 34/1954
  59015. }
  59016. },
  59017. frontNsfw: {
  59018. height: math.unit(5 + 11/12, "feet"),
  59019. weight: math.unit(210, "lb"),
  59020. name: "Front (NSFW)",
  59021. image: {
  59022. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  59023. extra: 1928/1821,
  59024. bottom: 45/1973
  59025. }
  59026. },
  59027. backNsfw: {
  59028. height: math.unit(5 + 11/12, "feet"),
  59029. weight: math.unit(210, "lb"),
  59030. name: "Back (NSFW)",
  59031. image: {
  59032. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  59033. extra: 1920/1813,
  59034. bottom: 34/1954
  59035. }
  59036. },
  59037. },
  59038. [
  59039. {
  59040. name: "Normal",
  59041. height: math.unit(5 + 11/12, "feet"),
  59042. default: true
  59043. },
  59044. {
  59045. name: "Goddess",
  59046. height: math.unit(20 + 3/12, "feet")
  59047. },
  59048. {
  59049. name: "Breaker of Man",
  59050. height: math.unit(329 + 9/12, "feet")
  59051. },
  59052. {
  59053. name: "Solar Justice",
  59054. height: math.unit(0.6, "solarradii")
  59055. },
  59056. {
  59057. name: "She Who Judges",
  59058. height: math.unit(1, "universe")
  59059. },
  59060. ]
  59061. ))
  59062. characterMakers.push(() => makeCharacter(
  59063. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  59064. {
  59065. casual_front: {
  59066. height: math.unit(6 + 1/12, "feet"),
  59067. weight: math.unit(190, "lb"),
  59068. preyCapacity: math.unit(1, "people"),
  59069. name: "Front",
  59070. image: {
  59071. source: "./media/characters/managarmr/casual-front.svg",
  59072. extra: 411/381,
  59073. bottom: 15/426
  59074. },
  59075. extraAttributes: {
  59076. "pawSize": {
  59077. name: "Paw Size",
  59078. power: 1,
  59079. type: "length",
  59080. base: math.unit(0.2, "meters")
  59081. },
  59082. },
  59083. form: "casual",
  59084. },
  59085. casual_back: {
  59086. height: math.unit(6 + 1/12, "feet"),
  59087. weight: math.unit(190, "lb"),
  59088. preyCapacity: math.unit(1, "people"),
  59089. name: "Back",
  59090. image: {
  59091. source: "./media/characters/managarmr/casual-back.svg",
  59092. extra: 413/383,
  59093. bottom: 13/426
  59094. },
  59095. extraAttributes: {
  59096. "pawSize": {
  59097. name: "Paw Size",
  59098. power: 1,
  59099. type: "length",
  59100. base: math.unit(0.2, "meters")
  59101. },
  59102. },
  59103. form: "casual",
  59104. },
  59105. base_front: {
  59106. height: math.unit(7, "feet"),
  59107. weight: math.unit(210, "lb"),
  59108. preyCapacity: math.unit(2, "people"),
  59109. name: "Front",
  59110. image: {
  59111. source: "./media/characters/managarmr/base-front.svg",
  59112. extra: 580/485,
  59113. bottom: 32/612
  59114. },
  59115. extraAttributes: {
  59116. "wingspan": {
  59117. name: "Wingspan",
  59118. power: 1,
  59119. type: "length",
  59120. base: math.unit(4, "meters")
  59121. },
  59122. "pawSize": {
  59123. name: "Paw Size",
  59124. power: 1,
  59125. type: "length",
  59126. base: math.unit(0.2, "meters")
  59127. },
  59128. },
  59129. form: "base",
  59130. },
  59131. "true-divine_front": {
  59132. height: math.unit(40, "feet"),
  59133. weight: math.unit(39000, "lb"),
  59134. preyCapacity: math.unit(375, "people"),
  59135. name: "Front",
  59136. image: {
  59137. source: "./media/characters/managarmr/true-divine-front.svg",
  59138. extra: 725/573,
  59139. bottom: 120/845
  59140. },
  59141. extraAttributes: {
  59142. "wingspan": {
  59143. name: "Wingspan",
  59144. power: 1,
  59145. type: "length",
  59146. base: math.unit(20, "meters")
  59147. },
  59148. "pawSize": {
  59149. name: "Paw Size",
  59150. power: 1,
  59151. type: "length",
  59152. base: math.unit(1.5, "meters")
  59153. },
  59154. },
  59155. form: "true-divine",
  59156. },
  59157. },
  59158. [
  59159. {
  59160. name: "Normal",
  59161. height: math.unit(6 + 1/12, "feet"),
  59162. form: "casual",
  59163. default: true
  59164. },
  59165. {
  59166. name: "Normal",
  59167. height: math.unit(7, "feet"),
  59168. form: "base",
  59169. default: true
  59170. },
  59171. ],
  59172. {
  59173. "casual": {
  59174. name: "Casual",
  59175. default: true
  59176. },
  59177. "base": {
  59178. name: "Base",
  59179. },
  59180. "true-divine": {
  59181. name: "True Divine",
  59182. },
  59183. }
  59184. ))
  59185. characterMakers.push(() => makeCharacter(
  59186. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  59187. {
  59188. front: {
  59189. height: math.unit(1.8, "meters"),
  59190. weight: math.unit(110, "kg"),
  59191. name: "Front",
  59192. image: {
  59193. source: "./media/characters/mystra/front.svg",
  59194. extra: 529/442,
  59195. bottom: 31/560
  59196. }
  59197. },
  59198. frontLewd: {
  59199. height: math.unit(1.8, "meters"),
  59200. weight: math.unit(110, "kg"),
  59201. name: "Front (Lewd)",
  59202. image: {
  59203. source: "./media/characters/mystra/front-lewd.svg",
  59204. extra: 529/442,
  59205. bottom: 31/560
  59206. }
  59207. },
  59208. head: {
  59209. height: math.unit(1.63, "feet"),
  59210. name: "Head",
  59211. image: {
  59212. source: "./media/characters/mystra/head.svg"
  59213. }
  59214. },
  59215. paw: {
  59216. height: math.unit(1.9, "feet"),
  59217. name: "Paw",
  59218. image: {
  59219. source: "./media/characters/mystra/paw.svg"
  59220. }
  59221. },
  59222. },
  59223. [
  59224. {
  59225. name: "Incognito",
  59226. height: math.unit(2.3, "meters")
  59227. },
  59228. {
  59229. name: "Small Macro",
  59230. height: math.unit(300, "meters")
  59231. },
  59232. {
  59233. name: "Small Mega",
  59234. height: math.unit(2, "km")
  59235. },
  59236. {
  59237. name: "Mega",
  59238. height: math.unit(30, "km")
  59239. },
  59240. {
  59241. name: "Small Giga",
  59242. height: math.unit(100, "km")
  59243. },
  59244. {
  59245. name: "Giga",
  59246. height: math.unit(1000, "km"),
  59247. default: true
  59248. },
  59249. {
  59250. name: "Continental",
  59251. height: math.unit(5000, "km")
  59252. },
  59253. {
  59254. name: "Terra",
  59255. height: math.unit(20000, "km")
  59256. },
  59257. {
  59258. name: "Solar",
  59259. height: math.unit(2e6, "km")
  59260. },
  59261. {
  59262. name: "Galactic",
  59263. height: math.unit(528502, "lightyears")
  59264. },
  59265. {
  59266. name: "Universal",
  59267. height: math.unit(20, "universes")
  59268. },
  59269. ]
  59270. ))
  59271. characterMakers.push(() => makeCharacter(
  59272. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  59273. {
  59274. front: {
  59275. height: math.unit(2, "meters"),
  59276. weight: math.unit(140, "kg"),
  59277. name: "Front",
  59278. image: {
  59279. source: "./media/characters/caleb/front.svg",
  59280. extra: 873/817,
  59281. bottom: 47/920
  59282. }
  59283. },
  59284. back: {
  59285. height: math.unit(2, "meters"),
  59286. weight: math.unit(140, "kg"),
  59287. name: "Back",
  59288. image: {
  59289. source: "./media/characters/caleb/back.svg",
  59290. extra: 877/828,
  59291. bottom: 24/901
  59292. }
  59293. },
  59294. snakeTail: {
  59295. height: math.unit(1.44, "feet"),
  59296. name: "Snake Tail",
  59297. image: {
  59298. source: "./media/characters/caleb/snake-tail.svg"
  59299. }
  59300. },
  59301. dick: {
  59302. height: math.unit(2.6, "feet"),
  59303. name: "Dick",
  59304. image: {
  59305. source: "./media/characters/caleb/dick.svg"
  59306. }
  59307. },
  59308. },
  59309. [
  59310. {
  59311. name: "Incognito",
  59312. height: math.unit(3, "meters")
  59313. },
  59314. {
  59315. name: "Home Size",
  59316. height: math.unit(200, "meters"),
  59317. default: true
  59318. },
  59319. {
  59320. name: "Macro",
  59321. height: math.unit(500, "meters")
  59322. },
  59323. {
  59324. name: "Big Macro",
  59325. height: math.unit(5, "km")
  59326. },
  59327. {
  59328. name: "Giga",
  59329. height: math.unit(250, "km")
  59330. },
  59331. {
  59332. name: "Giga+",
  59333. height: math.unit(5000, "km")
  59334. },
  59335. {
  59336. name: "Small Terra",
  59337. height: math.unit(35e3, "km")
  59338. },
  59339. {
  59340. name: "Terra",
  59341. height: math.unit(2e6, "km")
  59342. },
  59343. {
  59344. name: "Terra+",
  59345. height: math.unit(1.5e6, "km")
  59346. },
  59347. ]
  59348. ))
  59349. characterMakers.push(() => makeCharacter(
  59350. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  59351. {
  59352. front: {
  59353. height: math.unit(2, "meters"),
  59354. weight: math.unit(120, "kg"),
  59355. name: "Front",
  59356. image: {
  59357. source: "./media/characters/gilirian/front.svg",
  59358. extra: 805/737,
  59359. bottom: 13/818
  59360. }
  59361. },
  59362. side: {
  59363. height: math.unit(2, "meters"),
  59364. weight: math.unit(120, "kg"),
  59365. name: "Side",
  59366. image: {
  59367. source: "./media/characters/gilirian/side.svg",
  59368. extra: 810/746,
  59369. bottom: 6/816
  59370. }
  59371. },
  59372. back: {
  59373. height: math.unit(2, "meters"),
  59374. weight: math.unit(120, "kg"),
  59375. name: "Back",
  59376. image: {
  59377. source: "./media/characters/gilirian/back.svg",
  59378. extra: 815/745,
  59379. bottom: 15/830
  59380. }
  59381. },
  59382. frontNsfw: {
  59383. height: math.unit(2, "meters"),
  59384. weight: math.unit(120, "kg"),
  59385. name: "Front (NSFW)",
  59386. image: {
  59387. source: "./media/characters/gilirian/front-nsfw.svg",
  59388. extra: 805/737,
  59389. bottom: 13/818
  59390. }
  59391. },
  59392. sideNsfw: {
  59393. height: math.unit(2, "meters"),
  59394. weight: math.unit(120, "kg"),
  59395. name: "Side (NSFW)",
  59396. image: {
  59397. source: "./media/characters/gilirian/side-nsfw.svg",
  59398. extra: 810/746,
  59399. bottom: 6/816
  59400. }
  59401. },
  59402. },
  59403. [
  59404. {
  59405. name: "Incognito",
  59406. height: math.unit(2, "meters"),
  59407. default: true
  59408. },
  59409. {
  59410. name: "Macro",
  59411. height: math.unit(250, "meters")
  59412. },
  59413. {
  59414. name: "Big Macro",
  59415. height: math.unit(1500, "meters")
  59416. },
  59417. {
  59418. name: "Mega",
  59419. height: math.unit(40, "km")
  59420. },
  59421. {
  59422. name: "Giga",
  59423. height: math.unit(300, "km")
  59424. },
  59425. {
  59426. name: "Extra Giga",
  59427. height: math.unit(5000, "km")
  59428. },
  59429. {
  59430. name: "Small Terra",
  59431. height: math.unit(10e3, "km")
  59432. },
  59433. {
  59434. name: "Terra",
  59435. height: math.unit(3e5, "km")
  59436. },
  59437. {
  59438. name: "Galactic",
  59439. height: math.unit(369950, "lightyears")
  59440. },
  59441. ]
  59442. ))
  59443. characterMakers.push(() => makeCharacter(
  59444. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  59445. {
  59446. front: {
  59447. height: math.unit(2.5, "meters"),
  59448. weight: math.unit(230, "lb"),
  59449. name: "Front",
  59450. image: {
  59451. source: "./media/characters/tarken/front.svg",
  59452. extra: 764/720,
  59453. bottom: 49/813
  59454. }
  59455. },
  59456. back: {
  59457. height: math.unit(2.5, "meters"),
  59458. weight: math.unit(230, "lb"),
  59459. name: "Back",
  59460. image: {
  59461. source: "./media/characters/tarken/back.svg",
  59462. extra: 756/720,
  59463. bottom: 35/791
  59464. }
  59465. },
  59466. frontNsfw: {
  59467. height: math.unit(2.5, "meters"),
  59468. weight: math.unit(230, "lb"),
  59469. name: "Front (NSFW)",
  59470. image: {
  59471. source: "./media/characters/tarken/front-nsfw.svg",
  59472. extra: 764/720,
  59473. bottom: 49/813
  59474. }
  59475. },
  59476. backNsfw: {
  59477. height: math.unit(2.5, "meters"),
  59478. weight: math.unit(230, "lb"),
  59479. name: "Back (NSFW)",
  59480. image: {
  59481. source: "./media/characters/tarken/back-nsfw.svg",
  59482. extra: 756/720,
  59483. bottom: 35/791
  59484. }
  59485. },
  59486. head: {
  59487. height: math.unit(2.22, "feet"),
  59488. name: "Head",
  59489. image: {
  59490. source: "./media/characters/tarken/head.svg"
  59491. }
  59492. },
  59493. tail: {
  59494. height: math.unit(5.25, "feet"),
  59495. name: "Tail",
  59496. image: {
  59497. source: "./media/characters/tarken/tail.svg"
  59498. }
  59499. },
  59500. dick: {
  59501. height: math.unit(1.95, "feet"),
  59502. name: "Dick",
  59503. image: {
  59504. source: "./media/characters/tarken/dick.svg"
  59505. }
  59506. },
  59507. hand: {
  59508. height: math.unit(1.78, "feet"),
  59509. name: "Hand",
  59510. image: {
  59511. source: "./media/characters/tarken/hand.svg"
  59512. }
  59513. },
  59514. beam: {
  59515. height: math.unit(1.5, "feet"),
  59516. name: "Beam",
  59517. image: {
  59518. source: "./media/characters/tarken/beam.svg"
  59519. }
  59520. },
  59521. },
  59522. [
  59523. {
  59524. name: "Original Size",
  59525. height: math.unit(2.5, "meters")
  59526. },
  59527. {
  59528. name: "Macro",
  59529. height: math.unit(150, "meters"),
  59530. default: true
  59531. },
  59532. {
  59533. name: "Macro+",
  59534. height: math.unit(300, "meters")
  59535. },
  59536. {
  59537. name: "Mega",
  59538. height: math.unit(2, "km")
  59539. },
  59540. {
  59541. name: "Mega+",
  59542. height: math.unit(35, "km")
  59543. },
  59544.  {
  59545. name: "Mega++",
  59546. height: math.unit(60, "km")
  59547. },
  59548. {
  59549. name: "Giga",
  59550. height: math.unit(200, "km")
  59551. },
  59552. {
  59553. name: "Giga+",
  59554. height: math.unit(2500, "km")
  59555. },
  59556. {
  59557. name: "Giga++",
  59558. height: math.unit(6600, "km")
  59559. },
  59560. {
  59561. name: "Terra",
  59562. height: math.unit(20000, "km")
  59563. },
  59564. {
  59565. name: "Terra+",
  59566. height: math.unit(300000, "km")
  59567. },
  59568. ]
  59569. ))
  59570. characterMakers.push(() => makeCharacter(
  59571. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  59572. {
  59573. magpie_dressed: {
  59574. height: math.unit(1.7, "meters"),
  59575. weight: math.unit(70, "kg"),
  59576. name: "Dressed",
  59577. image: {
  59578. source: "./media/characters/otreus/magpie-dressed.svg",
  59579. extra: 691/672,
  59580. bottom: 116/807
  59581. },
  59582. form: "magpie",
  59583. default: true
  59584. },
  59585. magpie_nude: {
  59586. height: math.unit(1.7, "meters"),
  59587. weight: math.unit(70, "kg"),
  59588. name: "Nude",
  59589. image: {
  59590. source: "./media/characters/otreus/magpie-nude.svg",
  59591. extra: 691/672,
  59592. bottom: 116/807
  59593. },
  59594. form: "magpie",
  59595. },
  59596. magpie_dressedLewd: {
  59597. height: math.unit(1.7, "meters"),
  59598. weight: math.unit(70, "kg"),
  59599. name: "Dressed (Lewd)",
  59600. image: {
  59601. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  59602. extra: 691/672,
  59603. bottom: 116/807
  59604. },
  59605. form: "magpie",
  59606. },
  59607. magpie_nudeLewd: {
  59608. height: math.unit(1.7, "meters"),
  59609. weight: math.unit(70, "kg"),
  59610. name: "Nude (Lewd)",
  59611. image: {
  59612. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  59613. extra: 691/672,
  59614. bottom: 116/807
  59615. },
  59616. form: "magpie",
  59617. },
  59618. magpie_leftFoot: {
  59619. height: math.unit(1.58, "feet"),
  59620. name: "Left Foot",
  59621. image: {
  59622. source: "./media/characters/otreus/magpie-left-foot.svg"
  59623. },
  59624. form: "magpie",
  59625. },
  59626. magpie_rightFoot: {
  59627. height: math.unit(1.58, "feet"),
  59628. name: "Right Foot",
  59629. image: {
  59630. source: "./media/characters/otreus/magpie-right-foot.svg"
  59631. },
  59632. form: "magpie",
  59633. },
  59634. magpie_wingspan: {
  59635. height: math.unit(2, "meters"),
  59636. weight: math.unit(70, "kg"),
  59637. name: "Wingspan",
  59638. image: {
  59639. source: "./media/characters/otreus/magpie-wingspan.svg"
  59640. },
  59641. extraAttributes: {
  59642. "wingspan": {
  59643. name: "Wingspan",
  59644. power: 1,
  59645. type: "length",
  59646. base: math.unit(3.35, "meters")
  59647. },
  59648. },
  59649. form: "magpie",
  59650. },
  59651. hippogriff_dressed: {
  59652. height: math.unit(1.7, "meters"),
  59653. weight: math.unit(70, "kg"),
  59654. name: "Dressed",
  59655. image: {
  59656. source: "./media/characters/otreus/hippogriff-dressed.svg",
  59657. extra: 710/689,
  59658. bottom: 67/777
  59659. },
  59660. form: "hippogriff",
  59661. default: true
  59662. },
  59663. hippogriff_nude: {
  59664. height: math.unit(1.7, "meters"),
  59665. weight: math.unit(70, "kg"),
  59666. name: "Nude",
  59667. image: {
  59668. source: "./media/characters/otreus/hippogriff-nude.svg",
  59669. extra: 710/689,
  59670. bottom: 67/777
  59671. },
  59672. form: "hippogriff",
  59673. },
  59674. hippogriff_dressedLewd: {
  59675. height: math.unit(1.7, "meters"),
  59676. weight: math.unit(70, "kg"),
  59677. name: "Dressed (Lewd)",
  59678. image: {
  59679. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  59680. extra: 710/689,
  59681. bottom: 67/777
  59682. },
  59683. form: "hippogriff",
  59684. },
  59685. hippogriff_nudeLewd: {
  59686. height: math.unit(1.7, "meters"),
  59687. weight: math.unit(70, "kg"),
  59688. name: "Nude (Lewd)",
  59689. image: {
  59690. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  59691. extra: 710/689,
  59692. bottom: 67/777
  59693. },
  59694. form: "hippogriff",
  59695. },
  59696. },
  59697. [
  59698. {
  59699. name: "Original Size",
  59700. height: math.unit(1.7, "meters"),
  59701. allForms: true
  59702. },
  59703. {
  59704. name: "Incognito Size",
  59705. height: math.unit(2, "meters"),
  59706. allForms: true
  59707. },
  59708. {
  59709. name: "Mega",
  59710. height: math.unit(2, "km"),
  59711. allForms: true
  59712. },
  59713. {
  59714. name: "Mega+",
  59715. height: math.unit(40, "km"),
  59716. allForms: true
  59717. },
  59718. {
  59719. name: "Giga",
  59720. height: math.unit(250, "km"),
  59721. allForms: true
  59722. },
  59723. {
  59724. name: "Giga+",
  59725. height: math.unit(3000, "km"),
  59726. allForms: true
  59727. },
  59728. {
  59729. name: "Terra",
  59730. height: math.unit(20000, "km"),
  59731. allForms: true
  59732. },
  59733. {
  59734. name: "Solar (Home Size)",
  59735. height: math.unit(3e6, "km"),
  59736. allForms: true,
  59737. default: true
  59738. },
  59739. ],
  59740. {
  59741. "magpie": {
  59742. name: "Magpie",
  59743. default: true
  59744. },
  59745. "hippogriff": {
  59746. name: "Hippogriff",
  59747. },
  59748. }
  59749. ))
  59750. characterMakers.push(() => makeCharacter(
  59751. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  59752. {
  59753. frontDressed: {
  59754. height: math.unit(1.8, "meters"),
  59755. weight: math.unit(90, "kg"),
  59756. name: "Front (Dressed)",
  59757. image: {
  59758. source: "./media/characters/thalia/front-dressed.svg",
  59759. extra: 478/402,
  59760. bottom: 55/533
  59761. }
  59762. },
  59763. backDressed: {
  59764. height: math.unit(1.8, "meters"),
  59765. weight: math.unit(90, "kg"),
  59766. name: "Back (Dressed)",
  59767. image: {
  59768. source: "./media/characters/thalia/back-dressed.svg",
  59769. extra: 500/424,
  59770. bottom: 15/515
  59771. }
  59772. },
  59773. frontNude: {
  59774. height: math.unit(1.8, "meters"),
  59775. weight: math.unit(90, "kg"),
  59776. name: "Front (Nude)",
  59777. image: {
  59778. source: "./media/characters/thalia/front-nude.svg",
  59779. extra: 478/402,
  59780. bottom: 55/533
  59781. }
  59782. },
  59783. backNude: {
  59784. height: math.unit(1.8, "meters"),
  59785. weight: math.unit(90, "kg"),
  59786. name: "Back (Nude)",
  59787. image: {
  59788. source: "./media/characters/thalia/back-nude.svg",
  59789. extra: 500/424,
  59790. bottom: 15/515
  59791. }
  59792. },
  59793. },
  59794. [
  59795. {
  59796. name: "Incognito",
  59797. height: math.unit(3, "meters")
  59798. },
  59799. {
  59800. name: "Macro",
  59801. height: math.unit(500, "meters")
  59802. },
  59803. {
  59804. name: "Mega",
  59805. height: math.unit(5, "km")
  59806. },
  59807. {
  59808. name: "Mega+",
  59809. height: math.unit(30, "km")
  59810. },
  59811. {
  59812. name: "Giga",
  59813. height: math.unit(350, "km")
  59814. },
  59815. {
  59816. name: "Giga+",
  59817. height: math.unit(4000, "km")
  59818. },
  59819. {
  59820. name: "Terra",
  59821. height: math.unit(35000, "km")
  59822. },
  59823. {
  59824. name: "Original Size",
  59825. height: math.unit(130000, "km")
  59826. },
  59827. {
  59828. name: "Solar (Home Size)",
  59829. height: math.unit(4e6, "km"),
  59830. default: true
  59831. },
  59832. ]
  59833. ))
  59834. characterMakers.push(() => makeCharacter(
  59835. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  59836. {
  59837. front: {
  59838. height: math.unit(1.8, "meters"),
  59839. weight: math.unit(95, "kg"),
  59840. name: "Front",
  59841. image: {
  59842. source: "./media/characters/shango/front.svg",
  59843. extra: 1925/1774,
  59844. bottom: 67/1992
  59845. }
  59846. },
  59847. back: {
  59848. height: math.unit(1.8, "meters"),
  59849. weight: math.unit(95, "kg"),
  59850. name: "Back",
  59851. image: {
  59852. source: "./media/characters/shango/back.svg",
  59853. extra: 1915/1766,
  59854. bottom: 52/1967
  59855. }
  59856. },
  59857. frontLewd: {
  59858. height: math.unit(1.8, "meters"),
  59859. weight: math.unit(95, "kg"),
  59860. name: "Front (Lewd)",
  59861. image: {
  59862. source: "./media/characters/shango/front-lewd.svg",
  59863. extra: 1925/1774,
  59864. bottom: 67/1992
  59865. }
  59866. },
  59867. backLewd: {
  59868. height: math.unit(1.8, "meters"),
  59869. weight: math.unit(95, "kg"),
  59870. name: "Back (Lewd)",
  59871. image: {
  59872. source: "./media/characters/shango/back-lewd.svg",
  59873. extra: 1915/1766,
  59874. bottom: 52/1967
  59875. }
  59876. },
  59877. maw: {
  59878. height: math.unit(1.64, "feet"),
  59879. name: "Maw",
  59880. image: {
  59881. source: "./media/characters/shango/maw.svg"
  59882. }
  59883. },
  59884. dick: {
  59885. height: math.unit(2.14, "feet"),
  59886. name: "Dick",
  59887. image: {
  59888. source: "./media/characters/shango/dick.svg"
  59889. }
  59890. },
  59891. },
  59892. [
  59893. {
  59894. name: "Incognito",
  59895. height: math.unit(1.8, "meters")
  59896. },
  59897. {
  59898. name: "Home Size",
  59899. height: math.unit(60, "meters"),
  59900. default: true
  59901. },
  59902. {
  59903. name: "Macro",
  59904. height: math.unit(450, "meters")
  59905. },
  59906. {
  59907. name: "Mega",
  59908. height: math.unit(6, "km")
  59909. },
  59910. {
  59911. name: "Mega+",
  59912. height: math.unit(35, "km")
  59913. },
  59914. {
  59915. name: "Giga",
  59916. height: math.unit(500, "km")
  59917. },
  59918. {
  59919. name: "Giga+",
  59920. height: math.unit(5000, "km")
  59921. },
  59922. {
  59923. name: "Terra",
  59924. height: math.unit(60000, "km")
  59925. },
  59926. {
  59927. name: "Terra+",
  59928. height: math.unit(400000, "km")
  59929. },
  59930. ]
  59931. ))
  59932. characterMakers.push(() => makeCharacter(
  59933. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  59934. {
  59935. front: {
  59936. height: math.unit(2, "meters"),
  59937. weight: math.unit(95, "kg"),
  59938. name: "Front",
  59939. image: {
  59940. source: "./media/characters/osiris-gryphon/front.svg",
  59941. extra: 1508/1313,
  59942. bottom: 87/1595
  59943. }
  59944. },
  59945. back: {
  59946. height: math.unit(2, "meters"),
  59947. weight: math.unit(95, "kg"),
  59948. name: "Back",
  59949. image: {
  59950. source: "./media/characters/osiris-gryphon/back.svg",
  59951. extra: 1436/1309,
  59952. bottom: 64/1500
  59953. }
  59954. },
  59955. frontLewd: {
  59956. height: math.unit(2, "meters"),
  59957. weight: math.unit(95, "kg"),
  59958. name: "Front-lewd",
  59959. image: {
  59960. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  59961. extra: 1508/1313,
  59962. bottom: 87/1595
  59963. }
  59964. },
  59965. wing: {
  59966. height: math.unit(6.3333, "feet"),
  59967. name: "Wing",
  59968. image: {
  59969. source: "./media/characters/osiris-gryphon/wing.svg"
  59970. }
  59971. },
  59972. },
  59973. [
  59974. {
  59975. name: "Incognito",
  59976. height: math.unit(2, "meters")
  59977. },
  59978. {
  59979. name: "Home Size",
  59980. height: math.unit(30, "meters"),
  59981. default: true
  59982. },
  59983. {
  59984. name: "Macro",
  59985. height: math.unit(100, "meters")
  59986. },
  59987. {
  59988. name: "Macro+",
  59989. height: math.unit(350, "meters")
  59990. },
  59991. {
  59992. name: "Mega",
  59993. height: math.unit(40, "km")
  59994. },
  59995. {
  59996. name: "Giga",
  59997. height: math.unit(300, "km")
  59998. },
  59999. {
  60000. name: "Giga+",
  60001. height: math.unit(2000, "km")
  60002. },
  60003. {
  60004. name: "Terra",
  60005. height: math.unit(30000, "km")
  60006. },
  60007. ]
  60008. ))
  60009. characterMakers.push(() => makeCharacter(
  60010. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  60011. {
  60012. front: {
  60013. height: math.unit(2.5, "meters"),
  60014. weight: math.unit(200, "kg"),
  60015. name: "Front",
  60016. image: {
  60017. source: "./media/characters/atlas-dragon/front.svg",
  60018. extra: 745/462,
  60019. bottom: 36/781
  60020. }
  60021. },
  60022. back: {
  60023. height: math.unit(2.5, "meters"),
  60024. weight: math.unit(200, "kg"),
  60025. name: "Back",
  60026. image: {
  60027. source: "./media/characters/atlas-dragon/back.svg",
  60028. extra: 848/822,
  60029. bottom: 57/905
  60030. }
  60031. },
  60032. frontLewd: {
  60033. height: math.unit(2.5, "meters"),
  60034. weight: math.unit(200, "kg"),
  60035. name: "Front (Lewd)",
  60036. image: {
  60037. source: "./media/characters/atlas-dragon/front-lewd.svg",
  60038. extra: 745/462,
  60039. bottom: 36/781
  60040. }
  60041. },
  60042. backLewd: {
  60043. height: math.unit(2.5, "meters"),
  60044. weight: math.unit(200, "kg"),
  60045. name: "Back (Lewd)",
  60046. image: {
  60047. source: "./media/characters/atlas-dragon/back-lewd.svg",
  60048. extra: 848/822,
  60049. bottom: 57/905
  60050. }
  60051. },
  60052. },
  60053. [
  60054. {
  60055. name: "Incognito",
  60056. height: math.unit(2.5, "meters")
  60057. },
  60058. {
  60059. name: "Small Macro",
  60060. height: math.unit(50, "meters")
  60061. },
  60062. {
  60063. name: "Macro",
  60064. height: math.unit(350, "meters")
  60065. },
  60066. {
  60067. name: "Mega",
  60068. height: math.unit(5.5, "kilometers")
  60069. },
  60070. {
  60071. name: "Mega+",
  60072. height: math.unit(50, "km")
  60073. },
  60074. {
  60075. name: "Giga",
  60076. height: math.unit(350, "km")
  60077. },
  60078. {
  60079. name: "Giga+",
  60080. height: math.unit(2000, "km")
  60081. },
  60082. {
  60083. name: "Giga++",
  60084. height: math.unit(6500, "km")
  60085. },
  60086. {
  60087. name: "Terra",
  60088. height: math.unit(30000, "km")
  60089. },
  60090. {
  60091. name: "Terra+",
  60092. height: math.unit(250000, "km")
  60093. },
  60094. {
  60095. name: "True Size",
  60096. height: math.unit(100, "multiverses"),
  60097. default: true
  60098. },
  60099. ]
  60100. ))
  60101. characterMakers.push(() => makeCharacter(
  60102. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  60103. {
  60104. front: {
  60105. height: math.unit(1.8, "m"),
  60106. weight: math.unit(120, "kg"),
  60107. name: "Front",
  60108. image: {
  60109. source: "./media/characters/chey/front.svg",
  60110. extra: 1359/1270,
  60111. bottom: 18/1377
  60112. }
  60113. },
  60114. arm: {
  60115. height: math.unit(2.05, "feet"),
  60116. name: "Arm",
  60117. image: {
  60118. source: "./media/characters/chey/arm.svg"
  60119. }
  60120. },
  60121. head: {
  60122. height: math.unit(1.89, "feet"),
  60123. name: "Head",
  60124. image: {
  60125. source: "./media/characters/chey/head.svg"
  60126. }
  60127. },
  60128. },
  60129. [
  60130. {
  60131. name: "Original Size",
  60132. height: math.unit(5, "cm")
  60133. },
  60134. {
  60135. name: "Incognito Size",
  60136. height: math.unit(2.4, "m")
  60137. },
  60138. {
  60139. name: "Home Size",
  60140. height: math.unit(200, "meters"),
  60141. default: true
  60142. },
  60143. {
  60144. name: "Mega",
  60145. height: math.unit(2, "km")
  60146. },
  60147. {
  60148. name: "Giga (Preferred Size)",
  60149. height: math.unit(2000, "km")
  60150. },
  60151. {
  60152. name: "Giga+",
  60153. height: math.unit(6000, "km")
  60154. },
  60155. {
  60156. name: "Terra",
  60157. height: math.unit(17000, "km")
  60158. },
  60159. {
  60160. name: "Terra+",
  60161. height: math.unit(75000, "km")
  60162. },
  60163. {
  60164. name: "Terra++",
  60165. height: math.unit(225000, "km")
  60166. },
  60167. ]
  60168. ))
  60169. characterMakers.push(() => makeCharacter(
  60170. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  60171. {
  60172. side: {
  60173. height: math.unit(7.8, "meters"),
  60174. name: "Side",
  60175. image: {
  60176. source: "./media/characters/ragnarok/side.svg",
  60177. extra: 725/621,
  60178. bottom: 72/797
  60179. }
  60180. },
  60181. },
  60182. [
  60183. {
  60184. name: "Normal",
  60185. height: math.unit(7.8, "meters"),
  60186. default: true
  60187. },
  60188. ]
  60189. ))
  60190. characterMakers.push(() => makeCharacter(
  60191. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  60192. {
  60193. hyena_front: {
  60194. height: math.unit(2.1, "meters"),
  60195. weight: math.unit(110, "kg"),
  60196. name: "Front",
  60197. image: {
  60198. source: "./media/characters/nima/hyena-front.svg",
  60199. extra: 1904/1796,
  60200. bottom: 67/1971
  60201. },
  60202. form: "hyena",
  60203. },
  60204. hyena_back: {
  60205. height: math.unit(2.1, "meters"),
  60206. weight: math.unit(110, "kg"),
  60207. name: "Back",
  60208. image: {
  60209. source: "./media/characters/nima/hyena-back.svg",
  60210. extra: 1964/1884,
  60211. bottom: 35/1999
  60212. },
  60213. form: "hyena",
  60214. },
  60215. shark_front: {
  60216. height: math.unit(1.95, "meters"),
  60217. weight: math.unit(110, "kg"),
  60218. name: "Front",
  60219. image: {
  60220. source: "./media/characters/nima/shark-front.svg",
  60221. extra: 2238/2013,
  60222. bottom: 0/223
  60223. },
  60224. form: "shark",
  60225. },
  60226. paw: {
  60227. height: math.unit(1, "feet"),
  60228. name: "Paw",
  60229. image: {
  60230. source: "./media/characters/nima/paw.svg"
  60231. }
  60232. },
  60233. circlet: {
  60234. height: math.unit(0.3, "feet"),
  60235. name: "Circlet",
  60236. image: {
  60237. source: "./media/characters/nima/circlet.svg"
  60238. }
  60239. },
  60240. necklace: {
  60241. height: math.unit(1.2, "feet"),
  60242. name: "Necklace",
  60243. image: {
  60244. source: "./media/characters/nima/necklace.svg"
  60245. }
  60246. },
  60247. bracelet: {
  60248. height: math.unit(0.51, "feet"),
  60249. name: "Bracelet",
  60250. image: {
  60251. source: "./media/characters/nima/bracelet.svg"
  60252. }
  60253. },
  60254. armband: {
  60255. height: math.unit(1.3, "feet"),
  60256. name: "Armband",
  60257. image: {
  60258. source: "./media/characters/nima/armband.svg"
  60259. }
  60260. },
  60261. },
  60262. [
  60263. {
  60264. name: "Incognito",
  60265. height: math.unit(2.1, "meters"),
  60266. allForms: true
  60267. },
  60268. {
  60269. name: "Small Macro",
  60270. height: math.unit(50, "meters"),
  60271. allForms: true
  60272. },
  60273. {
  60274. name: "Macro",
  60275. height: math.unit(200, "meters"),
  60276. allForms: true
  60277. },
  60278. {
  60279. name: "Mega",
  60280. height: math.unit(2.5, "km"),
  60281. allForms: true
  60282. },
  60283. {
  60284. name: "Mega+",
  60285. height: math.unit(30, "km"),
  60286. allForms: true
  60287. },
  60288. {
  60289. name: "Giga (Home Size)",
  60290. height: math.unit(400, "km"),
  60291. allForms: true,
  60292. default: true
  60293. },
  60294. {
  60295. name: "Giga+",
  60296. height: math.unit(2500, "km"),
  60297. allForms: true
  60298. },
  60299. {
  60300. name: "Giga++",
  60301. height: math.unit(8000, "km"),
  60302. allForms: true
  60303. },
  60304. {
  60305. name: "Terra",
  60306. height: math.unit(20000, "km"),
  60307. allForms: true
  60308. },
  60309. {
  60310. name: "Terra+",
  60311. height: math.unit(70000, "km"),
  60312. allForms: true
  60313. },
  60314. {
  60315. name: "Terra++",
  60316. height: math.unit(600000, "km"),
  60317. allForms: true
  60318. },
  60319. {
  60320. name: "Galactic",
  60321. height: math.unit(40, "galaxies"),
  60322. allForms: true
  60323. },
  60324. {
  60325. name: "Universal",
  60326. height: math.unit(40, "universes"),
  60327. allForms: true
  60328. },
  60329. ],
  60330. {
  60331. "hyena": {
  60332. name: "Hyena",
  60333. default: true
  60334. },
  60335. "shark": {
  60336. name: "Shark",
  60337. },
  60338. }
  60339. ))
  60340. characterMakers.push(() => makeCharacter(
  60341. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  60342. {
  60343. anthro_front: {
  60344. height: math.unit(1.5, "meters"),
  60345. name: "Front",
  60346. image: {
  60347. source: "./media/characters/adelaide/anthro-front.svg",
  60348. extra: 860/783,
  60349. bottom: 60/920
  60350. },
  60351. form: "anthro",
  60352. default: true
  60353. },
  60354. hand: {
  60355. height: math.unit(0.65, "feet"),
  60356. name: "Hand",
  60357. image: {
  60358. source: "./media/characters/adelaide/hand.svg"
  60359. },
  60360. form: "anthro"
  60361. },
  60362. foot: {
  60363. height: math.unit(1.38 * 259 / 314, "feet"),
  60364. name: "Foot",
  60365. image: {
  60366. source: "./media/characters/adelaide/foot.svg",
  60367. extra: 259/259,
  60368. bottom: 55/314
  60369. },
  60370. form: "anthro"
  60371. },
  60372. feather: {
  60373. height: math.unit(0.85, "feet"),
  60374. name: "Feather",
  60375. image: {
  60376. source: "./media/characters/adelaide/feather.svg"
  60377. },
  60378. form: "anthro"
  60379. },
  60380. feral_side: {
  60381. height: math.unit(1, "meters"),
  60382. name: "Side",
  60383. image: {
  60384. source: "./media/characters/adelaide/feral-side.svg",
  60385. extra: 550/467,
  60386. bottom: 37/587
  60387. },
  60388. form: "feral",
  60389. default: true
  60390. },
  60391. feral_hand: {
  60392. height: math.unit(0.58, "feet"),
  60393. name: "Hand",
  60394. image: {
  60395. source: "./media/characters/adelaide/hand.svg"
  60396. },
  60397. form: "feral"
  60398. },
  60399. feral_foot: {
  60400. height: math.unit(1.2 * 259 / 314, "feet"),
  60401. name: "Foot",
  60402. image: {
  60403. source: "./media/characters/adelaide/foot.svg",
  60404. extra: 259/259,
  60405. bottom: 55/314
  60406. },
  60407. form: "feral"
  60408. },
  60409. feral_feather: {
  60410. height: math.unit(0.63, "feet"),
  60411. name: "Feather",
  60412. image: {
  60413. source: "./media/characters/adelaide/feather.svg"
  60414. },
  60415. form: "feral"
  60416. },
  60417. },
  60418. [
  60419. {
  60420. name: "Normal",
  60421. height: math.unit(1.5, "meters"),
  60422. form: "anthro",
  60423. default: true
  60424. },
  60425. {
  60426. name: "Normal",
  60427. height: math.unit(1, "meters"),
  60428. form: "feral",
  60429. default: true
  60430. },
  60431. ],
  60432. {
  60433. "anthro": {
  60434. name: "Anthro",
  60435. default: true
  60436. },
  60437. "feral": {
  60438. name: "Feral",
  60439. },
  60440. }
  60441. ))
  60442. characterMakers.push(() => makeCharacter(
  60443. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  60444. {
  60445. front: {
  60446. height: math.unit(2.5, "meters"),
  60447. name: "Front",
  60448. image: {
  60449. source: "./media/characters/goa/front.svg",
  60450. extra: 1109/1013,
  60451. bottom: 150/1259
  60452. }
  60453. },
  60454. },
  60455. [
  60456. {
  60457. name: "Normal",
  60458. height: math.unit(2.5, "meters"),
  60459. default: true
  60460. },
  60461. ]
  60462. ))
  60463. characterMakers.push(() => makeCharacter(
  60464. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  60465. {
  60466. front: {
  60467. height: math.unit(2, "meters"),
  60468. weight: math.unit(100, "kg"),
  60469. name: "Front",
  60470. image: {
  60471. source: "./media/characters/kiki-weavile/front.svg",
  60472. extra: 357/332,
  60473. bottom: 60/417
  60474. }
  60475. },
  60476. },
  60477. [
  60478. {
  60479. name: "Normal",
  60480. height: math.unit(2, "meters"),
  60481. default: true
  60482. },
  60483. ]
  60484. ))
  60485. characterMakers.push(() => makeCharacter(
  60486. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  60487. {
  60488. side: {
  60489. height: math.unit(1.6, "meters"),
  60490. name: "Side",
  60491. image: {
  60492. source: "./media/characters/liza/side.svg",
  60493. extra: 943/915,
  60494. bottom: 72/1015
  60495. }
  60496. },
  60497. },
  60498. [
  60499. {
  60500. name: "Normal",
  60501. height: math.unit(1.6, "meters"),
  60502. default: true
  60503. },
  60504. ]
  60505. ))
  60506. characterMakers.push(() => makeCharacter(
  60507. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  60508. {
  60509. side: {
  60510. height: math.unit(2.5, "meters"),
  60511. preyCapacity: math.unit(1, "people"),
  60512. name: "Side",
  60513. image: {
  60514. source: "./media/characters/persephone-sweetbreath/side.svg",
  60515. extra: 796/700,
  60516. bottom: 44/840
  60517. }
  60518. },
  60519. sideVore: {
  60520. height: math.unit(2.5, "meters"),
  60521. preyCapacity: math.unit(1, "people"),
  60522. name: "Side (Full)",
  60523. image: {
  60524. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  60525. extra: 796/700,
  60526. bottom: 44/840
  60527. }
  60528. },
  60529. },
  60530. [
  60531. {
  60532. name: "Normal",
  60533. height: math.unit(2.5, "meters"),
  60534. default: true
  60535. },
  60536. ]
  60537. ))
  60538. characterMakers.push(() => makeCharacter(
  60539. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  60540. {
  60541. front: {
  60542. height: math.unit(32, "meters"),
  60543. name: "Front",
  60544. image: {
  60545. source: "./media/characters/pierce/front.svg",
  60546. extra: 1695/1475,
  60547. bottom: 185/1880
  60548. }
  60549. },
  60550. side: {
  60551. height: math.unit(32, "meters"),
  60552. name: "Side",
  60553. image: {
  60554. source: "./media/characters/pierce/side.svg",
  60555. extra: 974/859,
  60556. bottom: 43/1017
  60557. }
  60558. },
  60559. frontWingless: {
  60560. height: math.unit(32, "meters"),
  60561. name: "Front (Wingless)",
  60562. image: {
  60563. source: "./media/characters/pierce/front-wingless.svg",
  60564. extra: 1695/1475,
  60565. bottom: 185/1880
  60566. }
  60567. },
  60568. sideWingless: {
  60569. height: math.unit(32, "meters"),
  60570. name: "Side (Wingless)",
  60571. image: {
  60572. source: "./media/characters/pierce/side-wingless.svg",
  60573. extra: 974/859,
  60574. bottom: 43/1017
  60575. }
  60576. },
  60577. maw: {
  60578. height: math.unit(19.3, "meters"),
  60579. name: "Maw",
  60580. image: {
  60581. source: "./media/characters/pierce/maw.svg"
  60582. }
  60583. },
  60584. },
  60585. [
  60586. {
  60587. name: "Small",
  60588. height: math.unit(8.5, "meters")
  60589. },
  60590. {
  60591. name: "Normal",
  60592. height: math.unit(32, "meters"),
  60593. default: true
  60594. },
  60595. ]
  60596. ))
  60597. characterMakers.push(() => makeCharacter(
  60598. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  60599. {
  60600. front: {
  60601. height: math.unit(2.3, "meters"),
  60602. weight: math.unit(165, "kg"),
  60603. name: "Front",
  60604. image: {
  60605. source: "./media/characters/shira/front.svg",
  60606. extra: 924/919,
  60607. bottom: 17/941
  60608. },
  60609. form: "cobra",
  60610. default: true
  60611. },
  60612. back: {
  60613. height: math.unit(2.3, "meters"),
  60614. weight: math.unit(165, "kg"),
  60615. name: "Back",
  60616. image: {
  60617. source: "./media/characters/shira/back.svg",
  60618. extra: 928/922,
  60619. bottom: 18/946
  60620. },
  60621. form: "cobra"
  60622. },
  60623. frontLewd: {
  60624. height: math.unit(2.3, "meters"),
  60625. weight: math.unit(165, "kg"),
  60626. name: "Front (Lewd)",
  60627. image: {
  60628. source: "./media/characters/shira/front-lewd.svg",
  60629. extra: 924/919,
  60630. bottom: 17/941
  60631. },
  60632. form: "cobra"
  60633. },
  60634. backLewd: {
  60635. height: math.unit(2.3, "meters"),
  60636. weight: math.unit(165, "kg"),
  60637. name: "Back (Lewd)",
  60638. image: {
  60639. source: "./media/characters/shira/back-lewd.svg",
  60640. extra: 928/922,
  60641. bottom: 18/946
  60642. },
  60643. form: "cobra"
  60644. },
  60645. maw: {
  60646. height: math.unit(1.14, "feet"),
  60647. name: "Maw",
  60648. image: {
  60649. source: "./media/characters/shira/maw.svg"
  60650. },
  60651. form: "cobra"
  60652. },
  60653. magma_front: {
  60654. height: math.unit(2.3, "meters"),
  60655. weight: math.unit(165, "kg"),
  60656. name: "Front",
  60657. image: {
  60658. source: "./media/characters/shira/magma-front.svg",
  60659. extra: 1870/1693,
  60660. bottom: 24/1894
  60661. },
  60662. form: "magma",
  60663. },
  60664. magma_back: {
  60665. height: math.unit(2.3, "meters"),
  60666. weight: math.unit(165, "kg"),
  60667. name: "Back",
  60668. image: {
  60669. source: "./media/characters/shira/magma-back.svg",
  60670. extra: 1918/1756,
  60671. bottom: 46/1964
  60672. },
  60673. form: "magma",
  60674. },
  60675. },
  60676. [
  60677. {
  60678. name: "Incognito",
  60679. height: math.unit(2.3, "meters"),
  60680. allForms: true
  60681. },
  60682. {
  60683. name: "Home Size",
  60684. height: math.unit(150, "meters"),
  60685. default: true,
  60686. allForms: true
  60687. },
  60688. {
  60689. name: "Macro",
  60690. height: math.unit(2, "km"),
  60691. allForms: true
  60692. },
  60693. {
  60694. name: "Mega",
  60695. height: math.unit(30, "km"),
  60696. allForms: true
  60697. },
  60698. {
  60699. name: "Giga",
  60700. height: math.unit(450, "km"),
  60701. allForms: true
  60702. },
  60703. {
  60704. name: "Giga+",
  60705. height: math.unit(3000, "km"),
  60706. allForms: true
  60707. },
  60708. {
  60709. name: "Giga++",
  60710. height: math.unit(6000, "km"),
  60711. allForms: true
  60712. },
  60713. {
  60714. name: "Terra",
  60715. height: math.unit(80000, "km"),
  60716. allForms: true
  60717. },
  60718. {
  60719. name: "Terra+",
  60720. height: math.unit(350000, "km"),
  60721. allForms: true
  60722. },
  60723. {
  60724. name: "Solar",
  60725. height: math.unit(1e6, "km"),
  60726. allForms: true
  60727. },
  60728. ],
  60729. {
  60730. "cobra": {
  60731. name: "Cobra",
  60732. default: true
  60733. },
  60734. "magma": {
  60735. name: "Magma Dragon",
  60736. },
  60737. }
  60738. ))
  60739. characterMakers.push(() => makeCharacter(
  60740. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  60741. {
  60742. front: {
  60743. height: math.unit(2, "meters"),
  60744. weight: math.unit(160, "kg"),
  60745. name: "Front",
  60746. image: {
  60747. source: "./media/characters/daxerios/front.svg",
  60748. extra: 1334/1277,
  60749. bottom: 45/1379
  60750. }
  60751. },
  60752. frontLewd: {
  60753. height: math.unit(2, "meters"),
  60754. weight: math.unit(160, "kg"),
  60755. name: "Front (Lewd)",
  60756. image: {
  60757. source: "./media/characters/daxerios/front-lewd.svg",
  60758. extra: 1334/1277,
  60759. bottom: 45/1379
  60760. }
  60761. },
  60762. dick: {
  60763. height: math.unit(2.35, "feet"),
  60764. name: "Dick",
  60765. image: {
  60766. source: "./media/characters/daxerios/dick.svg"
  60767. }
  60768. },
  60769. },
  60770. [
  60771. {
  60772. name: "\"Small\"",
  60773. height: math.unit(5, "meters")
  60774. },
  60775. {
  60776. name: "Original Size",
  60777. height: math.unit(500, "meters"),
  60778. default: true
  60779. },
  60780. {
  60781. name: "Mega",
  60782. height: math.unit(2, "km")
  60783. },
  60784. {
  60785. name: "Mega+",
  60786. height: math.unit(35, "km")
  60787. },
  60788. {
  60789. name: "Giga",
  60790. height: math.unit(250, "km")
  60791. },
  60792. {
  60793. name: "Giga+",
  60794. height: math.unit(3000, "km")
  60795. },
  60796. {
  60797. name: "Terra",
  60798. height: math.unit(25000, "km")
  60799. },
  60800. {
  60801. name: "Terra+",
  60802. height: math.unit(300000, "km")
  60803. },
  60804. {
  60805. name: "Solar",
  60806. height: math.unit(1e6, "km")
  60807. },
  60808. ]
  60809. ))
  60810. characterMakers.push(() => makeCharacter(
  60811. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  60812. {
  60813. front: {
  60814. height: math.unit(8 + 4/12, "feet"),
  60815. weight: math.unit(464, "lb"),
  60816. name: "Front",
  60817. image: {
  60818. source: "./media/characters/caveat/front.svg",
  60819. extra: 1861/1678,
  60820. bottom: 40/1901
  60821. }
  60822. },
  60823. },
  60824. [
  60825. {
  60826. name: "Normal",
  60827. height: math.unit(8 + 4/12, "feet"),
  60828. default: true
  60829. },
  60830. ]
  60831. ))
  60832. characterMakers.push(() => makeCharacter(
  60833. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  60834. {
  60835. front: {
  60836. height: math.unit(12, "feet"),
  60837. weight: math.unit(1800, "lb"),
  60838. name: "Front",
  60839. image: {
  60840. source: "./media/characters/centbair/front.svg",
  60841. extra: 781/663,
  60842. bottom: 25/806
  60843. }
  60844. },
  60845. frontNsfw: {
  60846. height: math.unit(12, "feet"),
  60847. weight: math.unit(1800, "lb"),
  60848. name: "Front (NSFW)",
  60849. image: {
  60850. source: "./media/characters/centbair/front-nsfw.svg",
  60851. extra: 781/663,
  60852. bottom: 25/806
  60853. }
  60854. },
  60855. back: {
  60856. height: math.unit(12, "feet"),
  60857. weight: math.unit(1800, "lb"),
  60858. name: "Back",
  60859. image: {
  60860. source: "./media/characters/centbair/back.svg",
  60861. extra: 808/761,
  60862. bottom: 19/827
  60863. }
  60864. },
  60865. dick: {
  60866. height: math.unit(6.5, "feet"),
  60867. name: "Dick",
  60868. image: {
  60869. source: "./media/characters/centbair/dick.svg"
  60870. }
  60871. },
  60872. slit: {
  60873. height: math.unit(3.25, "feet"),
  60874. name: "Slit",
  60875. image: {
  60876. source: "./media/characters/centbair/slit.svg"
  60877. }
  60878. },
  60879. },
  60880. [
  60881. {
  60882. name: "Normal",
  60883. height: math.unit(12, "feet"),
  60884. default: true
  60885. },
  60886. ]
  60887. ))
  60888. characterMakers.push(() => makeCharacter(
  60889. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  60890. {
  60891. front: {
  60892. height: math.unit(5 + 7/12, "feet"),
  60893. name: "Front",
  60894. image: {
  60895. source: "./media/characters/andy/front.svg",
  60896. extra: 634/588,
  60897. bottom: 36/670
  60898. },
  60899. extraAttributes: {
  60900. "pawLength": {
  60901. name: "Paw Length",
  60902. power: 1,
  60903. type: "length",
  60904. base: math.unit(1, "feet")
  60905. },
  60906. }
  60907. },
  60908. side: {
  60909. height: math.unit(5 + 7/12, "feet"),
  60910. name: "Side",
  60911. image: {
  60912. source: "./media/characters/andy/side.svg",
  60913. extra: 641/596,
  60914. bottom: 34/675
  60915. },
  60916. extraAttributes: {
  60917. "pawLength": {
  60918. name: "Paw Length",
  60919. power: 1,
  60920. type: "length",
  60921. base: math.unit(1, "feet")
  60922. },
  60923. }
  60924. },
  60925. back: {
  60926. height: math.unit(5 + 7/12, "feet"),
  60927. name: "Back",
  60928. image: {
  60929. source: "./media/characters/andy/back.svg",
  60930. extra: 618/583,
  60931. bottom: 39/657
  60932. },
  60933. extraAttributes: {
  60934. "pawLength": {
  60935. name: "Paw Length",
  60936. power: 1,
  60937. type: "length",
  60938. base: math.unit(1, "feet")
  60939. },
  60940. }
  60941. },
  60942. paw: {
  60943. height: math.unit(1.13, "feet"),
  60944. name: "Paw",
  60945. image: {
  60946. source: "./media/characters/andy/paw.svg"
  60947. }
  60948. },
  60949. },
  60950. [
  60951. {
  60952. name: "Micro",
  60953. height: math.unit(4, "inches")
  60954. },
  60955. {
  60956. name: "Normal",
  60957. height: math.unit(5 + 7/12, "feet"),
  60958. default: true
  60959. },
  60960. {
  60961. name: "Macro",
  60962. height: math.unit(390.42, "feet")
  60963. },
  60964. ]
  60965. ))
  60966. characterMakers.push(() => makeCharacter(
  60967. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  60968. {
  60969. front: {
  60970. height: math.unit(7, "feet"),
  60971. weight: math.unit(250, "lb"),
  60972. name: "Front",
  60973. image: {
  60974. source: "./media/characters/vix-titan/front.svg",
  60975. extra: 460/428,
  60976. bottom: 15/475
  60977. },
  60978. extraAttributes: {
  60979. "pawWidth": {
  60980. name: "Paw Width",
  60981. power: 1,
  60982. type: "length",
  60983. base: math.unit(0.75, "feet")
  60984. },
  60985. }
  60986. },
  60987. },
  60988. [
  60989. {
  60990. name: "Normal",
  60991. height: math.unit(7, "feet"),
  60992. default: true
  60993. },
  60994. {
  60995. name: "Giant",
  60996. height: math.unit(1500, "feet")
  60997. },
  60998. {
  60999. name: "Mega",
  61000. height: math.unit(10, "miles")
  61001. },
  61002. {
  61003. name: "Giga",
  61004. height: math.unit(150, "miles")
  61005. },
  61006. {
  61007. name: "Tera",
  61008. height: math.unit(144000, "miles")
  61009. },
  61010. ]
  61011. ))
  61012. characterMakers.push(() => makeCharacter(
  61013. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  61014. {
  61015. front: {
  61016. height: math.unit(6 + 2/12, "feet"),
  61017. name: "Front",
  61018. image: {
  61019. source: "./media/characters/reiku/front.svg",
  61020. extra: 1910/1757,
  61021. bottom: 103/2013
  61022. },
  61023. extraAttributes: {
  61024. "thighThickness": {
  61025. name: "Thigh Thickness",
  61026. power: 1,
  61027. type: "length",
  61028. base: math.unit(1.12, "feet")
  61029. },
  61030. "assThickness": {
  61031. name: "Ass Thickness",
  61032. power: 1,
  61033. type: "length",
  61034. base: math.unit(1.12*2, "feet")
  61035. },
  61036. }
  61037. },
  61038. side: {
  61039. height: math.unit(6 + 2/12, "feet"),
  61040. name: "Side",
  61041. image: {
  61042. source: "./media/characters/reiku/side.svg",
  61043. extra: 1846/1748,
  61044. bottom: 99/1945
  61045. },
  61046. extraAttributes: {
  61047. "thighThickness": {
  61048. name: "Thigh Thickness",
  61049. power: 1,
  61050. type: "length",
  61051. base: math.unit(1.12, "feet")
  61052. },
  61053. "assThickness": {
  61054. name: "Ass Thickness",
  61055. power: 1,
  61056. type: "length",
  61057. base: math.unit(1.12*2, "feet")
  61058. },
  61059. }
  61060. },
  61061. back: {
  61062. height: math.unit(6 + 2/12, "feet"),
  61063. name: "Back",
  61064. image: {
  61065. source: "./media/characters/reiku/back.svg",
  61066. extra: 1941/1786,
  61067. bottom: 34/1975
  61068. },
  61069. extraAttributes: {
  61070. "thighThickness": {
  61071. name: "Thigh Thickness",
  61072. power: 1,
  61073. type: "length",
  61074. base: math.unit(1.12, "feet")
  61075. },
  61076. "assThickness": {
  61077. name: "Ass Thickness",
  61078. power: 1,
  61079. type: "length",
  61080. base: math.unit(1.12*2, "feet")
  61081. },
  61082. }
  61083. },
  61084. head: {
  61085. height: math.unit(1.8, "feet"),
  61086. name: "Head",
  61087. image: {
  61088. source: "./media/characters/reiku/head.svg"
  61089. }
  61090. },
  61091. tailTop: {
  61092. height: math.unit(8.4, "feet"),
  61093. name: "Tail (Top)",
  61094. image: {
  61095. source: "./media/characters/reiku/tail-top.svg"
  61096. }
  61097. },
  61098. tailBottom: {
  61099. height: math.unit(8.4, "feet"),
  61100. name: "Tail (Bottom)",
  61101. image: {
  61102. source: "./media/characters/reiku/tail-bottom.svg"
  61103. }
  61104. },
  61105. foot: {
  61106. height: math.unit(2.6, "feet"),
  61107. name: "Foot",
  61108. image: {
  61109. source: "./media/characters/reiku/foot.svg"
  61110. }
  61111. },
  61112. footCurled: {
  61113. height: math.unit(2.3, "feet"),
  61114. name: "Foot (Curled)",
  61115. image: {
  61116. source: "./media/characters/reiku/foot-curled.svg"
  61117. }
  61118. },
  61119. footSide: {
  61120. height: math.unit(1.26, "feet"),
  61121. name: "Foot (Side)",
  61122. image: {
  61123. source: "./media/characters/reiku/foot-side.svg"
  61124. }
  61125. },
  61126. },
  61127. [
  61128. {
  61129. name: "Normal",
  61130. height: math.unit(6 + 2/12, "feet"),
  61131. default: true
  61132. },
  61133. ]
  61134. ))
  61135. characterMakers.push(() => makeCharacter(
  61136. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  61137. {
  61138. front: {
  61139. height: math.unit(7, "feet"),
  61140. weight: math.unit(500, "kg"),
  61141. name: "Front",
  61142. image: {
  61143. source: "./media/characters/cialda/front.svg",
  61144. extra: 912/745,
  61145. bottom: 55/967
  61146. }
  61147. },
  61148. },
  61149. [
  61150. {
  61151. name: "Normal",
  61152. height: math.unit(7, "feet"),
  61153. default: true
  61154. },
  61155. ]
  61156. ))
  61157. characterMakers.push(() => makeCharacter(
  61158. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  61159. {
  61160. side: {
  61161. height: math.unit(6, "feet"),
  61162. weight: math.unit(600, "lb"),
  61163. preyCapacity: math.unit(25, "liters"),
  61164. name: "Side",
  61165. image: {
  61166. source: "./media/characters/darkkin/side.svg",
  61167. extra: 1597/1447,
  61168. bottom: 101/1698
  61169. }
  61170. },
  61171. },
  61172. [
  61173. {
  61174. name: "Canon Height",
  61175. height: math.unit(568, "feet"),
  61176. default: true
  61177. },
  61178. ]
  61179. ))
  61180. characterMakers.push(() => makeCharacter(
  61181. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  61182. {
  61183. front: {
  61184. height: math.unit(6, "feet"),
  61185. weight: math.unit(1500, "lb"),
  61186. preyCapacity: math.unit(3, "people"),
  61187. name: "Front",
  61188. image: {
  61189. source: "./media/characters/livnia/front.svg",
  61190. extra: 934/932,
  61191. bottom: 83/1017
  61192. }
  61193. },
  61194. back: {
  61195. height: math.unit(6, "feet"),
  61196. weight: math.unit(1500, "lb"),
  61197. preyCapacity: math.unit(3, "people"),
  61198. name: "Back",
  61199. image: {
  61200. source: "./media/characters/livnia/back.svg",
  61201. extra: 916/915,
  61202. bottom: 58/974
  61203. }
  61204. },
  61205. head: {
  61206. height: math.unit(1.53, "feet"),
  61207. name: "Head",
  61208. image: {
  61209. source: "./media/characters/livnia/head.svg"
  61210. }
  61211. },
  61212. maw: {
  61213. height: math.unit(0.78, "feet"),
  61214. name: "Maw",
  61215. image: {
  61216. source: "./media/characters/livnia/maw.svg"
  61217. }
  61218. },
  61219. genitals: {
  61220. height: math.unit(0.35, "feet"),
  61221. name: "Genitals",
  61222. image: {
  61223. source: "./media/characters/livnia/genitals.svg"
  61224. }
  61225. },
  61226. },
  61227. [
  61228. {
  61229. name: "Normal",
  61230. height: math.unit(1000, "feet"),
  61231. default: true
  61232. },
  61233. ]
  61234. ))
  61235. characterMakers.push(() => makeCharacter(
  61236. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  61237. {
  61238. front: {
  61239. height: math.unit(4, "feet"),
  61240. weight: math.unit(73, "lb"),
  61241. name: "Front",
  61242. image: {
  61243. source: "./media/characters/hayaku/front.svg",
  61244. extra: 1011/888,
  61245. bottom: 33/1044
  61246. }
  61247. },
  61248. back: {
  61249. height: math.unit(4, "feet"),
  61250. weight: math.unit(73, "lb"),
  61251. name: "Back",
  61252. image: {
  61253. source: "./media/characters/hayaku/back.svg",
  61254. extra: 1040/930,
  61255. bottom: 20/1060
  61256. }
  61257. },
  61258. },
  61259. [
  61260. {
  61261. name: "Normal",
  61262. height: math.unit(4, "feet"),
  61263. default: true
  61264. },
  61265. ]
  61266. ))
  61267. characterMakers.push(() => makeCharacter(
  61268. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  61269. {
  61270. front: {
  61271. height: math.unit(6 + 7/12, "feet"),
  61272. weight: math.unit(300, "lb"),
  61273. name: "Front",
  61274. image: {
  61275. source: "./media/characters/athena-bryzant/front.svg",
  61276. extra: 870/835,
  61277. bottom: 33/903
  61278. }
  61279. },
  61280. back: {
  61281. height: math.unit(6 + 7/12, "feet"),
  61282. weight: math.unit(300, "lb"),
  61283. name: "Back",
  61284. image: {
  61285. source: "./media/characters/athena-bryzant/back.svg",
  61286. extra: 858/823,
  61287. bottom: 30/888
  61288. }
  61289. },
  61290. head: {
  61291. height: math.unit(2.38, "feet"),
  61292. name: "Head",
  61293. image: {
  61294. source: "./media/characters/athena-bryzant/head.svg"
  61295. }
  61296. },
  61297. wings: {
  61298. height: math.unit(2.85, "feet"),
  61299. name: "Wings",
  61300. image: {
  61301. source: "./media/characters/athena-bryzant/wings.svg"
  61302. }
  61303. },
  61304. },
  61305. [
  61306. {
  61307. name: "Normal",
  61308. height: math.unit(6 + 7/12, "feet"),
  61309. default: true
  61310. },
  61311. {
  61312. name: "Big",
  61313. height: math.unit(8, "feet")
  61314. },
  61315. {
  61316. name: "Very Big",
  61317. height: math.unit(11, "feet")
  61318. },
  61319. ]
  61320. ))
  61321. characterMakers.push(() => makeCharacter(
  61322. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  61323. {
  61324. side: {
  61325. height: math.unit(3, "meters"),
  61326. weight: math.unit(7500, "kg"),
  61327. preyCapacity: math.unit(1e12, "people"),
  61328. name: "Side",
  61329. image: {
  61330. source: "./media/characters/zel-kesh/side.svg",
  61331. extra: 910/407,
  61332. bottom: 147/1057
  61333. }
  61334. },
  61335. },
  61336. [
  61337. {
  61338. name: "Normal",
  61339. height: math.unit(3, "meters"),
  61340. default: true
  61341. },
  61342. ]
  61343. ))
  61344. characterMakers.push(() => makeCharacter(
  61345. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  61346. {
  61347. front: {
  61348. height: math.unit(2, "meters"),
  61349. weight: math.unit(95, "kg"),
  61350. name: "Front",
  61351. image: {
  61352. source: "./media/characters/kane-fox/front.svg",
  61353. extra: 945/888,
  61354. bottom: 27/972
  61355. }
  61356. },
  61357. back: {
  61358. height: math.unit(2, "meters"),
  61359. weight: math.unit(95, "kg"),
  61360. name: "Back",
  61361. image: {
  61362. source: "./media/characters/kane-fox/back.svg",
  61363. extra: 959/914,
  61364. bottom: 15/974
  61365. }
  61366. },
  61367. frontLewd: {
  61368. height: math.unit(2, "meters"),
  61369. weight: math.unit(95, "kg"),
  61370. name: "Front (Lewd)",
  61371. image: {
  61372. source: "./media/characters/kane-fox/front-lewd.svg",
  61373. extra: 945/888,
  61374. bottom: 27/972
  61375. }
  61376. },
  61377. },
  61378. [
  61379. {
  61380. name: "Home Size",
  61381. height: math.unit(2, "meters"),
  61382. default: true
  61383. },
  61384. {
  61385. name: "Macro",
  61386. height: math.unit(200, "meters")
  61387. },
  61388. {
  61389. name: "Small Mega",
  61390. height: math.unit(3, "km")
  61391. },
  61392. {
  61393. name: "Mega",
  61394. height: math.unit(50, "km")
  61395. },
  61396. {
  61397. name: "Giga",
  61398. height: math.unit(200, "km")
  61399. },
  61400. {
  61401. name: "Giga+",
  61402. height: math.unit(2500, "km")
  61403. },
  61404. {
  61405. name: "Terra",
  61406. height: math.unit(70000, "km")
  61407. },
  61408. {
  61409. name: "Terra+",
  61410. height: math.unit(150000, "km")
  61411. },
  61412. {
  61413. name: "Terra++",
  61414. height: math.unit(400000, "km")
  61415. },
  61416. ]
  61417. ))
  61418. characterMakers.push(() => makeCharacter(
  61419. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  61420. {
  61421. otter_front: {
  61422. height: math.unit(1.8, "meters"),
  61423. weight: math.unit(90, "kg"),
  61424. name: "Front",
  61425. image: {
  61426. source: "./media/characters/ayranus/otter-front.svg",
  61427. extra: 468/452,
  61428. bottom: 43/511
  61429. },
  61430. form: "otter",
  61431. },
  61432. otter_frontLewd: {
  61433. height: math.unit(1.8, "meters"),
  61434. weight: math.unit(90, "kg"),
  61435. name: "Front (Lewd)",
  61436. image: {
  61437. source: "./media/characters/ayranus/otter-front-lewd.svg",
  61438. extra: 468/452,
  61439. bottom: 43/511
  61440. },
  61441. form: "otter",
  61442. },
  61443. lionbat_front: {
  61444. height: math.unit(1.8, "meters"),
  61445. weight: math.unit(90, "kg"),
  61446. name: "Front (Lewd)",
  61447. image: {
  61448. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  61449. extra: 797/740,
  61450. bottom: 78/875
  61451. },
  61452. form: "lionbat",
  61453. },
  61454. paw: {
  61455. height: math.unit(1.5, "feet"),
  61456. name: "Paw",
  61457. image: {
  61458. source: "./media/characters/ayranus/paw.svg"
  61459. },
  61460. },
  61461. },
  61462. [
  61463. {
  61464. name: "Incognito",
  61465. height: math.unit(1.8, "meters"),
  61466. allForms: true
  61467. },
  61468. {
  61469. name: "Macro",
  61470. height: math.unit(60, "meters"),
  61471. allForms: true
  61472. },
  61473. {
  61474. name: "Macro+",
  61475. height: math.unit(200, "meters"),
  61476. allForms: true
  61477. },
  61478. {
  61479. name: "Mega",
  61480. height: math.unit(35, "km"),
  61481. allForms: true
  61482. },
  61483. {
  61484. name: "Giga",
  61485. height: math.unit(220, "km"),
  61486. allForms: true
  61487. },
  61488. {
  61489. name: "Giga+",
  61490. height: math.unit(1500, "km"),
  61491. allForms: true
  61492. },
  61493. {
  61494. name: "Terra",
  61495. height: math.unit(13000, "km"),
  61496. allForms: true
  61497. },
  61498. {
  61499. name: "Terra+",
  61500. height: math.unit(500000, "km"),
  61501. allForms: true
  61502. },
  61503. {
  61504. name: "Galactic",
  61505. height: math.unit(486080, "parsecs"),
  61506. default: true,
  61507. allForms: true
  61508. },
  61509. ],
  61510. {
  61511. "otter": {
  61512. name: "Otter",
  61513. default: true
  61514. },
  61515. "lionbat": {
  61516. name: "Lionbat",
  61517. },
  61518. }
  61519. ))
  61520. characterMakers.push(() => makeCharacter(
  61521. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  61522. {
  61523. front: {
  61524. height: math.unit(7 + 4/12, "feet"),
  61525. weight: math.unit(400, "lb"),
  61526. name: "Front",
  61527. image: {
  61528. source: "./media/characters/proxy/front.svg",
  61529. extra: 1605/1542,
  61530. bottom: 55/1660
  61531. }
  61532. },
  61533. side: {
  61534. height: math.unit(7 + 4/12, "feet"),
  61535. weight: math.unit(400, "lb"),
  61536. name: "Side",
  61537. image: {
  61538. source: "./media/characters/proxy/side.svg",
  61539. extra: 794/759,
  61540. bottom: 6/800
  61541. }
  61542. },
  61543. hand: {
  61544. height: math.unit(1.54, "feet"),
  61545. name: "Hand",
  61546. image: {
  61547. source: "./media/characters/proxy/hand.svg"
  61548. }
  61549. },
  61550. paw: {
  61551. height: math.unit(1.53, "feet"),
  61552. name: "Paw",
  61553. image: {
  61554. source: "./media/characters/proxy/paw.svg"
  61555. }
  61556. },
  61557. maw: {
  61558. height: math.unit(1.9, "feet"),
  61559. name: "Maw",
  61560. image: {
  61561. source: "./media/characters/proxy/maw.svg"
  61562. }
  61563. },
  61564. },
  61565. [
  61566. {
  61567. name: "Normal",
  61568. height: math.unit(7 + 4/12, "feet"),
  61569. default: true
  61570. },
  61571. ]
  61572. ))
  61573. characterMakers.push(() => makeCharacter(
  61574. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  61575. {
  61576. front: {
  61577. height: math.unit(4, "meters"),
  61578. name: "Front",
  61579. image: {
  61580. source: "./media/characters/crocozilla/front.svg",
  61581. extra: 1790/1742,
  61582. bottom: 78/1868
  61583. }
  61584. },
  61585. },
  61586. [
  61587. {
  61588. name: "Normal",
  61589. height: math.unit(4, "meters"),
  61590. default: true
  61591. },
  61592. ]
  61593. ))
  61594. characterMakers.push(() => makeCharacter(
  61595. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  61596. {
  61597. front: {
  61598. height: math.unit(1.8, "meters"),
  61599. weight: math.unit(120, "kg"),
  61600. name: "Front",
  61601. image: {
  61602. source: "./media/characters/kurz/front.svg",
  61603. extra: 1960/1824,
  61604. bottom: 41/2001
  61605. }
  61606. },
  61607. back: {
  61608. height: math.unit(1.8, "meters"),
  61609. weight: math.unit(120, "kg"),
  61610. name: "Back",
  61611. image: {
  61612. source: "./media/characters/kurz/back.svg",
  61613. extra: 1906/1787,
  61614. bottom: 60/1966
  61615. }
  61616. },
  61617. frontLewd: {
  61618. height: math.unit(1.8, "meters"),
  61619. weight: math.unit(120, "kg"),
  61620. name: "Front (Lewd)",
  61621. image: {
  61622. source: "./media/characters/kurz/front-lewd.svg",
  61623. extra: 1960/1824,
  61624. bottom: 41/2001
  61625. }
  61626. },
  61627. maw: {
  61628. height: math.unit(0.69, "meters"),
  61629. name: "Maw",
  61630. image: {
  61631. source: "./media/characters/kurz/maw.svg"
  61632. }
  61633. },
  61634. },
  61635. [
  61636. {
  61637. name: "Original Size",
  61638. height: math.unit(1.8, "meters")
  61639. },
  61640. {
  61641. name: "Incognito Size",
  61642. height: math.unit(2.4, "meters"),
  61643. default: true
  61644. },
  61645. {
  61646. name: "Macro",
  61647. height: math.unit(30, "meters")
  61648. },
  61649. {
  61650. name: "Macro+",
  61651. height: math.unit(250, "meters")
  61652. },
  61653. {
  61654. name: "Mega",
  61655. height: math.unit(2, "km")
  61656. },
  61657. {
  61658. name: "Mega+",
  61659. height: math.unit(35, "km")
  61660. },
  61661. {
  61662. name: "Mega++",
  61663. height: math.unit(75, "km")
  61664. },
  61665. {
  61666. name: "Giga",
  61667. height: math.unit(250, "km")
  61668. },
  61669. {
  61670. name: "Terra",
  61671. height: math.unit(15000, "km")
  61672. },
  61673. {
  61674. name: "Terra+",
  61675. height: math.unit(2250000, "km")
  61676. },
  61677. ]
  61678. ))
  61679. characterMakers.push(() => makeCharacter(
  61680. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  61681. {
  61682. front: {
  61683. height: math.unit(16 + 3/12, "feet"),
  61684. weight: math.unit(3575, "lb"),
  61685. name: "Front",
  61686. image: {
  61687. source: "./media/characters/nikita/front.svg",
  61688. extra: 1064/955,
  61689. bottom: 47/1111
  61690. }
  61691. },
  61692. },
  61693. [
  61694. {
  61695. name: "Normal",
  61696. height: math.unit(16 + 3/12, "feet"),
  61697. default: true
  61698. },
  61699. {
  61700. name: "Big",
  61701. height: math.unit(21, "feet")
  61702. },
  61703. {
  61704. name: "Biggest",
  61705. height: math.unit(50, "feet")
  61706. },
  61707. ]
  61708. ))
  61709. characterMakers.push(() => makeCharacter(
  61710. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  61711. {
  61712. front: {
  61713. height: math.unit(1.92, "m"),
  61714. weight: math.unit(76, "kg"),
  61715. name: "Front",
  61716. image: {
  61717. source: "./media/characters/kyara/front.svg",
  61718. extra: 1550/1438,
  61719. bottom: 139/1689
  61720. }
  61721. },
  61722. back: {
  61723. height: math.unit(1.92, "m"),
  61724. weight: math.unit(76, "kg"),
  61725. name: "Back",
  61726. image: {
  61727. source: "./media/characters/kyara/back.svg",
  61728. extra: 1523/1427,
  61729. bottom: 83/1606
  61730. }
  61731. },
  61732. head: {
  61733. height: math.unit(1.22, "feet"),
  61734. name: "Head",
  61735. image: {
  61736. source: "./media/characters/kyara/head.svg"
  61737. }
  61738. },
  61739. maw: {
  61740. height: math.unit(0.73, "feet"),
  61741. name: "Maw",
  61742. image: {
  61743. source: "./media/characters/kyara/maw.svg"
  61744. }
  61745. },
  61746. paws: {
  61747. height: math.unit(0.95, "feet"),
  61748. name: "Paws",
  61749. image: {
  61750. source: "./media/characters/kyara/paws.svg"
  61751. }
  61752. },
  61753. },
  61754. [
  61755. {
  61756. name: "Normal",
  61757. height: math.unit(1.92, "meters"),
  61758. default: true
  61759. },
  61760. {
  61761. name: "Mini Macro",
  61762. height: math.unit(192, "meters")
  61763. },
  61764. {
  61765. name: "Macro",
  61766. height: math.unit(480, "meters")
  61767. },
  61768. {
  61769. name: "Mega Macro",
  61770. height: math.unit(1440, "meters")
  61771. },
  61772. ]
  61773. ))
  61774. characterMakers.push(() => makeCharacter(
  61775. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  61776. {
  61777. front: {
  61778. height: math.unit(6, "feet"),
  61779. weight: math.unit(160, "lbs"),
  61780. preyCapacity: math.unit(0.05, "people"),
  61781. name: "Front",
  61782. image: {
  61783. source: "./media/characters/layla-amari/front.svg",
  61784. extra: 1922/1723,
  61785. bottom: 90/2012
  61786. }
  61787. },
  61788. back: {
  61789. height: math.unit(6, "feet"),
  61790. weight: math.unit(160, "lbs"),
  61791. preyCapacity: math.unit(0.05, "people"),
  61792. name: "Back",
  61793. image: {
  61794. source: "./media/characters/layla-amari/back.svg",
  61795. extra: 1917/1718,
  61796. bottom: 50/1967
  61797. }
  61798. },
  61799. frontDressed: {
  61800. height: math.unit(6, "feet"),
  61801. weight: math.unit(160, "lbs"),
  61802. preyCapacity: math.unit(0.05, "people"),
  61803. name: "Front (Dressed)",
  61804. image: {
  61805. source: "./media/characters/layla-amari/front-dressed.svg",
  61806. extra: 1922/1723,
  61807. bottom: 90/2012
  61808. }
  61809. },
  61810. face: {
  61811. height: math.unit(0.93, "feet"),
  61812. name: "Face",
  61813. image: {
  61814. source: "./media/characters/layla-amari/face.svg"
  61815. }
  61816. },
  61817. hand: {
  61818. height: math.unit(0.66 , "feet"),
  61819. name: "Hand",
  61820. image: {
  61821. source: "./media/characters/layla-amari/hand.svg"
  61822. }
  61823. },
  61824. foot: {
  61825. height: math.unit(1, "feet"),
  61826. name: "Foot",
  61827. image: {
  61828. source: "./media/characters/layla-amari/foot.svg"
  61829. }
  61830. },
  61831. necklace: {
  61832. height: math.unit(0.32, "feet"),
  61833. name: "Necklace",
  61834. image: {
  61835. source: "./media/characters/layla-amari/necklace.svg"
  61836. }
  61837. },
  61838. nipple: {
  61839. height: math.unit(0.2, "feet"),
  61840. name: "Nipple",
  61841. image: {
  61842. source: "./media/characters/layla-amari/nipple.svg"
  61843. }
  61844. },
  61845. slit: {
  61846. height: math.unit(0.26, "feet"),
  61847. name: "Slit",
  61848. image: {
  61849. source: "./media/characters/layla-amari/slit.svg"
  61850. }
  61851. },
  61852. },
  61853. [
  61854. {
  61855. name: "Natural",
  61856. height: math.unit(825, "feet"),
  61857. default: true
  61858. },
  61859. {
  61860. name: "Enhanced",
  61861. height: math.unit(8250, "feet")
  61862. },
  61863. {
  61864. name: "Apparent Size",
  61865. height: math.unit(9.04363e+8, "meters")
  61866. },
  61867. ]
  61868. ))
  61869. characterMakers.push(() => makeCharacter(
  61870. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  61871. {
  61872. front: {
  61873. height: math.unit(1.3, "meters"),
  61874. name: "Front",
  61875. image: {
  61876. source: "./media/characters/percy/front.svg",
  61877. extra: 1444/1289,
  61878. bottom: 54/1498
  61879. }
  61880. },
  61881. },
  61882. [
  61883. {
  61884. name: "Normal",
  61885. height: math.unit(1.3, "meters"),
  61886. default: true
  61887. },
  61888. ]
  61889. ))
  61890. characterMakers.push(() => makeCharacter(
  61891. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  61892. {
  61893. side: {
  61894. height: math.unit(10, "meters"),
  61895. name: "Side",
  61896. image: {
  61897. source: "./media/characters/grev/side.svg",
  61898. extra: 653/266,
  61899. bottom: 77/730
  61900. }
  61901. },
  61902. head: {
  61903. height: math.unit(16.2, "m"),
  61904. name: "Head",
  61905. image: {
  61906. source: "./media/characters/grev/head.svg"
  61907. }
  61908. },
  61909. dick: {
  61910. height: math.unit(2.8135932034, "m"),
  61911. name: "Dick",
  61912. image: {
  61913. source: "./media/characters/grev/dick.svg"
  61914. }
  61915. },
  61916. },
  61917. [
  61918. {
  61919. name: "Friend-Sized",
  61920. height: math.unit(80, "cm")
  61921. },
  61922. {
  61923. name: "Normal",
  61924. height: math.unit(10, "meters"),
  61925. default: true
  61926. },
  61927. {
  61928. name: "Macro",
  61929. height: math.unit(200, "meters")
  61930. },
  61931. ]
  61932. ))
  61933. characterMakers.push(() => makeCharacter(
  61934. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  61935. {
  61936. front: {
  61937. height: math.unit(19.75, "feet"),
  61938. weight: math.unit(20000, "lb"),
  61939. name: "Front",
  61940. image: {
  61941. source: "./media/characters/azuuca/front.svg",
  61942. extra: 1593/1511,
  61943. bottom: 55/1648
  61944. }
  61945. },
  61946. },
  61947. [
  61948. {
  61949. name: "Normal",
  61950. height: math.unit(19.75, "feet"),
  61951. default: true
  61952. },
  61953. ]
  61954. ))
  61955. characterMakers.push(() => makeCharacter(
  61956. { name: "Valuria", species: ["vesempress"], tags: ["anthro"] },
  61957. {
  61958. front: {
  61959. height: math.unit(15, "feet"),
  61960. weight: math.unit(1500, "lb"),
  61961. name: "Front",
  61962. image: {
  61963. source: "./media/characters/valuria/front.svg",
  61964. extra: 1588/1486,
  61965. bottom: 31/1619
  61966. }
  61967. },
  61968. },
  61969. [
  61970. {
  61971. name: "Normal",
  61972. height: math.unit(15, "feet"),
  61973. default: true
  61974. },
  61975. {
  61976. name: "Small",
  61977. height: math.unit(500, "feet")
  61978. },
  61979. {
  61980. name: "Macro",
  61981. height: math.unit(4000, "feet")
  61982. },
  61983. {
  61984. name: "Mega Macro",
  61985. height: math.unit(2000, "miles")
  61986. },
  61987. {
  61988. name: "Giga Macro",
  61989. height: math.unit(3e6, "miles")
  61990. },
  61991. ]
  61992. ))
  61993. characterMakers.push(() => makeCharacter(
  61994. { name: "Terigaia", species: ["gaelterranian"], tags: ["anthro"] },
  61995. {
  61996. front: {
  61997. height: math.unit(3500, "solarradii"),
  61998. name: "Front",
  61999. image: {
  62000. source: "./media/characters/terigaia/front.svg",
  62001. extra: 1531/1451,
  62002. bottom: 98/1629
  62003. }
  62004. },
  62005. },
  62006. [
  62007. {
  62008. name: "Normal",
  62009. height: math.unit(3500, "solarradii"),
  62010. default: true
  62011. },
  62012. ]
  62013. ))
  62014. characterMakers.push(() => makeCharacter(
  62015. { name: "Blair (Blaziken)", species: ["blaziken"], tags: ["anthro"] },
  62016. {
  62017. front: {
  62018. height: math.unit(9.34, "feet"),
  62019. weight: math.unit(600, "lb"),
  62020. name: "Front",
  62021. image: {
  62022. source: "./media/characters/blair-blaziken/front.svg",
  62023. extra: 1557/1462,
  62024. bottom: 55/1612
  62025. }
  62026. },
  62027. },
  62028. [
  62029. {
  62030. name: "Normal",
  62031. height: math.unit(9.34, "feet"),
  62032. default: true
  62033. },
  62034. ]
  62035. ))
  62036. characterMakers.push(() => makeCharacter(
  62037. { name: "Braxia", species: ["pistrogre", "human"], tags: ["anthro"] },
  62038. {
  62039. pistrogre_front: {
  62040. height: math.unit(10, "feet"),
  62041. weight: math.unit(10, "tons"),
  62042. name: "Front",
  62043. image: {
  62044. source: "./media/characters/braxia/pistrogre-front.svg",
  62045. extra: 1531/1334,
  62046. bottom: 114/1645
  62047. },
  62048. form: "pistrogre",
  62049. default: true
  62050. },
  62051. human_front: {
  62052. height: math.unit(10, "feet"),
  62053. weight: math.unit(10, "tons"),
  62054. name: "Front",
  62055. image: {
  62056. source: "./media/characters/braxia/human-front.svg",
  62057. extra: 1574/1501,
  62058. bottom: 37/1611
  62059. },
  62060. form: "human",
  62061. default: true
  62062. },
  62063. },
  62064. [
  62065. {
  62066. name: "Normal",
  62067. height: math.unit(10, "feet"),
  62068. default: true,
  62069. allForms: true
  62070. },
  62071. {
  62072. name: "Macro",
  62073. height: math.unit(1000, "feet"),
  62074. allForms: true
  62075. },
  62076. {
  62077. name: "Mega Macro",
  62078. height: math.unit(100, "miles"),
  62079. allForms: true
  62080. },
  62081. {
  62082. name: "Cosmic",
  62083. height: math.unit(1000000, "lightyears"),
  62084. allForms: true
  62085. },
  62086. {
  62087. name: "ϐѮԆԬӁꭍϞԢ",
  62088. height: math.unit(1000, "multiverses"),
  62089. allForms: true
  62090. },
  62091. ],
  62092. {
  62093. "pistrogre": {
  62094. name: "Pistrogre",
  62095. default: true
  62096. },
  62097. "human": {
  62098. name: "Human",
  62099. },
  62100. }
  62101. ))
  62102. characterMakers.push(() => makeCharacter(
  62103. { name: "Kiriga Yato", species: ["zorgoia"], tags: ["anthro"] },
  62104. {
  62105. front: {
  62106. height: math.unit(6 + 1/12, "feet"),
  62107. weight: math.unit(280, "lb"),
  62108. name: "Front",
  62109. image: {
  62110. source: "./media/characters/kiriga-yato/front.svg",
  62111. extra: 445/394,
  62112. bottom: 11/456
  62113. }
  62114. },
  62115. },
  62116. [
  62117. {
  62118. name: "Descended",
  62119. height: math.unit(3, "feet")
  62120. },
  62121. {
  62122. name: "Average",
  62123. height: math.unit(6 + 1/12, "feet"),
  62124. default: true
  62125. },
  62126. {
  62127. name: "Ascended",
  62128. height: math.unit(9 + 2/12, "feet")
  62129. },
  62130. ]
  62131. ))
  62132. characterMakers.push(() => makeCharacter(
  62133. { name: "Kylie", species: ["giraffe"], tags: ["anthro"] },
  62134. {
  62135. front: {
  62136. height: math.unit(6, "feet"),
  62137. weight: math.unit(150, "lb"),
  62138. name: "Front",
  62139. image: {
  62140. source: "./media/characters/kylie/front.svg",
  62141. extra: 1114/1046,
  62142. bottom: 65/1179
  62143. },
  62144. extraAttributes: {
  62145. "hoofSize": {
  62146. name: "Hoof Size",
  62147. power: 2,
  62148. type: "area",
  62149. base: math.unit(0.034, "m^2")
  62150. },
  62151. "footSize": {
  62152. name: "Foot Size",
  62153. power: 2,
  62154. type: "area",
  62155. base: math.unit(0.75, "m^2")
  62156. },
  62157. }
  62158. },
  62159. side: {
  62160. height: math.unit(6, "feet"),
  62161. weight: math.unit(150, "lb"),
  62162. name: "Side",
  62163. image: {
  62164. source: "./media/characters/kylie/side.svg",
  62165. extra: 1178/1110,
  62166. bottom: 21/1199
  62167. },
  62168. extraAttributes: {
  62169. "hoofSize": {
  62170. name: "Hoof Size",
  62171. power: 2,
  62172. type: "area",
  62173. base: math.unit(0.034, "m^2")
  62174. },
  62175. "footSize": {
  62176. name: "Foot Size",
  62177. power: 2,
  62178. type: "area",
  62179. base: math.unit(0.75, "m^2")
  62180. },
  62181. }
  62182. },
  62183. back: {
  62184. height: math.unit(6, "feet"),
  62185. weight: math.unit(150, "lb"),
  62186. name: "Back",
  62187. image: {
  62188. source: "./media/characters/kylie/back.svg",
  62189. extra: 1115/1047,
  62190. bottom: 66/1181
  62191. },
  62192. extraAttributes: {
  62193. "hoofSize": {
  62194. name: "Hoof Size",
  62195. power: 2,
  62196. type: "area",
  62197. base: math.unit(0.034, "m^2")
  62198. },
  62199. "footSize": {
  62200. name: "Foot Size",
  62201. power: 2,
  62202. type: "area",
  62203. base: math.unit(0.75, "m^2")
  62204. },
  62205. }
  62206. },
  62207. head: {
  62208. height: math.unit(1.85, "feet"),
  62209. name: "Head",
  62210. image: {
  62211. source: "./media/characters/kylie/head.svg"
  62212. }
  62213. },
  62214. },
  62215. [
  62216. {
  62217. name: "Normal",
  62218. height: math.unit(90, "meters"),
  62219. default: true
  62220. },
  62221. ]
  62222. ))
  62223. characterMakers.push(() => makeCharacter(
  62224. { name: "Sabado", species: ["suicune"], tags: ["anthro"] },
  62225. {
  62226. front: {
  62227. height: math.unit(245, "feet"),
  62228. weight: math.unit(400000, "lb"),
  62229. name: "Front",
  62230. image: {
  62231. source: "./media/characters/sabado/front.svg",
  62232. extra: 1309/1164,
  62233. bottom: 29/1338
  62234. }
  62235. },
  62236. },
  62237. [
  62238. {
  62239. name: "Normal",
  62240. height: math.unit(245, "feet"),
  62241. default: true
  62242. },
  62243. ]
  62244. ))
  62245. characterMakers.push(() => makeCharacter(
  62246. { name: "Zechal", species: ["shark", "dragon", "deity"], tags: ["anthro"] },
  62247. {
  62248. shark_front: {
  62249. height: math.unit(2, "meters"),
  62250. weight: math.unit(200, "kg"),
  62251. name: "Front",
  62252. image: {
  62253. source: "./media/characters/zechal/shark-front.svg",
  62254. extra: 969/925,
  62255. bottom: 74/1043
  62256. },
  62257. form: "shark",
  62258. },
  62259. shark_back: {
  62260. height: math.unit(2, "meters"),
  62261. weight: math.unit(200, "kg"),
  62262. name: "Back",
  62263. image: {
  62264. source: "./media/characters/zechal/shark-back.svg",
  62265. extra: 994/949,
  62266. bottom: 176/1170
  62267. },
  62268. form: "shark",
  62269. },
  62270. shark_frontLewd: {
  62271. height: math.unit(2, "meters"),
  62272. weight: math.unit(200, "kg"),
  62273. name: "Front (Lewd)",
  62274. image: {
  62275. source: "./media/characters/zechal/shark-front-lewd.svg",
  62276. extra: 969/925,
  62277. bottom: 74/1043
  62278. },
  62279. form: "shark",
  62280. },
  62281. shark_side: {
  62282. height: math.unit(1.56, "meters"),
  62283. weight: math.unit(200, "kg"),
  62284. name: "Side",
  62285. image: {
  62286. source: "./media/characters/zechal/shark-side.svg"
  62287. },
  62288. form: "shark",
  62289. },
  62290. dragon_front: {
  62291. height: math.unit(2, "meters"),
  62292. weight: math.unit(200, "kg"),
  62293. name: "Front",
  62294. image: {
  62295. source: "./media/characters/zechal/dragon-front.svg",
  62296. extra: 1041/925,
  62297. bottom: 74/1115
  62298. },
  62299. form: "dragon",
  62300. },
  62301. dragon_back: {
  62302. height: math.unit(2, "meters"),
  62303. weight: math.unit(200, "kg"),
  62304. name: "Back",
  62305. image: {
  62306. source: "./media/characters/zechal/dragon-back.svg",
  62307. extra: 1061/949,
  62308. bottom: 176/1237
  62309. },
  62310. form: "dragon",
  62311. },
  62312. dragon_frontLewd: {
  62313. height: math.unit(2, "meters"),
  62314. weight: math.unit(200, "kg"),
  62315. name: "Front (Lewd)",
  62316. image: {
  62317. source: "./media/characters/zechal/dragon-front-lewd.svg",
  62318. extra: 1041/925,
  62319. bottom: 74/1115
  62320. },
  62321. form: "dragon",
  62322. },
  62323. dragon_side: {
  62324. height: math.unit(1.56, "meters"),
  62325. weight: math.unit(200, "kg"),
  62326. name: "Side",
  62327. image: {
  62328. source: "./media/characters/zechal/dragon-side.svg"
  62329. },
  62330. form: "dragon",
  62331. },
  62332. foot: {
  62333. height: math.unit(0.5, "meters"),
  62334. name: "Foot",
  62335. image: {
  62336. source: "./media/characters/zechal/foot.svg"
  62337. }
  62338. },
  62339. sheathFront: {
  62340. height: math.unit(0.45, "meters"),
  62341. name: "Sheath (Front)",
  62342. image: {
  62343. source: "./media/characters/zechal/sheath-front.svg"
  62344. }
  62345. },
  62346. sheathSide: {
  62347. height: math.unit(0.45, "meters"),
  62348. name: "Sheath (Side)",
  62349. image: {
  62350. source: "./media/characters/zechal/sheath-side.svg"
  62351. }
  62352. },
  62353. },
  62354. [
  62355. {
  62356. name: "Incognito",
  62357. height: math.unit(2, "meters"),
  62358. allForms: true
  62359. },
  62360. {
  62361. name: "Small Rampage",
  62362. height: math.unit(25, "meters"),
  62363. allForms: true
  62364. },
  62365. {
  62366. name: "Home Size",
  62367. height: math.unit(250, "meters"),
  62368. allForms: true,
  62369. default: true
  62370. },
  62371. {
  62372. name: "Macro+",
  62373. height: math.unit(700, "meters"),
  62374. allForms: true
  62375. },
  62376. {
  62377. name: "Small Mega",
  62378. height: math.unit(3, "km"),
  62379. allForms: true
  62380. },
  62381. {
  62382. name: "Mega",
  62383. height: math.unit(15, "km"),
  62384. allForms: true
  62385. },
  62386. {
  62387. name: "Giga",
  62388. height: math.unit(300, "km"),
  62389. allForms: true
  62390. },
  62391. {
  62392. name: "Giga+",
  62393. height: math.unit(1750, "km"),
  62394. allForms: true
  62395. },
  62396. {
  62397. name: "Continental",
  62398. height: math.unit(5000, "km"),
  62399. allForms: true
  62400. },
  62401. {
  62402. name: "Terra",
  62403. height: math.unit(20000, "km"),
  62404. allForms: true
  62405. },
  62406. {
  62407. name: "Terra+",
  62408. height: math.unit(300000, "km"),
  62409. allForms: true
  62410. },
  62411. {
  62412. name: "Solar",
  62413. height: math.unit(40000000, "km"),
  62414. allForms: true
  62415. },
  62416. {
  62417. name: "Galactic",
  62418. height: math.unit(810133, "parsecs"),
  62419. allForms: true
  62420. },
  62421. {
  62422. name: "Universal",
  62423. height: math.unit(25, "universes"),
  62424. allForms: true
  62425. },
  62426. ],
  62427. {
  62428. "shark": {
  62429. name: "Shark",
  62430. default: true
  62431. },
  62432. "dragon": {
  62433. name: "Dragon",
  62434. },
  62435. }
  62436. ))
  62437. characterMakers.push(() => makeCharacter(
  62438. { name: "Sergis", species: ["komodo-dragon", "deity"], tags: ["anthro"] },
  62439. {
  62440. front: {
  62441. height: math.unit(2.2, "meters"),
  62442. weight: math.unit(150, "kg"),
  62443. name: "Front",
  62444. image: {
  62445. source: "./media/characters/sergis/front.svg",
  62446. extra: 1314/1312,
  62447. bottom: 112/1426
  62448. }
  62449. },
  62450. back: {
  62451. height: math.unit(2.2, "meters"),
  62452. weight: math.unit(150, "kg"),
  62453. name: "Back",
  62454. image: {
  62455. source: "./media/characters/sergis/back.svg",
  62456. extra: 1335/1333,
  62457. bottom: 19/1354
  62458. }
  62459. },
  62460. frontLewd: {
  62461. height: math.unit(2.2, "meters"),
  62462. weight: math.unit(150, "kg"),
  62463. name: "Front (Lewd)",
  62464. image: {
  62465. source: "./media/characters/sergis/front-lewd.svg",
  62466. extra: 1314/1312,
  62467. bottom: 112/1426
  62468. }
  62469. },
  62470. frontDressed: {
  62471. height: math.unit(2.2, "meters"),
  62472. weight: math.unit(150, "kg"),
  62473. name: "Front (Dressed)",
  62474. image: {
  62475. source: "./media/characters/sergis/front-dressed.svg",
  62476. extra: 1330/1328,
  62477. bottom: 95/1425
  62478. }
  62479. },
  62480. frontDressedLewd: {
  62481. height: math.unit(2.2, "meters"),
  62482. weight: math.unit(150, "kg"),
  62483. name: "Front (Dressed, Lewd)",
  62484. image: {
  62485. source: "./media/characters/sergis/front-dressed-lewd.svg",
  62486. extra: 1330/1328,
  62487. bottom: 95/1425
  62488. }
  62489. },
  62490. maw: {
  62491. height: math.unit(0.48, "meters"),
  62492. name: "Maw",
  62493. image: {
  62494. source: "./media/characters/sergis/maw.svg"
  62495. }
  62496. },
  62497. sheath: {
  62498. height: math.unit(0.38, "meters"),
  62499. name: "Sheath",
  62500. image: {
  62501. source: "./media/characters/sergis/sheath.svg"
  62502. }
  62503. },
  62504. },
  62505. [
  62506. {
  62507. name: "Incognito Size",
  62508. height: math.unit(2.2, "meters")
  62509. },
  62510. {
  62511. name: "Small Macro",
  62512. height: math.unit(40, "meters")
  62513. },
  62514. {
  62515. name: "Macro",
  62516. height: math.unit(150, "meters")
  62517. },
  62518. {
  62519. name: "Macro+",
  62520. height: math.unit(300, "meters")
  62521. },
  62522. {
  62523. name: "Mega",
  62524. height: math.unit(2.5, "km")
  62525. },
  62526. {
  62527. name: "Mega+",
  62528. height: math.unit(30, "km")
  62529. },
  62530. {
  62531. name: "Home Size",
  62532. height: math.unit(300, "km"),
  62533. default: true
  62534. },
  62535. {
  62536. name: "Giga+",
  62537. height: math.unit(1000, "km")
  62538. },
  62539. {
  62540. name: "Giga++",
  62541. height: math.unit(6000, "km")
  62542. },
  62543. {
  62544. name: "Terra",
  62545. height: math.unit(70000, "km")
  62546. },
  62547. {
  62548. name: "Terra+",
  62549. height: math.unit(200000, "km")
  62550. },
  62551. {
  62552. name: "Galactic",
  62553. height: math.unit(634200, "lightyears")
  62554. },
  62555. ]
  62556. ))
  62557. characterMakers.push(() => makeCharacter(
  62558. { name: "Spade", species: ["demon", "mouse"], tags: ["anthro"] },
  62559. {
  62560. standard: {
  62561. height: math.unit(1 + 5/12, "feet"),
  62562. name: "Standard",
  62563. image: {
  62564. source: "./media/characters/spade/standard.svg",
  62565. extra: 1794/1703,
  62566. bottom: 115/1909
  62567. }
  62568. },
  62569. disguised: {
  62570. height: math.unit(1 + 5/12, "feet"),
  62571. name: "Disguised",
  62572. image: {
  62573. source: "./media/characters/spade/disguised.svg",
  62574. extra: 1794/1700,
  62575. bottom: 98/1892
  62576. }
  62577. },
  62578. },
  62579. [
  62580. {
  62581. name: "Normal",
  62582. height: math.unit(1 + 5/12, "feet"),
  62583. default: true
  62584. },
  62585. ]
  62586. ))
  62587. characterMakers.push(() => makeCharacter(
  62588. { name: "Zeanlain", species: ["harpy-eagle"], tags: ["anthro"] },
  62589. {
  62590. frontNsfw: {
  62591. height: math.unit(5, "meters"),
  62592. weight: math.unit(2000, "kg"),
  62593. preyCapacity: math.unit(5, "people"),
  62594. name: "Front (NSFW)",
  62595. image: {
  62596. source: "./media/characters/zeanlain/front-nsfw.svg",
  62597. extra: 1087/938,
  62598. bottom: 93/1180
  62599. },
  62600. extraAttributes: {
  62601. "wingspan": {
  62602. name: "Wingspan",
  62603. power: 1,
  62604. type: "length",
  62605. base: math.unit(10, "meters")
  62606. },
  62607. "footSize": {
  62608. name: "Foot Size",
  62609. power: 1,
  62610. type: "length",
  62611. base: math.unit(0.68, "meters")
  62612. },
  62613. "cockLength": {
  62614. name: "Cock Length",
  62615. power: 1,
  62616. type: "length",
  62617. base: math.unit(1.69, "meters")
  62618. },
  62619. "ballVolume": {
  62620. name: "Ball Volume",
  62621. power: 3,
  62622. type: "volume",
  62623. base: math.unit(0.028, "m^3")
  62624. },
  62625. }
  62626. },
  62627. front: {
  62628. height: math.unit(5, "meters"),
  62629. weight: math.unit(2000, "kg"),
  62630. preyCapacity: math.unit(3, "people"),
  62631. name: "Front",
  62632. image: {
  62633. source: "./media/characters/zeanlain/front.svg",
  62634. extra: 1087/938,
  62635. bottom: 93/1180
  62636. },
  62637. extraAttributes: {
  62638. "wingspan": {
  62639. name: "Wingspan",
  62640. power: 1,
  62641. type: "length",
  62642. base: math.unit(10, "meters")
  62643. },
  62644. "footSize": {
  62645. name: "Foot Size",
  62646. power: 1,
  62647. type: "length",
  62648. base: math.unit(0.68, "meters")
  62649. },
  62650. }
  62651. },
  62652. },
  62653. [
  62654. {
  62655. name: "Normal",
  62656. height: math.unit(5, "meters"),
  62657. default: true
  62658. },
  62659. ]
  62660. ))
  62661. characterMakers.push(() => makeCharacter(
  62662. { name: "Airamis", species: ["aeromorph", "dragon"], tags: ["anthro"] },
  62663. {
  62664. front: {
  62665. height: math.unit(10, "meters"),
  62666. weight: math.unit(250000, "kg"),
  62667. name: "Front",
  62668. image: {
  62669. source: "./media/characters/airamis/front.svg",
  62670. extra: 865/835,
  62671. bottom: 13/878
  62672. }
  62673. },
  62674. },
  62675. [
  62676. {
  62677. name: "Normal",
  62678. height: math.unit(10, "meters"),
  62679. default: true
  62680. },
  62681. ]
  62682. ))
  62683. characterMakers.push(() => makeCharacter(
  62684. { name: "Corra Tourmaline", species: ["vaporeon"], tags: ["anthro"] },
  62685. {
  62686. front: {
  62687. height: math.unit(3 + 3/12, "feet"),
  62688. weight: math.unit(75, "lb"),
  62689. name: "Front",
  62690. image: {
  62691. source: "./media/characters/corra-tourmaline/front.svg",
  62692. extra: 1037/864,
  62693. bottom: 39/1076
  62694. }
  62695. },
  62696. back: {
  62697. height: math.unit(3 + 3/12, "feet"),
  62698. weight: math.unit(75, "lb"),
  62699. name: "Back",
  62700. image: {
  62701. source: "./media/characters/corra-tourmaline/back.svg",
  62702. extra: 1022/849,
  62703. bottom: 26/1048
  62704. }
  62705. },
  62706. dressed: {
  62707. height: math.unit(3 + 3/12, "feet"),
  62708. weight: math.unit(75, "lb"),
  62709. name: "Dressed",
  62710. image: {
  62711. source: "./media/characters/corra-tourmaline/dressed.svg",
  62712. extra: 1037/864,
  62713. bottom: 39/1076
  62714. }
  62715. },
  62716. beans: {
  62717. height: math.unit(0.37, "feet"),
  62718. name: "Beans",
  62719. image: {
  62720. source: "./media/characters/corra-tourmaline/beans.svg"
  62721. }
  62722. },
  62723. },
  62724. [
  62725. {
  62726. name: "Normal",
  62727. height: math.unit(3 + 3/12, "feet"),
  62728. default: true
  62729. },
  62730. {
  62731. name: "Macro",
  62732. height: math.unit(32, "feet")
  62733. },
  62734. ]
  62735. ))
  62736. characterMakers.push(() => makeCharacter(
  62737. { name: "Maki Kawa", species: ["sabertooth-tiger", "serval"], tags: ["anthro"] },
  62738. {
  62739. front: {
  62740. height: math.unit(6 + 2/12, "feet"),
  62741. weight: math.unit(203, "lb"),
  62742. name: "Front",
  62743. image: {
  62744. source: "./media/characters/maki-kawa/front.svg",
  62745. extra: 950/890,
  62746. bottom: 62/1012
  62747. }
  62748. },
  62749. back: {
  62750. height: math.unit(6 + 2/12, "feet"),
  62751. weight: math.unit(203, "lb"),
  62752. name: "Back",
  62753. image: {
  62754. source: "./media/characters/maki-kawa/back.svg",
  62755. extra: 953/878,
  62756. bottom: 49/1002
  62757. }
  62758. },
  62759. frontBarista: {
  62760. height: math.unit(6 + 2/12, "feet"),
  62761. weight: math.unit(203, "lb"),
  62762. name: "Front (Barista)",
  62763. image: {
  62764. source: "./media/characters/maki-kawa/front-barista.svg",
  62765. extra: 943/883,
  62766. bottom: 69/1012
  62767. }
  62768. },
  62769. backBarista: {
  62770. height: math.unit(6 + 2/12, "feet"),
  62771. weight: math.unit(203, "lb"),
  62772. name: "Back (Barista)",
  62773. image: {
  62774. source: "./media/characters/maki-kawa/back-barista.svg",
  62775. extra: 953/878,
  62776. bottom: 49/1002
  62777. }
  62778. },
  62779. frontWrestler: {
  62780. height: math.unit(6 + 2/12, "feet"),
  62781. weight: math.unit(203, "lb"),
  62782. name: "Front (Wrestler)",
  62783. image: {
  62784. source: "./media/characters/maki-kawa/front-wrestler.svg",
  62785. extra: 950/890,
  62786. bottom: 62/1012
  62787. }
  62788. },
  62789. backWrestler: {
  62790. height: math.unit(6 + 2/12, "feet"),
  62791. weight: math.unit(203, "lb"),
  62792. name: "Back (Wrestler)",
  62793. image: {
  62794. source: "./media/characters/maki-kawa/back-wrestler.svg",
  62795. extra: 953/878,
  62796. bottom: 49/1002
  62797. }
  62798. },
  62799. headFront: {
  62800. height: math.unit(1.64, "feet"),
  62801. name: "Head (Front)",
  62802. image: {
  62803. source: "./media/characters/maki-kawa/head-front.svg"
  62804. }
  62805. },
  62806. headSide: {
  62807. height: math.unit(1.59, "feet"),
  62808. name: "Head (Side)",
  62809. image: {
  62810. source: "./media/characters/maki-kawa/head-side.svg"
  62811. }
  62812. },
  62813. paw: {
  62814. height: math.unit(0.9, "feet"),
  62815. name: "Paw",
  62816. image: {
  62817. source: "./media/characters/maki-kawa/paw.svg"
  62818. }
  62819. },
  62820. },
  62821. [
  62822. {
  62823. name: "Normal",
  62824. height: math.unit(6 + 2/12, "feet"),
  62825. default: true
  62826. },
  62827. {
  62828. name: "Macro",
  62829. height: math.unit(617, "feet")
  62830. },
  62831. ]
  62832. ))
  62833. characterMakers.push(() => makeCharacter(
  62834. { name: "Lennox", species: ["wolf"], tags: ["anthro"] },
  62835. {
  62836. front: {
  62837. height: math.unit(10, "feet"),
  62838. weight: math.unit(1500, "lb"),
  62839. name: "Front",
  62840. image: {
  62841. source: "./media/characters/lennox/front.svg",
  62842. extra: 1623/1496,
  62843. bottom: 18/1641
  62844. }
  62845. },
  62846. back: {
  62847. height: math.unit(10, "feet"),
  62848. weight: math.unit(1500, "lb"),
  62849. name: "Back",
  62850. image: {
  62851. source: "./media/characters/lennox/back.svg",
  62852. extra: 1641/1481,
  62853. bottom: 13/1654
  62854. }
  62855. },
  62856. maw: {
  62857. height: math.unit(2.94, "feet"),
  62858. name: "Maw",
  62859. image: {
  62860. source: "./media/characters/lennox/maw.svg"
  62861. }
  62862. },
  62863. },
  62864. [
  62865. {
  62866. name: "Micro",
  62867. height: math.unit(1, "inch")
  62868. },
  62869. {
  62870. name: "Normal",
  62871. height: math.unit(10, "feet"),
  62872. default: true
  62873. },
  62874. {
  62875. name: "Macro",
  62876. height: math.unit(200, "feet")
  62877. },
  62878. ]
  62879. ))
  62880. characterMakers.push(() => makeCharacter(
  62881. { name: "Vyse Iron-Thunder", species: ["luxray", "shiny"], tags: ["anthro"] },
  62882. {
  62883. frontDressed: {
  62884. height: math.unit(15 + 7/12, "feet"),
  62885. weight: math.unit(5000, "lb"),
  62886. name: "Front (Dressed)",
  62887. image: {
  62888. source: "./media/characters/vyse-iron-thunder/front-dressed.svg",
  62889. extra: 1136/1023,
  62890. bottom: 51/1187
  62891. }
  62892. },
  62893. backDressed: {
  62894. height: math.unit(15 + 7/12, "feet"),
  62895. weight: math.unit(5000, "lb"),
  62896. name: "Back (Dressed)",
  62897. image: {
  62898. source: "./media/characters/vyse-iron-thunder/back-dressed.svg",
  62899. extra: 2359/2143,
  62900. bottom: 103/2462
  62901. }
  62902. },
  62903. front: {
  62904. height: math.unit(15 + 7/12, "feet"),
  62905. weight: math.unit(5000, "lb"),
  62906. name: "Front",
  62907. image: {
  62908. source: "./media/characters/vyse-iron-thunder/front.svg",
  62909. extra: 1136/1023,
  62910. bottom: 51/1187
  62911. }
  62912. },
  62913. hand: {
  62914. height: math.unit(2.36, "feet"),
  62915. name: "Hand",
  62916. image: {
  62917. source: "./media/characters/vyse-iron-thunder/hand.svg"
  62918. }
  62919. },
  62920. foot: {
  62921. height: math.unit(1.72, "feet"),
  62922. name: "Foot",
  62923. image: {
  62924. source: "./media/characters/vyse-iron-thunder/foot.svg"
  62925. }
  62926. },
  62927. mouth: {
  62928. height: math.unit(2, "feet"),
  62929. name: "Mouth",
  62930. image: {
  62931. source: "./media/characters/vyse-iron-thunder/mouth.svg"
  62932. }
  62933. },
  62934. eye: {
  62935. height: math.unit(0.58, "feet"),
  62936. name: "Eye",
  62937. image: {
  62938. source: "./media/characters/vyse-iron-thunder/eye.svg"
  62939. }
  62940. },
  62941. },
  62942. [
  62943. {
  62944. name: "Normal",
  62945. height: math.unit(15 + 7/12, "feet"),
  62946. default: true
  62947. },
  62948. {
  62949. name: "Macro",
  62950. height: math.unit(157, "feet")
  62951. },
  62952. {
  62953. name: "Macro+",
  62954. height: math.unit(1570, "feet")
  62955. },
  62956. {
  62957. name: "Macro++",
  62958. height: math.unit(15700, "feet")
  62959. },
  62960. {
  62961. name: "Macro+++",
  62962. height: math.unit(157000, "feet")
  62963. },
  62964. {
  62965. name: "Macro++++",
  62966. height: math.unit(1570000, "feet")
  62967. },
  62968. ]
  62969. ))
  62970. characterMakers.push(() => makeCharacter(
  62971. { name: "Moonbeam", species: ["latex", "wolf"], tags: ["feral"] },
  62972. {
  62973. side: {
  62974. height: math.unit(6, "feet"),
  62975. weight: math.unit(115, "lb"),
  62976. name: "Side",
  62977. image: {
  62978. source: "./media/characters/moonbeam/side.svg",
  62979. extra: 839/485,
  62980. bottom: 60/899
  62981. }
  62982. },
  62983. },
  62984. [
  62985. {
  62986. name: "Normal",
  62987. height: math.unit(6, "feet"),
  62988. default: true
  62989. },
  62990. ]
  62991. ))
  62992. characterMakers.push(() => makeCharacter(
  62993. { name: "Baltica", species: ["orca"], tags: ["anthro"] },
  62994. {
  62995. front: {
  62996. height: math.unit(3500, "miles"),
  62997. weight: math.unit(1659, "petatonnes"),
  62998. name: "Front",
  62999. image: {
  63000. source: "./media/characters/baltica/front.svg",
  63001. extra: 429/428,
  63002. bottom: 41/470
  63003. }
  63004. },
  63005. back: {
  63006. height: math.unit(3500, "miles"),
  63007. weight: math.unit(1659, "petatonnes"),
  63008. name: "Back",
  63009. image: {
  63010. source: "./media/characters/baltica/back.svg",
  63011. extra: 452/451,
  63012. bottom: 8/460
  63013. }
  63014. },
  63015. },
  63016. [
  63017. {
  63018. name: "Gigamacro",
  63019. height: math.unit(3500, "miles"),
  63020. default: true
  63021. },
  63022. ]
  63023. ))
  63024. characterMakers.push(() => makeCharacter(
  63025. { name: "Shadow (Wolf)", species: ["wolf", "demi"], tags: ["anthro"] },
  63026. {
  63027. front: {
  63028. height: math.unit(6 + 10/12, "feet"),
  63029. weight: math.unit(200, "lb"),
  63030. name: "Front",
  63031. image: {
  63032. source: "./media/characters/shadow-wolf/front.svg",
  63033. extra: 1931/1760,
  63034. bottom: 88/2019
  63035. }
  63036. },
  63037. },
  63038. [
  63039. {
  63040. name: "Normal",
  63041. height: math.unit(6 + 10/12, "feet"),
  63042. default: true
  63043. },
  63044. ]
  63045. ))
  63046. characterMakers.push(() => makeCharacter(
  63047. { name: "Quincy (Praying Mantis)", species: ["praying-mantis"], tags: ["anthro"] },
  63048. {
  63049. front: {
  63050. height: math.unit(5 + 10/12, "feet"),
  63051. name: "Front",
  63052. image: {
  63053. source: "./media/characters/quincy-praying-mantis/front.svg",
  63054. extra: 1055/891,
  63055. bottom: 92/1147
  63056. }
  63057. },
  63058. soles: {
  63059. height: math.unit(0.85, "feet"),
  63060. name: "Soles",
  63061. image: {
  63062. source: "./media/characters/quincy-praying-mantis/soles.svg",
  63063. extra: 429/324,
  63064. bottom: 89/518
  63065. },
  63066. extraAttributes: {
  63067. "shoeSize": {
  63068. name: "Shoe Size",
  63069. power: 1,
  63070. type: "length",
  63071. base: math.unit(23, "ShoeSizeMensUS"),
  63072. defaultUnit: "ShoeSizeMensUS"
  63073. },
  63074. }
  63075. },
  63076. foot: {
  63077. height: math.unit(0.72, "feet"),
  63078. name: "Foot",
  63079. image: {
  63080. source: "./media/characters/quincy-praying-mantis/foot.svg",
  63081. extra: 349/349,
  63082. bottom: 76/425
  63083. }
  63084. },
  63085. },
  63086. [
  63087. {
  63088. name: "Normal",
  63089. height: math.unit(5 + 10/12, "feet"),
  63090. default: true
  63091. },
  63092. ]
  63093. ))
  63094. characterMakers.push(() => makeCharacter(
  63095. { name: "Christopher Redwood", species: ["gray-wolf"], tags: ["anthro"] },
  63096. {
  63097. front: {
  63098. height: math.unit(6, "feet"),
  63099. name: "Front",
  63100. image: {
  63101. source: "./media/characters/christopher-redwood/front.svg",
  63102. extra: 1402/1341,
  63103. bottom: 23/1425
  63104. }
  63105. },
  63106. back: {
  63107. height: math.unit(6, "feet"),
  63108. name: "Back",
  63109. image: {
  63110. source: "./media/characters/christopher-redwood/back.svg",
  63111. extra: 1406/1345,
  63112. bottom: 36/1442
  63113. }
  63114. },
  63115. head: {
  63116. height: math.unit(1.685, "feet"),
  63117. name: "Head",
  63118. image: {
  63119. source: "./media/characters/christopher-redwood/head.svg"
  63120. }
  63121. },
  63122. },
  63123. [
  63124. {
  63125. name: "Normal",
  63126. height: math.unit(6, "feet"),
  63127. default: true
  63128. },
  63129. ]
  63130. ))
  63131. characterMakers.push(() => makeCharacter(
  63132. { name: "Kara (Fox)", species: ["fox"], tags: ["anthro"] },
  63133. {
  63134. front: {
  63135. height: math.unit(1.9, "meters"),
  63136. weight: math.unit(140, "lb"),
  63137. name: "Front",
  63138. image: {
  63139. source: "./media/characters/kara-fox/front.svg",
  63140. extra: 766/711,
  63141. bottom: 41/807
  63142. }
  63143. },
  63144. back: {
  63145. height: math.unit(1.9, "meters"),
  63146. weight: math.unit(140, "lb"),
  63147. name: "Back",
  63148. image: {
  63149. source: "./media/characters/kara-fox/back.svg",
  63150. extra: 766/596,
  63151. bottom: 29/795
  63152. }
  63153. },
  63154. maw: {
  63155. height: math.unit(0.78, "feet"),
  63156. name: "Maw",
  63157. image: {
  63158. source: "./media/characters/kara-fox/maw.svg"
  63159. }
  63160. },
  63161. pawpads: {
  63162. height: math.unit(0.96, "feet"),
  63163. name: "Pawpads",
  63164. image: {
  63165. source: "./media/characters/kara-fox/pawpads.svg"
  63166. }
  63167. },
  63168. },
  63169. [
  63170. {
  63171. name: "Normal",
  63172. height: math.unit(1.9, "meters"),
  63173. default: true
  63174. },
  63175. {
  63176. name: "Giantess",
  63177. height: math.unit(80, "meters")
  63178. },
  63179. ]
  63180. ))
  63181. characterMakers.push(() => makeCharacter(
  63182. { name: "Naomi (Espeon)", species: ["espeon"], tags: ["anthro"] },
  63183. {
  63184. front: {
  63185. height: math.unit(12, "feet"),
  63186. name: "Front",
  63187. image: {
  63188. source: "./media/characters/naomi-espeon/front.svg",
  63189. extra: 892/797,
  63190. bottom: 5/897
  63191. }
  63192. },
  63193. back: {
  63194. height: math.unit(12, "feet"),
  63195. name: "Back",
  63196. image: {
  63197. source: "./media/characters/naomi-espeon/back.svg",
  63198. extra: 890/785,
  63199. bottom: 12/902
  63200. }
  63201. },
  63202. },
  63203. [
  63204. {
  63205. name: "Normal",
  63206. height: math.unit(12, "feet"),
  63207. default: true
  63208. },
  63209. ]
  63210. ))
  63211. characterMakers.push(() => makeCharacter(
  63212. { name: "Asher Heulfyrn", species: ["skullwolf"], tags: ["anthro", "taur"] },
  63213. {
  63214. anthro_front: {
  63215. height: math.unit(8, "feet"),
  63216. weight: math.unit(625, "lb"),
  63217. name: "Front",
  63218. image: {
  63219. source: "./media/characters/asher-heulfyrn/anthro-front.svg",
  63220. extra: 638/574,
  63221. bottom: 73/711
  63222. },
  63223. form: "anthro",
  63224. default: true
  63225. },
  63226. anthro_back: {
  63227. height: math.unit(8, "feet"),
  63228. weight: math.unit(625, "lb"),
  63229. name: "Back",
  63230. image: {
  63231. source: "./media/characters/asher-heulfyrn/anthro-back.svg",
  63232. extra: 674/614,
  63233. bottom: 7/681
  63234. },
  63235. form: "anthro",
  63236. },
  63237. taur_side: {
  63238. height: math.unit(16, "feet"),
  63239. weight: math.unit(4.5, "tons"),
  63240. name: "Side",
  63241. image: {
  63242. source: "./media/characters/asher-heulfyrn/taur-side.svg",
  63243. extra: 704/646,
  63244. bottom: 132/836
  63245. },
  63246. form: "taur",
  63247. default: true
  63248. },
  63249. },
  63250. [
  63251. {
  63252. name: "Normal",
  63253. height: math.unit(8, "feet"),
  63254. default: true,
  63255. form: "anthro"
  63256. },
  63257. {
  63258. name: "Normal",
  63259. height: math.unit(16, "feet"),
  63260. default: true,
  63261. form: "taur"
  63262. },
  63263. ],
  63264. {
  63265. "anthro": {
  63266. name: "Anthro",
  63267. default: true
  63268. },
  63269. "taur": {
  63270. name: "Taur",
  63271. },
  63272. }
  63273. ))
  63274. characterMakers.push(() => makeCharacter(
  63275. { name: "Amelie", species: ["ferrin"], tags: ["anthro"] },
  63276. {
  63277. front: {
  63278. height: math.unit(190, "cm"),
  63279. weight: math.unit(110, "kg"),
  63280. name: "Front",
  63281. image: {
  63282. source: "./media/characters/amelie/front.svg",
  63283. extra: 530/442,
  63284. bottom: 35/565
  63285. }
  63286. },
  63287. },
  63288. [
  63289. {
  63290. name: "Normal",
  63291. height: math.unit(190, "cm"),
  63292. default: true
  63293. },
  63294. ]
  63295. ))
  63296. characterMakers.push(() => makeCharacter(
  63297. { name: "Valence", species: ["skulldragon"], tags: ["anthro"] },
  63298. {
  63299. front: {
  63300. height: math.unit(21, "feet"),
  63301. weight: math.unit(30000, "lb"),
  63302. name: "Front",
  63303. image: {
  63304. source: "./media/characters/valence/front.svg",
  63305. extra: 1430/1306,
  63306. bottom: 51/1481
  63307. }
  63308. },
  63309. },
  63310. [
  63311. {
  63312. name: "Normal",
  63313. height: math.unit(21, "feet"),
  63314. default: true
  63315. },
  63316. ]
  63317. ))
  63318. characterMakers.push(() => makeCharacter(
  63319. { name: "Aurora Adkins", species: ["rusty-spotted-cat"], tags: ["anthro"] },
  63320. {
  63321. front: {
  63322. height: math.unit(5 + 9/12, "feet"),
  63323. weight: math.unit(170, "lb"),
  63324. name: "Front",
  63325. image: {
  63326. source: "./media/characters/aurora-adkins/front.svg",
  63327. extra: 1141/1089,
  63328. bottom: 41/1182
  63329. }
  63330. },
  63331. },
  63332. [
  63333. {
  63334. name: "Tiny",
  63335. height: math.unit(7, "mm")
  63336. },
  63337. {
  63338. name: "Small",
  63339. height: math.unit(3.4, "inches")
  63340. },
  63341. {
  63342. name: "Normal",
  63343. height: math.unit(5 + 9/12, "feet"),
  63344. default: true
  63345. },
  63346. {
  63347. name: "Big",
  63348. height: math.unit(31, "feet")
  63349. },
  63350. {
  63351. name: "Giant",
  63352. height: math.unit(300, "feet")
  63353. },
  63354. ]
  63355. ))
  63356. characterMakers.push(() => makeCharacter(
  63357. { name: "Cyber", species: ["maned-wolf", "lynx", "deity"], tags: ["anthro"] },
  63358. {
  63359. front: {
  63360. height: math.unit(5 + 6/12, "feet"),
  63361. weight: math.unit(210, "lb"),
  63362. name: "Front",
  63363. image: {
  63364. source: "./media/characters/cyber/front.svg",
  63365. extra: 1968/1798,
  63366. bottom: 10/1978
  63367. },
  63368. extraAttributes: {
  63369. "shoeSize": {
  63370. name: "Shoe Size",
  63371. power: 1,
  63372. type: "length",
  63373. base: math.unit(30, "ShoeSizeMensUS")
  63374. },
  63375. }
  63376. },
  63377. },
  63378. [
  63379. {
  63380. name: "Normal",
  63381. height: math.unit(5 + 6/12, "feet"),
  63382. default: true
  63383. },
  63384. ]
  63385. ))
  63386. characterMakers.push(() => makeCharacter(
  63387. { name: "Sapphire Wairimea", species: ["elf"], tags: ["anthro"] },
  63388. {
  63389. front: {
  63390. height: math.unit(6 + 6/12, "feet"),
  63391. weight: math.unit(140, "lb"),
  63392. name: "Front",
  63393. image: {
  63394. source: "./media/characters/sapphire-wairimea/front.svg",
  63395. extra: 475/458,
  63396. bottom: 14/489
  63397. }
  63398. },
  63399. },
  63400. [
  63401. {
  63402. name: "Normal",
  63403. height: math.unit(6 + 6/12, "feet")
  63404. },
  63405. {
  63406. name: "Macro",
  63407. height: math.unit(132, "feet"),
  63408. default: true
  63409. },
  63410. ]
  63411. ))
  63412. characterMakers.push(() => makeCharacter(
  63413. { name: "Cirkazi", species: ["elf"], tags: ["anthro"] },
  63414. {
  63415. front: {
  63416. height: math.unit(1.6, "meters"),
  63417. weight: math.unit(100, "lb"),
  63418. name: "Front",
  63419. image: {
  63420. source: "./media/characters/cirkazi/front.svg",
  63421. extra: 489/477,
  63422. bottom: 0/489
  63423. }
  63424. },
  63425. },
  63426. [
  63427. {
  63428. name: "Normal",
  63429. height: math.unit(1.6, "meters")
  63430. },
  63431. {
  63432. name: "Macro",
  63433. height: math.unit(800, "feet"),
  63434. default: true
  63435. },
  63436. ]
  63437. ))
  63438. characterMakers.push(() => makeCharacter(
  63439. { name: "Corrin Cavelli", species: ["human"], tags: ["anthro"] },
  63440. {
  63441. front: {
  63442. height: math.unit(5 + 10/12, "feet"),
  63443. weight: math.unit(145, "lb"),
  63444. name: "Front",
  63445. image: {
  63446. source: "./media/characters/corrin-cavelli/front.svg",
  63447. extra: 483/464,
  63448. bottom: 6/489
  63449. }
  63450. },
  63451. },
  63452. [
  63453. {
  63454. name: "Human",
  63455. height: math.unit(5 + 10/12, "feet")
  63456. },
  63457. {
  63458. name: "Giant",
  63459. height: math.unit(210, "feet"),
  63460. default: true
  63461. },
  63462. ]
  63463. ))
  63464. characterMakers.push(() => makeCharacter(
  63465. { name: "Lori Lopez", species: ["human"], tags: ["anthro"] },
  63466. {
  63467. back: {
  63468. height: math.unit(5 + 6/12, "feet"),
  63469. weight: math.unit(115, "lb"),
  63470. name: "Back",
  63471. image: {
  63472. source: "./media/characters/lori-lopez/back.svg",
  63473. extra: 483/474,
  63474. bottom: 6/489
  63475. }
  63476. },
  63477. },
  63478. [
  63479. {
  63480. name: "Human",
  63481. height: math.unit(5 + 6/12, "feet")
  63482. },
  63483. {
  63484. name: "Macro",
  63485. height: math.unit(198, "feet"),
  63486. default: true
  63487. },
  63488. ]
  63489. ))
  63490. characterMakers.push(() => makeCharacter(
  63491. { name: "Sylvia Beauregard", species: ["human"], tags: ["anthro"] },
  63492. {
  63493. front: {
  63494. height: math.unit(6, "feet"),
  63495. weight: math.unit(220, "lb"),
  63496. name: "Front",
  63497. image: {
  63498. source: "./media/characters/sylvia-beauregard/front.svg",
  63499. extra: 483/479,
  63500. bottom: 6/489
  63501. }
  63502. },
  63503. },
  63504. [
  63505. {
  63506. name: "Macro",
  63507. height: math.unit(2071, "feet"),
  63508. default: true
  63509. },
  63510. ]
  63511. ))
  63512. characterMakers.push(() => makeCharacter(
  63513. { name: "Akiko Takahashi", species: ["human"], tags: ["anthro"] },
  63514. {
  63515. back: {
  63516. height: math.unit(5 + 6/12, "feet"),
  63517. weight: math.unit(160, "lb"),
  63518. name: "Back",
  63519. image: {
  63520. source: "./media/characters/akiko-takahashi/back.svg",
  63521. extra: 459/454,
  63522. bottom: 27/486
  63523. }
  63524. },
  63525. },
  63526. [
  63527. {
  63528. name: "Human",
  63529. height: math.unit(5 + 6/12, "feet")
  63530. },
  63531. {
  63532. name: "Macro",
  63533. height: math.unit(198, "feet"),
  63534. default: true
  63535. },
  63536. {
  63537. name: "Megamacro",
  63538. height: math.unit(7128, "feet")
  63539. },
  63540. ]
  63541. ))
  63542. characterMakers.push(() => makeCharacter(
  63543. { name: "Velvet Garza", species: ["human"], tags: ["anthro"] },
  63544. {
  63545. front: {
  63546. height: math.unit(6, "feet"),
  63547. weight: math.unit(140, "lb"),
  63548. name: "Front",
  63549. image: {
  63550. source: "./media/characters/velvet-garza/front.svg",
  63551. extra: 480/462,
  63552. bottom: 7/487
  63553. }
  63554. },
  63555. },
  63556. [
  63557. {
  63558. name: "Macro",
  63559. height: math.unit(37, "feet"),
  63560. default: true
  63561. },
  63562. ]
  63563. ))
  63564. characterMakers.push(() => makeCharacter(
  63565. { name: "Gaia", species: ["deity", "human"], tags: ["anthro"] },
  63566. {
  63567. front: {
  63568. height: math.unit(7 + 6/12, "feet"),
  63569. weight: math.unit(400, "lb"),
  63570. name: "Front",
  63571. image: {
  63572. source: "./media/characters/gaia/front.svg",
  63573. extra: 474/463,
  63574. bottom: 13/487
  63575. }
  63576. },
  63577. },
  63578. [
  63579. {
  63580. name: "MiniMacro",
  63581. height: math.unit(7 + 6/12, "feet")
  63582. },
  63583. {
  63584. name: "GigaMacro",
  63585. height: math.unit(14500, "feet"),
  63586. default: true
  63587. },
  63588. ]
  63589. ))
  63590. characterMakers.push(() => makeCharacter(
  63591. { name: "Tim", species: ["rabbit"], tags: ["anthro"] },
  63592. {
  63593. front: {
  63594. height: math.unit(6, "feet"),
  63595. weight: math.unit(150, "lb"),
  63596. name: "Front",
  63597. image: {
  63598. source: "./media/characters/tim/front.svg",
  63599. extra: 1878/1743,
  63600. bottom: 9/1887
  63601. }
  63602. },
  63603. frontDressed: {
  63604. height: math.unit(6, "feet"),
  63605. weight: math.unit(150, "lb"),
  63606. name: "Front (Dressed)",
  63607. image: {
  63608. source: "./media/characters/tim/front-dressed.svg",
  63609. extra: 1765/1485,
  63610. bottom: 48/1813
  63611. }
  63612. },
  63613. backDressed: {
  63614. height: math.unit(6, "feet"),
  63615. weight: math.unit(150, "lb"),
  63616. name: "Back (Dressed)",
  63617. image: {
  63618. source: "./media/characters/tim/back-dressed.svg",
  63619. extra: 1750/1465,
  63620. bottom: 25/1775
  63621. }
  63622. },
  63623. dick: {
  63624. height: math.unit(1.5, "feet"),
  63625. weight: math.unit(6, "lb"),
  63626. name: "Dick",
  63627. image: {
  63628. source: "./media/characters/tim/dick.svg"
  63629. }
  63630. },
  63631. hand: {
  63632. height: math.unit(0.522, "feet"),
  63633. name: "Hand",
  63634. image: {
  63635. source: "./media/characters/tim/hand.svg"
  63636. }
  63637. },
  63638. palm: {
  63639. height: math.unit(0.48, "feet"),
  63640. name: "Palm",
  63641. image: {
  63642. source: "./media/characters/tim/palm.svg"
  63643. }
  63644. },
  63645. paw: {
  63646. height: math.unit(0.9, "feet"),
  63647. name: "Paw",
  63648. image: {
  63649. source: "./media/characters/tim/paw.svg"
  63650. }
  63651. },
  63652. sole: {
  63653. height: math.unit(0.88, "feet"),
  63654. name: "Sole",
  63655. image: {
  63656. source: "./media/characters/tim/sole.svg"
  63657. }
  63658. },
  63659. },
  63660. [
  63661. {
  63662. name: "Macro",
  63663. height: math.unit(1000, "feet")
  63664. },
  63665. {
  63666. name: "Megamacro",
  63667. height: math.unit(10000, "feet"),
  63668. default: true
  63669. },
  63670. {
  63671. name: "Megamacro+",
  63672. height: math.unit(50000, "feet")
  63673. },
  63674. {
  63675. name: "Gigamacro",
  63676. height: math.unit(150000, "km")
  63677. },
  63678. ]
  63679. ))
  63680. characterMakers.push(() => makeCharacter(
  63681. { name: "Abel Delreoux", species: ["maine-coon"], tags: ["anthro"] },
  63682. {
  63683. front: {
  63684. height: math.unit(5 + 8/12, "feet"),
  63685. weight: math.unit(170, "lb"),
  63686. name: "Front",
  63687. image: {
  63688. source: "./media/characters/abel-delreoux/front.svg",
  63689. extra: 1615/1500,
  63690. bottom: 82/1697
  63691. }
  63692. },
  63693. back: {
  63694. height: math.unit(5 + 8/12, "feet"),
  63695. weight: math.unit(170, "lb"),
  63696. name: "Back",
  63697. image: {
  63698. source: "./media/characters/abel-delreoux/back.svg",
  63699. extra: 1644/1534,
  63700. bottom: 24/1668
  63701. }
  63702. },
  63703. casual: {
  63704. height: math.unit(5 + 8/12, "feet"),
  63705. weight: math.unit(170, "lb"),
  63706. name: "Casual",
  63707. image: {
  63708. source: "./media/characters/abel-delreoux/casual.svg",
  63709. extra: 1716/1598,
  63710. bottom: 29/1745
  63711. }
  63712. },
  63713. sleepy: {
  63714. height: math.unit(5 + 8/12, "feet"),
  63715. weight: math.unit(170, "lb"),
  63716. name: "Sleepy",
  63717. image: {
  63718. source: "./media/characters/abel-delreoux/sleepy.svg",
  63719. extra: 1649/1573,
  63720. bottom: 22/1671
  63721. }
  63722. },
  63723. fem: {
  63724. height: math.unit(5 + 8/12, "feet"),
  63725. weight: math.unit(170, "lb"),
  63726. name: "Fem",
  63727. image: {
  63728. source: "./media/characters/abel-delreoux/fem.svg",
  63729. extra: 1680/1564,
  63730. bottom: 17/1697
  63731. }
  63732. },
  63733. hand: {
  63734. height: math.unit(0.78, "feet"),
  63735. name: "Hand",
  63736. image: {
  63737. source: "./media/characters/abel-delreoux/hand.svg"
  63738. }
  63739. },
  63740. paw: {
  63741. height: math.unit(0.78, "feet"),
  63742. name: "Paw",
  63743. image: {
  63744. source: "./media/characters/abel-delreoux/paw.svg"
  63745. }
  63746. },
  63747. },
  63748. [
  63749. {
  63750. name: "Normal",
  63751. height: math.unit(5 + 8/12, "feet"),
  63752. default: true
  63753. },
  63754. ]
  63755. ))
  63756. characterMakers.push(() => makeCharacter(
  63757. { name: "Meus", species: ["phoenix"], tags: ["anthro"] },
  63758. {
  63759. front: {
  63760. height: math.unit(6, "feet"),
  63761. weight: math.unit(159, "lb"),
  63762. name: "Front",
  63763. image: {
  63764. source: "./media/characters/meus/front.svg",
  63765. extra: 938/843,
  63766. bottom: 37/975
  63767. }
  63768. },
  63769. back: {
  63770. height: math.unit(6, "feet"),
  63771. weight: math.unit(159, "lb"),
  63772. name: "Back",
  63773. image: {
  63774. source: "./media/characters/meus/back.svg",
  63775. extra: 967/873,
  63776. bottom: 12/979
  63777. }
  63778. },
  63779. },
  63780. [
  63781. {
  63782. name: "Micro",
  63783. height: math.unit(2, "inches")
  63784. },
  63785. {
  63786. name: "Mini",
  63787. height: math.unit(6, "inches")
  63788. },
  63789. {
  63790. name: "Normal",
  63791. height: math.unit(6, "feet"),
  63792. default: true
  63793. },
  63794. {
  63795. name: "Macro",
  63796. height: math.unit(84, "feet")
  63797. },
  63798. ]
  63799. ))
  63800. characterMakers.push(() => makeCharacter(
  63801. { name: "Yamato", species: ["kobold"], tags: ["anthro"] },
  63802. {
  63803. front: {
  63804. height: math.unit(60, "cm"),
  63805. weight: math.unit(18, "kg"),
  63806. name: "Front",
  63807. image: {
  63808. source: "./media/characters/yamato/front.svg",
  63809. extra: 733/688,
  63810. bottom: 29/762
  63811. }
  63812. },
  63813. },
  63814. [
  63815. {
  63816. name: "Micro",
  63817. height: math.unit(6, "cm")
  63818. },
  63819. {
  63820. name: "Normal",
  63821. height: math.unit(60, "cm"),
  63822. default: true
  63823. },
  63824. ]
  63825. ))
  63826. characterMakers.push(() => makeCharacter(
  63827. { name: "Barus", species: ["deity"], tags: ["anthro"] },
  63828. {
  63829. front: {
  63830. height: math.unit(9, "feet"),
  63831. weight: math.unit(518, "lb"),
  63832. name: "Front",
  63833. image: {
  63834. source: "./media/characters/barus/front.svg",
  63835. extra: 1877/1795,
  63836. bottom: 55/1932
  63837. }
  63838. },
  63839. },
  63840. [
  63841. {
  63842. name: "Base Height",
  63843. height: math.unit(9, "feet"),
  63844. default: true
  63845. },
  63846. {
  63847. name: "Large",
  63848. height: math.unit(18, "feet")
  63849. },
  63850. {
  63851. name: "Giant",
  63852. height: math.unit(100, "feet")
  63853. },
  63854. {
  63855. name: "Huge",
  63856. height: math.unit(500, "feet")
  63857. },
  63858. {
  63859. name: "Enormous",
  63860. height: math.unit(300, "meters")
  63861. },
  63862. {
  63863. name: "Deity Among Man",
  63864. height: math.unit(3000, "meters")
  63865. },
  63866. ]
  63867. ))
  63868. characterMakers.push(() => makeCharacter(
  63869. { name: "Yari", species: ["sergal"], tags: ["anthro"] },
  63870. {
  63871. front: {
  63872. height: math.unit(1.7, "meters"),
  63873. name: "Front",
  63874. image: {
  63875. source: "./media/characters/yari/front.svg",
  63876. extra: 1210/1125,
  63877. bottom: 283/1493
  63878. }
  63879. },
  63880. back: {
  63881. height: math.unit(1.7, "meters"),
  63882. name: "Back",
  63883. image: {
  63884. source: "./media/characters/yari/back.svg",
  63885. extra: 1240/1195,
  63886. bottom: 180/1420
  63887. }
  63888. },
  63889. head: {
  63890. height: math.unit(1.26, "feet"),
  63891. name: "Head",
  63892. image: {
  63893. source: "./media/characters/yari/head.svg"
  63894. }
  63895. },
  63896. },
  63897. [
  63898. {
  63899. name: "Nano",
  63900. height: math.unit(0.5, "mm")
  63901. },
  63902. {
  63903. name: "Micro",
  63904. height: math.unit(3, "inches")
  63905. },
  63906. {
  63907. name: "Short",
  63908. height: math.unit(1.5, "meters")
  63909. },
  63910. {
  63911. name: "Norm",
  63912. height: math.unit(1.7, "meters"),
  63913. default: true
  63914. },
  63915. ]
  63916. ))
  63917. characterMakers.push(() => makeCharacter(
  63918. { name: "Salem", species: ["mouse"], tags: ["anthro"] },
  63919. {
  63920. front: {
  63921. height: math.unit(5 + 2/12, "feet"),
  63922. weight: math.unit(110, "lb"),
  63923. name: "Front",
  63924. image: {
  63925. source: "./media/characters/salem/front.svg",
  63926. extra: 1895/1800,
  63927. bottom: 23/1918
  63928. }
  63929. },
  63930. back: {
  63931. height: math.unit(5 + 2/12, "feet"),
  63932. weight: math.unit(110, "lb"),
  63933. name: "Back",
  63934. image: {
  63935. source: "./media/characters/salem/back.svg",
  63936. extra: 1875/1802,
  63937. bottom: 20/1895
  63938. }
  63939. },
  63940. head: {
  63941. height: math.unit(1, "feet"),
  63942. name: "Head",
  63943. image: {
  63944. source: "./media/characters/salem/head.svg"
  63945. }
  63946. },
  63947. paw: {
  63948. height: math.unit(0.59, "feet"),
  63949. name: "Paw",
  63950. image: {
  63951. source: "./media/characters/salem/paw.svg"
  63952. }
  63953. },
  63954. beans: {
  63955. height: math.unit(0.66, "feet"),
  63956. name: "Beans",
  63957. image: {
  63958. source: "./media/characters/salem/beans.svg"
  63959. }
  63960. },
  63961. eye: {
  63962. height: math.unit(0.224, "feet"),
  63963. name: "Eye",
  63964. image: {
  63965. source: "./media/characters/salem/eye.svg"
  63966. }
  63967. },
  63968. semiferal: {
  63969. height: math.unit(2.3, "feet"),
  63970. name: "Semiferal",
  63971. image: {
  63972. source: "./media/characters/salem/semiferal.svg",
  63973. extra: 914/839,
  63974. bottom: 32/946
  63975. }
  63976. },
  63977. },
  63978. [
  63979. {
  63980. name: "Micro",
  63981. height: math.unit(4, "inches")
  63982. },
  63983. {
  63984. name: "Normal",
  63985. height: math.unit(5 + 2/12, "feet"),
  63986. default: true
  63987. },
  63988. {
  63989. name: "Macro",
  63990. height: math.unit(108, "feet")
  63991. },
  63992. {
  63993. name: "Macro+",
  63994. height: math.unit(1500, "feet")
  63995. },
  63996. ]
  63997. ))
  63998. characterMakers.push(() => makeCharacter(
  63999. { name: "Kii", species: ["dragon", "dog"], tags: ["anthro"] },
  64000. {
  64001. front: {
  64002. height: math.unit(7 + 6/12, "feet"),
  64003. weight: math.unit(600, "kg"),
  64004. preyCapacity: math.unit(10, "people"),
  64005. name: "Front",
  64006. image: {
  64007. source: "./media/characters/kii/front.svg",
  64008. extra: 3296/3087,
  64009. bottom: 130/3426
  64010. }
  64011. },
  64012. },
  64013. [
  64014. {
  64015. name: "Normal",
  64016. height: math.unit(7 + 6/12, "feet"),
  64017. default: true
  64018. },
  64019. ]
  64020. ))
  64021. characterMakers.push(() => makeCharacter(
  64022. { name: "Taffy", species: ["saltwater-crocodile"], tags: ["anthro"] },
  64023. {
  64024. front: {
  64025. height: math.unit(2, "meters"),
  64026. weight: math.unit(200, "lb"),
  64027. name: "Front",
  64028. image: {
  64029. source: "./media/characters/taffy/front.svg",
  64030. extra: 1666/1618,
  64031. bottom: 157/1823
  64032. }
  64033. },
  64034. back: {
  64035. height: math.unit(2, "meters"),
  64036. weight: math.unit(200, "lb"),
  64037. name: "Back",
  64038. image: {
  64039. source: "./media/characters/taffy/back.svg",
  64040. extra: 1635/1583,
  64041. bottom: 153/1788
  64042. }
  64043. },
  64044. },
  64045. [
  64046. {
  64047. name: "Normal",
  64048. height: math.unit(2, "meters"),
  64049. default: true
  64050. },
  64051. ]
  64052. ))
  64053. characterMakers.push(() => makeCharacter(
  64054. { name: "Barley", species: ["eastern-grey-kangaroo"], tags: ["anthro"] },
  64055. {
  64056. front: {
  64057. height: math.unit(1.55, "meters"),
  64058. weight: math.unit(60, "kg"),
  64059. name: "Front",
  64060. image: {
  64061. source: "./media/characters/barley/front.svg",
  64062. extra: 1520/1340,
  64063. bottom: 47/1567
  64064. }
  64065. },
  64066. back: {
  64067. height: math.unit(1.55, "meters"),
  64068. weight: math.unit(60, "kg"),
  64069. name: "Back",
  64070. image: {
  64071. source: "./media/characters/barley/back.svg",
  64072. extra: 1543/1341,
  64073. bottom: 12/1555
  64074. }
  64075. },
  64076. feet: {
  64077. height: math.unit(2.18, "feet"),
  64078. name: "Feet",
  64079. image: {
  64080. source: "./media/characters/barley/feet.svg"
  64081. }
  64082. },
  64083. },
  64084. [
  64085. {
  64086. name: "Normal",
  64087. height: math.unit(1.55, "meters"),
  64088. default: true
  64089. },
  64090. ]
  64091. ))
  64092. characterMakers.push(() => makeCharacter(
  64093. { name: "Lydia Lopez", species: ["shark"], tags: ["anthro"] },
  64094. {
  64095. dressed: {
  64096. height: math.unit(6, "feet"),
  64097. name: "Dressed",
  64098. image: {
  64099. source: "./media/characters/lydia-lopez/dressed.svg",
  64100. extra: 1319/1277,
  64101. bottom: 90/1409
  64102. }
  64103. },
  64104. nude: {
  64105. height: math.unit(6, "feet"),
  64106. name: "Nude",
  64107. image: {
  64108. source: "./media/characters/lydia-lopez/nude.svg",
  64109. extra: 1319/1277,
  64110. bottom: 90/1409
  64111. }
  64112. },
  64113. },
  64114. [
  64115. {
  64116. name: "Normal",
  64117. height: math.unit(6, "feet"),
  64118. default: true
  64119. },
  64120. {
  64121. name: "Maximum",
  64122. height: math.unit(2101, "feet")
  64123. },
  64124. ]
  64125. ))
  64126. characterMakers.push(() => makeCharacter(
  64127. { name: "Kira (Slime)", species: ["slime"], tags: ["goo"] },
  64128. {
  64129. front: {
  64130. height: math.unit(5 + 4/12, "feet"),
  64131. weight: math.unit(250, "lb"),
  64132. volume: math.unit(20, "gallons"),
  64133. name: "Front",
  64134. image: {
  64135. source: "./media/characters/kira-slime/front.svg",
  64136. extra: 442/403,
  64137. bottom: 18/460
  64138. }
  64139. },
  64140. frontNsfw: {
  64141. height: math.unit(5 + 4/12, "feet"),
  64142. weight: math.unit(250, "lb"),
  64143. volume: math.unit(20, "gallons"),
  64144. name: "Front (NSFW)",
  64145. image: {
  64146. source: "./media/characters/kira-slime/front-nsfw.svg",
  64147. extra: 442/403,
  64148. bottom: 18/460
  64149. }
  64150. },
  64151. },
  64152. [
  64153. {
  64154. name: "Droplet",
  64155. height: math.unit(0.0464452, "feet")
  64156. },
  64157. {
  64158. name: "Pint",
  64159. height: math.unit(0.9824, "feet")
  64160. },
  64161. {
  64162. name: "Bucket",
  64163. height: math.unit(2.83, "feet")
  64164. },
  64165. {
  64166. name: "Normal",
  64167. height: math.unit(5 + 4/12, "feet"),
  64168. default: true
  64169. },
  64170. {
  64171. name: "Tub",
  64172. height: math.unit(8.46614, "feet")
  64173. },
  64174. {
  64175. name: "Pool",
  64176. height: math.unit(31.1895, "feet")
  64177. },
  64178. {
  64179. name: "Pond",
  64180. height: math.unit(170.349, "feet")
  64181. },
  64182. {
  64183. name: "Lake",
  64184. height: math.unit(289334, "feet")
  64185. },
  64186. {
  64187. name: "Ocean",
  64188. height: math.unit(1.11940e+7, "feet")
  64189. },
  64190. ]
  64191. ))
  64192. characterMakers.push(() => makeCharacter(
  64193. { name: "Holiday", species: ["fennec-fox", "deer"], tags: ["anthro"] },
  64194. {
  64195. front: {
  64196. height: math.unit(5 + 6/12, "feet"),
  64197. weight: math.unit(120, "lb"),
  64198. name: "Front",
  64199. image: {
  64200. source: "./media/characters/holiday/front.svg",
  64201. extra: 456/403,
  64202. bottom: 4/460
  64203. }
  64204. },
  64205. back: {
  64206. height: math.unit(5 + 6/12, "feet"),
  64207. weight: math.unit(120, "lb"),
  64208. name: "Back",
  64209. image: {
  64210. source: "./media/characters/holiday/back.svg",
  64211. extra: 450/404,
  64212. bottom: 12/462
  64213. }
  64214. },
  64215. head: {
  64216. height: math.unit(2.3, "feet"),
  64217. name: "Head",
  64218. image: {
  64219. source: "./media/characters/holiday/head.svg"
  64220. }
  64221. },
  64222. },
  64223. [
  64224. {
  64225. name: "Normal",
  64226. height: math.unit(5 + 6/12, "feet"),
  64227. default: true
  64228. },
  64229. {
  64230. name: "Macro",
  64231. height: math.unit(6574.25, "feet")
  64232. },
  64233. ]
  64234. ))
  64235. characterMakers.push(() => makeCharacter(
  64236. { name: "Camina", species: ["latenivenatrix"], tags: ["anthro"] },
  64237. {
  64238. front: {
  64239. height: math.unit(6 + 2/12, "feet"),
  64240. weight: math.unit(200, "lb"),
  64241. name: "Front",
  64242. image: {
  64243. source: "./media/characters/camina/front.svg",
  64244. extra: 1048/985,
  64245. bottom: 30/1078
  64246. }
  64247. },
  64248. },
  64249. [
  64250. {
  64251. name: "Normal",
  64252. height: math.unit(6 + 2/12, "feet"),
  64253. default: true
  64254. },
  64255. ]
  64256. ))
  64257. characterMakers.push(() => makeCharacter(
  64258. { name: "Smuck", species: ["duck"], tags: ["feral"] },
  64259. {
  64260. front: {
  64261. height: math.unit(30, "cm"),
  64262. weight: math.unit(420, "grams"),
  64263. name: "Front",
  64264. image: {
  64265. source: "./media/characters/smuck/front.svg",
  64266. extra: 379/345,
  64267. bottom: 36/415
  64268. }
  64269. },
  64270. },
  64271. [
  64272. {
  64273. name: "Smuck-Sized",
  64274. height: math.unit(30, "cm"),
  64275. default: true
  64276. },
  64277. ]
  64278. ))
  64279. characterMakers.push(() => makeCharacter(
  64280. { name: "Bylur", species: ["monster"], tags: ["anthro"] },
  64281. {
  64282. frontSfw: {
  64283. height: math.unit(10, "feet"),
  64284. weight: math.unit(1000, "kg"),
  64285. preyCapacity: math.unit(2, "people"),
  64286. name: "Front (SFW)",
  64287. image: {
  64288. source: "./media/characters/bylur/front-sfw.svg",
  64289. extra: 419/343,
  64290. bottom: 3/422
  64291. },
  64292. default: true
  64293. },
  64294. frontSheath: {
  64295. height: math.unit(10, "feet"),
  64296. weight: math.unit(1000, "kg"),
  64297. preyCapacity: math.unit(2, "people"),
  64298. name: "Front (Sheath)",
  64299. image: {
  64300. source: "./media/characters/bylur/front-sheath.svg",
  64301. extra: 419/343,
  64302. bottom: 3/422
  64303. }
  64304. },
  64305. frontErect: {
  64306. height: math.unit(10, "feet"),
  64307. weight: math.unit(1000, "kg"),
  64308. preyCapacity: math.unit(2, "people"),
  64309. name: "Front (Erect)",
  64310. image: {
  64311. source: "./media/characters/bylur/front-erect.svg",
  64312. extra: 419/343,
  64313. bottom: 3/422
  64314. }
  64315. },
  64316. back: {
  64317. height: math.unit(10, "feet"),
  64318. weight: math.unit(1000, "kg"),
  64319. preyCapacity: math.unit(2, "people"),
  64320. name: "Back",
  64321. image: {
  64322. source: "./media/characters/bylur/back.svg",
  64323. extra: 392/315,
  64324. bottom: 3/395
  64325. }
  64326. },
  64327. maw: {
  64328. height: math.unit(3.65, "feet"),
  64329. name: "Maw",
  64330. image: {
  64331. source: "./media/characters/bylur/maw.svg"
  64332. }
  64333. },
  64334. },
  64335. [
  64336. {
  64337. name: "Slightly Human Sized",
  64338. height: math.unit(10, "feet")
  64339. },
  64340. {
  64341. name: "Normal",
  64342. height: math.unit(35, "feet"),
  64343. default: true
  64344. },
  64345. {
  64346. name: "Macro",
  64347. height: math.unit(130, "feet")
  64348. },
  64349. ]
  64350. ))
  64351. characterMakers.push(() => makeCharacter(
  64352. { name: "Oarven", species: ["earless-monitor-lizard"], tags: ["anthro"] },
  64353. {
  64354. frontNsfw: {
  64355. height: math.unit(6, "feet"),
  64356. weight: math.unit(250, "lb"),
  64357. preyCapacity: math.unit(0.05, "people"),
  64358. name: "Front (NSFW)",
  64359. image: {
  64360. source: "./media/characters/oarven/front-nsfw.svg",
  64361. extra: 1795/1783,
  64362. bottom: 142/1937
  64363. }
  64364. },
  64365. frontSfw: {
  64366. height: math.unit(6, "feet"),
  64367. weight: math.unit(250, "lb"),
  64368. preyCapacity: math.unit(0.05, "people"),
  64369. name: "Front (SFW)",
  64370. image: {
  64371. source: "./media/characters/oarven/front-sfw.svg",
  64372. extra: 1795/1783,
  64373. bottom: 142/1937
  64374. }
  64375. },
  64376. },
  64377. [
  64378. {
  64379. name: "Megamacro",
  64380. height: math.unit(5, "miles"),
  64381. default: true
  64382. },
  64383. {
  64384. name: "Maximum Height",
  64385. height: math.unit(5, "AUs")
  64386. },
  64387. ]
  64388. ))
  64389. characterMakers.push(() => makeCharacter(
  64390. { name: "Solidarity", species: ["aerosynth"], tags: ["feral"] },
  64391. {
  64392. side: {
  64393. height: math.unit(1065, "meters"),
  64394. weight: math.unit(1e12, "kg"),
  64395. volume: math.unit(3265000000, "m^3"),
  64396. name: "Side",
  64397. image: {
  64398. source: "./media/characters/solidarity/side.svg"
  64399. }
  64400. },
  64401. front: {
  64402. height: math.unit(1065, "meters"),
  64403. weight: math.unit(3265000000000, "kg"),
  64404. volume: math.unit(3265000000, "m^3"),
  64405. name: "Front",
  64406. image: {
  64407. source: "./media/characters/solidarity/front.svg"
  64408. }
  64409. },
  64410. top: {
  64411. height: math.unit(5823, "meters"),
  64412. weight: math.unit(3265000000000, "kg"),
  64413. volume: math.unit(3265000000, "m^3"),
  64414. name: "Top",
  64415. image: {
  64416. source: "./media/characters/solidarity/top.svg"
  64417. }
  64418. },
  64419. },
  64420. [
  64421. {
  64422. name: "Normal",
  64423. height: math.unit(1065, "meters"),
  64424. default: true
  64425. },
  64426. ]
  64427. ))
  64428. characterMakers.push(() => makeCharacter(
  64429. { name: "Ani'szi", species: ["phenx"], tags: ["taur"] },
  64430. {
  64431. side: {
  64432. height: math.unit(18 + 4/12, "feet"),
  64433. weight: math.unit(13000, "kg"),
  64434. name: "Side",
  64435. image: {
  64436. source: "./media/characters/ani'szi/side.svg",
  64437. extra: 468/459,
  64438. bottom: 60/528
  64439. }
  64440. },
  64441. head: {
  64442. height: math.unit(4.8, "feet"),
  64443. name: "Head",
  64444. image: {
  64445. source: "./media/characters/ani'szi/head.svg"
  64446. }
  64447. },
  64448. jaws: {
  64449. height: math.unit(2.25, "feet"),
  64450. name: "Jaws",
  64451. image: {
  64452. source: "./media/characters/ani'szi/jaws.svg"
  64453. }
  64454. },
  64455. bust: {
  64456. height: math.unit(8.9, "feet"),
  64457. name: "Bust",
  64458. image: {
  64459. source: "./media/characters/ani'szi/bust.svg"
  64460. }
  64461. },
  64462. back: {
  64463. height: math.unit(13.53, "feet"),
  64464. name: "Back",
  64465. image: {
  64466. source: "./media/characters/ani'szi/back.svg"
  64467. }
  64468. },
  64469. eye: {
  64470. height: math.unit(0.44, "feet"),
  64471. name: "Eye",
  64472. image: {
  64473. source: "./media/characters/ani'szi/eye.svg"
  64474. }
  64475. },
  64476. },
  64477. [
  64478. {
  64479. name: "Normal",
  64480. height: math.unit(18 + 4/12, "feet"),
  64481. default: true
  64482. },
  64483. ]
  64484. ))
  64485. characterMakers.push(() => makeCharacter(
  64486. { name: "Rain", species: ["driger"], tags: ["anthro"] },
  64487. {
  64488. front: {
  64489. height: math.unit(7 + 6/12, "feet"),
  64490. weight: math.unit(300, "lb"),
  64491. name: "Front",
  64492. image: {
  64493. source: "./media/characters/rain/front.svg",
  64494. extra: 2955/2698,
  64495. bottom: 235/3190
  64496. }
  64497. },
  64498. dressed: {
  64499. height: math.unit(7 + 6/12, "feet"),
  64500. weight: math.unit(300, "lb"),
  64501. name: "Dressed",
  64502. image: {
  64503. source: "./media/characters/rain/dressed.svg",
  64504. extra: 2783/2572,
  64505. bottom: 430/3213
  64506. }
  64507. },
  64508. },
  64509. [
  64510. {
  64511. name: "Normal",
  64512. height: math.unit(7 + 6/12, "feet"),
  64513. default: true
  64514. },
  64515. {
  64516. name: "Macro",
  64517. height: math.unit(200, "feet")
  64518. },
  64519. {
  64520. name: "Macro+",
  64521. height: math.unit(500, "feet")
  64522. },
  64523. {
  64524. name: "Megamacro",
  64525. height: math.unit(5, "miles")
  64526. },
  64527. ]
  64528. ))
  64529. characterMakers.push(() => makeCharacter(
  64530. { name: "Anise", species: ["gryphon"], tags: ["feral", "taur"] },
  64531. {
  64532. taur_side: {
  64533. height: math.unit(3, "meters"),
  64534. name: "Side",
  64535. image: {
  64536. source: "./media/characters/anise/taur-side.svg",
  64537. extra: 1833/926,
  64538. bottom: 134/1967
  64539. },
  64540. form: "taur",
  64541. default: true
  64542. },
  64543. feral_side: {
  64544. height: math.unit(3, "meters"),
  64545. name: "Side",
  64546. image: {
  64547. source: "./media/characters/anise/feral-side.svg",
  64548. extra: 681/349,
  64549. bottom: 26/707
  64550. },
  64551. form: "feral"
  64552. },
  64553. },
  64554. [
  64555. {
  64556. name: "Normal",
  64557. height: math.unit(3, "meters"),
  64558. default: true,
  64559. allForms: true
  64560. },
  64561. ],
  64562. {
  64563. "taur": {
  64564. name: "Taur",
  64565. default: true
  64566. },
  64567. "feral": {
  64568. name: "Feral",
  64569. },
  64570. }
  64571. ))
  64572. characterMakers.push(() => makeCharacter(
  64573. { name: "Sarina", species: ["red-panda"], tags: ["anthro"] },
  64574. {
  64575. front: {
  64576. height: math.unit(1.9, "meters"),
  64577. weight: math.unit(75, "kg"),
  64578. name: "Front",
  64579. image: {
  64580. source: "./media/characters/sarina/front.svg",
  64581. extra: 1275/1200,
  64582. bottom: 49/1324
  64583. }
  64584. },
  64585. back: {
  64586. height: math.unit(1.9, "meters"),
  64587. weight: math.unit(75, "kg"),
  64588. name: "Back",
  64589. image: {
  64590. source: "./media/characters/sarina/back.svg",
  64591. extra: 1279/1209,
  64592. bottom: 14/1293
  64593. }
  64594. },
  64595. dressed: {
  64596. height: math.unit(1.9, "meters"),
  64597. weight: math.unit(75, "kg"),
  64598. name: "Dressed",
  64599. image: {
  64600. source: "./media/characters/sarina/dressed.svg",
  64601. extra: 1256/1187,
  64602. bottom: 56/1312
  64603. }
  64604. },
  64605. paw: {
  64606. height: math.unit(0.57, "feet"),
  64607. name: "Paw",
  64608. image: {
  64609. source: "./media/characters/sarina/paw.svg"
  64610. }
  64611. },
  64612. toering: {
  64613. height: math.unit(0.27, "feet"),
  64614. name: "Toering",
  64615. image: {
  64616. source: "./media/characters/sarina/toering.svg"
  64617. }
  64618. },
  64619. },
  64620. [
  64621. {
  64622. name: "Incognito",
  64623. height: math.unit(1.9, "meters")
  64624. },
  64625. {
  64626. name: "Home Size",
  64627. height: math.unit(160, "meters"),
  64628. default: true
  64629. },
  64630. {
  64631. name: "Mega",
  64632. height: math.unit(50, "km")
  64633. },
  64634. {
  64635. name: "Small Giga",
  64636. height: math.unit(250, "km")
  64637. },
  64638. {
  64639. name: "Giga (Preferred Size)",
  64640. height: math.unit(3000, "km")
  64641. },
  64642. {
  64643. name: "Terra",
  64644. height: math.unit(40000, "km")
  64645. },
  64646. {
  64647. name: "Terra+",
  64648. height: math.unit(400000, "km")
  64649. },
  64650. {
  64651. name: "Solar",
  64652. height: math.unit(35e6, "km")
  64653. },
  64654. {
  64655. name: "Galactic",
  64656. height: math.unit(648106, "parsecs")
  64657. },
  64658. {
  64659. name: "Universal",
  64660. height: math.unit(7, "universes")
  64661. },
  64662. {
  64663. name: "Universal+",
  64664. height: math.unit(30, "universes")
  64665. },
  64666. ]
  64667. ))
  64668. characterMakers.push(() => makeCharacter(
  64669. { name: "Sifray", species: ["homestuck-troll"], tags: ["anthro"] },
  64670. {
  64671. front: {
  64672. height: math.unit(5 + 6/12, "feet"),
  64673. name: "Front",
  64674. image: {
  64675. source: "./media/characters/sifray/front.svg",
  64676. extra: 722/691,
  64677. bottom: 64/786
  64678. }
  64679. },
  64680. },
  64681. [
  64682. {
  64683. name: "Normal",
  64684. height: math.unit(5 + 6/12, "feet"),
  64685. default: true
  64686. },
  64687. ]
  64688. ))
  64689. characterMakers.push(() => makeCharacter(
  64690. { name: "Spots", species: ["dog"], tags: ["feral"] },
  64691. {
  64692. side: {
  64693. height: math.unit(2.64, "feet"),
  64694. weight: math.unit(100, "lb"),
  64695. preyCapacity: math.unit(3, "people"),
  64696. name: "Side",
  64697. image: {
  64698. source: "./media/characters/spots/side.svg",
  64699. extra: 1859/977,
  64700. bottom: 19/1878
  64701. },
  64702. extraAttributes: {
  64703. "preyPerMinute": {
  64704. name: "Prey Per Minute",
  64705. power: 3,
  64706. type: "volume",
  64707. base: math.unit(6, "people"),
  64708. defaultUnit: "people"
  64709. },
  64710. "preyPerDay": {
  64711. name: "Prey Per Day",
  64712. power: 3,
  64713. type: "volume",
  64714. base: math.unit(6 * 60 * 24, "people"),
  64715. defaultUnit: "people"
  64716. },
  64717. }
  64718. },
  64719. },
  64720. [
  64721. {
  64722. name: "Normal",
  64723. height: math.unit(2.64, "feet"),
  64724. default: true
  64725. },
  64726. ]
  64727. ))
  64728. characterMakers.push(() => makeCharacter(
  64729. { name: "Mona", species: ["caudin"], tags: ["anthro"] },
  64730. {
  64731. front: {
  64732. height: math.unit(29 + 11/12, "feet"),
  64733. weight: math.unit(40, "tons"),
  64734. name: "Front",
  64735. image: {
  64736. source: "./media/characters/mona/front.svg",
  64737. extra: 1257/1116,
  64738. bottom: 34/1291
  64739. }
  64740. },
  64741. },
  64742. [
  64743. {
  64744. name: "Normal",
  64745. height: math.unit(29 + 11/12, "feet"),
  64746. default: true
  64747. },
  64748. ]
  64749. ))
  64750. characterMakers.push(() => makeCharacter(
  64751. { name: "FrostFire", species: ["dragon"], tags: ["anthro"] },
  64752. {
  64753. front: {
  64754. height: math.unit(15, "feet"),
  64755. weight: math.unit(3000, "kg"),
  64756. preyCapacity: math.unit(5, "people"),
  64757. name: "Front",
  64758. image: {
  64759. source: "./media/characters/frostfire/front.svg",
  64760. extra: 675/558,
  64761. bottom: 73/748
  64762. }
  64763. },
  64764. side: {
  64765. height: math.unit(15, "feet"),
  64766. weight: math.unit(3000, "kg"),
  64767. preyCapacity: math.unit(5, "people"),
  64768. name: "Side",
  64769. image: {
  64770. source: "./media/characters/frostfire/side.svg",
  64771. extra: 687/585,
  64772. bottom: 50/737
  64773. }
  64774. },
  64775. back: {
  64776. height: math.unit(15, "feet"),
  64777. weight: math.unit(3000, "kg"),
  64778. preyCapacity: math.unit(5, "people"),
  64779. name: "Back",
  64780. image: {
  64781. source: "./media/characters/frostfire/back.svg",
  64782. extra: 707/607,
  64783. bottom: 16/723
  64784. }
  64785. },
  64786. head: {
  64787. height: math.unit(9.35, "feet"),
  64788. name: "Head",
  64789. image: {
  64790. source: "./media/characters/frostfire/head.svg"
  64791. }
  64792. },
  64793. maw: {
  64794. height: math.unit(3.32, "feet"),
  64795. name: "Maw",
  64796. image: {
  64797. source: "./media/characters/frostfire/maw.svg"
  64798. }
  64799. },
  64800. hand: {
  64801. height: math.unit(3.7, "feet"),
  64802. name: "Hand",
  64803. image: {
  64804. source: "./media/characters/frostfire/hand.svg"
  64805. }
  64806. },
  64807. paw: {
  64808. height: math.unit(5.8, "feet"),
  64809. name: "Paw",
  64810. image: {
  64811. source: "./media/characters/frostfire/paw.svg"
  64812. }
  64813. },
  64814. },
  64815. [
  64816. {
  64817. name: "Normal",
  64818. height: math.unit(15, "feet"),
  64819. default: true
  64820. },
  64821. ]
  64822. ))
  64823. characterMakers.push(() => makeCharacter(
  64824. { name: "Valeroo", species: ["kangaroo"], tags: ["anthro"] },
  64825. {
  64826. front: {
  64827. height: math.unit(5 + 2/12, "feet"),
  64828. weight: math.unit(122, "lb"),
  64829. name: "Front",
  64830. image: {
  64831. source: "./media/characters/valeroo/front.svg",
  64832. extra: 1789/1534,
  64833. bottom: 66/1855
  64834. }
  64835. },
  64836. back: {
  64837. height: math.unit(5 + 2/12, "feet"),
  64838. weight: math.unit(122, "lb"),
  64839. name: "Back",
  64840. image: {
  64841. source: "./media/characters/valeroo/back.svg",
  64842. extra: 1848/1588,
  64843. bottom: 68/1916
  64844. }
  64845. },
  64846. head: {
  64847. height: math.unit(1.87, "feet"),
  64848. name: "Head",
  64849. image: {
  64850. source: "./media/characters/valeroo/head.svg"
  64851. }
  64852. },
  64853. hand: {
  64854. height: math.unit(0.82, "feet"),
  64855. name: "Hand",
  64856. image: {
  64857. source: "./media/characters/valeroo/hand.svg"
  64858. }
  64859. },
  64860. foot: {
  64861. height: math.unit(2.42, "feet"),
  64862. name: "Foot",
  64863. image: {
  64864. source: "./media/characters/valeroo/foot.svg"
  64865. }
  64866. },
  64867. },
  64868. [
  64869. {
  64870. name: "Normal",
  64871. height: math.unit(5 + 2/12, "feet"),
  64872. default: true
  64873. },
  64874. ]
  64875. ))
  64876. characterMakers.push(() => makeCharacter(
  64877. { name: "Corrin", species: ["secretary-bird"], tags: ["anthro"] },
  64878. {
  64879. front: {
  64880. height: math.unit(11 + 3/12, "feet"),
  64881. name: "Front",
  64882. image: {
  64883. source: "./media/characters/corrin/front.svg",
  64884. extra: 665/597,
  64885. bottom: 74/739
  64886. }
  64887. },
  64888. },
  64889. [
  64890. {
  64891. name: "Standard",
  64892. height: math.unit(11 + 3/12, "feet"),
  64893. default: true
  64894. },
  64895. {
  64896. name: "The Boss",
  64897. height: math.unit(110, "feet")
  64898. },
  64899. {
  64900. name: "Shipbreaker",
  64901. height: math.unit(38, "km")
  64902. },
  64903. ]
  64904. ))
  64905. characterMakers.push(() => makeCharacter(
  64906. { name: "Kiba Ulrich", species: ["dire-wolf"], tags: ["anthro"] },
  64907. {
  64908. front: {
  64909. height: math.unit(10, "feet"),
  64910. weight: math.unit(1750, "lb"),
  64911. name: "Front",
  64912. image: {
  64913. source: "./media/characters/kiba-ulrich/front.svg",
  64914. extra: 1037/973,
  64915. bottom: 36/1073
  64916. }
  64917. },
  64918. },
  64919. [
  64920. {
  64921. name: "Normal",
  64922. height: math.unit(10, "feet"),
  64923. default: true
  64924. },
  64925. {
  64926. name: "Minimacro",
  64927. height: math.unit(20, "feet")
  64928. },
  64929. {
  64930. name: "Macro",
  64931. height: math.unit(200, "feet")
  64932. },
  64933. {
  64934. name: "Megamacro",
  64935. height: math.unit(22500, "feet")
  64936. },
  64937. {
  64938. name: "Gigamacro",
  64939. height: math.unit(2700, "miles")
  64940. },
  64941. {
  64942. name: "Teramacro",
  64943. height: math.unit(10000, "miles")
  64944. },
  64945. ]
  64946. ))
  64947. characterMakers.push(() => makeCharacter(
  64948. { name: "Ceanoth", species: ["gryphon"], tags: ["anthro"] },
  64949. {
  64950. gryphon_front: {
  64951. height: math.unit(220, "cm"),
  64952. weight: math.unit(160, "kg"),
  64953. name: "Front",
  64954. image: {
  64955. source: "./media/characters/ceanoth/gryphon-front.svg",
  64956. extra: 616/552,
  64957. bottom: 33/649
  64958. },
  64959. form: "gryphon",
  64960. default: true
  64961. },
  64962. },
  64963. [
  64964. {
  64965. name: "Normal",
  64966. height: math.unit(220, "cm"),
  64967. form: "gryphon",
  64968. default: true
  64969. },
  64970. ],
  64971. {
  64972. "gryphon": {
  64973. name: "Grpyhon",
  64974. default: true
  64975. },
  64976. }
  64977. ))
  64978. characterMakers.push(() => makeCharacter(
  64979. { name: "Vanadiya Athelya", species: ["dragon"], tags: ["taur"] },
  64980. {
  64981. dressed: {
  64982. height: math.unit(2.2 * 0.79, "meters"),
  64983. weight: math.unit(0.5, "tonnes"),
  64984. name: "Dressed",
  64985. image: {
  64986. source: "./media/characters/vanadiya-athelya/dressed.svg",
  64987. extra: 665/315,
  64988. bottom: 106/771
  64989. },
  64990. extraAttributes: {
  64991. "bodyLength": {
  64992. name: "Body Length",
  64993. power: 1,
  64994. type: "length",
  64995. base: math.unit(2.5, "meters")
  64996. },
  64997. "tailLength": {
  64998. name: "Tail Length",
  64999. power: 1,
  65000. type: "length",
  65001. base: math.unit(4.5, "meters")
  65002. },
  65003. "wingspan": {
  65004. name: "Wingspan",
  65005. power: 1,
  65006. type: "length",
  65007. base: math.unit(6, "meters")
  65008. },
  65009. "taurStomachCapacity": {
  65010. name: "Taur Stomach Capacity",
  65011. power: 3,
  65012. type: "volume",
  65013. base: math.unit(4, "people"),
  65014. defaultUnit: "people"
  65015. },
  65016. "anthroStomachCapacity": {
  65017. name: "Anthro Stomach Capacity",
  65018. power: 3,
  65019. type: "volume",
  65020. base: math.unit(1, "people"),
  65021. defaultUnit: "people"
  65022. },
  65023. }
  65024. },
  65025. nude: {
  65026. height: math.unit(2.2 * 0.79, "meters"),
  65027. weight: math.unit(0.5, "tonnes"),
  65028. name: "Nude",
  65029. image: {
  65030. source: "./media/characters/vanadiya-athelya/nude.svg",
  65031. extra: 665/315,
  65032. bottom: 106/771
  65033. },
  65034. extraAttributes: {
  65035. "bodyLength": {
  65036. name: "Body Length",
  65037. power: 1,
  65038. type: "length",
  65039. base: math.unit(2.5, "meters")
  65040. },
  65041. "tailLength": {
  65042. name: "Tail Length",
  65043. power: 1,
  65044. type: "length",
  65045. base: math.unit(4.5, "meters")
  65046. },
  65047. "wingspan": {
  65048. name: "Wingspan",
  65049. power: 1,
  65050. type: "length",
  65051. base: math.unit(6, "meters")
  65052. },
  65053. "taurStomachCapacity": {
  65054. name: "Taur Stomach Capacity",
  65055. power: 3,
  65056. type: "volume",
  65057. base: math.unit(4, "people"),
  65058. defaultUnit: "people"
  65059. },
  65060. "anthroStomachCapacity": {
  65061. name: "Anthro Stomach Capacity",
  65062. power: 3,
  65063. type: "volume",
  65064. base: math.unit(1, "people"),
  65065. defaultUnit: "people"
  65066. },
  65067. }
  65068. },
  65069. },
  65070. [
  65071. {
  65072. name: "Handheld",
  65073. height: math.unit(0.79 * 0.06, "meters")
  65074. },
  65075. {
  65076. name: "Mini",
  65077. height: math.unit(0.79 * 0.7, "meters")
  65078. },
  65079. {
  65080. name: "Short",
  65081. height: math.unit(0.79 * 1.4, "meters")
  65082. },
  65083. {
  65084. name: "Imposing",
  65085. height: math.unit(0.79 * 2.2, "meters"),
  65086. default: true
  65087. },
  65088. {
  65089. name: "Big",
  65090. height: math.unit(0.79 * 3.8, "meters")
  65091. },
  65092. {
  65093. name: "Giant",
  65094. height: math.unit(0.79 * 6.7, "meters")
  65095. },
  65096. {
  65097. name: "Airliner",
  65098. height: math.unit(0.79 * 64, "meters")
  65099. },
  65100. {
  65101. name: "Skyscraper",
  65102. height: math.unit(0.79 * 220, "meters")
  65103. },
  65104. {
  65105. name: "Mountain",
  65106. height: math.unit(0.79 * 3.6, "km")
  65107. },
  65108. {
  65109. name: "Spacescraper",
  65110. height: math.unit(0.79 * 70, "km")
  65111. },
  65112. {
  65113. name: "Continental",
  65114. height: math.unit(0.79 * 1290, "km")
  65115. },
  65116. {
  65117. name: "Moon",
  65118. height: math.unit(0.79 * 32200, "km")
  65119. },
  65120. {
  65121. name: "Planetary",
  65122. height: math.unit(0.79 * 145000, "km")
  65123. },
  65124. {
  65125. name: "Stellar",
  65126. height: math.unit(0.79 * 19e6, "km")
  65127. },
  65128. {
  65129. name: "Solar",
  65130. height: math.unit(0.79 * 40, "AU")
  65131. },
  65132. {
  65133. name: "Intersteller",
  65134. height: math.unit(0.79 * 3, "lightyears")
  65135. },
  65136. {
  65137. name: "Star Cluster",
  65138. height: math.unit(0.79 * 80, "lightyears")
  65139. },
  65140. {
  65141. name: "Ecumenical",
  65142. height: math.unit(0.79 * 2e3, "lightyears")
  65143. },
  65144. {
  65145. name: "Galactic",
  65146. height: math.unit(0.79 * 175000, "lightyears")
  65147. },
  65148. {
  65149. name: "Galaxy Cluster",
  65150. height: math.unit(0.79 * 25e6, "lightyears")
  65151. },
  65152. ]
  65153. ))
  65154. characterMakers.push(() => makeCharacter(
  65155. { name: "Yana Amelin", species: ["russian-blue"], tags: ["anthro"] },
  65156. {
  65157. front: {
  65158. height: math.unit(6 + 2/12, "feet"),
  65159. weight: math.unit(160, "lb"),
  65160. name: "Front",
  65161. image: {
  65162. source: "./media/characters/yana-amelin/front.svg",
  65163. extra: 1413/1295,
  65164. bottom: 42/1455
  65165. }
  65166. },
  65167. back: {
  65168. height: math.unit(6 + 2/12, "feet"),
  65169. weight: math.unit(160, "lb"),
  65170. name: "Back",
  65171. image: {
  65172. source: "./media/characters/yana-amelin/back.svg",
  65173. extra: 1424/1310,
  65174. bottom: 24/1448
  65175. }
  65176. },
  65177. paws: {
  65178. height: math.unit(1.48, "feet"),
  65179. name: "Paws",
  65180. image: {
  65181. source: "./media/characters/yana-amelin/paws.svg",
  65182. extra: 304/304,
  65183. bottom: 49/353
  65184. }
  65185. },
  65186. },
  65187. [
  65188. {
  65189. name: "Micro",
  65190. height: math.unit(4, "inches")
  65191. },
  65192. {
  65193. name: "Normal",
  65194. height: math.unit(6 + 2/12, "feet"),
  65195. default: true
  65196. },
  65197. {
  65198. name: "Minimacro",
  65199. height: math.unit(20, "feet")
  65200. },
  65201. {
  65202. name: "Macro",
  65203. height: math.unit(70, "feet")
  65204. },
  65205. ]
  65206. ))
  65207. characterMakers.push(() => makeCharacter(
  65208. { name: "Titania", species: ["horse"], tags: ["anthro"] },
  65209. {
  65210. frontNsfw: {
  65211. height: math.unit(2.48, "meters"),
  65212. weight: math.unit(112, "kg"),
  65213. name: "Front (NSFW)",
  65214. image: {
  65215. source: "./media/characters/titania/front-nsfw.svg",
  65216. extra: 1302/1232,
  65217. bottom: 90/1392
  65218. }
  65219. },
  65220. backNsfw: {
  65221. height: math.unit(2.48, "meters"),
  65222. weight: math.unit(112, "kg"),
  65223. name: "Back (NSFW)",
  65224. image: {
  65225. source: "./media/characters/titania/back-nsfw.svg",
  65226. extra: 1355/1288,
  65227. bottom: 18/1373
  65228. }
  65229. },
  65230. frontSfw: {
  65231. height: math.unit(2.48, "meters"),
  65232. weight: math.unit(112, "kg"),
  65233. name: "Front (SFW)",
  65234. image: {
  65235. source: "./media/characters/titania/front-sfw.svg",
  65236. extra: 1302/1232,
  65237. bottom: 90/1392
  65238. }
  65239. },
  65240. backSfw: {
  65241. height: math.unit(2.48, "meters"),
  65242. weight: math.unit(112, "kg"),
  65243. name: "Back (SFW)",
  65244. image: {
  65245. source: "./media/characters/titania/back-sfw.svg",
  65246. extra: 1355/1288,
  65247. bottom: 18/1373
  65248. }
  65249. },
  65250. head: {
  65251. height: math.unit(2.06, "feet"),
  65252. name: "Head",
  65253. image: {
  65254. source: "./media/characters/titania/head.svg"
  65255. }
  65256. },
  65257. maw: {
  65258. height: math.unit(0.8, "feet"),
  65259. name: "Maw",
  65260. image: {
  65261. source: "./media/characters/titania/maw.svg"
  65262. }
  65263. },
  65264. foot: {
  65265. height: math.unit(1.65, "feet"),
  65266. name: "Foot",
  65267. image: {
  65268. source: "./media/characters/titania/foot.svg"
  65269. }
  65270. },
  65271. nethers: {
  65272. height: math.unit(1.7, "feet"),
  65273. name: "Nethers",
  65274. image: {
  65275. source: "./media/characters/titania/nethers.svg"
  65276. }
  65277. },
  65278. },
  65279. [
  65280. {
  65281. name: "Normal",
  65282. height: math.unit(2.48, "meters"),
  65283. default: true
  65284. },
  65285. {
  65286. name: "Mini Macro",
  65287. height: math.unit(248, "meters")
  65288. },
  65289. {
  65290. name: "Macro",
  65291. height: math.unit(620, "meters")
  65292. },
  65293. {
  65294. name: "Mega Macro",
  65295. height: math.unit(1860, "meters")
  65296. },
  65297. ]
  65298. ))
  65299. characterMakers.push(() => makeCharacter(
  65300. { name: "Tony Gray", species: ["wholphin"], tags: ["anthro"] },
  65301. {
  65302. front: {
  65303. height: math.unit(5 + 9/12, "feet"),
  65304. weight: math.unit(1500, "lb"),
  65305. name: "Front",
  65306. image: {
  65307. source: "./media/characters/tony-gray/front.svg",
  65308. extra: 700/575,
  65309. bottom: 71/771
  65310. }
  65311. },
  65312. },
  65313. [
  65314. {
  65315. name: "Normal",
  65316. height: math.unit(5 + 9/12, "feet"),
  65317. default: true
  65318. },
  65319. ]
  65320. ))
  65321. characterMakers.push(() => makeCharacter(
  65322. { name: "Kelby", species: ["sea-dragon"], tags: ["feral"] },
  65323. {
  65324. side: {
  65325. height: math.unit(8 + 2/12, "feet"),
  65326. name: "Side",
  65327. image: {
  65328. source: "./media/characters/kelby/side.svg",
  65329. extra: 804/578,
  65330. bottom: 70/874
  65331. },
  65332. form: "regular",
  65333. default: true
  65334. },
  65335. lounging: {
  65336. height: math.unit(12.41, "feet"),
  65337. name: "Lounging",
  65338. image: {
  65339. source: "./media/characters/kelby/lounging.svg"
  65340. },
  65341. form: "regular"
  65342. },
  65343. maw: {
  65344. height: math.unit(5, "feet"),
  65345. name: "Maw",
  65346. image: {
  65347. source: "./media/characters/kelby/maw.svg"
  65348. },
  65349. form: "regular"
  65350. },
  65351. dick: {
  65352. height: math.unit(2.4, "feet"),
  65353. name: "Dick",
  65354. image: {
  65355. source: "./media/characters/kelby/dick.svg"
  65356. },
  65357. form: "regular"
  65358. },
  65359. slit: {
  65360. height: math.unit(1.2, "feet"),
  65361. name: "Slit",
  65362. image: {
  65363. source: "./media/characters/kelby/slit.svg"
  65364. },
  65365. form: "regular"
  65366. },
  65367. chibi: {
  65368. height: math.unit(5, "feet"),
  65369. name: "Chibi",
  65370. image: {
  65371. source: "./media/characters/kelby/chibi.svg",
  65372. extra: 245/200,
  65373. bottom: 43/288
  65374. },
  65375. form: "chibi",
  65376. default: true
  65377. },
  65378. },
  65379. [
  65380. {
  65381. name: "Normal",
  65382. height: math.unit(8 + 2/12, "feet"),
  65383. default: true,
  65384. form: "regular"
  65385. },
  65386. {
  65387. name: "Normal",
  65388. height: math.unit(5, "feet"),
  65389. default: true,
  65390. form: "chibi"
  65391. },
  65392. ],
  65393. {
  65394. "regular": {
  65395. name: "Regular",
  65396. default: true
  65397. },
  65398. "chibi": {
  65399. name: "Chibi",
  65400. },
  65401. }
  65402. ))
  65403. characterMakers.push(() => makeCharacter(
  65404. { name: "Elisa Mitchell", species: ["brown-bear", "kaiju"], tags: ["anthro"] },
  65405. {
  65406. front: {
  65407. height: math.unit(7 + 10/12, "feet"),
  65408. weight: math.unit(300, "lb"),
  65409. name: "Front",
  65410. image: {
  65411. source: "./media/characters/elisa-mitchell/front.svg",
  65412. extra: 2562/2355,
  65413. bottom: 62/2624
  65414. }
  65415. },
  65416. maw: {
  65417. height: math.unit(2.37, "feet"),
  65418. name: "Maw",
  65419. image: {
  65420. source: "./media/characters/elisa-mitchell/maw.svg"
  65421. }
  65422. },
  65423. },
  65424. [
  65425. {
  65426. name: "Normal",
  65427. height: math.unit(7 + 10/12, "feet"),
  65428. default: true
  65429. },
  65430. {
  65431. name: "Macro",
  65432. height: math.unit(1490, "feet"),
  65433. default: true
  65434. },
  65435. ]
  65436. ))
  65437. characterMakers.push(() => makeCharacter(
  65438. { name: "Camia \"Vertigo\" Zott", species: ["vampire-bat", "kaiju"], tags: ["anthro"] },
  65439. {
  65440. front: {
  65441. height: math.unit(122, "cm"),
  65442. weight: math.unit(40, "lb"),
  65443. name: "Front",
  65444. image: {
  65445. source: "./media/characters/camia-vertigo-zott/front.svg",
  65446. extra: 2112/1902,
  65447. bottom: 21/2133
  65448. }
  65449. },
  65450. },
  65451. [
  65452. {
  65453. name: "Base Height",
  65454. height: math.unit(122, "cm")
  65455. },
  65456. {
  65457. name: "Macro Height",
  65458. height: math.unit(345, "meters"),
  65459. default: true
  65460. },
  65461. ]
  65462. ))
  65463. characterMakers.push(() => makeCharacter(
  65464. { name: "Dianne Elizabeth Heathers", species: ["saint-bernard"], tags: ["anthro"] },
  65465. {
  65466. front: {
  65467. height: math.unit(6 + 3/12, "feet"),
  65468. weight: math.unit(180, "lb"),
  65469. name: "Front",
  65470. image: {
  65471. source: "./media/characters/dianne-elizabeth-heathers/front.svg",
  65472. extra: 2580/2457,
  65473. bottom: 131/2711
  65474. }
  65475. },
  65476. },
  65477. [
  65478. {
  65479. name: "Normal",
  65480. height: math.unit(6 + 3/12, "feet"),
  65481. default: true
  65482. },
  65483. ]
  65484. ))
  65485. characterMakers.push(() => makeCharacter(
  65486. { name: "Sleeka", species: ["rat"], tags: ["anthro"] },
  65487. {
  65488. front: {
  65489. height: math.unit(165, "cm"),
  65490. weight: math.unit(130, "lb"),
  65491. name: "Front",
  65492. image: {
  65493. source: "./media/characters/sleeka/front.svg",
  65494. extra: 1252/1200,
  65495. bottom: 46/1298
  65496. }
  65497. },
  65498. },
  65499. [
  65500. {
  65501. name: "Normal",
  65502. height: math.unit(165, "cm")
  65503. },
  65504. {
  65505. name: "Galactic",
  65506. height: math.unit(5.8e22, "meters"),
  65507. default: true
  65508. },
  65509. {
  65510. name: "Universal",
  65511. height: math.unit(1.02e29, "meters")
  65512. },
  65513. ]
  65514. ))
  65515. characterMakers.push(() => makeCharacter(
  65516. { name: "Emily Whitetail", species: ["deer"], tags: ["anthro"] },
  65517. {
  65518. front: {
  65519. height: math.unit(5 + 11/12, "feet"),
  65520. weight: math.unit(145, "lb"),
  65521. name: "Front",
  65522. image: {
  65523. source: "./media/characters/emily-whitetail/front.svg",
  65524. extra: 2510/2280,
  65525. bottom: 128/2638
  65526. }
  65527. },
  65528. },
  65529. [
  65530. {
  65531. name: "Normal",
  65532. height: math.unit(5 + 11/12, "feet")
  65533. },
  65534. {
  65535. name: "Galactic",
  65536. height: math.unit(6.3e22, "meters"),
  65537. default: true
  65538. },
  65539. {
  65540. name: "Universal",
  65541. height: math.unit(1.12e29, "meters")
  65542. },
  65543. ]
  65544. ))
  65545. characterMakers.push(() => makeCharacter(
  65546. { name: "Buck Whitetail", species: ["deer"], tags: ["anthro"] },
  65547. {
  65548. front: {
  65549. height: math.unit(5 + 4/12, "feet"),
  65550. weight: math.unit(110, "lb"),
  65551. name: "Front",
  65552. image: {
  65553. source: "./media/characters/buck-whitetail/front.svg",
  65554. extra: 2430/2186,
  65555. bottom: 125/2555
  65556. }
  65557. },
  65558. },
  65559. [
  65560. {
  65561. name: "Normal",
  65562. height: math.unit(5 + 4/12, "feet")
  65563. },
  65564. {
  65565. name: "Galactic",
  65566. height: math.unit(5.4e22, "meters"),
  65567. default: true
  65568. },
  65569. {
  65570. name: "Universal",
  65571. height: math.unit(9.6e28, "meters")
  65572. },
  65573. ]
  65574. ))
  65575. characterMakers.push(() => makeCharacter(
  65576. { name: "Zoey Frisk", species: ["fox"], tags: ["anthro"] },
  65577. {
  65578. front: {
  65579. height: math.unit(5 + 3/12, "feet"),
  65580. name: "Front",
  65581. image: {
  65582. source: "./media/characters/zoey-frisk/front.svg",
  65583. extra: 2825/2646,
  65584. bottom: 57/2882
  65585. }
  65586. },
  65587. },
  65588. [
  65589. {
  65590. name: "Normal",
  65591. height: math.unit(5 + 3/12, "feet"),
  65592. default: true
  65593. },
  65594. {
  65595. name: "Macro",
  65596. height: math.unit(800, "feet")
  65597. },
  65598. ]
  65599. ))
  65600. characterMakers.push(() => makeCharacter(
  65601. { name: "Dhaeleena M'iar", species: ["siamese-cat"], tags: ["anthro"] },
  65602. {
  65603. front: {
  65604. height: math.unit(210, "cm"),
  65605. weight: math.unit(102, "kg"),
  65606. name: "Front",
  65607. image: {
  65608. source: "./media/characters/dhaeleena-m'iar/front.svg",
  65609. extra: 831/790,
  65610. bottom: 19/850
  65611. }
  65612. },
  65613. },
  65614. [
  65615. {
  65616. name: "Micro",
  65617. height: math.unit(1, "mm")
  65618. },
  65619. {
  65620. name: "Small",
  65621. height: math.unit(1, "cm")
  65622. },
  65623. {
  65624. name: "Short",
  65625. height: math.unit(1, "foot")
  65626. },
  65627. {
  65628. name: "Normal",
  65629. height: math.unit(210, "cm"),
  65630. default: true
  65631. },
  65632. {
  65633. name: "Big",
  65634. height: math.unit(15, "feet")
  65635. },
  65636. {
  65637. name: "Macro",
  65638. height: math.unit(50, "feet")
  65639. },
  65640. ]
  65641. ))
  65642. characterMakers.push(() => makeCharacter(
  65643. { name: "Trouble", species: ["wolf"], tags: ["anthro"] },
  65644. {
  65645. front: {
  65646. height: math.unit(80, "feet"),
  65647. weight: math.unit(410000, "lb"),
  65648. name: "Front",
  65649. image: {
  65650. source: "./media/characters/trouble/front.svg",
  65651. extra: 780/723,
  65652. bottom: 11/791
  65653. },
  65654. extraAttributes: {
  65655. "pawArea": {
  65656. name: "Paw Area",
  65657. power: 2,
  65658. type: "area",
  65659. base: math.unit(49, "feet^2")
  65660. },
  65661. }
  65662. },
  65663. },
  65664. [
  65665. {
  65666. name: "Normal",
  65667. height: math.unit(80, "feet"),
  65668. default: true
  65669. },
  65670. ]
  65671. ))
  65672. characterMakers.push(() => makeCharacter(
  65673. { name: "Bastion Aralus", species: ["wolf"], tags: ["anthro"] },
  65674. {
  65675. front: {
  65676. height: math.unit(5 + 7/12, "feet"),
  65677. weight: math.unit(140, "lb"),
  65678. name: "Front",
  65679. image: {
  65680. source: "./media/characters/bastion-aralus/front.svg",
  65681. extra: 1122/1045,
  65682. bottom: 24/1146
  65683. }
  65684. },
  65685. back: {
  65686. height: math.unit(5 + 7/12, "feet"),
  65687. weight: math.unit(140, "lb"),
  65688. name: "Back",
  65689. image: {
  65690. source: "./media/characters/bastion-aralus/back.svg",
  65691. extra: 1158/1078,
  65692. bottom: 39/1197
  65693. }
  65694. },
  65695. dick: {
  65696. height: math.unit(1.16, "feet"),
  65697. name: "Dick",
  65698. image: {
  65699. source: "./media/characters/bastion-aralus/dick.svg"
  65700. }
  65701. },
  65702. },
  65703. [
  65704. {
  65705. name: "Micro",
  65706. height: math.unit(1, "mm")
  65707. },
  65708. {
  65709. name: "Normal",
  65710. height: math.unit(5 + 7/12, "feet"),
  65711. default: true
  65712. },
  65713. {
  65714. name: "Macro",
  65715. height: math.unit(57, "feet")
  65716. },
  65717. ]
  65718. ))
  65719. characterMakers.push(() => makeCharacter(
  65720. { name: "Midnight Yamikidate", species: ["dragon"], tags: ["anthro"] },
  65721. {
  65722. sona_front: {
  65723. height: math.unit(6, "feet"),
  65724. weight: math.unit(350, "lb"),
  65725. name: "Front",
  65726. image: {
  65727. source: "./media/characters/midnight-yamikidate/sona-front.svg",
  65728. extra: 1099/1005,
  65729. bottom: 22/1121
  65730. },
  65731. form: "sona",
  65732. default: true
  65733. },
  65734. sona_side: {
  65735. height: math.unit(6, "feet"),
  65736. weight: math.unit(350, "lb"),
  65737. name: "Side",
  65738. image: {
  65739. source: "./media/characters/midnight-yamikidate/sona-side.svg",
  65740. extra: 1075/1017,
  65741. bottom: 20/1095
  65742. },
  65743. form: "sona",
  65744. },
  65745. character_front: {
  65746. height: math.unit(6, "feet"),
  65747. weight: math.unit(300, "lb"),
  65748. name: "Front",
  65749. image: {
  65750. source: "./media/characters/midnight-yamikidate/character-front.svg",
  65751. extra: 1099/1005,
  65752. bottom: 22/1121
  65753. },
  65754. form: "character",
  65755. default: true
  65756. },
  65757. character_side: {
  65758. height: math.unit(6, "feet"),
  65759. weight: math.unit(300, "lb"),
  65760. name: "Side",
  65761. image: {
  65762. source: "./media/characters/midnight-yamikidate/character-side.svg",
  65763. extra: 1075/1017,
  65764. bottom: 20/1095
  65765. },
  65766. form: "character",
  65767. },
  65768. },
  65769. [
  65770. {
  65771. name: "Normal",
  65772. height: math.unit(500, "feet"),
  65773. default: true,
  65774. form: "sona"
  65775. },
  65776. {
  65777. name: "Normal",
  65778. height: math.unit(50, "feet"),
  65779. default: true,
  65780. form: "character"
  65781. },
  65782. ],
  65783. {
  65784. "sona": {
  65785. name: "Sona",
  65786. default: true
  65787. },
  65788. "character": {
  65789. name: "Character",
  65790. },
  65791. }
  65792. ))
  65793. characterMakers.push(() => makeCharacter(
  65794. { name: "Hood", species: ["raptor"], tags: ["anthro"] },
  65795. {
  65796. front: {
  65797. height: math.unit(5 + 4/12, "feet"),
  65798. weight: math.unit(58, "kg"),
  65799. name: "Front",
  65800. image: {
  65801. source: "./media/characters/hood/front.svg",
  65802. extra: 1474/1309,
  65803. bottom: 0/1474
  65804. }
  65805. },
  65806. },
  65807. [
  65808. {
  65809. name: "Normal",
  65810. height: math.unit(5 + 4/12, "feet"),
  65811. default: true
  65812. },
  65813. ]
  65814. ))
  65815. characterMakers.push(() => makeCharacter(
  65816. { name: "Rena", species: ["wolf"], tags: ["anthro"] },
  65817. {
  65818. front: {
  65819. height: math.unit(8 + 2/12, "feet"),
  65820. name: "Front",
  65821. image: {
  65822. source: "./media/characters/rena/front.svg",
  65823. extra: 1768/1632,
  65824. bottom: 57/1825
  65825. }
  65826. },
  65827. },
  65828. [
  65829. {
  65830. name: "Normal",
  65831. height: math.unit(8 + 2/12, "feet"),
  65832. default: true
  65833. },
  65834. ]
  65835. ))
  65836. characterMakers.push(() => makeCharacter(
  65837. { name: "Taylor (Dilophosaurus)", species: ["dilophosaurus"], tags: ["anthro"] },
  65838. {
  65839. front: {
  65840. height: math.unit(5 + 3/12, "feet"),
  65841. name: "Front",
  65842. image: {
  65843. source: "./media/characters/taylor-dilophosaurus/front.svg",
  65844. extra: 1209/1159,
  65845. bottom: 33/1242
  65846. }
  65847. },
  65848. maw: {
  65849. height: math.unit(1.75, "feet"),
  65850. name: "Maw",
  65851. image: {
  65852. source: "./media/characters/taylor-dilophosaurus/maw.svg"
  65853. }
  65854. },
  65855. },
  65856. [
  65857. {
  65858. name: "Micro",
  65859. height: math.unit(3, "inches")
  65860. },
  65861. {
  65862. name: "Regular",
  65863. height: math.unit(5 + 3/12, "feet"),
  65864. default: true
  65865. },
  65866. {
  65867. name: "Imagined",
  65868. height: math.unit(90, "meters")
  65869. },
  65870. ]
  65871. ))
  65872. //characters
  65873. function makeCharacters() {
  65874. const results = [];
  65875. characterMakers.forEach(character => {
  65876. results.push(character());
  65877. });
  65878. return results;
  65879. }