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

66837 строки
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. }
  2443. //species
  2444. function getSpeciesInfo(speciesList) {
  2445. let result = new Set();
  2446. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2447. result.add(entry)
  2448. });
  2449. return Array.from(result);
  2450. };
  2451. function getSpeciesInfoHelper(species) {
  2452. if (!speciesData[species]) {
  2453. console.warn(species + " doesn't exist");
  2454. return [];
  2455. }
  2456. if (speciesData[species].parents) {
  2457. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2458. } else {
  2459. return [species];
  2460. }
  2461. }
  2462. characterMakers.push(() => makeCharacter(
  2463. {
  2464. name: "Fen",
  2465. species: ["crux"],
  2466. description: {
  2467. title: "Bio",
  2468. text: "Very furry. Sheds on everything."
  2469. },
  2470. tags: [
  2471. "anthro",
  2472. "goo"
  2473. ]
  2474. },
  2475. {
  2476. front: {
  2477. height: math.unit(12, "feet"),
  2478. weight: math.unit(2400, "lb"),
  2479. preyCapacity: math.unit(1, "people"),
  2480. name: "Front",
  2481. image: {
  2482. source: "./media/characters/fen/front.svg",
  2483. extra: 1804/1562,
  2484. bottom: 205/2009
  2485. },
  2486. extraAttributes: {
  2487. pawSize: {
  2488. name: "Paw Size",
  2489. power: 2,
  2490. type: "area",
  2491. base: math.unit(0.35, "m^2")
  2492. }
  2493. }
  2494. },
  2495. diving: {
  2496. height: math.unit(4.9, "meters"),
  2497. weight: math.unit(2400, "lb"),
  2498. name: "Diving",
  2499. image: {
  2500. source: "./media/characters/fen/diving.svg"
  2501. }
  2502. },
  2503. sleeby: {
  2504. height: math.unit(3.45, "meters"),
  2505. weight: math.unit(2400, "lb"),
  2506. name: "Sleeby",
  2507. image: {
  2508. source: "./media/characters/fen/sleeby.svg"
  2509. }
  2510. },
  2511. goo: {
  2512. height: math.unit(12, "feet"),
  2513. weight: math.unit(3600, "lb"),
  2514. volume: math.unit(1000, "liters"),
  2515. preyCapacity: math.unit(6, "people"),
  2516. name: "Goo",
  2517. image: {
  2518. source: "./media/characters/fen/goo.svg",
  2519. extra: 1307/1071,
  2520. bottom: 134/1441
  2521. }
  2522. },
  2523. horror: {
  2524. height: math.unit(13.6, "feet"),
  2525. weight: math.unit(2400, "lb"),
  2526. preyCapacity: math.unit(1, "people"),
  2527. name: "Horror",
  2528. image: {
  2529. source: "./media/characters/fen/horror.svg",
  2530. extra: 893/797,
  2531. bottom: 0/893
  2532. }
  2533. },
  2534. gooNsfw: {
  2535. height: math.unit(12, "feet"),
  2536. weight: math.unit(3750, "lb"),
  2537. volume: math.unit(1000, "liters"),
  2538. preyCapacity: math.unit(6, "people"),
  2539. name: "Goo (NSFW)",
  2540. image: {
  2541. source: "./media/characters/fen/goo-nsfw.svg",
  2542. extra: 1875/1734,
  2543. bottom: 122/1997
  2544. }
  2545. },
  2546. maw: {
  2547. height: math.unit(5.03, "feet"),
  2548. name: "Maw",
  2549. image: {
  2550. source: "./media/characters/fen/maw.svg"
  2551. }
  2552. },
  2553. gooCeiling: {
  2554. height: math.unit(6.6, "feet"),
  2555. weight: math.unit(3000, "lb"),
  2556. volume: math.unit(1000, "liters"),
  2557. preyCapacity: math.unit(6, "people"),
  2558. name: "Maw (Goo)",
  2559. image: {
  2560. source: "./media/characters/fen/goo-maw.svg"
  2561. }
  2562. },
  2563. paw: {
  2564. height: math.unit(3.77, "feet"),
  2565. name: "Paw",
  2566. image: {
  2567. source: "./media/characters/fen/paw.svg"
  2568. },
  2569. extraAttributes: {
  2570. "toeSize": {
  2571. name: "Toe Size",
  2572. power: 2,
  2573. type: "area",
  2574. base: math.unit(0.02875, "m^2")
  2575. },
  2576. "pawSize": {
  2577. name: "Paw Size",
  2578. power: 2,
  2579. type: "area",
  2580. base: math.unit(0.378, "m^2")
  2581. },
  2582. }
  2583. },
  2584. tail: {
  2585. height: math.unit(12.1, "feet"),
  2586. name: "Tail",
  2587. image: {
  2588. source: "./media/characters/fen/tail.svg"
  2589. }
  2590. },
  2591. tailFull: {
  2592. height: math.unit(12.1, "feet"),
  2593. name: "Full Tail",
  2594. image: {
  2595. source: "./media/characters/fen/tail-full.svg"
  2596. }
  2597. },
  2598. back: {
  2599. height: math.unit(12, "feet"),
  2600. weight: math.unit(2400, "lb"),
  2601. name: "Back",
  2602. image: {
  2603. source: "./media/characters/fen/back.svg",
  2604. },
  2605. info: {
  2606. description: {
  2607. mode: "append",
  2608. text: "\n\nHe is not currently looking at you."
  2609. }
  2610. }
  2611. },
  2612. full: {
  2613. height: math.unit(1.85, "meter"),
  2614. weight: math.unit(3200, "lb"),
  2615. preyCapacity: math.unit(3, "people"),
  2616. name: "Full",
  2617. image: {
  2618. source: "./media/characters/fen/full.svg",
  2619. extra: 1133/859,
  2620. bottom: 145/1278
  2621. },
  2622. info: {
  2623. description: {
  2624. mode: "append",
  2625. text: "\n\nMunch."
  2626. }
  2627. }
  2628. },
  2629. gooLounging: {
  2630. height: math.unit(4.53, "feet"),
  2631. weight: math.unit(3000, "lb"),
  2632. preyCapacity: math.unit(6, "people"),
  2633. name: "Goo (Lounging)",
  2634. image: {
  2635. source: "./media/characters/fen/goo-lounging.svg",
  2636. bottom: 116 / 613
  2637. }
  2638. },
  2639. lounging: {
  2640. height: math.unit(10.52, "feet"),
  2641. weight: math.unit(2400, "lb"),
  2642. name: "Lounging",
  2643. image: {
  2644. source: "./media/characters/fen/lounging.svg"
  2645. }
  2646. },
  2647. },
  2648. [
  2649. {
  2650. name: "Small",
  2651. height: math.unit(2.2428, "meter")
  2652. },
  2653. {
  2654. name: "Normal",
  2655. height: math.unit(12, "feet"),
  2656. default: true,
  2657. },
  2658. {
  2659. name: "Big",
  2660. height: math.unit(20, "feet")
  2661. },
  2662. {
  2663. name: "Minimacro",
  2664. height: math.unit(40, "feet"),
  2665. info: {
  2666. description: {
  2667. mode: "append",
  2668. text: "\n\nTOO DAMN BIG"
  2669. }
  2670. }
  2671. },
  2672. {
  2673. name: "Macro",
  2674. height: math.unit(100, "feet"),
  2675. info: {
  2676. description: {
  2677. mode: "append",
  2678. text: "\n\nTOO DAMN BIG"
  2679. }
  2680. }
  2681. },
  2682. {
  2683. name: "Megamacro",
  2684. height: math.unit(2, "miles")
  2685. },
  2686. {
  2687. name: "Gigamacro",
  2688. height: math.unit(10, "earths")
  2689. },
  2690. ]
  2691. ))
  2692. characterMakers.push(() => makeCharacter(
  2693. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2694. {
  2695. front: {
  2696. height: math.unit(183, "cm"),
  2697. weight: math.unit(80, "kg"),
  2698. name: "Front",
  2699. image: {
  2700. source: "./media/characters/sofia-fluttertail/front.svg",
  2701. bottom: 0.01,
  2702. extra: 2154 / 2081
  2703. }
  2704. },
  2705. frontAlt: {
  2706. height: math.unit(183, "cm"),
  2707. weight: math.unit(80, "kg"),
  2708. name: "Front (alt)",
  2709. image: {
  2710. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2711. }
  2712. },
  2713. back: {
  2714. height: math.unit(183, "cm"),
  2715. weight: math.unit(80, "kg"),
  2716. name: "Back",
  2717. image: {
  2718. source: "./media/characters/sofia-fluttertail/back.svg"
  2719. }
  2720. },
  2721. kneeling: {
  2722. height: math.unit(125, "cm"),
  2723. weight: math.unit(80, "kg"),
  2724. name: "Kneeling",
  2725. image: {
  2726. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2727. extra: 1033 / 977,
  2728. bottom: 23.7 / 1057
  2729. }
  2730. },
  2731. maw: {
  2732. height: math.unit(183 / 5, "cm"),
  2733. name: "Maw",
  2734. image: {
  2735. source: "./media/characters/sofia-fluttertail/maw.svg"
  2736. }
  2737. },
  2738. mawcloseup: {
  2739. height: math.unit(183 / 5 * 0.41, "cm"),
  2740. name: "Maw (Closeup)",
  2741. image: {
  2742. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2743. }
  2744. },
  2745. paws: {
  2746. height: math.unit(1.17, "feet"),
  2747. name: "Paws",
  2748. image: {
  2749. source: "./media/characters/sofia-fluttertail/paws.svg",
  2750. extra: 851 / 851,
  2751. bottom: 17 / 868
  2752. }
  2753. },
  2754. },
  2755. [
  2756. {
  2757. name: "Normal",
  2758. height: math.unit(1.83, "meter")
  2759. },
  2760. {
  2761. name: "Size Thief",
  2762. height: math.unit(18, "feet")
  2763. },
  2764. {
  2765. name: "50 Foot Collie",
  2766. height: math.unit(50, "feet")
  2767. },
  2768. {
  2769. name: "Macro",
  2770. height: math.unit(96, "feet"),
  2771. default: true
  2772. },
  2773. {
  2774. name: "Megamerger",
  2775. height: math.unit(650, "feet")
  2776. },
  2777. ]
  2778. ))
  2779. characterMakers.push(() => makeCharacter(
  2780. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2781. {
  2782. front: {
  2783. height: math.unit(7, "feet"),
  2784. weight: math.unit(100, "kg"),
  2785. name: "Front",
  2786. image: {
  2787. source: "./media/characters/march/front.svg",
  2788. extra: 1992/1851,
  2789. bottom: 39/2031
  2790. }
  2791. },
  2792. foot: {
  2793. height: math.unit(0.9, "feet"),
  2794. name: "Foot",
  2795. image: {
  2796. source: "./media/characters/march/foot.svg"
  2797. }
  2798. },
  2799. },
  2800. [
  2801. {
  2802. name: "Normal",
  2803. height: math.unit(7.9, "feet")
  2804. },
  2805. {
  2806. name: "Macro",
  2807. height: math.unit(220, "meters")
  2808. },
  2809. {
  2810. name: "Megamacro",
  2811. height: math.unit(2.98, "km"),
  2812. default: true
  2813. },
  2814. {
  2815. name: "Gigamacro",
  2816. height: math.unit(15963, "km")
  2817. },
  2818. {
  2819. name: "Teramacro",
  2820. height: math.unit(2980000000, "km")
  2821. },
  2822. {
  2823. name: "Examacro",
  2824. height: math.unit(250, "parsecs")
  2825. },
  2826. ]
  2827. ))
  2828. characterMakers.push(() => makeCharacter(
  2829. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2830. {
  2831. front: {
  2832. height: math.unit(6, "feet"),
  2833. weight: math.unit(60, "kg"),
  2834. name: "Front",
  2835. image: {
  2836. source: "./media/characters/noir/front.svg",
  2837. extra: 1,
  2838. bottom: 0.032
  2839. }
  2840. },
  2841. },
  2842. [
  2843. {
  2844. name: "Normal",
  2845. height: math.unit(6.6, "feet")
  2846. },
  2847. {
  2848. name: "Macro",
  2849. height: math.unit(500, "feet")
  2850. },
  2851. {
  2852. name: "Megamacro",
  2853. height: math.unit(2.5, "km"),
  2854. default: true
  2855. },
  2856. {
  2857. name: "Gigamacro",
  2858. height: math.unit(22500, "km")
  2859. },
  2860. {
  2861. name: "Teramacro",
  2862. height: math.unit(2500000000, "km")
  2863. },
  2864. {
  2865. name: "Examacro",
  2866. height: math.unit(200, "parsecs")
  2867. },
  2868. ]
  2869. ))
  2870. characterMakers.push(() => makeCharacter(
  2871. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2872. {
  2873. front: {
  2874. height: math.unit(7, "feet"),
  2875. weight: math.unit(100, "kg"),
  2876. name: "Front",
  2877. image: {
  2878. source: "./media/characters/okuri/front.svg",
  2879. extra: 739/665,
  2880. bottom: 39/778
  2881. }
  2882. },
  2883. back: {
  2884. height: math.unit(7, "feet"),
  2885. weight: math.unit(100, "kg"),
  2886. name: "Back",
  2887. image: {
  2888. source: "./media/characters/okuri/back.svg",
  2889. extra: 734/653,
  2890. bottom: 13/747
  2891. }
  2892. },
  2893. sitting: {
  2894. height: math.unit(2.95, "feet"),
  2895. weight: math.unit(100, "kg"),
  2896. name: "Sitting",
  2897. image: {
  2898. source: "./media/characters/okuri/sitting.svg",
  2899. extra: 370/318,
  2900. bottom: 99/469
  2901. }
  2902. },
  2903. },
  2904. [
  2905. {
  2906. name: "Smallest",
  2907. height: math.unit(5 + 2/12, "feet")
  2908. },
  2909. {
  2910. name: "Smaller",
  2911. height: math.unit(300, "feet")
  2912. },
  2913. {
  2914. name: "Small",
  2915. height: math.unit(1000, "feet")
  2916. },
  2917. {
  2918. name: "Macro",
  2919. height: math.unit(1, "mile")
  2920. },
  2921. {
  2922. name: "Mega Macro (Small)",
  2923. height: math.unit(20, "km")
  2924. },
  2925. {
  2926. name: "Mega Macro (Large)",
  2927. height: math.unit(600, "km")
  2928. },
  2929. {
  2930. name: "Giga Macro",
  2931. height: math.unit(10000, "km")
  2932. },
  2933. {
  2934. name: "Normal",
  2935. height: math.unit(577560, "km"),
  2936. default: true
  2937. },
  2938. {
  2939. name: "Large",
  2940. height: math.unit(4, "galaxies")
  2941. },
  2942. {
  2943. name: "Largest",
  2944. height: math.unit(15, "multiverses")
  2945. },
  2946. ]
  2947. ))
  2948. characterMakers.push(() => makeCharacter(
  2949. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2950. {
  2951. front: {
  2952. height: math.unit(7, "feet"),
  2953. weight: math.unit(100, "kg"),
  2954. name: "Front",
  2955. image: {
  2956. source: "./media/characters/manny/front.svg",
  2957. extra: 1,
  2958. bottom: 0.06
  2959. }
  2960. },
  2961. back: {
  2962. height: math.unit(7, "feet"),
  2963. weight: math.unit(100, "kg"),
  2964. name: "Back",
  2965. image: {
  2966. source: "./media/characters/manny/back.svg",
  2967. extra: 1,
  2968. bottom: 0.014
  2969. }
  2970. },
  2971. },
  2972. [
  2973. {
  2974. name: "Normal",
  2975. height: math.unit(7, "feet"),
  2976. },
  2977. {
  2978. name: "Macro",
  2979. height: math.unit(78, "feet"),
  2980. default: true
  2981. },
  2982. {
  2983. name: "Macro+",
  2984. height: math.unit(300, "meters")
  2985. },
  2986. {
  2987. name: "Macro++",
  2988. height: math.unit(2400, "meters")
  2989. },
  2990. {
  2991. name: "Megamacro",
  2992. height: math.unit(5167, "meters")
  2993. },
  2994. {
  2995. name: "Gigamacro",
  2996. height: math.unit(41769, "miles")
  2997. },
  2998. ]
  2999. ))
  3000. characterMakers.push(() => makeCharacter(
  3001. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  3002. {
  3003. front: {
  3004. height: math.unit(7, "feet"),
  3005. weight: math.unit(100, "kg"),
  3006. name: "Front",
  3007. image: {
  3008. source: "./media/characters/adake/front-1.svg"
  3009. }
  3010. },
  3011. frontAlt: {
  3012. height: math.unit(7, "feet"),
  3013. weight: math.unit(100, "kg"),
  3014. name: "Front (Alt)",
  3015. image: {
  3016. source: "./media/characters/adake/front-2.svg",
  3017. extra: 1,
  3018. bottom: 0.01
  3019. }
  3020. },
  3021. back: {
  3022. height: math.unit(7, "feet"),
  3023. weight: math.unit(100, "kg"),
  3024. name: "Back",
  3025. image: {
  3026. source: "./media/characters/adake/back.svg",
  3027. }
  3028. },
  3029. kneel: {
  3030. height: math.unit(5.385, "feet"),
  3031. weight: math.unit(100, "kg"),
  3032. name: "Kneeling",
  3033. image: {
  3034. source: "./media/characters/adake/kneel.svg",
  3035. bottom: 0.052
  3036. }
  3037. },
  3038. },
  3039. [
  3040. {
  3041. name: "Normal",
  3042. height: math.unit(7, "feet"),
  3043. },
  3044. {
  3045. name: "Macro",
  3046. height: math.unit(78, "feet"),
  3047. default: true
  3048. },
  3049. {
  3050. name: "Macro+",
  3051. height: math.unit(300, "meters")
  3052. },
  3053. {
  3054. name: "Macro++",
  3055. height: math.unit(2400, "meters")
  3056. },
  3057. {
  3058. name: "Megamacro",
  3059. height: math.unit(5167, "meters")
  3060. },
  3061. {
  3062. name: "Gigamacro",
  3063. height: math.unit(41769, "miles")
  3064. },
  3065. ]
  3066. ))
  3067. characterMakers.push(() => makeCharacter(
  3068. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  3069. {
  3070. front: {
  3071. height: math.unit(1.65, "meters"),
  3072. weight: math.unit(50, "kg"),
  3073. name: "Front",
  3074. image: {
  3075. source: "./media/characters/elijah/front.svg",
  3076. extra: 858 / 830,
  3077. bottom: 95.5 / 953.8559
  3078. }
  3079. },
  3080. back: {
  3081. height: math.unit(1.65, "meters"),
  3082. weight: math.unit(50, "kg"),
  3083. name: "Back",
  3084. image: {
  3085. source: "./media/characters/elijah/back.svg",
  3086. extra: 895 / 850,
  3087. bottom: 5.3 / 897.956
  3088. }
  3089. },
  3090. frontNsfw: {
  3091. height: math.unit(1.65, "meters"),
  3092. weight: math.unit(50, "kg"),
  3093. name: "Front (NSFW)",
  3094. image: {
  3095. source: "./media/characters/elijah/front-nsfw.svg",
  3096. extra: 858 / 830,
  3097. bottom: 95.5 / 953.8559
  3098. }
  3099. },
  3100. backNsfw: {
  3101. height: math.unit(1.65, "meters"),
  3102. weight: math.unit(50, "kg"),
  3103. name: "Back (NSFW)",
  3104. image: {
  3105. source: "./media/characters/elijah/back-nsfw.svg",
  3106. extra: 895 / 850,
  3107. bottom: 5.3 / 897.956
  3108. }
  3109. },
  3110. dick: {
  3111. height: math.unit(1, "feet"),
  3112. name: "Dick",
  3113. image: {
  3114. source: "./media/characters/elijah/dick.svg"
  3115. }
  3116. },
  3117. beakOpen: {
  3118. height: math.unit(1.25, "feet"),
  3119. name: "Beak (Open)",
  3120. image: {
  3121. source: "./media/characters/elijah/beak-open.svg"
  3122. }
  3123. },
  3124. beakShut: {
  3125. height: math.unit(1.25, "feet"),
  3126. name: "Beak (Shut)",
  3127. image: {
  3128. source: "./media/characters/elijah/beak-shut.svg"
  3129. }
  3130. },
  3131. footFlexing: {
  3132. height: math.unit(1.61, "feet"),
  3133. name: "Foot (Flexing)",
  3134. image: {
  3135. source: "./media/characters/elijah/foot-flexing.svg"
  3136. }
  3137. },
  3138. footStepping: {
  3139. height: math.unit(1.44, "feet"),
  3140. name: "Foot (Stepping)",
  3141. image: {
  3142. source: "./media/characters/elijah/foot-stepping.svg"
  3143. }
  3144. },
  3145. plantigradeLeg: {
  3146. height: math.unit(2.34, "feet"),
  3147. name: "Plantigrade Leg",
  3148. image: {
  3149. source: "./media/characters/elijah/plantigrade-leg.svg"
  3150. }
  3151. },
  3152. plantigradeFootLeft: {
  3153. height: math.unit(0.9, "feet"),
  3154. name: "Plantigrade Foot (Left)",
  3155. image: {
  3156. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3157. }
  3158. },
  3159. plantigradeFootRight: {
  3160. height: math.unit(0.9, "feet"),
  3161. name: "Plantigrade Foot (Right)",
  3162. image: {
  3163. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3164. }
  3165. },
  3166. },
  3167. [
  3168. {
  3169. name: "Normal",
  3170. height: math.unit(1.65, "meters")
  3171. },
  3172. {
  3173. name: "Macro",
  3174. height: math.unit(55, "meters"),
  3175. default: true
  3176. },
  3177. {
  3178. name: "Macro+",
  3179. height: math.unit(105, "meters")
  3180. },
  3181. ]
  3182. ))
  3183. characterMakers.push(() => makeCharacter(
  3184. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3185. {
  3186. front: {
  3187. height: math.unit(7 + 2/12, "feet"),
  3188. weight: math.unit(320, "kg"),
  3189. preyCapacity: math.unit(0.276549935, "people"),
  3190. name: "Front",
  3191. image: {
  3192. source: "./media/characters/rai/front.svg",
  3193. extra: 1802/1696,
  3194. bottom: 68/1870
  3195. },
  3196. form: "anthro",
  3197. default: true
  3198. },
  3199. frontDressed: {
  3200. height: math.unit(7 + 2/12, "feet"),
  3201. weight: math.unit(320, "kg"),
  3202. preyCapacity: math.unit(0.276549935, "people"),
  3203. name: "Front (Dressed)",
  3204. image: {
  3205. source: "./media/characters/rai/front-dressed.svg",
  3206. extra: 1802/1696,
  3207. bottom: 68/1870
  3208. },
  3209. form: "anthro"
  3210. },
  3211. side: {
  3212. height: math.unit(7 + 2/12, "feet"),
  3213. weight: math.unit(320, "kg"),
  3214. preyCapacity: math.unit(0.276549935, "people"),
  3215. name: "Side",
  3216. image: {
  3217. source: "./media/characters/rai/side.svg",
  3218. extra: 1789/1710,
  3219. bottom: 115/1904
  3220. },
  3221. form: "anthro"
  3222. },
  3223. back: {
  3224. height: math.unit(7 + 2/12, "feet"),
  3225. weight: math.unit(320, "kg"),
  3226. preyCapacity: math.unit(0.276549935, "people"),
  3227. name: "Back",
  3228. image: {
  3229. source: "./media/characters/rai/back.svg",
  3230. extra: 1770/1707,
  3231. bottom: 28/1798
  3232. },
  3233. form: "anthro"
  3234. },
  3235. feral: {
  3236. height: math.unit(9.5, "feet"),
  3237. weight: math.unit(640, "kg"),
  3238. preyCapacity: math.unit(4, "people"),
  3239. name: "Feral",
  3240. image: {
  3241. source: "./media/characters/rai/feral.svg",
  3242. extra: 945/553,
  3243. bottom: 176/1121
  3244. },
  3245. form: "feral",
  3246. default: true
  3247. },
  3248. dragon: {
  3249. height: math.unit(23, "feet"),
  3250. weight: math.unit(50000, "lb"),
  3251. name: "Dragon",
  3252. image: {
  3253. source: "./media/characters/rai/dragon.svg",
  3254. extra: 2498 / 2030,
  3255. bottom: 85.2 / 2584
  3256. },
  3257. form: "dragon",
  3258. default: true
  3259. },
  3260. maw: {
  3261. height: math.unit(1.69, "feet"),
  3262. name: "Maw",
  3263. image: {
  3264. source: "./media/characters/rai/maw.svg"
  3265. },
  3266. form: "anthro"
  3267. },
  3268. },
  3269. [
  3270. {
  3271. name: "Normal",
  3272. height: math.unit(7 + 2/12, "feet"),
  3273. form: "anthro"
  3274. },
  3275. {
  3276. name: "Big",
  3277. height: math.unit(11, "feet"),
  3278. form: "anthro"
  3279. },
  3280. {
  3281. name: "Minimacro",
  3282. height: math.unit(77, "feet"),
  3283. form: "anthro"
  3284. },
  3285. {
  3286. name: "Macro",
  3287. height: math.unit(302, "feet"),
  3288. default: true,
  3289. form: "anthro"
  3290. },
  3291. {
  3292. name: "Normal",
  3293. height: math.unit(9.5, "feet"),
  3294. form: "feral",
  3295. default: true
  3296. },
  3297. {
  3298. name: "Normal",
  3299. height: math.unit(23, "feet"),
  3300. form: "dragon",
  3301. default: true
  3302. }
  3303. ],
  3304. {
  3305. "anthro": {
  3306. name: "Anthro",
  3307. default: true
  3308. },
  3309. "feral": {
  3310. name: "Feral",
  3311. },
  3312. "dragon": {
  3313. name: "Dragon",
  3314. },
  3315. }
  3316. ))
  3317. characterMakers.push(() => makeCharacter(
  3318. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3319. {
  3320. frontDressed: {
  3321. height: math.unit(216, "feet"),
  3322. weight: math.unit(7000000, "lb"),
  3323. preyCapacity: math.unit(1321, "people"),
  3324. name: "Front (Dressed)",
  3325. image: {
  3326. source: "./media/characters/jazzy/front-dressed.svg",
  3327. extra: 2738 / 2651,
  3328. bottom: 41.8 / 2786
  3329. }
  3330. },
  3331. backDressed: {
  3332. height: math.unit(216, "feet"),
  3333. weight: math.unit(7000000, "lb"),
  3334. preyCapacity: math.unit(1321, "people"),
  3335. name: "Back (Dressed)",
  3336. image: {
  3337. source: "./media/characters/jazzy/back-dressed.svg",
  3338. extra: 2775 / 2673,
  3339. bottom: 36.8 / 2817
  3340. }
  3341. },
  3342. front: {
  3343. height: math.unit(216, "feet"),
  3344. weight: math.unit(7000000, "lb"),
  3345. preyCapacity: math.unit(1321, "people"),
  3346. name: "Front",
  3347. image: {
  3348. source: "./media/characters/jazzy/front.svg",
  3349. extra: 2738 / 2651,
  3350. bottom: 41.8 / 2786
  3351. }
  3352. },
  3353. back: {
  3354. height: math.unit(216, "feet"),
  3355. weight: math.unit(7000000, "lb"),
  3356. preyCapacity: math.unit(1321, "people"),
  3357. name: "Back",
  3358. image: {
  3359. source: "./media/characters/jazzy/back.svg",
  3360. extra: 2775 / 2673,
  3361. bottom: 36.8 / 2817
  3362. }
  3363. },
  3364. maw: {
  3365. height: math.unit(20, "feet"),
  3366. name: "Maw",
  3367. image: {
  3368. source: "./media/characters/jazzy/maw.svg"
  3369. }
  3370. },
  3371. paws: {
  3372. height: math.unit(27.5, "feet"),
  3373. name: "Paws",
  3374. image: {
  3375. source: "./media/characters/jazzy/paws.svg"
  3376. }
  3377. },
  3378. eye: {
  3379. height: math.unit(4.4, "feet"),
  3380. name: "Eye",
  3381. image: {
  3382. source: "./media/characters/jazzy/eye.svg"
  3383. }
  3384. },
  3385. droneOffense: {
  3386. height: math.unit(9.5, "inches"),
  3387. name: "Drone (Offense)",
  3388. image: {
  3389. source: "./media/characters/jazzy/drone-offense.svg"
  3390. }
  3391. },
  3392. droneRecon: {
  3393. height: math.unit(9.5, "inches"),
  3394. name: "Drone (Recon)",
  3395. image: {
  3396. source: "./media/characters/jazzy/drone-recon.svg"
  3397. }
  3398. },
  3399. droneDefense: {
  3400. height: math.unit(9.5, "inches"),
  3401. name: "Drone (Defense)",
  3402. image: {
  3403. source: "./media/characters/jazzy/drone-defense.svg"
  3404. }
  3405. },
  3406. },
  3407. [
  3408. {
  3409. name: "Macro",
  3410. height: math.unit(216, "feet"),
  3411. default: true
  3412. },
  3413. ]
  3414. ))
  3415. characterMakers.push(() => makeCharacter(
  3416. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3417. {
  3418. front: {
  3419. height: math.unit(9 + 6/12, "feet"),
  3420. weight: math.unit(700, "lb"),
  3421. name: "Front",
  3422. image: {
  3423. source: "./media/characters/flamm/front.svg",
  3424. extra: 1736/1596,
  3425. bottom: 93/1829
  3426. }
  3427. },
  3428. buff: {
  3429. height: math.unit(9 + 6/12, "feet"),
  3430. weight: math.unit(950, "lb"),
  3431. name: "Buff",
  3432. image: {
  3433. source: "./media/characters/flamm/buff.svg",
  3434. extra: 3018/2874,
  3435. bottom: 221/3239
  3436. }
  3437. },
  3438. },
  3439. [
  3440. {
  3441. name: "Normal",
  3442. height: math.unit(9.5, "feet")
  3443. },
  3444. {
  3445. name: "Macro",
  3446. height: math.unit(200, "feet"),
  3447. default: true
  3448. },
  3449. ]
  3450. ))
  3451. characterMakers.push(() => makeCharacter(
  3452. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3453. {
  3454. front: {
  3455. height: math.unit(5 + 3/12, "feet"),
  3456. weight: math.unit(60, "kg"),
  3457. name: "Front",
  3458. image: {
  3459. source: "./media/characters/zephiro/front.svg",
  3460. extra: 1873/1761,
  3461. bottom: 147/2020
  3462. }
  3463. },
  3464. side: {
  3465. height: math.unit(5 + 3/12, "feet"),
  3466. weight: math.unit(60, "kg"),
  3467. name: "Side",
  3468. image: {
  3469. source: "./media/characters/zephiro/side.svg",
  3470. extra: 1929/1827,
  3471. bottom: 65/1994
  3472. }
  3473. },
  3474. back: {
  3475. height: math.unit(5 + 3/12, "feet"),
  3476. weight: math.unit(60, "kg"),
  3477. name: "Back",
  3478. image: {
  3479. source: "./media/characters/zephiro/back.svg",
  3480. extra: 1926/1816,
  3481. bottom: 41/1967
  3482. }
  3483. },
  3484. hand: {
  3485. height: math.unit(0.68, "feet"),
  3486. name: "Hand",
  3487. image: {
  3488. source: "./media/characters/zephiro/hand.svg"
  3489. }
  3490. },
  3491. paw: {
  3492. height: math.unit(1, "feet"),
  3493. name: "Paw",
  3494. image: {
  3495. source: "./media/characters/zephiro/paw.svg"
  3496. }
  3497. },
  3498. beans: {
  3499. height: math.unit(0.93, "feet"),
  3500. name: "Beans",
  3501. image: {
  3502. source: "./media/characters/zephiro/beans.svg"
  3503. }
  3504. },
  3505. },
  3506. [
  3507. {
  3508. name: "Micro",
  3509. height: math.unit(3, "inches")
  3510. },
  3511. {
  3512. name: "Normal",
  3513. height: math.unit(5 + 3 / 12, "feet"),
  3514. default: true
  3515. },
  3516. {
  3517. name: "Macro",
  3518. height: math.unit(118, "feet")
  3519. },
  3520. ]
  3521. ))
  3522. characterMakers.push(() => makeCharacter(
  3523. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3524. {
  3525. front: {
  3526. height: math.unit(5, "feet"),
  3527. weight: math.unit(90, "kg"),
  3528. preyCapacity: math.unit(14, "people"),
  3529. name: "Front",
  3530. image: {
  3531. source: "./media/characters/fory/front.svg",
  3532. extra: 2862 / 2674,
  3533. bottom: 180 / 3043.8
  3534. },
  3535. form: "weaselbun",
  3536. default: true,
  3537. extraAttributes: {
  3538. "pawSize": {
  3539. name: "Paw Size",
  3540. power: 2,
  3541. type: "area",
  3542. base: math.unit(0.1596, "m^2")
  3543. },
  3544. "pawLength": {
  3545. name: "Paw Length",
  3546. power: 1,
  3547. type: "length",
  3548. base: math.unit(0.7, "m")
  3549. }
  3550. }
  3551. },
  3552. back: {
  3553. height: math.unit(5, "feet"),
  3554. weight: math.unit(90, "kg"),
  3555. preyCapacity: math.unit(14, "people"),
  3556. name: "Back",
  3557. image: {
  3558. source: "./media/characters/fory/back.svg",
  3559. extra: 1790/1672,
  3560. bottom: 84/1874
  3561. },
  3562. form: "weaselbun",
  3563. extraAttributes: {
  3564. "pawSize": {
  3565. name: "Paw Size",
  3566. power: 2,
  3567. type: "area",
  3568. base: math.unit(0.1596, "m^2")
  3569. },
  3570. "pawLength": {
  3571. name: "Paw Length",
  3572. power: 1,
  3573. type: "length",
  3574. base: math.unit(0.7, "m")
  3575. }
  3576. }
  3577. },
  3578. paw: {
  3579. height: math.unit(2.14, "feet"),
  3580. name: "Paw",
  3581. image: {
  3582. source: "./media/characters/fory/paw.svg"
  3583. },
  3584. form: "weaselbun",
  3585. extraAttributes: {
  3586. "pawSize": {
  3587. name: "Paw Size",
  3588. power: 2,
  3589. type: "area",
  3590. base: math.unit(0.1596, "m^2")
  3591. },
  3592. "pawLength": {
  3593. name: "Paw Length",
  3594. power: 1,
  3595. type: "length",
  3596. base: math.unit(0.48, "m")
  3597. }
  3598. }
  3599. },
  3600. bunBack: {
  3601. height: math.unit(3, "feet"),
  3602. weight: math.unit(20, "kg"),
  3603. preyCapacity: math.unit(3, "people"),
  3604. name: "Back",
  3605. image: {
  3606. source: "./media/characters/fory/bun-back.svg",
  3607. extra: 1749/1564,
  3608. bottom: 246/1995
  3609. },
  3610. form: "bun",
  3611. default: true,
  3612. extraAttributes: {
  3613. "pawSize": {
  3614. name: "Paw Size",
  3615. power: 2,
  3616. type: "area",
  3617. base: math.unit(0.072, "m^2")
  3618. },
  3619. "pawLength": {
  3620. name: "Paw Length",
  3621. power: 1,
  3622. type: "length",
  3623. base: math.unit(0.45, "m")
  3624. }
  3625. }
  3626. },
  3627. },
  3628. [
  3629. {
  3630. name: "Normal",
  3631. height: math.unit(5, "feet"),
  3632. form: "weaselbun"
  3633. },
  3634. {
  3635. name: "Macro",
  3636. height: math.unit(50, "feet"),
  3637. default: true,
  3638. form: "weaselbun"
  3639. },
  3640. {
  3641. name: "Megamacro",
  3642. height: math.unit(10, "miles"),
  3643. form: "weaselbun"
  3644. },
  3645. {
  3646. name: "Gigamacro",
  3647. height: math.unit(5, "earths"),
  3648. form: "weaselbun"
  3649. },
  3650. {
  3651. name: "Normal",
  3652. height: math.unit(3, "feet"),
  3653. default: true,
  3654. form: "bun"
  3655. },
  3656. {
  3657. name: "Fun-Size",
  3658. height: math.unit(12, "feet"),
  3659. form: "bun"
  3660. },
  3661. {
  3662. name: "Macro",
  3663. height: math.unit(100, "feet"),
  3664. form: "bun"
  3665. },
  3666. {
  3667. name: "Planetary",
  3668. height: math.unit(3, "earths"),
  3669. form: "bun"
  3670. },
  3671. ],
  3672. {
  3673. "weaselbun": {
  3674. name: "Weaselbun",
  3675. default: true
  3676. },
  3677. "bun": {
  3678. name: "Bun",
  3679. },
  3680. }
  3681. ))
  3682. characterMakers.push(() => makeCharacter(
  3683. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3684. {
  3685. front: {
  3686. height: math.unit(7, "feet"),
  3687. weight: math.unit(90, "kg"),
  3688. name: "Front",
  3689. image: {
  3690. source: "./media/characters/kurrikage/front.svg",
  3691. extra: 1845/1733,
  3692. bottom: 119/1964
  3693. }
  3694. },
  3695. back: {
  3696. height: math.unit(7, "feet"),
  3697. weight: math.unit(90, "kg"),
  3698. name: "Back",
  3699. image: {
  3700. source: "./media/characters/kurrikage/back.svg",
  3701. extra: 1790/1677,
  3702. bottom: 61/1851
  3703. }
  3704. },
  3705. dressed: {
  3706. height: math.unit(7, "feet"),
  3707. weight: math.unit(90, "kg"),
  3708. name: "Dressed",
  3709. image: {
  3710. source: "./media/characters/kurrikage/dressed.svg",
  3711. extra: 1845/1733,
  3712. bottom: 119/1964
  3713. }
  3714. },
  3715. foot: {
  3716. height: math.unit(1.5, "feet"),
  3717. name: "Foot",
  3718. image: {
  3719. source: "./media/characters/kurrikage/foot.svg"
  3720. }
  3721. },
  3722. staff: {
  3723. height: math.unit(6.7, "feet"),
  3724. name: "Staff",
  3725. image: {
  3726. source: "./media/characters/kurrikage/staff.svg"
  3727. }
  3728. },
  3729. peek: {
  3730. height: math.unit(1.05, "feet"),
  3731. name: "Peeking",
  3732. image: {
  3733. source: "./media/characters/kurrikage/peek.svg",
  3734. bottom: 0.08
  3735. }
  3736. },
  3737. },
  3738. [
  3739. {
  3740. name: "Normal",
  3741. height: math.unit(12, "feet"),
  3742. default: true
  3743. },
  3744. {
  3745. name: "Big",
  3746. height: math.unit(20, "feet")
  3747. },
  3748. {
  3749. name: "Macro",
  3750. height: math.unit(500, "feet")
  3751. },
  3752. {
  3753. name: "Megamacro",
  3754. height: math.unit(20, "miles")
  3755. },
  3756. ]
  3757. ))
  3758. characterMakers.push(() => makeCharacter(
  3759. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3760. {
  3761. front: {
  3762. height: math.unit(6, "feet"),
  3763. weight: math.unit(75, "kg"),
  3764. name: "Front",
  3765. image: {
  3766. source: "./media/characters/shingo/front.svg",
  3767. extra: 1900/1825,
  3768. bottom: 82/1982
  3769. }
  3770. },
  3771. side: {
  3772. height: math.unit(6, "feet"),
  3773. weight: math.unit(75, "kg"),
  3774. name: "Side",
  3775. image: {
  3776. source: "./media/characters/shingo/side.svg",
  3777. extra: 1930/1865,
  3778. bottom: 16/1946
  3779. }
  3780. },
  3781. back: {
  3782. height: math.unit(6, "feet"),
  3783. weight: math.unit(75, "kg"),
  3784. name: "Back",
  3785. image: {
  3786. source: "./media/characters/shingo/back.svg",
  3787. extra: 1922/1852,
  3788. bottom: 16/1938
  3789. }
  3790. },
  3791. frontDressed: {
  3792. height: math.unit(6, "feet"),
  3793. weight: math.unit(150, "lb"),
  3794. name: "Front-dressed",
  3795. image: {
  3796. source: "./media/characters/shingo/front-dressed.svg",
  3797. extra: 1900/1825,
  3798. bottom: 82/1982
  3799. }
  3800. },
  3801. paw: {
  3802. height: math.unit(1.29, "feet"),
  3803. name: "Paw",
  3804. image: {
  3805. source: "./media/characters/shingo/paw.svg"
  3806. }
  3807. },
  3808. hand: {
  3809. height: math.unit(1.07, "feet"),
  3810. name: "Hand",
  3811. image: {
  3812. source: "./media/characters/shingo/hand.svg"
  3813. }
  3814. },
  3815. frontAlt: {
  3816. height: math.unit(6, "feet"),
  3817. weight: math.unit(75, "kg"),
  3818. name: "Front (Alt)",
  3819. image: {
  3820. source: "./media/characters/shingo/front-alt.svg",
  3821. extra: 3511 / 3338,
  3822. bottom: 0.005
  3823. }
  3824. },
  3825. frontAlt2: {
  3826. height: math.unit(6, "feet"),
  3827. weight: math.unit(75, "kg"),
  3828. name: "Front (Alt 2)",
  3829. image: {
  3830. source: "./media/characters/shingo/front-alt-2.svg",
  3831. extra: 706/681,
  3832. bottom: 11/717
  3833. }
  3834. },
  3835. pawAlt: {
  3836. height: math.unit(1, "feet"),
  3837. name: "Paw (Alt)",
  3838. image: {
  3839. source: "./media/characters/shingo/paw-alt.svg"
  3840. }
  3841. },
  3842. },
  3843. [
  3844. {
  3845. name: "Micro",
  3846. height: math.unit(4, "inches")
  3847. },
  3848. {
  3849. name: "Normal",
  3850. height: math.unit(6, "feet"),
  3851. default: true
  3852. },
  3853. {
  3854. name: "Macro",
  3855. height: math.unit(108, "feet")
  3856. },
  3857. {
  3858. name: "Macro+",
  3859. height: math.unit(1500, "feet")
  3860. },
  3861. ]
  3862. ))
  3863. characterMakers.push(() => makeCharacter(
  3864. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3865. {
  3866. side: {
  3867. height: math.unit(6, "feet"),
  3868. weight: math.unit(75, "kg"),
  3869. name: "Side",
  3870. image: {
  3871. source: "./media/characters/aigey/side.svg"
  3872. }
  3873. },
  3874. },
  3875. [
  3876. {
  3877. name: "Macro",
  3878. height: math.unit(200, "feet"),
  3879. default: true
  3880. },
  3881. {
  3882. name: "Megamacro",
  3883. height: math.unit(100, "miles")
  3884. },
  3885. ]
  3886. )
  3887. )
  3888. characterMakers.push(() => makeCharacter(
  3889. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3890. {
  3891. front: {
  3892. height: math.unit(13, "feet"),
  3893. weight: math.unit(1036.80, "kg"),
  3894. name: "Front",
  3895. image: {
  3896. source: "./media/characters/natasha/front.svg",
  3897. extra: 1301/1210,
  3898. bottom: 39/1340
  3899. }
  3900. },
  3901. back: {
  3902. height: math.unit(13, "feet"),
  3903. weight: math.unit(1036.80, "kg"),
  3904. name: "Back",
  3905. image: {
  3906. source: "./media/characters/natasha/back.svg",
  3907. extra: 1342/1252,
  3908. bottom: 20/1362
  3909. }
  3910. },
  3911. head: {
  3912. height: math.unit(3.48, "feet"),
  3913. name: "Head",
  3914. image: {
  3915. source: "./media/characters/natasha/head.svg"
  3916. }
  3917. },
  3918. jaws: {
  3919. height: math.unit(3.52, "feet"),
  3920. name: "Jaws",
  3921. image: {
  3922. source: "./media/characters/natasha/jaws.svg"
  3923. }
  3924. },
  3925. paws: {
  3926. height: math.unit(2.7, "feet"),
  3927. name: "Paws",
  3928. image: {
  3929. source: "./media/characters/natasha/paws.svg"
  3930. }
  3931. },
  3932. collar: {
  3933. height: math.unit(0.89, "feet"),
  3934. name: "Collar",
  3935. image: {
  3936. source: "./media/characters/natasha/collar.svg"
  3937. }
  3938. },
  3939. gauge: {
  3940. height: math.unit(0.36, "feet"),
  3941. name: "Gauge",
  3942. image: {
  3943. source: "./media/characters/natasha/gauge.svg"
  3944. }
  3945. },
  3946. },
  3947. [
  3948. {
  3949. name: "Shortstack",
  3950. height: math.unit(3, "feet")
  3951. },
  3952. {
  3953. name: "Normal",
  3954. height: math.unit(13, "feet"),
  3955. default: true
  3956. },
  3957. {
  3958. name: "Macro",
  3959. height: math.unit(100, "feet")
  3960. },
  3961. {
  3962. name: "Macro+",
  3963. height: math.unit(260, "feet")
  3964. },
  3965. {
  3966. name: "Macro++",
  3967. height: math.unit(1, "mile")
  3968. },
  3969. ]
  3970. ))
  3971. characterMakers.push(() => makeCharacter(
  3972. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3973. {
  3974. front: {
  3975. height: math.unit(6, "feet"),
  3976. weight: math.unit(75, "kg"),
  3977. name: "Front",
  3978. image: {
  3979. source: "./media/characters/malik/front.svg",
  3980. extra: 1750/1561,
  3981. bottom: 80/1830
  3982. },
  3983. extraAttributes: {
  3984. "toeSize": {
  3985. name: "Toe Size",
  3986. power: 2,
  3987. type: "area",
  3988. base: math.unit(0.0159, "m^2")
  3989. },
  3990. "pawSize": {
  3991. name: "Paw Size",
  3992. power: 2,
  3993. type: "area",
  3994. base: math.unit(0.09834, "m^2")
  3995. },
  3996. }
  3997. },
  3998. side: {
  3999. height: math.unit(6, "feet"),
  4000. weight: math.unit(75, "kg"),
  4001. name: "Side",
  4002. image: {
  4003. source: "./media/characters/malik/side.svg",
  4004. extra: 1802/1685,
  4005. bottom: 42/1844
  4006. },
  4007. extraAttributes: {
  4008. "toeSize": {
  4009. name: "Toe Size",
  4010. power: 2,
  4011. type: "area",
  4012. base: math.unit(0.0159, "m^2")
  4013. },
  4014. "pawSize": {
  4015. name: "Paw Size",
  4016. power: 2,
  4017. type: "area",
  4018. base: math.unit(0.09834, "m^2")
  4019. },
  4020. }
  4021. },
  4022. back: {
  4023. height: math.unit(6, "feet"),
  4024. weight: math.unit(75, "kg"),
  4025. name: "Back",
  4026. image: {
  4027. source: "./media/characters/malik/back.svg",
  4028. extra: 1803/1607,
  4029. bottom: 33/1836
  4030. },
  4031. extraAttributes: {
  4032. "toeSize": {
  4033. name: "Toe Size",
  4034. power: 2,
  4035. type: "area",
  4036. base: math.unit(0.0159, "m^2")
  4037. },
  4038. "pawSize": {
  4039. name: "Paw Size",
  4040. power: 2,
  4041. type: "area",
  4042. base: math.unit(0.09834, "m^2")
  4043. },
  4044. }
  4045. },
  4046. },
  4047. [
  4048. {
  4049. name: "Macro",
  4050. height: math.unit(156, "feet"),
  4051. default: true
  4052. },
  4053. {
  4054. name: "Macro+",
  4055. height: math.unit(1188, "feet")
  4056. },
  4057. ]
  4058. ))
  4059. characterMakers.push(() => makeCharacter(
  4060. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  4061. {
  4062. front: {
  4063. height: math.unit(6, "feet"),
  4064. weight: math.unit(75, "kg"),
  4065. name: "Front",
  4066. image: {
  4067. source: "./media/characters/sefer/front.svg",
  4068. extra: 848 / 659,
  4069. bottom: 28.3 / 876.442
  4070. }
  4071. },
  4072. back: {
  4073. height: math.unit(6, "feet"),
  4074. weight: math.unit(75, "kg"),
  4075. name: "Back",
  4076. image: {
  4077. source: "./media/characters/sefer/back.svg",
  4078. extra: 864 / 695,
  4079. bottom: 10 / 871
  4080. }
  4081. },
  4082. frontDressed: {
  4083. height: math.unit(6, "feet"),
  4084. weight: math.unit(75, "kg"),
  4085. name: "Dressed",
  4086. image: {
  4087. source: "./media/characters/sefer/dressed.svg",
  4088. extra: 839 / 653,
  4089. bottom: 37.6 / 878
  4090. }
  4091. },
  4092. },
  4093. [
  4094. {
  4095. name: "Normal",
  4096. height: math.unit(6, "feet"),
  4097. default: true
  4098. },
  4099. {
  4100. name: "Big",
  4101. height: math.unit(8, "meters")
  4102. },
  4103. ]
  4104. ))
  4105. characterMakers.push(() => makeCharacter(
  4106. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  4107. {
  4108. body: {
  4109. height: math.unit(2.2428, "meter"),
  4110. weight: math.unit(124.738, "kg"),
  4111. name: "Body",
  4112. image: {
  4113. extra: 1225 / 1050,
  4114. source: "./media/characters/north/front.svg"
  4115. }
  4116. }
  4117. },
  4118. [
  4119. {
  4120. name: "Micro",
  4121. height: math.unit(4, "inches")
  4122. },
  4123. {
  4124. name: "Macro",
  4125. height: math.unit(63, "meters")
  4126. },
  4127. {
  4128. name: "Megamacro",
  4129. height: math.unit(101, "miles"),
  4130. default: true
  4131. }
  4132. ]
  4133. ))
  4134. characterMakers.push(() => makeCharacter(
  4135. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4136. {
  4137. angled: {
  4138. height: math.unit(4, "meter"),
  4139. weight: math.unit(150, "kg"),
  4140. name: "Angled",
  4141. image: {
  4142. source: "./media/characters/talan/angled-sfw.svg",
  4143. bottom: 29 / 3734
  4144. }
  4145. },
  4146. angledNsfw: {
  4147. height: math.unit(4, "meter"),
  4148. weight: math.unit(150, "kg"),
  4149. name: "Angled (NSFW)",
  4150. image: {
  4151. source: "./media/characters/talan/angled-nsfw.svg",
  4152. bottom: 29 / 3734
  4153. }
  4154. },
  4155. frontNsfw: {
  4156. height: math.unit(4, "meter"),
  4157. weight: math.unit(150, "kg"),
  4158. name: "Front (NSFW)",
  4159. image: {
  4160. source: "./media/characters/talan/front-nsfw.svg",
  4161. bottom: 29 / 3734
  4162. }
  4163. },
  4164. sideNsfw: {
  4165. height: math.unit(4, "meter"),
  4166. weight: math.unit(150, "kg"),
  4167. name: "Side (NSFW)",
  4168. image: {
  4169. source: "./media/characters/talan/side-nsfw.svg",
  4170. bottom: 29 / 3734
  4171. }
  4172. },
  4173. back: {
  4174. height: math.unit(4, "meter"),
  4175. weight: math.unit(150, "kg"),
  4176. name: "Back",
  4177. image: {
  4178. source: "./media/characters/talan/back.svg"
  4179. }
  4180. },
  4181. dickBottom: {
  4182. height: math.unit(0.621, "meter"),
  4183. name: "Dick (Bottom)",
  4184. image: {
  4185. source: "./media/characters/talan/dick-bottom.svg"
  4186. }
  4187. },
  4188. dickTop: {
  4189. height: math.unit(0.621, "meter"),
  4190. name: "Dick (Top)",
  4191. image: {
  4192. source: "./media/characters/talan/dick-top.svg"
  4193. }
  4194. },
  4195. dickSide: {
  4196. height: math.unit(0.305, "meter"),
  4197. name: "Dick (Side)",
  4198. image: {
  4199. source: "./media/characters/talan/dick-side.svg"
  4200. }
  4201. },
  4202. dickFront: {
  4203. height: math.unit(0.305, "meter"),
  4204. name: "Dick (Front)",
  4205. image: {
  4206. source: "./media/characters/talan/dick-front.svg"
  4207. }
  4208. },
  4209. },
  4210. [
  4211. {
  4212. name: "Normal",
  4213. height: math.unit(4, "meters")
  4214. },
  4215. {
  4216. name: "Macro",
  4217. height: math.unit(100, "meters")
  4218. },
  4219. {
  4220. name: "Megamacro",
  4221. height: math.unit(2, "miles"),
  4222. default: true
  4223. },
  4224. {
  4225. name: "Gigamacro",
  4226. height: math.unit(5000, "miles")
  4227. },
  4228. {
  4229. name: "Teramacro",
  4230. height: math.unit(100, "parsecs")
  4231. }
  4232. ]
  4233. ))
  4234. characterMakers.push(() => makeCharacter(
  4235. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4236. {
  4237. front: {
  4238. height: math.unit(2, "meter"),
  4239. weight: math.unit(90, "kg"),
  4240. name: "Front",
  4241. image: {
  4242. source: "./media/characters/gael'rathus/front.svg"
  4243. }
  4244. },
  4245. frontAlt: {
  4246. height: math.unit(2, "meter"),
  4247. weight: math.unit(90, "kg"),
  4248. name: "Front (alt)",
  4249. image: {
  4250. source: "./media/characters/gael'rathus/front-alt.svg"
  4251. }
  4252. },
  4253. frontAlt2: {
  4254. height: math.unit(2, "meter"),
  4255. weight: math.unit(90, "kg"),
  4256. name: "Front (alt 2)",
  4257. image: {
  4258. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4259. }
  4260. }
  4261. },
  4262. [
  4263. {
  4264. name: "Normal",
  4265. height: math.unit(9, "feet"),
  4266. default: true
  4267. },
  4268. {
  4269. name: "Large",
  4270. height: math.unit(25, "feet")
  4271. },
  4272. {
  4273. name: "Macro",
  4274. height: math.unit(0.25, "miles")
  4275. },
  4276. {
  4277. name: "Megamacro",
  4278. height: math.unit(10, "miles")
  4279. }
  4280. ]
  4281. ))
  4282. characterMakers.push(() => makeCharacter(
  4283. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4284. {
  4285. side: {
  4286. height: math.unit(2, "meter"),
  4287. weight: math.unit(140, "kg"),
  4288. name: "Side",
  4289. image: {
  4290. source: "./media/characters/sosha/side.svg",
  4291. extra: 1170/1006,
  4292. bottom: 94/1264
  4293. }
  4294. },
  4295. maw: {
  4296. height: math.unit(2.87, "feet"),
  4297. name: "Maw",
  4298. image: {
  4299. source: "./media/characters/sosha/maw.svg",
  4300. extra: 966/865,
  4301. bottom: 0/966
  4302. }
  4303. },
  4304. cooch: {
  4305. height: math.unit(5.6, "feet"),
  4306. name: "Cooch",
  4307. image: {
  4308. source: "./media/characters/sosha/cooch.svg"
  4309. }
  4310. },
  4311. },
  4312. [
  4313. {
  4314. name: "Normal",
  4315. height: math.unit(12, "feet"),
  4316. default: true
  4317. }
  4318. ]
  4319. ))
  4320. characterMakers.push(() => makeCharacter(
  4321. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4322. {
  4323. side: {
  4324. height: math.unit(5 + 5 / 12, "feet"),
  4325. weight: math.unit(170, "kg"),
  4326. name: "Side",
  4327. image: {
  4328. source: "./media/characters/runnola/side.svg",
  4329. extra: 741 / 448,
  4330. bottom: 0.05
  4331. }
  4332. },
  4333. },
  4334. [
  4335. {
  4336. name: "Small",
  4337. height: math.unit(3, "feet")
  4338. },
  4339. {
  4340. name: "Normal",
  4341. height: math.unit(5 + 5 / 12, "feet"),
  4342. default: true
  4343. },
  4344. {
  4345. name: "Big",
  4346. height: math.unit(10, "feet")
  4347. },
  4348. ]
  4349. ))
  4350. characterMakers.push(() => makeCharacter(
  4351. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4352. {
  4353. front: {
  4354. height: math.unit(2, "meter"),
  4355. weight: math.unit(50, "kg"),
  4356. name: "Front",
  4357. image: {
  4358. source: "./media/characters/kurribird/front.svg",
  4359. bottom: 0.015
  4360. }
  4361. },
  4362. frontAlt: {
  4363. height: math.unit(1.5, "meter"),
  4364. weight: math.unit(50, "kg"),
  4365. name: "Front (Alt)",
  4366. image: {
  4367. source: "./media/characters/kurribird/front-alt.svg",
  4368. extra: 1.45
  4369. }
  4370. },
  4371. },
  4372. [
  4373. {
  4374. name: "Normal",
  4375. height: math.unit(7, "feet")
  4376. },
  4377. {
  4378. name: "Big",
  4379. height: math.unit(12, "feet"),
  4380. default: true
  4381. },
  4382. {
  4383. name: "Macro",
  4384. height: math.unit(1500, "feet")
  4385. },
  4386. {
  4387. name: "Megamacro",
  4388. height: math.unit(2, "miles")
  4389. }
  4390. ]
  4391. ))
  4392. characterMakers.push(() => makeCharacter(
  4393. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4394. {
  4395. front: {
  4396. height: math.unit(2, "meter"),
  4397. weight: math.unit(80, "kg"),
  4398. name: "Front",
  4399. image: {
  4400. source: "./media/characters/elbial/front.svg",
  4401. extra: 1643 / 1556,
  4402. bottom: 60.2 / 1696
  4403. }
  4404. },
  4405. side: {
  4406. height: math.unit(2, "meter"),
  4407. weight: math.unit(80, "kg"),
  4408. name: "Side",
  4409. image: {
  4410. source: "./media/characters/elbial/side.svg",
  4411. extra: 1601/1528,
  4412. bottom: 97/1698
  4413. }
  4414. },
  4415. back: {
  4416. height: math.unit(2, "meter"),
  4417. weight: math.unit(80, "kg"),
  4418. name: "Back",
  4419. image: {
  4420. source: "./media/characters/elbial/back.svg",
  4421. extra: 1653/1569,
  4422. bottom: 20/1673
  4423. }
  4424. },
  4425. frontDressed: {
  4426. height: math.unit(2, "meter"),
  4427. weight: math.unit(80, "kg"),
  4428. name: "Front (Dressed)",
  4429. image: {
  4430. source: "./media/characters/elbial/front-dressed.svg",
  4431. extra: 1638/1569,
  4432. bottom: 70/1708
  4433. }
  4434. },
  4435. genitals: {
  4436. height: math.unit(2 / 3.367, "meter"),
  4437. name: "Genitals",
  4438. image: {
  4439. source: "./media/characters/elbial/genitals.svg"
  4440. }
  4441. },
  4442. },
  4443. [
  4444. {
  4445. name: "Large",
  4446. height: math.unit(100, "feet")
  4447. },
  4448. {
  4449. name: "Macro",
  4450. height: math.unit(500, "feet"),
  4451. default: true
  4452. },
  4453. {
  4454. name: "Megamacro",
  4455. height: math.unit(10, "miles")
  4456. },
  4457. {
  4458. name: "Gigamacro",
  4459. height: math.unit(25000, "miles")
  4460. },
  4461. {
  4462. name: "Full-Size",
  4463. height: math.unit(8000000, "gigaparsecs")
  4464. }
  4465. ]
  4466. ))
  4467. characterMakers.push(() => makeCharacter(
  4468. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4469. {
  4470. front: {
  4471. height: math.unit(2, "meter"),
  4472. weight: math.unit(60, "kg"),
  4473. name: "Front",
  4474. image: {
  4475. source: "./media/characters/noah/front.svg",
  4476. extra: 1383/1313,
  4477. bottom: 104/1487
  4478. }
  4479. },
  4480. hand: {
  4481. height: math.unit(0.6, "feet"),
  4482. name: "Hand",
  4483. image: {
  4484. source: "./media/characters/noah/hand.svg"
  4485. }
  4486. },
  4487. talons: {
  4488. height: math.unit(1.385, "feet"),
  4489. name: "Talons",
  4490. image: {
  4491. source: "./media/characters/noah/talons.svg"
  4492. }
  4493. },
  4494. beak: {
  4495. height: math.unit(0.43, "feet"),
  4496. name: "Beak",
  4497. image: {
  4498. source: "./media/characters/noah/beak.svg"
  4499. }
  4500. },
  4501. collar: {
  4502. height: math.unit(0.88, "feet"),
  4503. name: "Collar",
  4504. image: {
  4505. source: "./media/characters/noah/collar.svg"
  4506. }
  4507. },
  4508. eyeNarrow: {
  4509. height: math.unit(0.18, "feet"),
  4510. name: "Eye (Narrow)",
  4511. image: {
  4512. source: "./media/characters/noah/eye-narrow.svg"
  4513. }
  4514. },
  4515. eyeNormal: {
  4516. height: math.unit(0.18, "feet"),
  4517. name: "Eye (Normal)",
  4518. image: {
  4519. source: "./media/characters/noah/eye-normal.svg"
  4520. }
  4521. },
  4522. eyeWide: {
  4523. height: math.unit(0.18, "feet"),
  4524. name: "Eye (Wide)",
  4525. image: {
  4526. source: "./media/characters/noah/eye-wide.svg"
  4527. }
  4528. },
  4529. ear: {
  4530. height: math.unit(0.64, "feet"),
  4531. name: "Ear",
  4532. image: {
  4533. source: "./media/characters/noah/ear.svg"
  4534. }
  4535. },
  4536. },
  4537. [
  4538. {
  4539. name: "Large",
  4540. height: math.unit(50, "feet")
  4541. },
  4542. {
  4543. name: "Macro",
  4544. height: math.unit(750, "feet"),
  4545. default: true
  4546. },
  4547. {
  4548. name: "Megamacro",
  4549. height: math.unit(50, "miles")
  4550. },
  4551. {
  4552. name: "Gigamacro",
  4553. height: math.unit(100000, "miles")
  4554. },
  4555. {
  4556. name: "Full-Size",
  4557. height: math.unit(3000000000, "miles")
  4558. }
  4559. ]
  4560. ))
  4561. characterMakers.push(() => makeCharacter(
  4562. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4563. {
  4564. front: {
  4565. height: math.unit(2, "meter"),
  4566. weight: math.unit(80, "kg"),
  4567. name: "Front",
  4568. image: {
  4569. source: "./media/characters/natalya/front.svg"
  4570. }
  4571. },
  4572. back: {
  4573. height: math.unit(2, "meter"),
  4574. weight: math.unit(80, "kg"),
  4575. name: "Back",
  4576. image: {
  4577. source: "./media/characters/natalya/back.svg"
  4578. }
  4579. }
  4580. },
  4581. [
  4582. {
  4583. name: "Normal",
  4584. height: math.unit(150, "feet"),
  4585. default: true
  4586. },
  4587. {
  4588. name: "Megamacro",
  4589. height: math.unit(5, "miles")
  4590. },
  4591. {
  4592. name: "Full-Size",
  4593. height: math.unit(600, "kiloparsecs")
  4594. }
  4595. ]
  4596. ))
  4597. characterMakers.push(() => makeCharacter(
  4598. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4599. {
  4600. front: {
  4601. height: math.unit(2, "meter"),
  4602. weight: math.unit(50, "kg"),
  4603. name: "Front",
  4604. image: {
  4605. source: "./media/characters/erestrebah/front.svg",
  4606. extra: 1262/1162,
  4607. bottom: 96/1358
  4608. }
  4609. },
  4610. back: {
  4611. height: math.unit(2, "meter"),
  4612. weight: math.unit(50, "kg"),
  4613. name: "Back",
  4614. image: {
  4615. source: "./media/characters/erestrebah/back.svg",
  4616. extra: 1257/1139,
  4617. bottom: 13/1270
  4618. }
  4619. },
  4620. wing: {
  4621. height: math.unit(2, "meter"),
  4622. weight: math.unit(50, "kg"),
  4623. name: "Wing",
  4624. image: {
  4625. source: "./media/characters/erestrebah/wing.svg",
  4626. extra: 1262/1162,
  4627. bottom: 96/1358
  4628. }
  4629. },
  4630. mouth: {
  4631. height: math.unit(0.39, "feet"),
  4632. name: "Mouth",
  4633. image: {
  4634. source: "./media/characters/erestrebah/mouth.svg"
  4635. }
  4636. }
  4637. },
  4638. [
  4639. {
  4640. name: "Normal",
  4641. height: math.unit(10, "feet")
  4642. },
  4643. {
  4644. name: "Large",
  4645. height: math.unit(50, "feet"),
  4646. default: true
  4647. },
  4648. {
  4649. name: "Macro",
  4650. height: math.unit(300, "feet")
  4651. },
  4652. {
  4653. name: "Macro+",
  4654. height: math.unit(750, "feet")
  4655. },
  4656. {
  4657. name: "Megamacro",
  4658. height: math.unit(3, "miles")
  4659. }
  4660. ]
  4661. ))
  4662. characterMakers.push(() => makeCharacter(
  4663. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4664. {
  4665. front: {
  4666. height: math.unit(2, "meter"),
  4667. weight: math.unit(80, "kg"),
  4668. name: "Front",
  4669. image: {
  4670. source: "./media/characters/jennifer/front.svg",
  4671. bottom: 0.11,
  4672. extra: 1.16
  4673. }
  4674. },
  4675. frontAlt: {
  4676. height: math.unit(2, "meter"),
  4677. weight: math.unit(80, "kg"),
  4678. name: "Front (Alt)",
  4679. image: {
  4680. source: "./media/characters/jennifer/front-alt.svg"
  4681. }
  4682. }
  4683. },
  4684. [
  4685. {
  4686. name: "Canon Height",
  4687. height: math.unit(120, "feet"),
  4688. default: true
  4689. },
  4690. {
  4691. name: "Macro+",
  4692. height: math.unit(300, "feet")
  4693. },
  4694. {
  4695. name: "Megamacro",
  4696. height: math.unit(20000, "feet")
  4697. }
  4698. ]
  4699. ))
  4700. characterMakers.push(() => makeCharacter(
  4701. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4702. {
  4703. front: {
  4704. height: math.unit(2, "meter"),
  4705. weight: math.unit(50, "kg"),
  4706. name: "Front",
  4707. image: {
  4708. source: "./media/characters/kalista/front.svg",
  4709. extra: 1314/1145,
  4710. bottom: 101/1415
  4711. }
  4712. },
  4713. back: {
  4714. height: math.unit(2, "meter"),
  4715. weight: math.unit(50, "kg"),
  4716. name: "Back",
  4717. image: {
  4718. source: "./media/characters/kalista/back.svg",
  4719. extra: 1366 / 1156,
  4720. bottom: 33.9 / 1362.78
  4721. }
  4722. }
  4723. },
  4724. [
  4725. {
  4726. name: "Uncomfortably Small",
  4727. height: math.unit(10, "feet")
  4728. },
  4729. {
  4730. name: "Small",
  4731. height: math.unit(30, "feet")
  4732. },
  4733. {
  4734. name: "Macro",
  4735. height: math.unit(100, "feet"),
  4736. default: true
  4737. },
  4738. {
  4739. name: "Macro+",
  4740. height: math.unit(2000, "feet")
  4741. },
  4742. {
  4743. name: "True Form",
  4744. height: math.unit(8924, "miles")
  4745. }
  4746. ]
  4747. ))
  4748. characterMakers.push(() => makeCharacter(
  4749. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4750. {
  4751. front: {
  4752. height: math.unit(2, "meter"),
  4753. weight: math.unit(120, "kg"),
  4754. name: "Front",
  4755. image: {
  4756. source: "./media/characters/ggv/front.svg"
  4757. }
  4758. },
  4759. side: {
  4760. height: math.unit(2, "meter"),
  4761. weight: math.unit(120, "kg"),
  4762. name: "Side",
  4763. image: {
  4764. source: "./media/characters/ggv/side.svg"
  4765. }
  4766. }
  4767. },
  4768. [
  4769. {
  4770. name: "Extremely Puny",
  4771. height: math.unit(9 + 5 / 12, "feet")
  4772. },
  4773. {
  4774. name: "Horribly Small",
  4775. height: math.unit(47.7, "miles"),
  4776. default: true
  4777. },
  4778. {
  4779. name: "Reasonably Sized",
  4780. height: math.unit(25000, "parsecs")
  4781. },
  4782. {
  4783. name: "Slightly Uncompressed",
  4784. height: math.unit(7.77e31, "parsecs")
  4785. },
  4786. {
  4787. name: "Omniversal",
  4788. height: math.unit(1e300, "meters")
  4789. },
  4790. ]
  4791. ))
  4792. characterMakers.push(() => makeCharacter(
  4793. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4794. {
  4795. front: {
  4796. height: math.unit(2, "meter"),
  4797. weight: math.unit(75, "lb"),
  4798. name: "Front",
  4799. image: {
  4800. source: "./media/characters/napalm/front.svg"
  4801. }
  4802. },
  4803. back: {
  4804. height: math.unit(2, "meter"),
  4805. weight: math.unit(75, "lb"),
  4806. name: "Back",
  4807. image: {
  4808. source: "./media/characters/napalm/back.svg"
  4809. }
  4810. }
  4811. },
  4812. [
  4813. {
  4814. name: "Standard",
  4815. height: math.unit(55, "feet"),
  4816. default: true
  4817. }
  4818. ]
  4819. ))
  4820. characterMakers.push(() => makeCharacter(
  4821. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4822. {
  4823. front: {
  4824. height: math.unit(7 + 5 / 6, "feet"),
  4825. weight: math.unit(325, "lb"),
  4826. name: "Front",
  4827. image: {
  4828. source: "./media/characters/asana/front.svg",
  4829. extra: 1133 / 1060,
  4830. bottom: 15.2 / 1148.6
  4831. }
  4832. },
  4833. back: {
  4834. height: math.unit(7 + 5 / 6, "feet"),
  4835. weight: math.unit(325, "lb"),
  4836. name: "Back",
  4837. image: {
  4838. source: "./media/characters/asana/back.svg",
  4839. extra: 1114 / 1043,
  4840. bottom: 5 / 1120
  4841. }
  4842. },
  4843. dressedDark: {
  4844. height: math.unit(7 + 5 / 6, "feet"),
  4845. weight: math.unit(325, "lb"),
  4846. name: "Dressed (Dark)",
  4847. image: {
  4848. source: "./media/characters/asana/dressed-dark.svg",
  4849. extra: 1133 / 1060,
  4850. bottom: 15.2 / 1148.6
  4851. }
  4852. },
  4853. dressedLight: {
  4854. height: math.unit(7 + 5 / 6, "feet"),
  4855. weight: math.unit(325, "lb"),
  4856. name: "Dressed (Light)",
  4857. image: {
  4858. source: "./media/characters/asana/dressed-light.svg",
  4859. extra: 1133 / 1060,
  4860. bottom: 15.2 / 1148.6
  4861. }
  4862. },
  4863. },
  4864. [
  4865. {
  4866. name: "Standard",
  4867. height: math.unit(7 + 5 / 6, "feet"),
  4868. default: true
  4869. },
  4870. {
  4871. name: "Large",
  4872. height: math.unit(10, "meters")
  4873. },
  4874. {
  4875. name: "Macro",
  4876. height: math.unit(2500, "meters")
  4877. },
  4878. {
  4879. name: "Megamacro",
  4880. height: math.unit(5e6, "meters")
  4881. },
  4882. {
  4883. name: "Examacro",
  4884. height: math.unit(5e12, "lightyears")
  4885. },
  4886. {
  4887. name: "Max Size",
  4888. height: math.unit(1e31, "lightyears")
  4889. }
  4890. ]
  4891. ))
  4892. characterMakers.push(() => makeCharacter(
  4893. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4894. {
  4895. front: {
  4896. height: math.unit(2, "meter"),
  4897. weight: math.unit(60, "kg"),
  4898. name: "Front",
  4899. image: {
  4900. source: "./media/characters/ebony/front.svg",
  4901. bottom: 0.03,
  4902. extra: 1045 / 810 + 0.03
  4903. }
  4904. },
  4905. side: {
  4906. height: math.unit(2, "meter"),
  4907. weight: math.unit(60, "kg"),
  4908. name: "Side",
  4909. image: {
  4910. source: "./media/characters/ebony/side.svg",
  4911. bottom: 0.03,
  4912. extra: 1045 / 810 + 0.03
  4913. }
  4914. },
  4915. back: {
  4916. height: math.unit(2, "meter"),
  4917. weight: math.unit(60, "kg"),
  4918. name: "Back",
  4919. image: {
  4920. source: "./media/characters/ebony/back.svg",
  4921. bottom: 0.01,
  4922. extra: 1045 / 810 + 0.01
  4923. }
  4924. },
  4925. },
  4926. [
  4927. // TODO check why I did this lol
  4928. {
  4929. name: "Standard",
  4930. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4931. default: true
  4932. },
  4933. {
  4934. name: "Macro",
  4935. height: math.unit(200, "feet")
  4936. },
  4937. {
  4938. name: "Gigamacro",
  4939. height: math.unit(13000, "km")
  4940. }
  4941. ]
  4942. ))
  4943. characterMakers.push(() => makeCharacter(
  4944. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4945. {
  4946. front: {
  4947. height: math.unit(6, "feet"),
  4948. weight: math.unit(175, "lb"),
  4949. name: "Front",
  4950. image: {
  4951. source: "./media/characters/mountain/front.svg",
  4952. extra: 972 / 955,
  4953. bottom: 64 / 1036.6
  4954. }
  4955. },
  4956. back: {
  4957. height: math.unit(6, "feet"),
  4958. weight: math.unit(175, "lb"),
  4959. name: "Back",
  4960. image: {
  4961. source: "./media/characters/mountain/back.svg",
  4962. extra: 970 / 950,
  4963. bottom: 28.25 / 999
  4964. }
  4965. },
  4966. },
  4967. [
  4968. {
  4969. name: "Large",
  4970. height: math.unit(20, "meters")
  4971. },
  4972. {
  4973. name: "Macro",
  4974. height: math.unit(300, "meters")
  4975. },
  4976. {
  4977. name: "Gigamacro",
  4978. height: math.unit(10000, "km"),
  4979. default: true
  4980. },
  4981. {
  4982. name: "Examacro",
  4983. height: math.unit(10e9, "lightyears")
  4984. }
  4985. ]
  4986. ))
  4987. characterMakers.push(() => makeCharacter(
  4988. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4989. {
  4990. front: {
  4991. height: math.unit(8, "feet"),
  4992. weight: math.unit(500, "lb"),
  4993. name: "Front",
  4994. image: {
  4995. source: "./media/characters/rick/front.svg"
  4996. }
  4997. }
  4998. },
  4999. [
  5000. {
  5001. name: "Normal",
  5002. height: math.unit(8, "feet"),
  5003. default: true
  5004. },
  5005. {
  5006. name: "Macro",
  5007. height: math.unit(5, "km")
  5008. }
  5009. ]
  5010. ))
  5011. characterMakers.push(() => makeCharacter(
  5012. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  5013. {
  5014. front: {
  5015. height: math.unit(8, "feet"),
  5016. weight: math.unit(120, "lb"),
  5017. name: "Front",
  5018. image: {
  5019. source: "./media/characters/ona/front.svg"
  5020. }
  5021. },
  5022. frontAlt: {
  5023. height: math.unit(8, "feet"),
  5024. weight: math.unit(120, "lb"),
  5025. name: "Front (Alt)",
  5026. image: {
  5027. source: "./media/characters/ona/front-alt.svg"
  5028. }
  5029. },
  5030. back: {
  5031. height: math.unit(8, "feet"),
  5032. weight: math.unit(120, "lb"),
  5033. name: "Back",
  5034. image: {
  5035. source: "./media/characters/ona/back.svg"
  5036. }
  5037. },
  5038. foot: {
  5039. height: math.unit(1.1, "feet"),
  5040. name: "Foot",
  5041. image: {
  5042. source: "./media/characters/ona/foot.svg"
  5043. }
  5044. }
  5045. },
  5046. [
  5047. {
  5048. name: "Megamacro",
  5049. height: math.unit(70, "km"),
  5050. default: true
  5051. },
  5052. {
  5053. name: "Gigamacro",
  5054. height: math.unit(681818, "miles")
  5055. },
  5056. {
  5057. name: "Examacro",
  5058. height: math.unit(3800000, "lightyears")
  5059. },
  5060. ]
  5061. ))
  5062. characterMakers.push(() => makeCharacter(
  5063. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  5064. {
  5065. front: {
  5066. height: math.unit(12, "feet"),
  5067. weight: math.unit(3000, "lb"),
  5068. name: "Front",
  5069. image: {
  5070. source: "./media/characters/mech/front.svg",
  5071. extra: 2900 / 2770,
  5072. bottom: 110 / 3010
  5073. }
  5074. },
  5075. back: {
  5076. height: math.unit(12, "feet"),
  5077. weight: math.unit(3000, "lb"),
  5078. name: "Back",
  5079. image: {
  5080. source: "./media/characters/mech/back.svg",
  5081. extra: 3011 / 2890,
  5082. bottom: 94 / 3105
  5083. }
  5084. },
  5085. maw: {
  5086. height: math.unit(3.07, "feet"),
  5087. name: "Maw",
  5088. image: {
  5089. source: "./media/characters/mech/maw.svg"
  5090. }
  5091. },
  5092. head: {
  5093. height: math.unit(3.07, "feet"),
  5094. name: "Head",
  5095. image: {
  5096. source: "./media/characters/mech/head.svg"
  5097. }
  5098. },
  5099. dick: {
  5100. height: math.unit(1.43, "feet"),
  5101. name: "Dick",
  5102. image: {
  5103. source: "./media/characters/mech/dick.svg"
  5104. }
  5105. },
  5106. },
  5107. [
  5108. {
  5109. name: "Normal",
  5110. height: math.unit(12, "feet")
  5111. },
  5112. {
  5113. name: "Macro",
  5114. height: math.unit(300, "feet"),
  5115. default: true
  5116. },
  5117. {
  5118. name: "Macro+",
  5119. height: math.unit(1500, "feet")
  5120. },
  5121. ]
  5122. ))
  5123. characterMakers.push(() => makeCharacter(
  5124. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5125. {
  5126. front: {
  5127. height: math.unit(1.3, "meter"),
  5128. weight: math.unit(30, "kg"),
  5129. name: "Front",
  5130. image: {
  5131. source: "./media/characters/gregory/front.svg",
  5132. }
  5133. }
  5134. },
  5135. [
  5136. {
  5137. name: "Normal",
  5138. height: math.unit(1.3, "meter"),
  5139. default: true
  5140. },
  5141. {
  5142. name: "Macro",
  5143. height: math.unit(20, "meter")
  5144. }
  5145. ]
  5146. ))
  5147. characterMakers.push(() => makeCharacter(
  5148. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5149. {
  5150. front: {
  5151. height: math.unit(2.8, "meter"),
  5152. weight: math.unit(200, "kg"),
  5153. name: "Front",
  5154. image: {
  5155. source: "./media/characters/elory/front.svg",
  5156. }
  5157. }
  5158. },
  5159. [
  5160. {
  5161. name: "Normal",
  5162. height: math.unit(2.8, "meter"),
  5163. default: true
  5164. },
  5165. {
  5166. name: "Macro",
  5167. height: math.unit(38, "meter")
  5168. }
  5169. ]
  5170. ))
  5171. characterMakers.push(() => makeCharacter(
  5172. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5173. {
  5174. front: {
  5175. height: math.unit(470, "feet"),
  5176. weight: math.unit(924, "tons"),
  5177. name: "Front",
  5178. image: {
  5179. source: "./media/characters/angelpatamon/front.svg",
  5180. }
  5181. }
  5182. },
  5183. [
  5184. {
  5185. name: "Normal",
  5186. height: math.unit(470, "feet"),
  5187. default: true
  5188. },
  5189. {
  5190. name: "Deity Size I",
  5191. height: math.unit(28651.2, "km")
  5192. },
  5193. {
  5194. name: "Deity Size II",
  5195. height: math.unit(171907.2, "km")
  5196. }
  5197. ]
  5198. ))
  5199. characterMakers.push(() => makeCharacter(
  5200. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5201. {
  5202. side: {
  5203. height: math.unit(7.2, "meter"),
  5204. weight: math.unit(8.2, "tons"),
  5205. name: "Side",
  5206. image: {
  5207. source: "./media/characters/cryae/side.svg",
  5208. extra: 3500 / 1500
  5209. }
  5210. }
  5211. },
  5212. [
  5213. {
  5214. name: "Normal",
  5215. height: math.unit(7.2, "meter"),
  5216. default: true
  5217. }
  5218. ]
  5219. ))
  5220. characterMakers.push(() => makeCharacter(
  5221. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5222. {
  5223. front: {
  5224. height: math.unit(6, "feet"),
  5225. weight: math.unit(175, "lb"),
  5226. name: "Front",
  5227. image: {
  5228. source: "./media/characters/xera/front.svg",
  5229. extra: 2377 / 1972,
  5230. bottom: 75.5 / 2452
  5231. }
  5232. },
  5233. side: {
  5234. height: math.unit(6, "feet"),
  5235. weight: math.unit(175, "lb"),
  5236. name: "Side",
  5237. image: {
  5238. source: "./media/characters/xera/side.svg",
  5239. extra: 2345 / 2019,
  5240. bottom: 39.7 / 2384
  5241. }
  5242. },
  5243. back: {
  5244. height: math.unit(6, "feet"),
  5245. weight: math.unit(175, "lb"),
  5246. name: "Back",
  5247. image: {
  5248. source: "./media/characters/xera/back.svg",
  5249. extra: 2095 / 1984,
  5250. bottom: 67 / 2166
  5251. }
  5252. },
  5253. },
  5254. [
  5255. {
  5256. name: "Small",
  5257. height: math.unit(10, "feet")
  5258. },
  5259. {
  5260. name: "Macro",
  5261. height: math.unit(500, "meters"),
  5262. default: true
  5263. },
  5264. {
  5265. name: "Macro+",
  5266. height: math.unit(10, "km")
  5267. },
  5268. {
  5269. name: "Gigamacro",
  5270. height: math.unit(25000, "km")
  5271. },
  5272. {
  5273. name: "Teramacro",
  5274. height: math.unit(3e6, "km")
  5275. }
  5276. ]
  5277. ))
  5278. characterMakers.push(() => makeCharacter(
  5279. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5280. {
  5281. front: {
  5282. height: math.unit(6, "feet"),
  5283. weight: math.unit(175, "lb"),
  5284. name: "Front",
  5285. image: {
  5286. source: "./media/characters/nebula/front.svg",
  5287. extra: 2566 / 2362,
  5288. bottom: 81 / 2644
  5289. }
  5290. }
  5291. },
  5292. [
  5293. {
  5294. name: "Small",
  5295. height: math.unit(4.5, "meters")
  5296. },
  5297. {
  5298. name: "Macro",
  5299. height: math.unit(1500, "meters"),
  5300. default: true
  5301. },
  5302. {
  5303. name: "Megamacro",
  5304. height: math.unit(150, "km")
  5305. },
  5306. {
  5307. name: "Gigamacro",
  5308. height: math.unit(27000, "km")
  5309. }
  5310. ]
  5311. ))
  5312. characterMakers.push(() => makeCharacter(
  5313. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5314. {
  5315. front: {
  5316. height: math.unit(6, "feet"),
  5317. weight: math.unit(225, "lb"),
  5318. name: "Front",
  5319. image: {
  5320. source: "./media/characters/abysgar/front.svg",
  5321. extra: 1739/1614,
  5322. bottom: 71/1810
  5323. }
  5324. },
  5325. frontNsfw: {
  5326. height: math.unit(6, "feet"),
  5327. weight: math.unit(225, "lb"),
  5328. name: "Front (NSFW)",
  5329. image: {
  5330. source: "./media/characters/abysgar/front-nsfw.svg",
  5331. extra: 1739/1614,
  5332. bottom: 71/1810
  5333. }
  5334. },
  5335. back: {
  5336. height: math.unit(4.6, "feet"),
  5337. weight: math.unit(225, "lb"),
  5338. name: "Back",
  5339. image: {
  5340. source: "./media/characters/abysgar/back.svg",
  5341. extra: 1384/1327,
  5342. bottom: 0/1384
  5343. }
  5344. },
  5345. head: {
  5346. height: math.unit(1.25, "feet"),
  5347. name: "Head",
  5348. image: {
  5349. source: "./media/characters/abysgar/head.svg",
  5350. extra: 669/569,
  5351. bottom: 0/669
  5352. }
  5353. },
  5354. },
  5355. [
  5356. {
  5357. name: "Small",
  5358. height: math.unit(4.5, "meters")
  5359. },
  5360. {
  5361. name: "Macro",
  5362. height: math.unit(1250, "meters"),
  5363. default: true
  5364. },
  5365. {
  5366. name: "Megamacro",
  5367. height: math.unit(125, "km")
  5368. },
  5369. {
  5370. name: "Gigamacro",
  5371. height: math.unit(26000, "km")
  5372. }
  5373. ]
  5374. ))
  5375. characterMakers.push(() => makeCharacter(
  5376. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5377. {
  5378. front: {
  5379. height: math.unit(6, "feet"),
  5380. weight: math.unit(180, "lb"),
  5381. name: "Front",
  5382. image: {
  5383. source: "./media/characters/yakuz/front.svg"
  5384. }
  5385. }
  5386. },
  5387. [
  5388. {
  5389. name: "Small",
  5390. height: math.unit(5, "meters")
  5391. },
  5392. {
  5393. name: "Macro",
  5394. height: math.unit(1500, "meters"),
  5395. default: true
  5396. },
  5397. {
  5398. name: "Megamacro",
  5399. height: math.unit(200, "km")
  5400. },
  5401. {
  5402. name: "Gigamacro",
  5403. height: math.unit(100000, "km")
  5404. }
  5405. ]
  5406. ))
  5407. characterMakers.push(() => makeCharacter(
  5408. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5409. {
  5410. front: {
  5411. height: math.unit(6, "feet"),
  5412. weight: math.unit(175, "lb"),
  5413. name: "Front",
  5414. image: {
  5415. source: "./media/characters/mirova/front.svg",
  5416. extra: 3334 / 3071,
  5417. bottom: 42 / 3375.6
  5418. }
  5419. }
  5420. },
  5421. [
  5422. {
  5423. name: "Small",
  5424. height: math.unit(5, "meters")
  5425. },
  5426. {
  5427. name: "Macro",
  5428. height: math.unit(900, "meters"),
  5429. default: true
  5430. },
  5431. {
  5432. name: "Megamacro",
  5433. height: math.unit(135, "km")
  5434. },
  5435. {
  5436. name: "Gigamacro",
  5437. height: math.unit(20000, "km")
  5438. }
  5439. ]
  5440. ))
  5441. characterMakers.push(() => makeCharacter(
  5442. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5443. {
  5444. side: {
  5445. height: math.unit(28.35, "feet"),
  5446. weight: math.unit(99.75, "tons"),
  5447. name: "Side",
  5448. image: {
  5449. source: "./media/characters/asana-mech/side.svg",
  5450. extra: 923 / 699,
  5451. bottom: 50 / 975
  5452. }
  5453. },
  5454. chaingun: {
  5455. height: math.unit(7, "feet"),
  5456. weight: math.unit(2400, "lb"),
  5457. name: "Chaingun",
  5458. image: {
  5459. source: "./media/characters/asana-mech/chaingun.svg"
  5460. }
  5461. },
  5462. laser: {
  5463. height: math.unit(7.12, "feet"),
  5464. weight: math.unit(2000, "lb"),
  5465. name: "Laser",
  5466. image: {
  5467. source: "./media/characters/asana-mech/laser.svg"
  5468. }
  5469. },
  5470. },
  5471. [
  5472. {
  5473. name: "Normal",
  5474. height: math.unit(28.35, "feet"),
  5475. default: true
  5476. },
  5477. {
  5478. name: "Macro",
  5479. height: math.unit(2500, "feet")
  5480. },
  5481. {
  5482. name: "Megamacro",
  5483. height: math.unit(25, "miles")
  5484. },
  5485. {
  5486. name: "Examacro",
  5487. height: math.unit(6e8, "lightyears")
  5488. },
  5489. ]
  5490. ))
  5491. characterMakers.push(() => makeCharacter(
  5492. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5493. {
  5494. front: {
  5495. height: math.unit(5, "meters"),
  5496. weight: math.unit(1000, "kg"),
  5497. name: "Front",
  5498. image: {
  5499. source: "./media/characters/asche/front.svg",
  5500. extra: 1258 / 1190,
  5501. bottom: 47 / 1305
  5502. }
  5503. },
  5504. frontUnderwear: {
  5505. height: math.unit(5, "meters"),
  5506. weight: math.unit(1000, "kg"),
  5507. name: "Front (Underwear)",
  5508. image: {
  5509. source: "./media/characters/asche/front-underwear.svg",
  5510. extra: 1258 / 1190,
  5511. bottom: 47 / 1305
  5512. }
  5513. },
  5514. frontDressed: {
  5515. height: math.unit(5, "meters"),
  5516. weight: math.unit(1000, "kg"),
  5517. name: "Front (Dressed)",
  5518. image: {
  5519. source: "./media/characters/asche/front-dressed.svg",
  5520. extra: 1258 / 1190,
  5521. bottom: 47 / 1305
  5522. }
  5523. },
  5524. frontArmor: {
  5525. height: math.unit(5, "meters"),
  5526. weight: math.unit(1000, "kg"),
  5527. name: "Front (Armored)",
  5528. image: {
  5529. source: "./media/characters/asche/front-armored.svg",
  5530. extra: 1374 / 1308,
  5531. bottom: 23 / 1397
  5532. }
  5533. },
  5534. mp724: {
  5535. height: math.unit(0.96, "meters"),
  5536. weight: math.unit(38, "kg"),
  5537. name: "H&K MP724",
  5538. image: {
  5539. source: "./media/characters/asche/h&k-mp724.svg"
  5540. }
  5541. },
  5542. side: {
  5543. height: math.unit(5, "meters"),
  5544. weight: math.unit(1000, "kg"),
  5545. name: "Side",
  5546. image: {
  5547. source: "./media/characters/asche/side.svg",
  5548. extra: 1717 / 1609,
  5549. bottom: 0.005
  5550. }
  5551. },
  5552. back: {
  5553. height: math.unit(5, "meters"),
  5554. weight: math.unit(1000, "kg"),
  5555. name: "Back",
  5556. image: {
  5557. source: "./media/characters/asche/back.svg",
  5558. extra: 1570 / 1501
  5559. }
  5560. },
  5561. },
  5562. [
  5563. {
  5564. name: "DEFCON 5",
  5565. height: math.unit(5, "meters")
  5566. },
  5567. {
  5568. name: "DEFCON 4",
  5569. height: math.unit(500, "meters"),
  5570. default: true
  5571. },
  5572. {
  5573. name: "DEFCON 3",
  5574. height: math.unit(5, "km")
  5575. },
  5576. {
  5577. name: "DEFCON 2",
  5578. height: math.unit(500, "km")
  5579. },
  5580. {
  5581. name: "DEFCON 1",
  5582. height: math.unit(500000, "km")
  5583. },
  5584. {
  5585. name: "DEFCON 0",
  5586. height: math.unit(3, "gigaparsecs")
  5587. },
  5588. ]
  5589. ))
  5590. characterMakers.push(() => makeCharacter(
  5591. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5592. {
  5593. front: {
  5594. height: math.unit(7, "feet"),
  5595. weight: math.unit(92.7, "kg"),
  5596. name: "Front",
  5597. image: {
  5598. source: "./media/characters/gale/front.svg",
  5599. extra: 977/919,
  5600. bottom: 105/1082
  5601. }
  5602. },
  5603. side: {
  5604. height: math.unit(6.7, "feet"),
  5605. weight: math.unit(92.7, "kg"),
  5606. name: "Side",
  5607. image: {
  5608. source: "./media/characters/gale/side.svg",
  5609. extra: 978/922,
  5610. bottom: 140/1118
  5611. }
  5612. },
  5613. back: {
  5614. height: math.unit(7, "feet"),
  5615. weight: math.unit(92.7, "kg"),
  5616. name: "Back",
  5617. image: {
  5618. source: "./media/characters/gale/back.svg",
  5619. extra: 966/920,
  5620. bottom: 61/1027
  5621. }
  5622. },
  5623. maw: {
  5624. height: math.unit(2.23, "feet"),
  5625. name: "Maw",
  5626. image: {
  5627. source: "./media/characters/gale/maw.svg"
  5628. }
  5629. },
  5630. foot: {
  5631. height: math.unit(2.1, "feet"),
  5632. name: "Foot",
  5633. image: {
  5634. source: "./media/characters/gale/foot.svg"
  5635. }
  5636. },
  5637. },
  5638. [
  5639. {
  5640. name: "Normal",
  5641. height: math.unit(7, "feet")
  5642. },
  5643. {
  5644. name: "Macro",
  5645. height: math.unit(150, "feet"),
  5646. default: true
  5647. },
  5648. {
  5649. name: "Macro+",
  5650. height: math.unit(300, "feet")
  5651. },
  5652. ]
  5653. ))
  5654. characterMakers.push(() => makeCharacter(
  5655. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5656. {
  5657. front: {
  5658. height: math.unit(5 + 10/12, "feet"),
  5659. weight: math.unit(67, "kg"),
  5660. name: "Front",
  5661. image: {
  5662. source: "./media/characters/draylen/front.svg",
  5663. extra: 832/777,
  5664. bottom: 85/917
  5665. }
  5666. }
  5667. },
  5668. [
  5669. {
  5670. name: "Normal",
  5671. height: math.unit(5 + 10/12, "feet")
  5672. },
  5673. {
  5674. name: "Macro",
  5675. height: math.unit(150, "feet"),
  5676. default: true
  5677. }
  5678. ]
  5679. ))
  5680. characterMakers.push(() => makeCharacter(
  5681. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5682. {
  5683. front: {
  5684. height: math.unit(7 + 9 / 12, "feet"),
  5685. weight: math.unit(379, "lbs"),
  5686. name: "Front",
  5687. image: {
  5688. source: "./media/characters/chez/front.svg"
  5689. }
  5690. },
  5691. side: {
  5692. height: math.unit(7 + 9 / 12, "feet"),
  5693. weight: math.unit(379, "lbs"),
  5694. name: "Side",
  5695. image: {
  5696. source: "./media/characters/chez/side.svg"
  5697. }
  5698. }
  5699. },
  5700. [
  5701. {
  5702. name: "Normal",
  5703. height: math.unit(7 + 9 / 12, "feet"),
  5704. default: true
  5705. },
  5706. {
  5707. name: "God King",
  5708. height: math.unit(9750000, "meters")
  5709. }
  5710. ]
  5711. ))
  5712. characterMakers.push(() => makeCharacter(
  5713. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5714. {
  5715. front: {
  5716. height: math.unit(6, "feet"),
  5717. weight: math.unit(275, "lbs"),
  5718. name: "Front",
  5719. image: {
  5720. source: "./media/characters/kaylum/front.svg",
  5721. bottom: 0.01,
  5722. extra: 1166 / 1031
  5723. }
  5724. },
  5725. frontWingless: {
  5726. height: math.unit(6, "feet"),
  5727. weight: math.unit(275, "lbs"),
  5728. name: "Front (Wingless)",
  5729. image: {
  5730. source: "./media/characters/kaylum/front-wingless.svg",
  5731. bottom: 0.01,
  5732. extra: 1117 / 1031
  5733. }
  5734. }
  5735. },
  5736. [
  5737. {
  5738. name: "Normal",
  5739. height: math.unit(3.05, "meters")
  5740. },
  5741. {
  5742. name: "Master",
  5743. height: math.unit(5.5, "meters")
  5744. },
  5745. {
  5746. name: "Rampage",
  5747. height: math.unit(19, "meters")
  5748. },
  5749. {
  5750. name: "Macro Lite",
  5751. height: math.unit(37, "meters")
  5752. },
  5753. {
  5754. name: "Hyper Predator",
  5755. height: math.unit(61, "meters")
  5756. },
  5757. {
  5758. name: "Macro",
  5759. height: math.unit(138, "meters"),
  5760. default: true
  5761. }
  5762. ]
  5763. ))
  5764. characterMakers.push(() => makeCharacter(
  5765. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5766. {
  5767. front: {
  5768. height: math.unit(5 + 5 / 12, "feet"),
  5769. weight: math.unit(120, "lbs"),
  5770. name: "Front",
  5771. image: {
  5772. source: "./media/characters/geta/front.svg",
  5773. extra: 1003/933,
  5774. bottom: 21/1024
  5775. }
  5776. },
  5777. paw: {
  5778. height: math.unit(0.35, "feet"),
  5779. name: "Paw",
  5780. image: {
  5781. source: "./media/characters/geta/paw.svg"
  5782. }
  5783. },
  5784. },
  5785. [
  5786. {
  5787. name: "Micro",
  5788. height: math.unit(3, "inches"),
  5789. default: true
  5790. },
  5791. {
  5792. name: "Normal",
  5793. height: math.unit(5 + 5 / 12, "feet")
  5794. }
  5795. ]
  5796. ))
  5797. characterMakers.push(() => makeCharacter(
  5798. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5799. {
  5800. front: {
  5801. height: math.unit(6, "feet"),
  5802. weight: math.unit(300, "lbs"),
  5803. name: "Front",
  5804. image: {
  5805. source: "./media/characters/tyrnn/front.svg"
  5806. }
  5807. }
  5808. },
  5809. [
  5810. {
  5811. name: "Main Height",
  5812. height: math.unit(355, "feet"),
  5813. default: true
  5814. },
  5815. {
  5816. name: "Fave. Height",
  5817. height: math.unit(2400, "feet")
  5818. }
  5819. ]
  5820. ))
  5821. characterMakers.push(() => makeCharacter(
  5822. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5823. {
  5824. front: {
  5825. height: math.unit(6, "feet"),
  5826. weight: math.unit(300, "lbs"),
  5827. name: "Front",
  5828. image: {
  5829. source: "./media/characters/appledectomy/front.svg"
  5830. }
  5831. }
  5832. },
  5833. [
  5834. {
  5835. name: "Macro",
  5836. height: math.unit(2500, "feet")
  5837. },
  5838. {
  5839. name: "Megamacro",
  5840. height: math.unit(50, "miles"),
  5841. default: true
  5842. },
  5843. {
  5844. name: "Gigamacro",
  5845. height: math.unit(5000, "miles")
  5846. },
  5847. {
  5848. name: "Teramacro",
  5849. height: math.unit(250000, "miles")
  5850. },
  5851. ]
  5852. ))
  5853. characterMakers.push(() => makeCharacter(
  5854. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5855. {
  5856. front: {
  5857. height: math.unit(6, "feet"),
  5858. weight: math.unit(200, "lbs"),
  5859. name: "Front",
  5860. image: {
  5861. source: "./media/characters/vulpes/front.svg",
  5862. extra: 573 / 543,
  5863. bottom: 0.033
  5864. }
  5865. },
  5866. side: {
  5867. height: math.unit(6, "feet"),
  5868. weight: math.unit(200, "lbs"),
  5869. name: "Side",
  5870. image: {
  5871. source: "./media/characters/vulpes/side.svg",
  5872. extra: 577 / 549,
  5873. bottom: 11 / 588
  5874. }
  5875. },
  5876. back: {
  5877. height: math.unit(6, "feet"),
  5878. weight: math.unit(200, "lbs"),
  5879. name: "Back",
  5880. image: {
  5881. source: "./media/characters/vulpes/back.svg",
  5882. extra: 573 / 549,
  5883. bottom: 20 / 593
  5884. }
  5885. },
  5886. feet: {
  5887. height: math.unit(1.276, "feet"),
  5888. name: "Feet",
  5889. image: {
  5890. source: "./media/characters/vulpes/feet.svg"
  5891. }
  5892. },
  5893. maw: {
  5894. height: math.unit(1.18, "feet"),
  5895. name: "Maw",
  5896. image: {
  5897. source: "./media/characters/vulpes/maw.svg"
  5898. }
  5899. },
  5900. },
  5901. [
  5902. {
  5903. name: "Micro",
  5904. height: math.unit(2, "inches")
  5905. },
  5906. {
  5907. name: "Normal",
  5908. height: math.unit(6.3, "feet")
  5909. },
  5910. {
  5911. name: "Macro",
  5912. height: math.unit(850, "feet")
  5913. },
  5914. {
  5915. name: "Megamacro",
  5916. height: math.unit(7500, "feet"),
  5917. default: true
  5918. },
  5919. {
  5920. name: "Gigamacro",
  5921. height: math.unit(570000, "miles")
  5922. }
  5923. ]
  5924. ))
  5925. characterMakers.push(() => makeCharacter(
  5926. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5927. {
  5928. front: {
  5929. height: math.unit(6, "feet"),
  5930. weight: math.unit(210, "lbs"),
  5931. name: "Front",
  5932. image: {
  5933. source: "./media/characters/rain-fallen/front.svg"
  5934. }
  5935. },
  5936. side: {
  5937. height: math.unit(6, "feet"),
  5938. weight: math.unit(210, "lbs"),
  5939. name: "Side",
  5940. image: {
  5941. source: "./media/characters/rain-fallen/side.svg"
  5942. }
  5943. },
  5944. back: {
  5945. height: math.unit(6, "feet"),
  5946. weight: math.unit(210, "lbs"),
  5947. name: "Back",
  5948. image: {
  5949. source: "./media/characters/rain-fallen/back.svg"
  5950. }
  5951. },
  5952. feral: {
  5953. height: math.unit(9, "feet"),
  5954. weight: math.unit(700, "lbs"),
  5955. name: "Feral",
  5956. image: {
  5957. source: "./media/characters/rain-fallen/feral.svg"
  5958. }
  5959. },
  5960. },
  5961. [
  5962. {
  5963. name: "Meddling with Mortals",
  5964. height: math.unit(8 + 8/12, "feet")
  5965. },
  5966. {
  5967. name: "Normal",
  5968. height: math.unit(5, "meter")
  5969. },
  5970. {
  5971. name: "Macro",
  5972. height: math.unit(150, "meter"),
  5973. default: true
  5974. },
  5975. {
  5976. name: "Megamacro",
  5977. height: math.unit(278e6, "meter")
  5978. },
  5979. {
  5980. name: "Gigamacro",
  5981. height: math.unit(2e9, "meter")
  5982. },
  5983. {
  5984. name: "Teramacro",
  5985. height: math.unit(8e12, "meter")
  5986. },
  5987. {
  5988. name: "Devourer",
  5989. height: math.unit(14, "zettameters")
  5990. },
  5991. {
  5992. name: "Scarlet King",
  5993. height: math.unit(18, "yottameters")
  5994. },
  5995. {
  5996. name: "Void",
  5997. height: math.unit(1e88, "yottameters")
  5998. }
  5999. ]
  6000. ))
  6001. characterMakers.push(() => makeCharacter(
  6002. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  6003. {
  6004. standing: {
  6005. height: math.unit(6, "feet"),
  6006. weight: math.unit(180, "lbs"),
  6007. name: "Standing",
  6008. image: {
  6009. source: "./media/characters/zaakira/standing.svg",
  6010. extra: 1599/1504,
  6011. bottom: 39/1638
  6012. }
  6013. },
  6014. laying: {
  6015. height: math.unit(3.3, "feet"),
  6016. weight: math.unit(180, "lbs"),
  6017. name: "Laying",
  6018. image: {
  6019. source: "./media/characters/zaakira/laying.svg"
  6020. }
  6021. },
  6022. },
  6023. [
  6024. {
  6025. name: "Normal",
  6026. height: math.unit(12, "feet")
  6027. },
  6028. {
  6029. name: "Macro",
  6030. height: math.unit(279, "feet"),
  6031. default: true
  6032. }
  6033. ]
  6034. ))
  6035. characterMakers.push(() => makeCharacter(
  6036. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  6037. {
  6038. femSfw: {
  6039. height: math.unit(8, "feet"),
  6040. weight: math.unit(350, "lb"),
  6041. name: "Fem",
  6042. image: {
  6043. source: "./media/characters/sigvald/fem-sfw.svg",
  6044. extra: 182 / 164,
  6045. bottom: 8.7 / 190.5
  6046. }
  6047. },
  6048. femNsfw: {
  6049. height: math.unit(8, "feet"),
  6050. weight: math.unit(350, "lb"),
  6051. name: "Fem (NSFW)",
  6052. image: {
  6053. source: "./media/characters/sigvald/fem-nsfw.svg",
  6054. extra: 182 / 164,
  6055. bottom: 8.7 / 190.5
  6056. }
  6057. },
  6058. maleNsfw: {
  6059. height: math.unit(8, "feet"),
  6060. weight: math.unit(350, "lb"),
  6061. name: "Male (NSFW)",
  6062. image: {
  6063. source: "./media/characters/sigvald/male-nsfw.svg",
  6064. extra: 182 / 164,
  6065. bottom: 8.7 / 190.5
  6066. }
  6067. },
  6068. hermNsfw: {
  6069. height: math.unit(8, "feet"),
  6070. weight: math.unit(350, "lb"),
  6071. name: "Herm (NSFW)",
  6072. image: {
  6073. source: "./media/characters/sigvald/herm-nsfw.svg",
  6074. extra: 182 / 164,
  6075. bottom: 8.7 / 190.5
  6076. }
  6077. },
  6078. dick: {
  6079. height: math.unit(2.36, "feet"),
  6080. name: "Dick",
  6081. image: {
  6082. source: "./media/characters/sigvald/dick.svg"
  6083. }
  6084. },
  6085. eye: {
  6086. height: math.unit(0.31, "feet"),
  6087. name: "Eye",
  6088. image: {
  6089. source: "./media/characters/sigvald/eye.svg"
  6090. }
  6091. },
  6092. mouth: {
  6093. height: math.unit(0.92, "feet"),
  6094. name: "Mouth",
  6095. image: {
  6096. source: "./media/characters/sigvald/mouth.svg"
  6097. }
  6098. },
  6099. paws: {
  6100. height: math.unit(2.2, "feet"),
  6101. name: "Paws",
  6102. image: {
  6103. source: "./media/characters/sigvald/paws.svg"
  6104. }
  6105. }
  6106. },
  6107. [
  6108. {
  6109. name: "Normal",
  6110. height: math.unit(8, "feet")
  6111. },
  6112. {
  6113. name: "Large",
  6114. height: math.unit(12, "feet")
  6115. },
  6116. {
  6117. name: "Larger",
  6118. height: math.unit(20, "feet")
  6119. },
  6120. {
  6121. name: "Macro",
  6122. height: math.unit(150, "feet")
  6123. },
  6124. {
  6125. name: "Macro+",
  6126. height: math.unit(200, "feet"),
  6127. default: true
  6128. },
  6129. ]
  6130. ))
  6131. characterMakers.push(() => makeCharacter(
  6132. { name: "Scott", species: ["fox"], tags: ["anthro", "taur"] },
  6133. {
  6134. anthro_front: {
  6135. height: math.unit(5 + 11/12, "feet"),
  6136. weight: math.unit(250, "lb"),
  6137. name: "Front",
  6138. image: {
  6139. source: "./media/characters/scott/anthro-front.svg",
  6140. extra: 851/781,
  6141. bottom: 54/905
  6142. },
  6143. form: "anthro",
  6144. default: true
  6145. },
  6146. anthro_side: {
  6147. height: math.unit(5.1, "feet"),
  6148. weight: math.unit(250, "lb"),
  6149. name: "Side",
  6150. image: {
  6151. source: "./media/characters/scott/anthro-side.svg"
  6152. },
  6153. form: "anthro",
  6154. },
  6155. anthro_dick: {
  6156. height: math.unit(1.33, "feet"),
  6157. name: "Dick",
  6158. image: {
  6159. source: "./media/characters/scott/anthro-dick.svg"
  6160. },
  6161. form: "anthro",
  6162. },
  6163. side: {
  6164. height: math.unit(12, "feet"),
  6165. weight: math.unit(2000, "kg"),
  6166. name: "Side",
  6167. image: {
  6168. source: "./media/characters/scott/side.svg",
  6169. extra: 754 / 724,
  6170. bottom: 0.069
  6171. },
  6172. form: "taur",
  6173. default: true
  6174. },
  6175. upright: {
  6176. height: math.unit(12, "feet"),
  6177. weight: math.unit(2000, "kg"),
  6178. name: "Upright",
  6179. image: {
  6180. source: "./media/characters/scott/upright.svg",
  6181. extra: 3881 / 3722,
  6182. bottom: 0.05
  6183. },
  6184. form: "taur",
  6185. },
  6186. },
  6187. [
  6188. {
  6189. name: "Normal",
  6190. height: math.unit(5 + 11/12, "feet"),
  6191. default: true,
  6192. form: "anthro"
  6193. },
  6194. {
  6195. name: "Normal",
  6196. height: math.unit(12, "feet"),
  6197. default: true,
  6198. form: "taur"
  6199. },
  6200. ],
  6201. {
  6202. "anthro": {
  6203. name: "Anthro",
  6204. default: true
  6205. },
  6206. "taur": {
  6207. name: "Taur",
  6208. },
  6209. }
  6210. ))
  6211. characterMakers.push(() => makeCharacter(
  6212. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6213. {
  6214. side: {
  6215. height: math.unit(8, "meters"),
  6216. weight: math.unit(84755, "lbs"),
  6217. name: "Side",
  6218. image: {
  6219. source: "./media/characters/tobias/side.svg",
  6220. extra: 1474 / 1096,
  6221. bottom: 38.9 / 1513.1235
  6222. }
  6223. },
  6224. maw: {
  6225. height: math.unit(2.3, "meters"),
  6226. name: "Maw",
  6227. image: {
  6228. source: "./media/characters/tobias/maw.svg"
  6229. }
  6230. },
  6231. burp: {
  6232. height: math.unit(2.85, "meters"),
  6233. name: "Burp",
  6234. image: {
  6235. source: "./media/characters/tobias/burp.svg"
  6236. }
  6237. },
  6238. },
  6239. [
  6240. {
  6241. name: "Normal",
  6242. height: math.unit(8, "meters"),
  6243. default: true
  6244. },
  6245. ]
  6246. ))
  6247. characterMakers.push(() => makeCharacter(
  6248. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6249. {
  6250. front: {
  6251. height: math.unit(5.5, "feet"),
  6252. weight: math.unit(400, "lbs"),
  6253. name: "Front",
  6254. image: {
  6255. source: "./media/characters/kieran/front.svg",
  6256. extra: 2694 / 2364,
  6257. bottom: 217 / 2908
  6258. }
  6259. },
  6260. side: {
  6261. height: math.unit(5.5, "feet"),
  6262. weight: math.unit(400, "lbs"),
  6263. name: "Side",
  6264. image: {
  6265. source: "./media/characters/kieran/side.svg",
  6266. extra: 875 / 777,
  6267. bottom: 84.6 / 959
  6268. }
  6269. },
  6270. },
  6271. [
  6272. {
  6273. name: "Normal",
  6274. height: math.unit(5.5, "feet"),
  6275. default: true
  6276. },
  6277. ]
  6278. ))
  6279. characterMakers.push(() => makeCharacter(
  6280. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6281. {
  6282. side: {
  6283. height: math.unit(2, "meters"),
  6284. weight: math.unit(70, "kg"),
  6285. name: "Side",
  6286. image: {
  6287. source: "./media/characters/sanya/side.svg",
  6288. bottom: 0.02,
  6289. extra: 1.02
  6290. }
  6291. },
  6292. },
  6293. [
  6294. {
  6295. name: "Small",
  6296. height: math.unit(2, "meters")
  6297. },
  6298. {
  6299. name: "Normal",
  6300. height: math.unit(3, "meters")
  6301. },
  6302. {
  6303. name: "Macro",
  6304. height: math.unit(16, "meters"),
  6305. default: true
  6306. },
  6307. ]
  6308. ))
  6309. characterMakers.push(() => makeCharacter(
  6310. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6311. {
  6312. front: {
  6313. height: math.unit(2, "meters"),
  6314. weight: math.unit(120, "kg"),
  6315. name: "Front",
  6316. image: {
  6317. source: "./media/characters/miranda/front.svg",
  6318. extra: 195 / 185,
  6319. bottom: 10.9 / 206.5
  6320. }
  6321. },
  6322. back: {
  6323. height: math.unit(2, "meters"),
  6324. weight: math.unit(120, "kg"),
  6325. name: "Back",
  6326. image: {
  6327. source: "./media/characters/miranda/back.svg",
  6328. extra: 201 / 193,
  6329. bottom: 2.3 / 203.7
  6330. }
  6331. },
  6332. },
  6333. [
  6334. {
  6335. name: "Normal",
  6336. height: math.unit(10, "feet"),
  6337. default: true
  6338. }
  6339. ]
  6340. ))
  6341. characterMakers.push(() => makeCharacter(
  6342. { name: "James", species: ["deer"], tags: ["anthro"] },
  6343. {
  6344. side: {
  6345. height: math.unit(2, "meters"),
  6346. weight: math.unit(100, "kg"),
  6347. name: "Front",
  6348. image: {
  6349. source: "./media/characters/james/front.svg",
  6350. extra: 10 / 8.5
  6351. }
  6352. },
  6353. },
  6354. [
  6355. {
  6356. name: "Normal",
  6357. height: math.unit(8.5, "feet"),
  6358. default: true
  6359. }
  6360. ]
  6361. ))
  6362. characterMakers.push(() => makeCharacter(
  6363. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6364. {
  6365. side: {
  6366. height: math.unit(9.5, "feet"),
  6367. weight: math.unit(2500, "lbs"),
  6368. name: "Side",
  6369. image: {
  6370. source: "./media/characters/heather/side.svg"
  6371. }
  6372. },
  6373. },
  6374. [
  6375. {
  6376. name: "Normal",
  6377. height: math.unit(9.5, "feet"),
  6378. default: true
  6379. }
  6380. ]
  6381. ))
  6382. characterMakers.push(() => makeCharacter(
  6383. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6384. {
  6385. side: {
  6386. height: math.unit(6.5, "feet"),
  6387. weight: math.unit(400, "lbs"),
  6388. name: "Side",
  6389. image: {
  6390. source: "./media/characters/lukas/side.svg",
  6391. extra: 7.25 / 6.5
  6392. }
  6393. },
  6394. },
  6395. [
  6396. {
  6397. name: "Normal",
  6398. height: math.unit(6.5, "feet"),
  6399. default: true
  6400. }
  6401. ]
  6402. ))
  6403. characterMakers.push(() => makeCharacter(
  6404. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6405. {
  6406. side: {
  6407. height: math.unit(5, "feet"),
  6408. weight: math.unit(3000, "lbs"),
  6409. name: "Side",
  6410. image: {
  6411. source: "./media/characters/louise/side.svg"
  6412. }
  6413. },
  6414. },
  6415. [
  6416. {
  6417. name: "Normal",
  6418. height: math.unit(5, "feet"),
  6419. default: true
  6420. }
  6421. ]
  6422. ))
  6423. characterMakers.push(() => makeCharacter(
  6424. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6425. {
  6426. side: {
  6427. height: math.unit(6, "feet"),
  6428. weight: math.unit(150, "lbs"),
  6429. name: "Side",
  6430. image: {
  6431. source: "./media/characters/ramona/side.svg",
  6432. extra: 871/854,
  6433. bottom: 41/912
  6434. }
  6435. },
  6436. },
  6437. [
  6438. {
  6439. name: "Normal",
  6440. height: math.unit(6 + 4/12, "feet")
  6441. },
  6442. {
  6443. name: "Minimacro",
  6444. height: math.unit(5.3, "meters"),
  6445. default: true
  6446. },
  6447. {
  6448. name: "Macro",
  6449. height: math.unit(20, "stories")
  6450. },
  6451. {
  6452. name: "Macro+",
  6453. height: math.unit(50, "stories")
  6454. },
  6455. ]
  6456. ))
  6457. characterMakers.push(() => makeCharacter(
  6458. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6459. {
  6460. standing: {
  6461. height: math.unit(5.75, "feet"),
  6462. weight: math.unit(160, "lbs"),
  6463. name: "Standing",
  6464. image: {
  6465. source: "./media/characters/deerpuff/standing.svg",
  6466. extra: 682 / 624
  6467. }
  6468. },
  6469. sitting: {
  6470. height: math.unit(5.75 / 1.79, "feet"),
  6471. weight: math.unit(160, "lbs"),
  6472. name: "Sitting",
  6473. image: {
  6474. source: "./media/characters/deerpuff/sitting.svg",
  6475. bottom: 44 / 400,
  6476. extra: 1
  6477. }
  6478. },
  6479. taurLaying: {
  6480. height: math.unit(6, "feet"),
  6481. weight: math.unit(400, "lbs"),
  6482. name: "Taur (Laying)",
  6483. image: {
  6484. source: "./media/characters/deerpuff/taur-laying.svg"
  6485. }
  6486. },
  6487. },
  6488. [
  6489. {
  6490. name: "Puffball",
  6491. height: math.unit(6, "inches")
  6492. },
  6493. {
  6494. name: "Normalpuff",
  6495. height: math.unit(5.75, "feet")
  6496. },
  6497. {
  6498. name: "Macropuff",
  6499. height: math.unit(1500, "feet"),
  6500. default: true
  6501. },
  6502. {
  6503. name: "Megapuff",
  6504. height: math.unit(500, "miles")
  6505. },
  6506. {
  6507. name: "Gigapuff",
  6508. height: math.unit(250000, "miles")
  6509. },
  6510. {
  6511. name: "Omegapuff",
  6512. height: math.unit(1000, "lightyears")
  6513. },
  6514. ]
  6515. ))
  6516. characterMakers.push(() => makeCharacter(
  6517. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6518. {
  6519. stomping: {
  6520. height: math.unit(6, "feet"),
  6521. weight: math.unit(170, "lbs"),
  6522. name: "Stomping",
  6523. image: {
  6524. source: "./media/characters/vivian/stomping.svg"
  6525. }
  6526. },
  6527. sitting: {
  6528. height: math.unit(6 / 1.75, "feet"),
  6529. weight: math.unit(170, "lbs"),
  6530. name: "Sitting",
  6531. image: {
  6532. source: "./media/characters/vivian/sitting.svg",
  6533. bottom: 1 / 6.4,
  6534. extra: 1,
  6535. }
  6536. },
  6537. },
  6538. [
  6539. {
  6540. name: "Normal",
  6541. height: math.unit(7, "feet"),
  6542. default: true
  6543. },
  6544. {
  6545. name: "Macro",
  6546. height: math.unit(10, "stories")
  6547. },
  6548. {
  6549. name: "Macro+",
  6550. height: math.unit(30, "stories")
  6551. },
  6552. {
  6553. name: "Megamacro",
  6554. height: math.unit(10, "miles")
  6555. },
  6556. {
  6557. name: "Megamacro+",
  6558. height: math.unit(2750000, "meters")
  6559. },
  6560. ]
  6561. ))
  6562. characterMakers.push(() => makeCharacter(
  6563. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6564. {
  6565. front: {
  6566. height: math.unit(6, "feet"),
  6567. weight: math.unit(160, "lbs"),
  6568. name: "Front",
  6569. image: {
  6570. source: "./media/characters/prince/front.svg",
  6571. extra: 1938/1682,
  6572. bottom: 45/1983
  6573. }
  6574. },
  6575. back: {
  6576. height: math.unit(6, "feet"),
  6577. weight: math.unit(160, "lbs"),
  6578. name: "Back",
  6579. image: {
  6580. source: "./media/characters/prince/back.svg",
  6581. extra: 1955/1726,
  6582. bottom: 6/1961
  6583. }
  6584. },
  6585. },
  6586. [
  6587. {
  6588. name: "Normal",
  6589. height: math.unit(7.75, "feet"),
  6590. default: true
  6591. },
  6592. {
  6593. name: "Not cute",
  6594. height: math.unit(17, "feet")
  6595. },
  6596. {
  6597. name: "I said NOT",
  6598. height: math.unit(91, "feet")
  6599. },
  6600. {
  6601. name: "Please stop",
  6602. height: math.unit(560, "feet")
  6603. },
  6604. {
  6605. name: "What have you done",
  6606. height: math.unit(2200, "feet")
  6607. },
  6608. {
  6609. name: "Deer God",
  6610. height: math.unit(3.6, "miles")
  6611. },
  6612. ]
  6613. ))
  6614. characterMakers.push(() => makeCharacter(
  6615. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6616. {
  6617. standing: {
  6618. height: math.unit(6, "feet"),
  6619. weight: math.unit(300, "lbs"),
  6620. name: "Standing",
  6621. image: {
  6622. source: "./media/characters/psymon/standing.svg",
  6623. extra: 1888 / 1810,
  6624. bottom: 0.05
  6625. }
  6626. },
  6627. slithering: {
  6628. height: math.unit(6, "feet"),
  6629. weight: math.unit(300, "lbs"),
  6630. name: "Slithering",
  6631. image: {
  6632. source: "./media/characters/psymon/slithering.svg",
  6633. extra: 1330 / 1224
  6634. }
  6635. },
  6636. slitheringAlt: {
  6637. height: math.unit(6, "feet"),
  6638. weight: math.unit(300, "lbs"),
  6639. name: "Slithering (Alt)",
  6640. image: {
  6641. source: "./media/characters/psymon/slithering-alt.svg",
  6642. extra: 1330 / 1224
  6643. }
  6644. },
  6645. },
  6646. [
  6647. {
  6648. name: "Normal",
  6649. height: math.unit(11.25, "feet"),
  6650. default: true
  6651. },
  6652. {
  6653. name: "Large",
  6654. height: math.unit(27, "feet")
  6655. },
  6656. {
  6657. name: "Giant",
  6658. height: math.unit(87, "feet")
  6659. },
  6660. {
  6661. name: "Macro",
  6662. height: math.unit(365, "feet")
  6663. },
  6664. {
  6665. name: "Megamacro",
  6666. height: math.unit(3, "miles")
  6667. },
  6668. {
  6669. name: "World Serpent",
  6670. height: math.unit(8000, "miles")
  6671. },
  6672. ]
  6673. ))
  6674. characterMakers.push(() => makeCharacter(
  6675. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6676. {
  6677. front: {
  6678. height: math.unit(6, "feet"),
  6679. weight: math.unit(180, "lbs"),
  6680. name: "Front",
  6681. image: {
  6682. source: "./media/characters/daimos/front.svg",
  6683. extra: 4160 / 3897,
  6684. bottom: 0.021
  6685. }
  6686. }
  6687. },
  6688. [
  6689. {
  6690. name: "Normal",
  6691. height: math.unit(8, "feet"),
  6692. default: true
  6693. },
  6694. {
  6695. name: "Big Dog",
  6696. height: math.unit(22, "feet")
  6697. },
  6698. {
  6699. name: "Macro",
  6700. height: math.unit(127, "feet")
  6701. },
  6702. {
  6703. name: "Megamacro",
  6704. height: math.unit(3600, "feet")
  6705. },
  6706. ]
  6707. ))
  6708. characterMakers.push(() => makeCharacter(
  6709. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6710. {
  6711. side: {
  6712. height: math.unit(6, "feet"),
  6713. weight: math.unit(180, "lbs"),
  6714. name: "Side",
  6715. image: {
  6716. source: "./media/characters/blake/side.svg",
  6717. extra: 1212 / 1120,
  6718. bottom: 0.05
  6719. }
  6720. },
  6721. crouched: {
  6722. height: math.unit(6 * 0.57, "feet"),
  6723. weight: math.unit(180, "lbs"),
  6724. name: "Crouched",
  6725. image: {
  6726. source: "./media/characters/blake/crouched.svg",
  6727. extra: 840 / 587,
  6728. bottom: 0.04
  6729. }
  6730. },
  6731. bent: {
  6732. height: math.unit(6 * 0.75, "feet"),
  6733. weight: math.unit(180, "lbs"),
  6734. name: "Bent",
  6735. image: {
  6736. source: "./media/characters/blake/bent.svg",
  6737. extra: 592 / 544,
  6738. bottom: 0.035
  6739. }
  6740. },
  6741. },
  6742. [
  6743. {
  6744. name: "Normal",
  6745. height: math.unit(8 + 1 / 6, "feet"),
  6746. default: true
  6747. },
  6748. {
  6749. name: "Big Backside",
  6750. height: math.unit(37, "feet")
  6751. },
  6752. {
  6753. name: "Subway Shredder",
  6754. height: math.unit(72, "feet")
  6755. },
  6756. {
  6757. name: "City Carver",
  6758. height: math.unit(1675, "feet")
  6759. },
  6760. {
  6761. name: "Tectonic Tweaker",
  6762. height: math.unit(2300, "miles")
  6763. },
  6764. ]
  6765. ))
  6766. characterMakers.push(() => makeCharacter(
  6767. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6768. {
  6769. front: {
  6770. height: math.unit(6, "feet"),
  6771. weight: math.unit(180, "lbs"),
  6772. name: "Front",
  6773. image: {
  6774. source: "./media/characters/guisetto/front.svg",
  6775. extra: 856 / 817,
  6776. bottom: 0.06
  6777. }
  6778. },
  6779. airborne: {
  6780. height: math.unit(6, "feet"),
  6781. weight: math.unit(180, "lbs"),
  6782. name: "Airborne",
  6783. image: {
  6784. source: "./media/characters/guisetto/airborne.svg",
  6785. extra: 584 / 525
  6786. }
  6787. },
  6788. },
  6789. [
  6790. {
  6791. name: "Normal",
  6792. height: math.unit(10 + 11 / 12, "feet"),
  6793. default: true
  6794. },
  6795. {
  6796. name: "Large",
  6797. height: math.unit(35, "feet")
  6798. },
  6799. {
  6800. name: "Macro",
  6801. height: math.unit(475, "feet")
  6802. },
  6803. ]
  6804. ))
  6805. characterMakers.push(() => makeCharacter(
  6806. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6807. {
  6808. front: {
  6809. height: math.unit(6, "feet"),
  6810. weight: math.unit(180, "lbs"),
  6811. name: "Front",
  6812. image: {
  6813. source: "./media/characters/luxor/front.svg",
  6814. extra: 2940 / 2152
  6815. }
  6816. },
  6817. back: {
  6818. height: math.unit(6, "feet"),
  6819. weight: math.unit(180, "lbs"),
  6820. name: "Back",
  6821. image: {
  6822. source: "./media/characters/luxor/back.svg",
  6823. extra: 1083 / 960
  6824. }
  6825. },
  6826. },
  6827. [
  6828. {
  6829. name: "Normal",
  6830. height: math.unit(5 + 5 / 6, "feet"),
  6831. default: true
  6832. },
  6833. {
  6834. name: "Lamp",
  6835. height: math.unit(50, "feet")
  6836. },
  6837. {
  6838. name: "Lämp",
  6839. height: math.unit(300, "feet")
  6840. },
  6841. {
  6842. name: "The sun is a lamp",
  6843. height: math.unit(250000, "miles")
  6844. },
  6845. ]
  6846. ))
  6847. characterMakers.push(() => makeCharacter(
  6848. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6849. {
  6850. front: {
  6851. height: math.unit(6, "feet"),
  6852. weight: math.unit(50, "lbs"),
  6853. name: "Front",
  6854. image: {
  6855. source: "./media/characters/huoyan/front.svg"
  6856. }
  6857. },
  6858. side: {
  6859. height: math.unit(6, "feet"),
  6860. weight: math.unit(180, "lbs"),
  6861. name: "Side",
  6862. image: {
  6863. source: "./media/characters/huoyan/side.svg"
  6864. }
  6865. },
  6866. },
  6867. [
  6868. {
  6869. name: "Chef",
  6870. height: math.unit(9, "feet")
  6871. },
  6872. {
  6873. name: "Normal",
  6874. height: math.unit(65, "feet"),
  6875. default: true
  6876. },
  6877. {
  6878. name: "Macro",
  6879. height: math.unit(780, "feet")
  6880. },
  6881. {
  6882. name: "Flaming Mountain",
  6883. height: math.unit(4.8, "miles")
  6884. },
  6885. {
  6886. name: "Celestial",
  6887. height: math.unit(765000, "miles")
  6888. },
  6889. ]
  6890. ))
  6891. characterMakers.push(() => makeCharacter(
  6892. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6893. {
  6894. front: {
  6895. height: math.unit(5 + 3 / 4, "feet"),
  6896. weight: math.unit(120, "lbs"),
  6897. name: "Front",
  6898. image: {
  6899. source: "./media/characters/tails/front.svg"
  6900. }
  6901. }
  6902. },
  6903. [
  6904. {
  6905. name: "Normal",
  6906. height: math.unit(5 + 3 / 4, "feet"),
  6907. default: true
  6908. }
  6909. ]
  6910. ))
  6911. characterMakers.push(() => makeCharacter(
  6912. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6913. {
  6914. front: {
  6915. height: math.unit(4, "feet"),
  6916. weight: math.unit(50, "lbs"),
  6917. name: "Front",
  6918. image: {
  6919. source: "./media/characters/rainy/front.svg"
  6920. }
  6921. }
  6922. },
  6923. [
  6924. {
  6925. name: "Macro",
  6926. height: math.unit(800, "feet"),
  6927. default: true
  6928. }
  6929. ]
  6930. ))
  6931. characterMakers.push(() => makeCharacter(
  6932. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6933. {
  6934. front: {
  6935. height: math.unit(6, "feet"),
  6936. weight: math.unit(150, "lbs"),
  6937. name: "Front",
  6938. image: {
  6939. source: "./media/characters/rainier/front.svg"
  6940. }
  6941. }
  6942. },
  6943. [
  6944. {
  6945. name: "Micro",
  6946. height: math.unit(2, "mm"),
  6947. default: true
  6948. }
  6949. ]
  6950. ))
  6951. characterMakers.push(() => makeCharacter(
  6952. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6953. {
  6954. front: {
  6955. height: math.unit(8 + 4/12, "feet"),
  6956. weight: math.unit(450, "kilograms"),
  6957. name: "Front",
  6958. image: {
  6959. source: "./media/characters/andy-renard/front.svg",
  6960. extra: 862/809,
  6961. bottom: 85/947
  6962. },
  6963. extraAttributes: {
  6964. "pawSize": {
  6965. name: "Paw Size",
  6966. power: 2,
  6967. type: "area",
  6968. base: math.unit(0.45*0.3, "meters^2")
  6969. },
  6970. "handSize": {
  6971. name: "Hand Size",
  6972. power: 2,
  6973. type: "area",
  6974. base: math.unit(0.4 * 0.3, "meters^2")
  6975. },
  6976. "cockSize": {
  6977. name: "Cock Length",
  6978. power: 1,
  6979. type: "length",
  6980. base: math.unit(0.75, "meters")
  6981. },
  6982. "ballDiameter": {
  6983. name: "Ball Diameter",
  6984. power: 1,
  6985. type: "length",
  6986. base: math.unit(0.3, "meters")
  6987. },
  6988. "ballVolume": {
  6989. name: "Ball Volume",
  6990. power: 3,
  6991. type: "volume",
  6992. base: math.unit(0.01413716694, "meters^3")
  6993. },
  6994. }
  6995. },
  6996. back: {
  6997. height: math.unit(8 + 4/12, "feet"),
  6998. weight: math.unit(450, "kilograms"),
  6999. name: "Back",
  7000. image: {
  7001. source: "./media/characters/andy-renard/back.svg",
  7002. extra: 1112/1033,
  7003. bottom: 64/1176
  7004. },
  7005. extraAttributes: {
  7006. "pawSize": {
  7007. name: "Paw Size",
  7008. power: 2,
  7009. type: "area",
  7010. base: math.unit(0.45*0.3, "meters^2")
  7011. },
  7012. "handSize": {
  7013. name: "Hand Size",
  7014. power: 2,
  7015. type: "area",
  7016. base: math.unit(0.4 * 0.3, "meters^2")
  7017. },
  7018. "cockSize": {
  7019. name: "Cock Length",
  7020. power: 1,
  7021. type: "length",
  7022. base: math.unit(0.75, "meters")
  7023. },
  7024. "ballDiameter": {
  7025. name: "Ball Diameter",
  7026. power: 1,
  7027. type: "length",
  7028. base: math.unit(0.3, "meters")
  7029. },
  7030. "ballVolume": {
  7031. name: "Ball Volume",
  7032. power: 3,
  7033. type: "volume",
  7034. base: math.unit(0.01413716694, "meters^3")
  7035. },
  7036. }
  7037. },
  7038. },
  7039. [
  7040. {
  7041. name: "Tall",
  7042. height: math.unit(6 + 8/12, "feet")
  7043. },
  7044. {
  7045. name: "Very Tall",
  7046. height: math.unit(8 + 4/12, "feet")
  7047. },
  7048. {
  7049. name: "Mini Macro",
  7050. height: math.unit(15, "feet"),
  7051. default: true
  7052. },
  7053. {
  7054. name: "Giant",
  7055. height: math.unit(50, "feet")
  7056. },
  7057. {
  7058. name: "Nice",
  7059. height: math.unit(69, "feet")
  7060. },
  7061. {
  7062. name: "Macro",
  7063. height: math.unit(100, "feet")
  7064. },
  7065. {
  7066. name: "Enormous",
  7067. height: math.unit(500, "feet")
  7068. },
  7069. {
  7070. name: "Gargantuan",
  7071. height: math.unit(1000, "feet")
  7072. },
  7073. {
  7074. name: "Mega",
  7075. height: math.unit(1, "mile")
  7076. },
  7077. {
  7078. name: "Giga",
  7079. height: math.unit(50, "miles")
  7080. },
  7081. {
  7082. name: "Tera",
  7083. height: math.unit(1000, "miles")
  7084. },
  7085. {
  7086. name: "Cosmic",
  7087. height: math.unit(1.5, "galaxies")
  7088. },
  7089. {
  7090. name: "God",
  7091. height: math.unit(1.5, "universes")
  7092. },
  7093. {
  7094. name: "Chief Execute God",
  7095. height: math.unit(1.5, "multiverses")
  7096. },
  7097. ]
  7098. ))
  7099. characterMakers.push(() => makeCharacter(
  7100. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  7101. {
  7102. front: {
  7103. height: math.unit(6, "feet"),
  7104. weight: math.unit(210, "lbs"),
  7105. name: "Front",
  7106. image: {
  7107. source: "./media/characters/cimmaron/front-sfw.svg",
  7108. extra: 701 / 676,
  7109. bottom: 0.046
  7110. }
  7111. },
  7112. back: {
  7113. height: math.unit(6, "feet"),
  7114. weight: math.unit(210, "lbs"),
  7115. name: "Back",
  7116. image: {
  7117. source: "./media/characters/cimmaron/back-sfw.svg",
  7118. extra: 701 / 676,
  7119. bottom: 0.046
  7120. }
  7121. },
  7122. frontNsfw: {
  7123. height: math.unit(6, "feet"),
  7124. weight: math.unit(210, "lbs"),
  7125. name: "Front (NSFW)",
  7126. image: {
  7127. source: "./media/characters/cimmaron/front-nsfw.svg",
  7128. extra: 701 / 676,
  7129. bottom: 0.046
  7130. }
  7131. },
  7132. backNsfw: {
  7133. height: math.unit(6, "feet"),
  7134. weight: math.unit(210, "lbs"),
  7135. name: "Back (NSFW)",
  7136. image: {
  7137. source: "./media/characters/cimmaron/back-nsfw.svg",
  7138. extra: 701 / 676,
  7139. bottom: 0.046
  7140. }
  7141. },
  7142. dick: {
  7143. height: math.unit(1.714, "feet"),
  7144. name: "Dick",
  7145. image: {
  7146. source: "./media/characters/cimmaron/dick.svg"
  7147. }
  7148. },
  7149. },
  7150. [
  7151. {
  7152. name: "Normal",
  7153. height: math.unit(6, "feet"),
  7154. default: true
  7155. },
  7156. {
  7157. name: "Macro Mayor",
  7158. height: math.unit(350, "meters")
  7159. },
  7160. ]
  7161. ))
  7162. characterMakers.push(() => makeCharacter(
  7163. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  7164. {
  7165. front: {
  7166. height: math.unit(6, "feet"),
  7167. weight: math.unit(200, "lbs"),
  7168. name: "Front",
  7169. image: {
  7170. source: "./media/characters/akari/front.svg",
  7171. extra: 962 / 901,
  7172. bottom: 0.04
  7173. }
  7174. }
  7175. },
  7176. [
  7177. {
  7178. name: "Micro",
  7179. height: math.unit(5, "inches"),
  7180. default: true
  7181. },
  7182. {
  7183. name: "Normal",
  7184. height: math.unit(7, "feet")
  7185. },
  7186. ]
  7187. ))
  7188. characterMakers.push(() => makeCharacter(
  7189. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  7190. {
  7191. front: {
  7192. height: math.unit(6, "feet"),
  7193. weight: math.unit(140, "lbs"),
  7194. name: "Front",
  7195. image: {
  7196. source: "./media/characters/cynosura/front.svg",
  7197. extra: 437/410,
  7198. bottom: 9/446
  7199. }
  7200. },
  7201. back: {
  7202. height: math.unit(6, "feet"),
  7203. weight: math.unit(140, "lbs"),
  7204. name: "Back",
  7205. image: {
  7206. source: "./media/characters/cynosura/back.svg",
  7207. extra: 1304/1160,
  7208. bottom: 71/1375
  7209. }
  7210. },
  7211. },
  7212. [
  7213. {
  7214. name: "Micro",
  7215. height: math.unit(4, "inches")
  7216. },
  7217. {
  7218. name: "Normal",
  7219. height: math.unit(5.75, "feet"),
  7220. default: true
  7221. },
  7222. {
  7223. name: "Tall",
  7224. height: math.unit(10, "feet")
  7225. },
  7226. {
  7227. name: "Big",
  7228. height: math.unit(20, "feet")
  7229. },
  7230. {
  7231. name: "Macro",
  7232. height: math.unit(50, "feet")
  7233. },
  7234. ]
  7235. ))
  7236. characterMakers.push(() => makeCharacter(
  7237. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  7238. {
  7239. front: {
  7240. height: math.unit(13 + 2/12, "feet"),
  7241. weight: math.unit(800, "kg"),
  7242. name: "Front",
  7243. image: {
  7244. source: "./media/characters/gin/front.svg",
  7245. extra: 1312/1191,
  7246. bottom: 45/1357
  7247. }
  7248. },
  7249. mouth: {
  7250. height: math.unit(2.39 * 1.8, "feet"),
  7251. name: "Mouth",
  7252. image: {
  7253. source: "./media/characters/gin/mouth.svg"
  7254. }
  7255. },
  7256. hand: {
  7257. height: math.unit(1.57 * 2.19, "feet"),
  7258. name: "Hand",
  7259. image: {
  7260. source: "./media/characters/gin/hand.svg"
  7261. }
  7262. },
  7263. foot: {
  7264. height: math.unit(6 / 4.25 * 2.19, "feet"),
  7265. name: "Foot",
  7266. image: {
  7267. source: "./media/characters/gin/foot.svg"
  7268. }
  7269. },
  7270. sole: {
  7271. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7272. name: "Sole",
  7273. image: {
  7274. source: "./media/characters/gin/sole.svg"
  7275. }
  7276. },
  7277. },
  7278. [
  7279. {
  7280. name: "Very Small",
  7281. height: math.unit(13 + 2 / 12, "feet")
  7282. },
  7283. {
  7284. name: "Micro",
  7285. height: math.unit(600, "miles")
  7286. },
  7287. {
  7288. name: "Regular",
  7289. height: math.unit(20, "earths"),
  7290. default: true
  7291. },
  7292. {
  7293. name: "Macro",
  7294. height: math.unit(2.2, "solarradii")
  7295. },
  7296. {
  7297. name: "Teramacro",
  7298. height: math.unit(1.2, "galaxies")
  7299. },
  7300. {
  7301. name: "Omegamacro",
  7302. height: math.unit(200, "universes")
  7303. },
  7304. ]
  7305. ))
  7306. characterMakers.push(() => makeCharacter(
  7307. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7308. {
  7309. front: {
  7310. height: math.unit(6 + 1 / 6, "feet"),
  7311. weight: math.unit(178, "lbs"),
  7312. name: "Front",
  7313. image: {
  7314. source: "./media/characters/guy/front.svg"
  7315. }
  7316. }
  7317. },
  7318. [
  7319. {
  7320. name: "Normal",
  7321. height: math.unit(6 + 1 / 6, "feet"),
  7322. default: true
  7323. },
  7324. {
  7325. name: "Large",
  7326. height: math.unit(25 + 7 / 12, "feet")
  7327. },
  7328. {
  7329. name: "Macro",
  7330. height: math.unit(60 + 9 / 12, "feet")
  7331. },
  7332. {
  7333. name: "Macro+",
  7334. height: math.unit(246, "feet")
  7335. },
  7336. {
  7337. name: "Macro++",
  7338. height: math.unit(878, "feet")
  7339. }
  7340. ]
  7341. ))
  7342. characterMakers.push(() => makeCharacter(
  7343. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7344. {
  7345. front: {
  7346. height: math.unit(9, "feet"),
  7347. weight: math.unit(800, "lbs"),
  7348. name: "Front",
  7349. image: {
  7350. source: "./media/characters/tiberius/front.svg",
  7351. extra: 2295 / 2071
  7352. }
  7353. },
  7354. back: {
  7355. height: math.unit(9, "feet"),
  7356. weight: math.unit(800, "lbs"),
  7357. name: "Back",
  7358. image: {
  7359. source: "./media/characters/tiberius/back.svg",
  7360. extra: 2373 / 2160
  7361. }
  7362. },
  7363. },
  7364. [
  7365. {
  7366. name: "Normal",
  7367. height: math.unit(9, "feet"),
  7368. default: true
  7369. }
  7370. ]
  7371. ))
  7372. characterMakers.push(() => makeCharacter(
  7373. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7374. {
  7375. front: {
  7376. height: math.unit(6, "feet"),
  7377. weight: math.unit(600, "lbs"),
  7378. name: "Front",
  7379. image: {
  7380. source: "./media/characters/surgo/front.svg",
  7381. extra: 3591 / 2227
  7382. }
  7383. },
  7384. back: {
  7385. height: math.unit(6, "feet"),
  7386. weight: math.unit(600, "lbs"),
  7387. name: "Back",
  7388. image: {
  7389. source: "./media/characters/surgo/back.svg",
  7390. extra: 3557 / 2228
  7391. }
  7392. },
  7393. laying: {
  7394. height: math.unit(6 * 0.85, "feet"),
  7395. weight: math.unit(600, "lbs"),
  7396. name: "Laying",
  7397. image: {
  7398. source: "./media/characters/surgo/laying.svg"
  7399. }
  7400. },
  7401. },
  7402. [
  7403. {
  7404. name: "Normal",
  7405. height: math.unit(6, "feet"),
  7406. default: true
  7407. }
  7408. ]
  7409. ))
  7410. characterMakers.push(() => makeCharacter(
  7411. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7412. {
  7413. side: {
  7414. height: math.unit(6, "feet"),
  7415. weight: math.unit(150, "lbs"),
  7416. name: "Side",
  7417. image: {
  7418. source: "./media/characters/cibus/side.svg",
  7419. extra: 800 / 400
  7420. }
  7421. },
  7422. },
  7423. [
  7424. {
  7425. name: "Normal",
  7426. height: math.unit(6, "feet"),
  7427. default: true
  7428. }
  7429. ]
  7430. ))
  7431. characterMakers.push(() => makeCharacter(
  7432. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7433. {
  7434. front: {
  7435. height: math.unit(6, "feet"),
  7436. weight: math.unit(240, "lbs"),
  7437. name: "Front",
  7438. image: {
  7439. source: "./media/characters/nibbles/front.svg"
  7440. }
  7441. },
  7442. side: {
  7443. height: math.unit(6, "feet"),
  7444. weight: math.unit(240, "lbs"),
  7445. name: "Side",
  7446. image: {
  7447. source: "./media/characters/nibbles/side.svg"
  7448. }
  7449. },
  7450. },
  7451. [
  7452. {
  7453. name: "Normal",
  7454. height: math.unit(9, "feet"),
  7455. default: true
  7456. }
  7457. ]
  7458. ))
  7459. characterMakers.push(() => makeCharacter(
  7460. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7461. {
  7462. side: {
  7463. height: math.unit(5 + 1 / 6, "feet"),
  7464. weight: math.unit(130, "lbs"),
  7465. name: "Side",
  7466. image: {
  7467. source: "./media/characters/rikky/side.svg",
  7468. extra: 851 / 801
  7469. }
  7470. },
  7471. },
  7472. [
  7473. {
  7474. name: "Normal",
  7475. height: math.unit(5 + 1 / 6, "feet")
  7476. },
  7477. {
  7478. name: "Macro",
  7479. height: math.unit(152, "feet"),
  7480. default: true
  7481. },
  7482. {
  7483. name: "Megamacro",
  7484. height: math.unit(7, "miles")
  7485. }
  7486. ]
  7487. ))
  7488. characterMakers.push(() => makeCharacter(
  7489. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7490. {
  7491. side: {
  7492. height: math.unit(370, "cm"),
  7493. weight: math.unit(350, "lbs"),
  7494. name: "Side",
  7495. image: {
  7496. source: "./media/characters/malfressa/side.svg"
  7497. }
  7498. },
  7499. walking: {
  7500. height: math.unit(370, "cm"),
  7501. weight: math.unit(350, "lbs"),
  7502. name: "Walking",
  7503. image: {
  7504. source: "./media/characters/malfressa/walking.svg"
  7505. }
  7506. },
  7507. feral: {
  7508. height: math.unit(2500, "cm"),
  7509. weight: math.unit(100000, "lbs"),
  7510. name: "Feral",
  7511. image: {
  7512. source: "./media/characters/malfressa/feral.svg",
  7513. extra: 2108 / 837,
  7514. bottom: 0.02
  7515. }
  7516. },
  7517. },
  7518. [
  7519. {
  7520. name: "Normal",
  7521. height: math.unit(370, "cm")
  7522. },
  7523. {
  7524. name: "Macro",
  7525. height: math.unit(300, "meters"),
  7526. default: true
  7527. }
  7528. ]
  7529. ))
  7530. characterMakers.push(() => makeCharacter(
  7531. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7532. {
  7533. front: {
  7534. height: math.unit(6, "feet"),
  7535. weight: math.unit(60, "kg"),
  7536. name: "Front",
  7537. image: {
  7538. source: "./media/characters/jaro/front.svg",
  7539. extra: 845/817,
  7540. bottom: 45/890
  7541. }
  7542. },
  7543. back: {
  7544. height: math.unit(6, "feet"),
  7545. weight: math.unit(60, "kg"),
  7546. name: "Back",
  7547. image: {
  7548. source: "./media/characters/jaro/back.svg",
  7549. extra: 847/817,
  7550. bottom: 34/881
  7551. }
  7552. },
  7553. },
  7554. [
  7555. {
  7556. name: "Micro",
  7557. height: math.unit(7, "inches")
  7558. },
  7559. {
  7560. name: "Normal",
  7561. height: math.unit(5.5, "feet"),
  7562. default: true
  7563. },
  7564. {
  7565. name: "Minimacro",
  7566. height: math.unit(20, "feet")
  7567. },
  7568. {
  7569. name: "Macro",
  7570. height: math.unit(200, "meters")
  7571. }
  7572. ]
  7573. ))
  7574. characterMakers.push(() => makeCharacter(
  7575. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7576. {
  7577. front: {
  7578. height: math.unit(6, "feet"),
  7579. weight: math.unit(195, "lb"),
  7580. name: "Front",
  7581. image: {
  7582. source: "./media/characters/rogue/front.svg"
  7583. }
  7584. },
  7585. },
  7586. [
  7587. {
  7588. name: "Macro",
  7589. height: math.unit(90, "feet"),
  7590. default: true
  7591. },
  7592. ]
  7593. ))
  7594. characterMakers.push(() => makeCharacter(
  7595. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7596. {
  7597. standing: {
  7598. height: math.unit(5 + 8 / 12, "feet"),
  7599. weight: math.unit(140, "lb"),
  7600. name: "Standing",
  7601. image: {
  7602. source: "./media/characters/piper/standing.svg",
  7603. extra: 1440/1284,
  7604. bottom: 66/1506
  7605. }
  7606. },
  7607. running: {
  7608. height: math.unit(5 + 8 / 12, "feet"),
  7609. weight: math.unit(140, "lb"),
  7610. name: "Running",
  7611. image: {
  7612. source: "./media/characters/piper/running.svg",
  7613. extra: 3948/3655,
  7614. bottom: 0/3948
  7615. }
  7616. },
  7617. sole: {
  7618. height: math.unit(0.81, "feet"),
  7619. weight: math.unit(2, "kg"),
  7620. name: "Sole",
  7621. image: {
  7622. source: "./media/characters/piper/sole.svg"
  7623. }
  7624. },
  7625. nipple: {
  7626. height: math.unit(0.25, "feet"),
  7627. weight: math.unit(1.5, "lb"),
  7628. name: "Nipple",
  7629. image: {
  7630. source: "./media/characters/piper/nipple.svg"
  7631. }
  7632. },
  7633. head: {
  7634. height: math.unit(1.1, "feet"),
  7635. name: "Head",
  7636. image: {
  7637. source: "./media/characters/piper/head.svg"
  7638. }
  7639. },
  7640. },
  7641. [
  7642. {
  7643. name: "Micro",
  7644. height: math.unit(2, "inches")
  7645. },
  7646. {
  7647. name: "Normal",
  7648. height: math.unit(5 + 8 / 12, "feet")
  7649. },
  7650. {
  7651. name: "Macro",
  7652. height: math.unit(250, "feet"),
  7653. default: true
  7654. },
  7655. {
  7656. name: "Megamacro",
  7657. height: math.unit(7, "miles")
  7658. },
  7659. ]
  7660. ))
  7661. characterMakers.push(() => makeCharacter(
  7662. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7663. {
  7664. front: {
  7665. height: math.unit(6, "feet"),
  7666. weight: math.unit(220, "lb"),
  7667. name: "Front",
  7668. image: {
  7669. source: "./media/characters/gemini/front.svg"
  7670. }
  7671. },
  7672. back: {
  7673. height: math.unit(6, "feet"),
  7674. weight: math.unit(220, "lb"),
  7675. name: "Back",
  7676. image: {
  7677. source: "./media/characters/gemini/back.svg"
  7678. }
  7679. },
  7680. kneeling: {
  7681. height: math.unit(6 / 1.5, "feet"),
  7682. weight: math.unit(220, "lb"),
  7683. name: "Kneeling",
  7684. image: {
  7685. source: "./media/characters/gemini/kneeling.svg",
  7686. bottom: 0.02
  7687. }
  7688. },
  7689. },
  7690. [
  7691. {
  7692. name: "Macro",
  7693. height: math.unit(300, "meters"),
  7694. default: true
  7695. },
  7696. {
  7697. name: "Megamacro",
  7698. height: math.unit(6900, "meters")
  7699. },
  7700. ]
  7701. ))
  7702. characterMakers.push(() => makeCharacter(
  7703. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7704. {
  7705. anthro: {
  7706. height: math.unit(2.35, "meters"),
  7707. weight: math.unit(73, "kg"),
  7708. name: "Anthro",
  7709. image: {
  7710. source: "./media/characters/alicia/anthro.svg",
  7711. extra: 2571 / 2385,
  7712. bottom: 75 / 2648
  7713. }
  7714. },
  7715. paw: {
  7716. height: math.unit(1.32, "feet"),
  7717. name: "Paw",
  7718. image: {
  7719. source: "./media/characters/alicia/paw.svg"
  7720. }
  7721. },
  7722. feral: {
  7723. height: math.unit(1.69, "meters"),
  7724. weight: math.unit(73, "kg"),
  7725. name: "Feral",
  7726. image: {
  7727. source: "./media/characters/alicia/feral.svg",
  7728. extra: 2123 / 1715,
  7729. bottom: 222 / 2349
  7730. }
  7731. },
  7732. },
  7733. [
  7734. {
  7735. name: "Normal",
  7736. height: math.unit(2.35, "meters")
  7737. },
  7738. {
  7739. name: "Macro",
  7740. height: math.unit(60, "meters"),
  7741. default: true
  7742. },
  7743. {
  7744. name: "Megamacro",
  7745. height: math.unit(10000, "kilometers")
  7746. },
  7747. ]
  7748. ))
  7749. characterMakers.push(() => makeCharacter(
  7750. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7751. {
  7752. front: {
  7753. height: math.unit(7, "feet"),
  7754. weight: math.unit(250, "lbs"),
  7755. name: "Front",
  7756. image: {
  7757. source: "./media/characters/archy/front.svg"
  7758. }
  7759. }
  7760. },
  7761. [
  7762. {
  7763. name: "Micro",
  7764. height: math.unit(1, "inch")
  7765. },
  7766. {
  7767. name: "Shorty",
  7768. height: math.unit(5, "feet")
  7769. },
  7770. {
  7771. name: "Normal",
  7772. height: math.unit(7, "feet")
  7773. },
  7774. {
  7775. name: "Macro",
  7776. height: math.unit(600, "meters"),
  7777. default: true
  7778. },
  7779. {
  7780. name: "Megamacro",
  7781. height: math.unit(1, "mile")
  7782. },
  7783. ]
  7784. ))
  7785. characterMakers.push(() => makeCharacter(
  7786. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7787. {
  7788. front: {
  7789. height: math.unit(1.65, "meters"),
  7790. weight: math.unit(74, "kg"),
  7791. name: "Front",
  7792. image: {
  7793. source: "./media/characters/berri/front.svg",
  7794. extra: 857 / 837,
  7795. bottom: 18 / 877
  7796. }
  7797. },
  7798. bum: {
  7799. height: math.unit(1.46, "feet"),
  7800. name: "Bum",
  7801. image: {
  7802. source: "./media/characters/berri/bum.svg"
  7803. }
  7804. },
  7805. mouth: {
  7806. height: math.unit(0.44, "feet"),
  7807. name: "Mouth",
  7808. image: {
  7809. source: "./media/characters/berri/mouth.svg"
  7810. }
  7811. },
  7812. paw: {
  7813. height: math.unit(0.826, "feet"),
  7814. name: "Paw",
  7815. image: {
  7816. source: "./media/characters/berri/paw.svg"
  7817. }
  7818. },
  7819. },
  7820. [
  7821. {
  7822. name: "Normal",
  7823. height: math.unit(1.65, "meters")
  7824. },
  7825. {
  7826. name: "Macro",
  7827. height: math.unit(60, "m"),
  7828. default: true
  7829. },
  7830. {
  7831. name: "Megamacro",
  7832. height: math.unit(9.213, "km")
  7833. },
  7834. {
  7835. name: "Planet Eater",
  7836. height: math.unit(489, "megameters")
  7837. },
  7838. {
  7839. name: "Teramacro",
  7840. height: math.unit(2471635000000, "meters")
  7841. },
  7842. {
  7843. name: "Examacro",
  7844. height: math.unit(8.0624e+26, "meters")
  7845. }
  7846. ]
  7847. ))
  7848. characterMakers.push(() => makeCharacter(
  7849. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7850. {
  7851. front: {
  7852. height: math.unit(1.72, "meters"),
  7853. weight: math.unit(68, "kg"),
  7854. name: "Front",
  7855. image: {
  7856. source: "./media/characters/lexi/front.svg"
  7857. }
  7858. }
  7859. },
  7860. [
  7861. {
  7862. name: "Very Smol",
  7863. height: math.unit(10, "mm")
  7864. },
  7865. {
  7866. name: "Micro",
  7867. height: math.unit(6.8, "cm"),
  7868. default: true
  7869. },
  7870. {
  7871. name: "Normal",
  7872. height: math.unit(1.72, "m")
  7873. }
  7874. ]
  7875. ))
  7876. characterMakers.push(() => makeCharacter(
  7877. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7878. {
  7879. front: {
  7880. height: math.unit(1.69, "meters"),
  7881. weight: math.unit(68, "kg"),
  7882. name: "Front",
  7883. image: {
  7884. source: "./media/characters/martin/front.svg",
  7885. extra: 596 / 581
  7886. }
  7887. }
  7888. },
  7889. [
  7890. {
  7891. name: "Micro",
  7892. height: math.unit(6.85, "cm"),
  7893. default: true
  7894. },
  7895. {
  7896. name: "Normal",
  7897. height: math.unit(1.69, "m")
  7898. }
  7899. ]
  7900. ))
  7901. characterMakers.push(() => makeCharacter(
  7902. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7903. {
  7904. front: {
  7905. height: math.unit(1.69, "meters"),
  7906. weight: math.unit(68, "kg"),
  7907. name: "Front",
  7908. image: {
  7909. source: "./media/characters/juno/front.svg"
  7910. }
  7911. }
  7912. },
  7913. [
  7914. {
  7915. name: "Micro",
  7916. height: math.unit(7, "cm")
  7917. },
  7918. {
  7919. name: "Normal",
  7920. height: math.unit(1.89, "m")
  7921. },
  7922. {
  7923. name: "Macro",
  7924. height: math.unit(353, "meters"),
  7925. default: true
  7926. }
  7927. ]
  7928. ))
  7929. characterMakers.push(() => makeCharacter(
  7930. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7931. {
  7932. front: {
  7933. height: math.unit(1.93, "meters"),
  7934. weight: math.unit(83, "kg"),
  7935. name: "Front",
  7936. image: {
  7937. source: "./media/characters/samantha/front.svg"
  7938. }
  7939. },
  7940. frontClothed: {
  7941. height: math.unit(1.93, "meters"),
  7942. weight: math.unit(83, "kg"),
  7943. name: "Front (Clothed)",
  7944. image: {
  7945. source: "./media/characters/samantha/front-clothed.svg"
  7946. }
  7947. },
  7948. back: {
  7949. height: math.unit(1.93, "meters"),
  7950. weight: math.unit(83, "kg"),
  7951. name: "Back",
  7952. image: {
  7953. source: "./media/characters/samantha/back.svg"
  7954. }
  7955. },
  7956. },
  7957. [
  7958. {
  7959. name: "Normal",
  7960. height: math.unit(1.93, "m")
  7961. },
  7962. {
  7963. name: "Macro",
  7964. height: math.unit(74, "meters"),
  7965. default: true
  7966. },
  7967. {
  7968. name: "Macro+",
  7969. height: math.unit(223, "meters"),
  7970. },
  7971. {
  7972. name: "Megamacro",
  7973. height: math.unit(8381, "meters"),
  7974. },
  7975. {
  7976. name: "Megamacro+",
  7977. height: math.unit(12000, "kilometers")
  7978. },
  7979. ]
  7980. ))
  7981. characterMakers.push(() => makeCharacter(
  7982. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7983. {
  7984. front: {
  7985. height: math.unit(1.92, "meters"),
  7986. weight: math.unit(80, "kg"),
  7987. name: "Front",
  7988. image: {
  7989. source: "./media/characters/dr-clay/front.svg"
  7990. }
  7991. },
  7992. frontClothed: {
  7993. height: math.unit(1.92, "meters"),
  7994. weight: math.unit(80, "kg"),
  7995. name: "Front (Clothed)",
  7996. image: {
  7997. source: "./media/characters/dr-clay/front-clothed.svg"
  7998. }
  7999. }
  8000. },
  8001. [
  8002. {
  8003. name: "Normal",
  8004. height: math.unit(1.92, "m")
  8005. },
  8006. {
  8007. name: "Macro",
  8008. height: math.unit(214, "meters"),
  8009. default: true
  8010. },
  8011. {
  8012. name: "Macro+",
  8013. height: math.unit(12.237, "meters"),
  8014. },
  8015. {
  8016. name: "Megamacro",
  8017. height: math.unit(557, "megameters"),
  8018. },
  8019. {
  8020. name: "Unimaginable",
  8021. height: math.unit(120e9, "lightyears")
  8022. },
  8023. ]
  8024. ))
  8025. characterMakers.push(() => makeCharacter(
  8026. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  8027. {
  8028. front: {
  8029. height: math.unit(2, "meters"),
  8030. weight: math.unit(80, "kg"),
  8031. name: "Front",
  8032. image: {
  8033. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  8034. }
  8035. }
  8036. },
  8037. [
  8038. {
  8039. name: "Teramacro",
  8040. height: math.unit(500000, "lightyears"),
  8041. default: true
  8042. },
  8043. ]
  8044. ))
  8045. characterMakers.push(() => makeCharacter(
  8046. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  8047. {
  8048. crux: {
  8049. height: math.unit(2, "meters"),
  8050. weight: math.unit(150, "kg"),
  8051. name: "Crux",
  8052. image: {
  8053. source: "./media/characters/vemus/crux.svg",
  8054. extra: 1074/936,
  8055. bottom: 23/1097
  8056. }
  8057. },
  8058. skunkTanuki: {
  8059. height: math.unit(2, "meters"),
  8060. weight: math.unit(150, "kg"),
  8061. name: "Skunk-Tanuki",
  8062. image: {
  8063. source: "./media/characters/vemus/skunk-tanuki.svg",
  8064. extra: 926/893,
  8065. bottom: 20/946
  8066. }
  8067. },
  8068. },
  8069. [
  8070. {
  8071. name: "Normal",
  8072. height: math.unit(4, "meters"),
  8073. default: true
  8074. },
  8075. {
  8076. name: "Big",
  8077. height: math.unit(8, "meters")
  8078. },
  8079. {
  8080. name: "Macro",
  8081. height: math.unit(100, "meters")
  8082. },
  8083. {
  8084. name: "Macro+",
  8085. height: math.unit(1500, "meters")
  8086. },
  8087. {
  8088. name: "Stellar",
  8089. height: math.unit(14e8, "meters")
  8090. },
  8091. ]
  8092. ))
  8093. characterMakers.push(() => makeCharacter(
  8094. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  8095. {
  8096. front: {
  8097. height: math.unit(2, "meters"),
  8098. weight: math.unit(70, "kg"),
  8099. name: "Front",
  8100. image: {
  8101. source: "./media/characters/beherit/front.svg",
  8102. extra: 1234/1109,
  8103. bottom: 55/1289
  8104. }
  8105. }
  8106. },
  8107. [
  8108. {
  8109. name: "Normal",
  8110. height: math.unit(6, "feet")
  8111. },
  8112. {
  8113. name: "Lorg",
  8114. height: math.unit(25, "feet"),
  8115. default: true
  8116. },
  8117. {
  8118. name: "Lorger",
  8119. height: math.unit(75, "feet")
  8120. },
  8121. {
  8122. name: "Macro",
  8123. height: math.unit(200, "meters")
  8124. },
  8125. ]
  8126. ))
  8127. characterMakers.push(() => makeCharacter(
  8128. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  8129. {
  8130. front: {
  8131. height: math.unit(2, "meters"),
  8132. weight: math.unit(150, "kg"),
  8133. name: "Front",
  8134. image: {
  8135. source: "./media/characters/everett/front.svg",
  8136. extra: 1017/866,
  8137. bottom: 86/1103
  8138. }
  8139. },
  8140. paw: {
  8141. height: math.unit(2 / 3.6, "meters"),
  8142. name: "Paw",
  8143. image: {
  8144. source: "./media/characters/everett/paw.svg"
  8145. }
  8146. },
  8147. },
  8148. [
  8149. {
  8150. name: "Normal",
  8151. height: math.unit(15, "feet"),
  8152. default: true
  8153. },
  8154. {
  8155. name: "Lorg",
  8156. height: math.unit(70, "feet"),
  8157. default: true
  8158. },
  8159. {
  8160. name: "Lorger",
  8161. height: math.unit(250, "feet")
  8162. },
  8163. {
  8164. name: "Macro",
  8165. height: math.unit(500, "meters")
  8166. },
  8167. ]
  8168. ))
  8169. characterMakers.push(() => makeCharacter(
  8170. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  8171. {
  8172. front: {
  8173. height: math.unit(2, "meters"),
  8174. weight: math.unit(86, "kg"),
  8175. name: "Front",
  8176. image: {
  8177. source: "./media/characters/rose/front.svg",
  8178. extra: 1785/1636,
  8179. bottom: 30/1815
  8180. },
  8181. form: "liom",
  8182. default: true
  8183. },
  8184. frontSporty: {
  8185. height: math.unit(2, "meters"),
  8186. weight: math.unit(86, "kg"),
  8187. name: "Front (Sporty)",
  8188. image: {
  8189. source: "./media/characters/rose/front-sporty.svg",
  8190. extra: 350/335,
  8191. bottom: 10/360
  8192. },
  8193. form: "liom"
  8194. },
  8195. frontAlt: {
  8196. height: math.unit(1.6, "meters"),
  8197. weight: math.unit(86, "kg"),
  8198. name: "Front (Alt)",
  8199. image: {
  8200. source: "./media/characters/rose/front-alt.svg",
  8201. extra: 299/283,
  8202. bottom: 3/302
  8203. },
  8204. form: "liom"
  8205. },
  8206. plush: {
  8207. height: math.unit(2, "meters"),
  8208. weight: math.unit(86/3, "kg"),
  8209. name: "Plush",
  8210. image: {
  8211. source: "./media/characters/rose/plush.svg",
  8212. extra: 361/337,
  8213. bottom: 11/372
  8214. },
  8215. form: "plush",
  8216. default: true
  8217. },
  8218. faeStanding: {
  8219. height: math.unit(10, "cm"),
  8220. weight: math.unit(10, "grams"),
  8221. name: "Standing",
  8222. image: {
  8223. source: "./media/characters/rose/fae-standing.svg",
  8224. extra: 1189/1060,
  8225. bottom: 27/1216
  8226. },
  8227. form: "fae",
  8228. default: true
  8229. },
  8230. faeSitting: {
  8231. height: math.unit(5, "cm"),
  8232. weight: math.unit(10, "grams"),
  8233. name: "Sitting",
  8234. image: {
  8235. source: "./media/characters/rose/fae-sitting.svg",
  8236. extra: 737/577,
  8237. bottom: 356/1093
  8238. },
  8239. form: "fae"
  8240. },
  8241. faePaw: {
  8242. height: math.unit(1.35, "cm"),
  8243. name: "Paw",
  8244. image: {
  8245. source: "./media/characters/rose/fae-paw.svg"
  8246. },
  8247. form: "fae"
  8248. },
  8249. },
  8250. [
  8251. {
  8252. name: "True Micro",
  8253. height: math.unit(9, "cm"),
  8254. form: "liom"
  8255. },
  8256. {
  8257. name: "Micro",
  8258. height: math.unit(16, "cm"),
  8259. form: "liom"
  8260. },
  8261. {
  8262. name: "Normal",
  8263. height: math.unit(1.85, "meters"),
  8264. default: true,
  8265. form: "liom"
  8266. },
  8267. {
  8268. name: "Mini-Macro",
  8269. height: math.unit(5, "meters"),
  8270. form: "liom"
  8271. },
  8272. {
  8273. name: "Macro",
  8274. height: math.unit(15, "meters"),
  8275. form: "liom"
  8276. },
  8277. {
  8278. name: "True Macro",
  8279. height: math.unit(40, "meters"),
  8280. form: "liom"
  8281. },
  8282. {
  8283. name: "City Scale",
  8284. height: math.unit(1, "km"),
  8285. form: "liom"
  8286. },
  8287. {
  8288. name: "Plushie",
  8289. height: math.unit(9, "cm"),
  8290. form: "plush",
  8291. default: true
  8292. },
  8293. {
  8294. name: "Fae",
  8295. height: math.unit(10, "cm"),
  8296. form: "fae",
  8297. default: true
  8298. },
  8299. ],
  8300. {
  8301. "liom": {
  8302. name: "Liom"
  8303. },
  8304. "plush": {
  8305. name: "Plush"
  8306. },
  8307. "fae": {
  8308. name: "Fae Fox",
  8309. default: true
  8310. }
  8311. }
  8312. ))
  8313. characterMakers.push(() => makeCharacter(
  8314. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8315. {
  8316. front: {
  8317. height: math.unit(2, "meters"),
  8318. weight: math.unit(350, "lbs"),
  8319. name: "Front",
  8320. image: {
  8321. source: "./media/characters/regal/front.svg"
  8322. }
  8323. },
  8324. back: {
  8325. height: math.unit(2, "meters"),
  8326. weight: math.unit(350, "lbs"),
  8327. name: "Back",
  8328. image: {
  8329. source: "./media/characters/regal/back.svg"
  8330. }
  8331. },
  8332. },
  8333. [
  8334. {
  8335. name: "Macro",
  8336. height: math.unit(350, "feet"),
  8337. default: true
  8338. }
  8339. ]
  8340. ))
  8341. characterMakers.push(() => makeCharacter(
  8342. { name: "Opal", species: ["rabbit", "deity"], tags: ["anthro"] },
  8343. {
  8344. standing: {
  8345. height: math.unit(4 + 11/12, "feet"),
  8346. weight: math.unit(100, "lb"),
  8347. name: "Standing",
  8348. image: {
  8349. source: "./media/characters/opal/standing.svg",
  8350. extra: 1588/1513,
  8351. bottom: 23/1611
  8352. }
  8353. },
  8354. sitting: {
  8355. height: math.unit(2.3, "feet"),
  8356. weight: math.unit(100, "lb"),
  8357. name: "Sitting",
  8358. image: {
  8359. source: "./media/characters/opal/sitting.svg",
  8360. extra: 1031/892,
  8361. bottom: 142/1173
  8362. }
  8363. },
  8364. hand: {
  8365. height: math.unit(0.59, "feet"),
  8366. name: "Hand",
  8367. image: {
  8368. source: "./media/characters/opal/hand.svg"
  8369. }
  8370. },
  8371. foot: {
  8372. height: math.unit(0.61, "feet"),
  8373. name: "Foot",
  8374. image: {
  8375. source: "./media/characters/opal/foot.svg"
  8376. }
  8377. },
  8378. },
  8379. [
  8380. {
  8381. name: "Small",
  8382. height: math.unit(4 + 11 / 12, "feet")
  8383. },
  8384. {
  8385. name: "Normal",
  8386. height: math.unit(20, "feet"),
  8387. default: true
  8388. },
  8389. {
  8390. name: "Macro",
  8391. height: math.unit(120, "feet")
  8392. },
  8393. {
  8394. name: "Megamacro",
  8395. height: math.unit(80, "miles")
  8396. },
  8397. {
  8398. name: "True Size",
  8399. height: math.unit(100000, "lightyears")
  8400. },
  8401. ]
  8402. ))
  8403. characterMakers.push(() => makeCharacter(
  8404. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8405. {
  8406. front: {
  8407. height: math.unit(6, "feet"),
  8408. weight: math.unit(200, "lbs"),
  8409. name: "Front",
  8410. image: {
  8411. source: "./media/characters/vector-wuff/front.svg"
  8412. }
  8413. }
  8414. },
  8415. [
  8416. {
  8417. name: "Normal",
  8418. height: math.unit(2.8, "meters")
  8419. },
  8420. {
  8421. name: "Macro",
  8422. height: math.unit(450, "meters"),
  8423. default: true
  8424. },
  8425. {
  8426. name: "Megamacro",
  8427. height: math.unit(15, "kilometers")
  8428. }
  8429. ]
  8430. ))
  8431. characterMakers.push(() => makeCharacter(
  8432. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8433. {
  8434. front: {
  8435. height: math.unit(6, "feet"),
  8436. weight: math.unit(256, "lbs"),
  8437. name: "Front",
  8438. image: {
  8439. source: "./media/characters/dannik/front.svg"
  8440. }
  8441. }
  8442. },
  8443. [
  8444. {
  8445. name: "Macro",
  8446. height: math.unit(69.57, "meters"),
  8447. default: true
  8448. },
  8449. ]
  8450. ))
  8451. characterMakers.push(() => makeCharacter(
  8452. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8453. {
  8454. front: {
  8455. height: math.unit(6, "feet"),
  8456. weight: math.unit(120, "lbs"),
  8457. name: "Front",
  8458. image: {
  8459. source: "./media/characters/azura-saharah/front.svg"
  8460. }
  8461. },
  8462. back: {
  8463. height: math.unit(6, "feet"),
  8464. weight: math.unit(120, "lbs"),
  8465. name: "Back",
  8466. image: {
  8467. source: "./media/characters/azura-saharah/back.svg"
  8468. }
  8469. },
  8470. },
  8471. [
  8472. {
  8473. name: "Macro",
  8474. height: math.unit(100, "feet"),
  8475. default: true
  8476. },
  8477. ]
  8478. ))
  8479. characterMakers.push(() => makeCharacter(
  8480. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8481. {
  8482. side: {
  8483. height: math.unit(5 + 4 / 12, "feet"),
  8484. weight: math.unit(163, "lbs"),
  8485. name: "Side",
  8486. image: {
  8487. source: "./media/characters/kennedy/side.svg"
  8488. }
  8489. }
  8490. },
  8491. [
  8492. {
  8493. name: "Standard Doggo",
  8494. height: math.unit(5 + 4 / 12, "feet")
  8495. },
  8496. {
  8497. name: "Big Doggo",
  8498. height: math.unit(25 + 3 / 12, "feet"),
  8499. default: true
  8500. },
  8501. ]
  8502. ))
  8503. characterMakers.push(() => makeCharacter(
  8504. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8505. {
  8506. front: {
  8507. height: math.unit(5 + 5/12, "feet"),
  8508. weight: math.unit(100, "lbs"),
  8509. name: "Front",
  8510. image: {
  8511. source: "./media/characters/odios-de-lunar/front.svg",
  8512. extra: 1468/1323,
  8513. bottom: 22/1490
  8514. }
  8515. }
  8516. },
  8517. [
  8518. {
  8519. name: "Micro",
  8520. height: math.unit(3, "inches")
  8521. },
  8522. {
  8523. name: "Normal",
  8524. height: math.unit(5.5, "feet"),
  8525. default: true
  8526. },
  8527. {
  8528. name: "Macro",
  8529. height: math.unit(100, "feet")
  8530. },
  8531. ]
  8532. ))
  8533. characterMakers.push(() => makeCharacter(
  8534. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8535. {
  8536. back: {
  8537. height: math.unit(6, "feet"),
  8538. weight: math.unit(220, "lbs"),
  8539. name: "Back",
  8540. image: {
  8541. source: "./media/characters/mandake/back.svg"
  8542. }
  8543. }
  8544. },
  8545. [
  8546. {
  8547. name: "Normal",
  8548. height: math.unit(7, "feet"),
  8549. default: true
  8550. },
  8551. {
  8552. name: "Macro",
  8553. height: math.unit(78, "feet")
  8554. },
  8555. {
  8556. name: "Macro+",
  8557. height: math.unit(300, "meters")
  8558. },
  8559. {
  8560. name: "Macro++",
  8561. height: math.unit(2400, "feet")
  8562. },
  8563. {
  8564. name: "Megamacro",
  8565. height: math.unit(5167, "meters")
  8566. },
  8567. {
  8568. name: "Gigamacro",
  8569. height: math.unit(41769, "miles")
  8570. },
  8571. ]
  8572. ))
  8573. characterMakers.push(() => makeCharacter(
  8574. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8575. {
  8576. front: {
  8577. height: math.unit(6, "feet"),
  8578. weight: math.unit(120, "lbs"),
  8579. name: "Front",
  8580. image: {
  8581. source: "./media/characters/yozey/front.svg"
  8582. }
  8583. },
  8584. frontAlt: {
  8585. height: math.unit(6, "feet"),
  8586. weight: math.unit(120, "lbs"),
  8587. name: "Front (Alt)",
  8588. image: {
  8589. source: "./media/characters/yozey/front-alt.svg"
  8590. }
  8591. },
  8592. side: {
  8593. height: math.unit(6, "feet"),
  8594. weight: math.unit(120, "lbs"),
  8595. name: "Side",
  8596. image: {
  8597. source: "./media/characters/yozey/side.svg"
  8598. }
  8599. },
  8600. },
  8601. [
  8602. {
  8603. name: "Micro",
  8604. height: math.unit(3, "inches"),
  8605. default: true
  8606. },
  8607. {
  8608. name: "Normal",
  8609. height: math.unit(6, "feet")
  8610. }
  8611. ]
  8612. ))
  8613. characterMakers.push(() => makeCharacter(
  8614. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8615. {
  8616. front: {
  8617. height: math.unit(6, "feet"),
  8618. weight: math.unit(103, "lbs"),
  8619. name: "Front",
  8620. image: {
  8621. source: "./media/characters/valeska-voss/front.svg"
  8622. }
  8623. }
  8624. },
  8625. [
  8626. {
  8627. name: "Mini-Sized Sub",
  8628. height: math.unit(3.1, "inches")
  8629. },
  8630. {
  8631. name: "Mid-Sized Sub",
  8632. height: math.unit(6.2, "inches")
  8633. },
  8634. {
  8635. name: "Full-Sized Sub",
  8636. height: math.unit(9.3, "inches")
  8637. },
  8638. {
  8639. name: "Normal",
  8640. height: math.unit(5 + 2 / 12, "foot"),
  8641. default: true
  8642. },
  8643. ]
  8644. ))
  8645. characterMakers.push(() => makeCharacter(
  8646. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8647. {
  8648. front: {
  8649. height: math.unit(6, "feet"),
  8650. weight: math.unit(160, "lbs"),
  8651. name: "Front",
  8652. image: {
  8653. source: "./media/characters/gene-zeta/front.svg",
  8654. extra: 3006 / 2826,
  8655. bottom: 182 / 3188
  8656. }
  8657. }
  8658. },
  8659. [
  8660. {
  8661. name: "Micro",
  8662. height: math.unit(6, "inches")
  8663. },
  8664. {
  8665. name: "Normal",
  8666. height: math.unit(5 + 11 / 12, "foot"),
  8667. default: true
  8668. },
  8669. {
  8670. name: "Macro",
  8671. height: math.unit(140, "feet")
  8672. },
  8673. {
  8674. name: "Supercharged",
  8675. height: math.unit(2500, "feet")
  8676. },
  8677. ]
  8678. ))
  8679. characterMakers.push(() => makeCharacter(
  8680. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8681. {
  8682. front: {
  8683. height: math.unit(6, "feet"),
  8684. weight: math.unit(350, "lbs"),
  8685. name: "Front",
  8686. image: {
  8687. source: "./media/characters/razinox/front.svg",
  8688. extra: 1686 / 1548,
  8689. bottom: 28.2 / 1868
  8690. }
  8691. },
  8692. back: {
  8693. height: math.unit(6, "feet"),
  8694. weight: math.unit(350, "lbs"),
  8695. name: "Back",
  8696. image: {
  8697. source: "./media/characters/razinox/back.svg",
  8698. extra: 1660 / 1590,
  8699. bottom: 15 / 1665
  8700. }
  8701. },
  8702. },
  8703. [
  8704. {
  8705. name: "Normal",
  8706. height: math.unit(10 + 8 / 12, "foot")
  8707. },
  8708. {
  8709. name: "Minimacro",
  8710. height: math.unit(15, "foot")
  8711. },
  8712. {
  8713. name: "Macro",
  8714. height: math.unit(60, "foot"),
  8715. default: true
  8716. },
  8717. {
  8718. name: "Megamacro",
  8719. height: math.unit(5, "miles")
  8720. },
  8721. {
  8722. name: "Gigamacro",
  8723. height: math.unit(6000, "miles")
  8724. },
  8725. ]
  8726. ))
  8727. characterMakers.push(() => makeCharacter(
  8728. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8729. {
  8730. front: {
  8731. height: math.unit(6, "feet"),
  8732. weight: math.unit(150, "lbs"),
  8733. name: "Front",
  8734. image: {
  8735. source: "./media/characters/cobalt/front.svg"
  8736. }
  8737. }
  8738. },
  8739. [
  8740. {
  8741. name: "Normal",
  8742. height: math.unit(8 + 1 / 12, "foot")
  8743. },
  8744. {
  8745. name: "Macro",
  8746. height: math.unit(111, "foot"),
  8747. default: true
  8748. },
  8749. {
  8750. name: "Supracosmic",
  8751. height: math.unit(1e42, "feet")
  8752. },
  8753. ]
  8754. ))
  8755. characterMakers.push(() => makeCharacter(
  8756. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8757. {
  8758. front: {
  8759. height: math.unit(5, "inches"),
  8760. name: "Front",
  8761. image: {
  8762. source: "./media/characters/amanda/front.svg",
  8763. extra: 926/791,
  8764. bottom: 38/964
  8765. }
  8766. },
  8767. back: {
  8768. height: math.unit(5, "inches"),
  8769. name: "Back",
  8770. image: {
  8771. source: "./media/characters/amanda/back.svg",
  8772. extra: 909/805,
  8773. bottom: 43/952
  8774. }
  8775. },
  8776. },
  8777. [
  8778. {
  8779. name: "Micro",
  8780. height: math.unit(5, "inches"),
  8781. default: true
  8782. },
  8783. ]
  8784. ))
  8785. characterMakers.push(() => makeCharacter(
  8786. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8787. {
  8788. front: {
  8789. height: math.unit(2.75, "meters"),
  8790. weight: math.unit(1200, "lb"),
  8791. name: "Front",
  8792. image: {
  8793. source: "./media/characters/teal/front.svg",
  8794. extra: 2463 / 2320,
  8795. bottom: 166 / 2629
  8796. }
  8797. },
  8798. back: {
  8799. height: math.unit(2.75, "meters"),
  8800. weight: math.unit(1200, "lb"),
  8801. name: "Back",
  8802. image: {
  8803. source: "./media/characters/teal/back.svg",
  8804. extra: 2580 / 2489,
  8805. bottom: 151 / 2731
  8806. }
  8807. },
  8808. sitting: {
  8809. height: math.unit(1.9, "meters"),
  8810. weight: math.unit(1200, "lb"),
  8811. name: "Sitting",
  8812. image: {
  8813. source: "./media/characters/teal/sitting.svg",
  8814. extra: 623 / 590,
  8815. bottom: 121 / 744
  8816. }
  8817. },
  8818. standing: {
  8819. height: math.unit(2.75, "meters"),
  8820. weight: math.unit(1200, "lb"),
  8821. name: "Standing",
  8822. image: {
  8823. source: "./media/characters/teal/standing.svg",
  8824. extra: 923 / 893,
  8825. bottom: 60 / 983
  8826. }
  8827. },
  8828. stretching: {
  8829. height: math.unit(3.65, "meters"),
  8830. weight: math.unit(1200, "lb"),
  8831. name: "Stretching",
  8832. image: {
  8833. source: "./media/characters/teal/stretching.svg",
  8834. extra: 1276 / 1244,
  8835. bottom: 0 / 1276
  8836. }
  8837. },
  8838. legged: {
  8839. height: math.unit(1.3, "meters"),
  8840. weight: math.unit(100, "lb"),
  8841. name: "Legged",
  8842. image: {
  8843. source: "./media/characters/teal/legged.svg",
  8844. extra: 462 / 437,
  8845. bottom: 24 / 486
  8846. }
  8847. },
  8848. naga: {
  8849. height: math.unit(5.4, "meters"),
  8850. weight: math.unit(4000, "lb"),
  8851. name: "Naga",
  8852. image: {
  8853. source: "./media/characters/teal/naga.svg",
  8854. extra: 1902 / 1858,
  8855. bottom: 0 / 1902
  8856. }
  8857. },
  8858. hand: {
  8859. height: math.unit(0.52, "meters"),
  8860. name: "Hand",
  8861. image: {
  8862. source: "./media/characters/teal/hand.svg"
  8863. }
  8864. },
  8865. maw: {
  8866. height: math.unit(0.43, "meters"),
  8867. name: "Maw",
  8868. image: {
  8869. source: "./media/characters/teal/maw.svg"
  8870. }
  8871. },
  8872. slit: {
  8873. height: math.unit(0.25, "meters"),
  8874. name: "Slit",
  8875. image: {
  8876. source: "./media/characters/teal/slit.svg"
  8877. }
  8878. },
  8879. },
  8880. [
  8881. {
  8882. name: "Normal",
  8883. height: math.unit(2.75, "meters"),
  8884. default: true
  8885. },
  8886. {
  8887. name: "Macro",
  8888. height: math.unit(300, "feet")
  8889. },
  8890. {
  8891. name: "Macro+",
  8892. height: math.unit(2000, "feet")
  8893. },
  8894. ]
  8895. ))
  8896. characterMakers.push(() => makeCharacter(
  8897. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8898. {
  8899. frontCat: {
  8900. height: math.unit(6, "feet"),
  8901. weight: math.unit(180, "lbs"),
  8902. name: "Front (Cat)",
  8903. image: {
  8904. source: "./media/characters/ravin-amulet/front-cat.svg"
  8905. }
  8906. },
  8907. frontCatAlt: {
  8908. height: math.unit(6, "feet"),
  8909. weight: math.unit(180, "lbs"),
  8910. name: "Front (Alt, Cat)",
  8911. image: {
  8912. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8913. }
  8914. },
  8915. frontWerewolf: {
  8916. height: math.unit(6 * 1.2, "feet"),
  8917. weight: math.unit(225, "lbs"),
  8918. name: "Front (Werewolf)",
  8919. image: {
  8920. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8921. }
  8922. },
  8923. backWerewolf: {
  8924. height: math.unit(6 * 1.2, "feet"),
  8925. weight: math.unit(225, "lbs"),
  8926. name: "Back (Werewolf)",
  8927. image: {
  8928. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8929. }
  8930. },
  8931. },
  8932. [
  8933. {
  8934. name: "Nano",
  8935. height: math.unit(1, "micrometer")
  8936. },
  8937. {
  8938. name: "Micro",
  8939. height: math.unit(1, "inch")
  8940. },
  8941. {
  8942. name: "Normal",
  8943. height: math.unit(6, "feet"),
  8944. default: true
  8945. },
  8946. {
  8947. name: "Macro",
  8948. height: math.unit(60, "feet")
  8949. }
  8950. ]
  8951. ))
  8952. characterMakers.push(() => makeCharacter(
  8953. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8954. {
  8955. front: {
  8956. height: math.unit(6, "feet"),
  8957. weight: math.unit(165, "lbs"),
  8958. name: "Front",
  8959. image: {
  8960. source: "./media/characters/fluoresce/front.svg"
  8961. }
  8962. }
  8963. },
  8964. [
  8965. {
  8966. name: "Micro",
  8967. height: math.unit(6, "cm")
  8968. },
  8969. {
  8970. name: "Normal",
  8971. height: math.unit(5 + 7 / 12, "feet"),
  8972. default: true
  8973. },
  8974. {
  8975. name: "Macro",
  8976. height: math.unit(56, "feet")
  8977. },
  8978. {
  8979. name: "Megamacro",
  8980. height: math.unit(1.9, "miles")
  8981. },
  8982. ]
  8983. ))
  8984. characterMakers.push(() => makeCharacter(
  8985. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8986. {
  8987. front: {
  8988. height: math.unit(9 + 6 / 12, "feet"),
  8989. weight: math.unit(523, "lbs"),
  8990. name: "Side",
  8991. image: {
  8992. source: "./media/characters/aurora/side.svg",
  8993. extra: 474/393,
  8994. bottom: 5/479
  8995. }
  8996. }
  8997. },
  8998. [
  8999. {
  9000. name: "Normal",
  9001. height: math.unit(9 + 6 / 12, "feet")
  9002. },
  9003. {
  9004. name: "Macro",
  9005. height: math.unit(96, "feet"),
  9006. default: true
  9007. },
  9008. {
  9009. name: "Macro+",
  9010. height: math.unit(243, "feet")
  9011. },
  9012. ]
  9013. ))
  9014. characterMakers.push(() => makeCharacter(
  9015. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  9016. {
  9017. front: {
  9018. height: math.unit(194, "cm"),
  9019. weight: math.unit(90, "kg"),
  9020. name: "Front",
  9021. image: {
  9022. source: "./media/characters/ranek/front.svg",
  9023. extra: 1862/1791,
  9024. bottom: 80/1942
  9025. }
  9026. },
  9027. back: {
  9028. height: math.unit(194, "cm"),
  9029. weight: math.unit(90, "kg"),
  9030. name: "Back",
  9031. image: {
  9032. source: "./media/characters/ranek/back.svg",
  9033. extra: 1853/1787,
  9034. bottom: 74/1927
  9035. }
  9036. },
  9037. feral: {
  9038. height: math.unit(30, "cm"),
  9039. weight: math.unit(1.6, "lbs"),
  9040. name: "Feral",
  9041. image: {
  9042. source: "./media/characters/ranek/feral.svg",
  9043. extra: 990/631,
  9044. bottom: 29/1019
  9045. }
  9046. },
  9047. },
  9048. [
  9049. {
  9050. name: "Normal",
  9051. height: math.unit(194, "cm"),
  9052. default: true
  9053. },
  9054. {
  9055. name: "Macro",
  9056. height: math.unit(100, "meters")
  9057. },
  9058. ]
  9059. ))
  9060. characterMakers.push(() => makeCharacter(
  9061. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  9062. {
  9063. front: {
  9064. height: math.unit(5 + 6 / 12, "feet"),
  9065. weight: math.unit(153, "lbs"),
  9066. name: "Front",
  9067. image: {
  9068. source: "./media/characters/andrew-cooper/front.svg"
  9069. }
  9070. },
  9071. },
  9072. [
  9073. {
  9074. name: "Nano",
  9075. height: math.unit(1, "mm")
  9076. },
  9077. {
  9078. name: "Micro",
  9079. height: math.unit(2, "inches")
  9080. },
  9081. {
  9082. name: "Normal",
  9083. height: math.unit(5 + 6 / 12, "feet"),
  9084. default: true
  9085. }
  9086. ]
  9087. ))
  9088. characterMakers.push(() => makeCharacter(
  9089. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  9090. {
  9091. front: {
  9092. height: math.unit(6, "feet"),
  9093. weight: math.unit(180, "lbs"),
  9094. name: "Front",
  9095. image: {
  9096. source: "./media/characters/akane-sato/front.svg",
  9097. extra: 1219 / 1140
  9098. }
  9099. },
  9100. back: {
  9101. height: math.unit(6, "feet"),
  9102. weight: math.unit(180, "lbs"),
  9103. name: "Back",
  9104. image: {
  9105. source: "./media/characters/akane-sato/back.svg",
  9106. extra: 1219 / 1170
  9107. }
  9108. },
  9109. },
  9110. [
  9111. {
  9112. name: "Normal",
  9113. height: math.unit(2.5, "meters")
  9114. },
  9115. {
  9116. name: "Macro",
  9117. height: math.unit(250, "meters"),
  9118. default: true
  9119. },
  9120. {
  9121. name: "Megamacro",
  9122. height: math.unit(25, "km")
  9123. },
  9124. ]
  9125. ))
  9126. characterMakers.push(() => makeCharacter(
  9127. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  9128. {
  9129. front: {
  9130. height: math.unit(6, "feet"),
  9131. weight: math.unit(65, "kg"),
  9132. name: "Front",
  9133. image: {
  9134. source: "./media/characters/rook/front.svg",
  9135. extra: 960 / 950
  9136. }
  9137. }
  9138. },
  9139. [
  9140. {
  9141. name: "Normal",
  9142. height: math.unit(8.8, "feet")
  9143. },
  9144. {
  9145. name: "Macro",
  9146. height: math.unit(88, "feet"),
  9147. default: true
  9148. },
  9149. {
  9150. name: "Megamacro",
  9151. height: math.unit(8, "miles")
  9152. },
  9153. ]
  9154. ))
  9155. characterMakers.push(() => makeCharacter(
  9156. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  9157. {
  9158. front: {
  9159. height: math.unit(12 + 2 / 12, "feet"),
  9160. weight: math.unit(808, "lbs"),
  9161. name: "Front",
  9162. image: {
  9163. source: "./media/characters/prodigy/front.svg"
  9164. }
  9165. }
  9166. },
  9167. [
  9168. {
  9169. name: "Normal",
  9170. height: math.unit(12 + 2 / 12, "feet"),
  9171. default: true
  9172. },
  9173. {
  9174. name: "Macro",
  9175. height: math.unit(143, "feet")
  9176. },
  9177. {
  9178. name: "Macro+",
  9179. height: math.unit(400, "feet")
  9180. },
  9181. ]
  9182. ))
  9183. characterMakers.push(() => makeCharacter(
  9184. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  9185. {
  9186. front: {
  9187. height: math.unit(6, "feet"),
  9188. weight: math.unit(225, "lbs"),
  9189. name: "Front",
  9190. image: {
  9191. source: "./media/characters/daniel/front.svg"
  9192. }
  9193. },
  9194. leaning: {
  9195. height: math.unit(6, "feet"),
  9196. weight: math.unit(225, "lbs"),
  9197. name: "Leaning",
  9198. image: {
  9199. source: "./media/characters/daniel/leaning.svg"
  9200. }
  9201. },
  9202. },
  9203. [
  9204. {
  9205. name: "Macro",
  9206. height: math.unit(1000, "feet"),
  9207. default: true
  9208. },
  9209. ]
  9210. ))
  9211. characterMakers.push(() => makeCharacter(
  9212. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  9213. {
  9214. front: {
  9215. height: math.unit(6, "feet"),
  9216. weight: math.unit(88, "lbs"),
  9217. name: "Front",
  9218. image: {
  9219. source: "./media/characters/chiros/front.svg",
  9220. extra: 306 / 226
  9221. }
  9222. },
  9223. side: {
  9224. height: math.unit(6, "feet"),
  9225. weight: math.unit(88, "lbs"),
  9226. name: "Side",
  9227. image: {
  9228. source: "./media/characters/chiros/side.svg",
  9229. extra: 306 / 226
  9230. }
  9231. },
  9232. },
  9233. [
  9234. {
  9235. name: "Normal",
  9236. height: math.unit(6, "cm"),
  9237. default: true
  9238. },
  9239. ]
  9240. ))
  9241. characterMakers.push(() => makeCharacter(
  9242. { name: "Selka", species: ["snake"], tags: ["naga"] },
  9243. {
  9244. front: {
  9245. height: math.unit(6, "feet"),
  9246. weight: math.unit(100, "lbs"),
  9247. name: "Front",
  9248. image: {
  9249. source: "./media/characters/selka/front.svg",
  9250. extra: 947 / 887
  9251. }
  9252. }
  9253. },
  9254. [
  9255. {
  9256. name: "Normal",
  9257. height: math.unit(5, "cm"),
  9258. default: true
  9259. },
  9260. ]
  9261. ))
  9262. characterMakers.push(() => makeCharacter(
  9263. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  9264. {
  9265. front: {
  9266. height: math.unit(8 + 3 / 12, "feet"),
  9267. weight: math.unit(424, "lbs"),
  9268. name: "Front",
  9269. image: {
  9270. source: "./media/characters/verin/front.svg",
  9271. extra: 1845 / 1550
  9272. }
  9273. },
  9274. frontArmored: {
  9275. height: math.unit(8 + 3 / 12, "feet"),
  9276. weight: math.unit(424, "lbs"),
  9277. name: "Front (Armored)",
  9278. image: {
  9279. source: "./media/characters/verin/front-armor.svg",
  9280. extra: 1845 / 1550,
  9281. bottom: 0.01
  9282. }
  9283. },
  9284. back: {
  9285. height: math.unit(8 + 3 / 12, "feet"),
  9286. weight: math.unit(424, "lbs"),
  9287. name: "Back",
  9288. image: {
  9289. source: "./media/characters/verin/back.svg",
  9290. bottom: 0.1,
  9291. extra: 1
  9292. }
  9293. },
  9294. foot: {
  9295. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9296. name: "Foot",
  9297. image: {
  9298. source: "./media/characters/verin/foot.svg"
  9299. }
  9300. },
  9301. },
  9302. [
  9303. {
  9304. name: "Normal",
  9305. height: math.unit(8 + 3 / 12, "feet")
  9306. },
  9307. {
  9308. name: "Minimacro",
  9309. height: math.unit(21, "feet"),
  9310. default: true
  9311. },
  9312. {
  9313. name: "Macro",
  9314. height: math.unit(626, "feet")
  9315. },
  9316. ]
  9317. ))
  9318. characterMakers.push(() => makeCharacter(
  9319. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9320. {
  9321. front: {
  9322. height: math.unit(2.718, "meters"),
  9323. weight: math.unit(150, "lbs"),
  9324. name: "Front",
  9325. image: {
  9326. source: "./media/characters/sovrim-terraquian/front.svg",
  9327. extra: 1752/1689,
  9328. bottom: 36/1788
  9329. }
  9330. },
  9331. back: {
  9332. height: math.unit(2.718, "meters"),
  9333. weight: math.unit(150, "lbs"),
  9334. name: "Back",
  9335. image: {
  9336. source: "./media/characters/sovrim-terraquian/back.svg",
  9337. extra: 1698/1657,
  9338. bottom: 58/1756
  9339. }
  9340. },
  9341. tongue: {
  9342. height: math.unit(2.865, "feet"),
  9343. name: "Tongue",
  9344. image: {
  9345. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9346. }
  9347. },
  9348. hand: {
  9349. height: math.unit(1.61, "feet"),
  9350. name: "Hand",
  9351. image: {
  9352. source: "./media/characters/sovrim-terraquian/hand.svg"
  9353. }
  9354. },
  9355. foot: {
  9356. height: math.unit(1.05, "feet"),
  9357. name: "Foot",
  9358. image: {
  9359. source: "./media/characters/sovrim-terraquian/foot.svg"
  9360. }
  9361. },
  9362. footAlt: {
  9363. height: math.unit(0.88, "feet"),
  9364. name: "Foot (Alt)",
  9365. image: {
  9366. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9367. }
  9368. },
  9369. },
  9370. [
  9371. {
  9372. name: "Micro",
  9373. height: math.unit(2, "inches")
  9374. },
  9375. {
  9376. name: "Small",
  9377. height: math.unit(1, "meter")
  9378. },
  9379. {
  9380. name: "Normal",
  9381. height: math.unit(Math.E, "meters"),
  9382. default: true
  9383. },
  9384. {
  9385. name: "Macro",
  9386. height: math.unit(20, "meters")
  9387. },
  9388. {
  9389. name: "Macro+",
  9390. height: math.unit(400, "meters")
  9391. },
  9392. ]
  9393. ))
  9394. characterMakers.push(() => makeCharacter(
  9395. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9396. {
  9397. front: {
  9398. height: math.unit(7, "feet"),
  9399. weight: math.unit(489, "lbs"),
  9400. name: "Front",
  9401. image: {
  9402. source: "./media/characters/reece-silvermane/front.svg",
  9403. bottom: 0.02,
  9404. extra: 1
  9405. }
  9406. },
  9407. },
  9408. [
  9409. {
  9410. name: "Macro",
  9411. height: math.unit(1.5, "miles"),
  9412. default: true
  9413. },
  9414. ]
  9415. ))
  9416. characterMakers.push(() => makeCharacter(
  9417. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9418. {
  9419. front: {
  9420. height: math.unit(6, "feet"),
  9421. weight: math.unit(78, "kg"),
  9422. name: "Front",
  9423. image: {
  9424. source: "./media/characters/kane/front.svg",
  9425. extra: 978 / 899
  9426. }
  9427. },
  9428. back: {
  9429. height: math.unit(6, "feet"),
  9430. weight: math.unit(78, "kg"),
  9431. name: "Back",
  9432. image: {
  9433. source: "./media/characters/kane/back.svg",
  9434. extra: 1966/1800,
  9435. bottom: 0/1966
  9436. }
  9437. },
  9438. head: {
  9439. height: math.unit(1.4, "feet"),
  9440. name: "Head",
  9441. image: {
  9442. source: "./media/characters/kane/head.svg"
  9443. }
  9444. },
  9445. },
  9446. [
  9447. {
  9448. name: "Normal",
  9449. height: math.unit(2.1, "m"),
  9450. },
  9451. {
  9452. name: "Macro",
  9453. height: math.unit(1, "km"),
  9454. default: true
  9455. },
  9456. ]
  9457. ))
  9458. characterMakers.push(() => makeCharacter(
  9459. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9460. {
  9461. front: {
  9462. height: math.unit(6, "feet"),
  9463. weight: math.unit(200, "kg"),
  9464. name: "Front",
  9465. image: {
  9466. source: "./media/characters/tegon/front.svg",
  9467. bottom: 0.01,
  9468. extra: 1
  9469. }
  9470. },
  9471. },
  9472. [
  9473. {
  9474. name: "Micro",
  9475. height: math.unit(1, "inch")
  9476. },
  9477. {
  9478. name: "Normal",
  9479. height: math.unit(6 + 3 / 12, "feet"),
  9480. default: true
  9481. },
  9482. {
  9483. name: "Macro",
  9484. height: math.unit(300, "feet")
  9485. },
  9486. {
  9487. name: "Megamacro",
  9488. height: math.unit(69, "miles")
  9489. },
  9490. ]
  9491. ))
  9492. characterMakers.push(() => makeCharacter(
  9493. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9494. {
  9495. side: {
  9496. height: math.unit(6, "feet"),
  9497. weight: math.unit(2304, "lbs"),
  9498. name: "Side",
  9499. image: {
  9500. source: "./media/characters/arcturax/side.svg",
  9501. extra: 790 / 376,
  9502. bottom: 0.01
  9503. }
  9504. },
  9505. },
  9506. [
  9507. {
  9508. name: "Micro",
  9509. height: math.unit(2, "inch")
  9510. },
  9511. {
  9512. name: "Normal",
  9513. height: math.unit(6, "feet")
  9514. },
  9515. {
  9516. name: "Macro",
  9517. height: math.unit(39, "feet"),
  9518. default: true
  9519. },
  9520. {
  9521. name: "Megamacro",
  9522. height: math.unit(7, "miles")
  9523. },
  9524. ]
  9525. ))
  9526. characterMakers.push(() => makeCharacter(
  9527. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9528. {
  9529. front: {
  9530. height: math.unit(6, "feet"),
  9531. weight: math.unit(50, "lbs"),
  9532. name: "Front",
  9533. image: {
  9534. source: "./media/characters/sentri/front.svg",
  9535. extra: 1750 / 1570,
  9536. bottom: 0.025
  9537. }
  9538. },
  9539. frontAlt: {
  9540. height: math.unit(6, "feet"),
  9541. weight: math.unit(50, "lbs"),
  9542. name: "Front (Alt)",
  9543. image: {
  9544. source: "./media/characters/sentri/front-alt.svg",
  9545. extra: 1750 / 1570,
  9546. bottom: 0.025
  9547. }
  9548. },
  9549. },
  9550. [
  9551. {
  9552. name: "Normal",
  9553. height: math.unit(15, "feet"),
  9554. default: true
  9555. },
  9556. {
  9557. name: "Macro",
  9558. height: math.unit(2500, "feet")
  9559. }
  9560. ]
  9561. ))
  9562. characterMakers.push(() => makeCharacter(
  9563. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9564. {
  9565. front: {
  9566. height: math.unit(5 + 8 / 12, "feet"),
  9567. weight: math.unit(130, "lbs"),
  9568. name: "Front",
  9569. image: {
  9570. source: "./media/characters/corvin/front.svg",
  9571. extra: 1803 / 1629
  9572. }
  9573. },
  9574. frontShirt: {
  9575. height: math.unit(5 + 8 / 12, "feet"),
  9576. weight: math.unit(130, "lbs"),
  9577. name: "Front (Shirt)",
  9578. image: {
  9579. source: "./media/characters/corvin/front-shirt.svg",
  9580. extra: 1803 / 1629
  9581. }
  9582. },
  9583. frontPoncho: {
  9584. height: math.unit(5 + 8 / 12, "feet"),
  9585. weight: math.unit(130, "lbs"),
  9586. name: "Front (Poncho)",
  9587. image: {
  9588. source: "./media/characters/corvin/front-poncho.svg",
  9589. extra: 1803 / 1629
  9590. }
  9591. },
  9592. side: {
  9593. height: math.unit(5 + 8 / 12, "feet"),
  9594. weight: math.unit(130, "lbs"),
  9595. name: "Side",
  9596. image: {
  9597. source: "./media/characters/corvin/side.svg",
  9598. extra: 1012 / 945
  9599. }
  9600. },
  9601. back: {
  9602. height: math.unit(5 + 8 / 12, "feet"),
  9603. weight: math.unit(130, "lbs"),
  9604. name: "Back",
  9605. image: {
  9606. source: "./media/characters/corvin/back.svg",
  9607. extra: 1803 / 1629
  9608. }
  9609. },
  9610. },
  9611. [
  9612. {
  9613. name: "Micro",
  9614. height: math.unit(3, "inches")
  9615. },
  9616. {
  9617. name: "Normal",
  9618. height: math.unit(5 + 8 / 12, "feet")
  9619. },
  9620. {
  9621. name: "Macro",
  9622. height: math.unit(300, "feet"),
  9623. default: true
  9624. },
  9625. {
  9626. name: "Megamacro",
  9627. height: math.unit(500, "miles")
  9628. }
  9629. ]
  9630. ))
  9631. characterMakers.push(() => makeCharacter(
  9632. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9633. {
  9634. front: {
  9635. height: math.unit(6, "feet"),
  9636. weight: math.unit(135, "lbs"),
  9637. name: "Front",
  9638. image: {
  9639. source: "./media/characters/q/front.svg",
  9640. extra: 854 / 752,
  9641. bottom: 0.005
  9642. }
  9643. },
  9644. back: {
  9645. height: math.unit(6, "feet"),
  9646. weight: math.unit(130, "lbs"),
  9647. name: "Back",
  9648. image: {
  9649. source: "./media/characters/q/back.svg",
  9650. extra: 854 / 752
  9651. }
  9652. },
  9653. },
  9654. [
  9655. {
  9656. name: "Macro",
  9657. height: math.unit(90, "feet"),
  9658. default: true
  9659. },
  9660. {
  9661. name: "Extra Macro",
  9662. height: math.unit(300, "feet"),
  9663. },
  9664. {
  9665. name: "BIG WALF",
  9666. height: math.unit(750, "feet"),
  9667. },
  9668. ]
  9669. ))
  9670. characterMakers.push(() => makeCharacter(
  9671. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9672. {
  9673. front: {
  9674. height: math.unit(3, "feet"),
  9675. weight: math.unit(28, "lbs"),
  9676. name: "Front",
  9677. image: {
  9678. source: "./media/characters/citrine/front.svg"
  9679. }
  9680. }
  9681. },
  9682. [
  9683. {
  9684. name: "Normal",
  9685. height: math.unit(3, "feet"),
  9686. default: true
  9687. }
  9688. ]
  9689. ))
  9690. characterMakers.push(() => makeCharacter(
  9691. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9692. {
  9693. front: {
  9694. height: math.unit(14, "feet"),
  9695. weight: math.unit(1450, "kg"),
  9696. preyCapacity: math.unit(15, "people"),
  9697. name: "Front",
  9698. image: {
  9699. source: "./media/characters/aura-starwind/front.svg",
  9700. extra: 1440/1327,
  9701. bottom: 11/1451
  9702. }
  9703. },
  9704. side: {
  9705. height: math.unit(14, "feet"),
  9706. weight: math.unit(1450, "kg"),
  9707. preyCapacity: math.unit(15, "people"),
  9708. name: "Side",
  9709. image: {
  9710. source: "./media/characters/aura-starwind/side.svg",
  9711. extra: 1654 / 1497
  9712. }
  9713. },
  9714. taur: {
  9715. height: math.unit(18, "feet"),
  9716. weight: math.unit(5500, "kg"),
  9717. preyCapacity: math.unit(50, "people"),
  9718. name: "Taur",
  9719. image: {
  9720. source: "./media/characters/aura-starwind/taur.svg",
  9721. extra: 1760 / 1650
  9722. }
  9723. },
  9724. feral: {
  9725. height: math.unit(46, "feet"),
  9726. weight: math.unit(25000, "kg"),
  9727. preyCapacity: math.unit(120, "people"),
  9728. name: "Feral",
  9729. image: {
  9730. source: "./media/characters/aura-starwind/feral.svg"
  9731. }
  9732. },
  9733. },
  9734. [
  9735. {
  9736. name: "Normal",
  9737. height: math.unit(14, "feet"),
  9738. default: true
  9739. },
  9740. {
  9741. name: "Macro",
  9742. height: math.unit(50, "meters")
  9743. },
  9744. {
  9745. name: "Megamacro",
  9746. height: math.unit(5000, "meters")
  9747. },
  9748. {
  9749. name: "Gigamacro",
  9750. height: math.unit(100000, "kilometers")
  9751. },
  9752. ]
  9753. ))
  9754. characterMakers.push(() => makeCharacter(
  9755. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9756. {
  9757. front: {
  9758. height: math.unit(2 + 7 / 12, "feet"),
  9759. weight: math.unit(32, "lbs"),
  9760. name: "Front",
  9761. image: {
  9762. source: "./media/characters/rivet/front.svg",
  9763. extra: 1716 / 1658,
  9764. bottom: 0.03
  9765. }
  9766. },
  9767. foot: {
  9768. height: math.unit(0.551, "feet"),
  9769. name: "Rivet's Foot",
  9770. image: {
  9771. source: "./media/characters/rivet/foot.svg"
  9772. },
  9773. rename: true
  9774. }
  9775. },
  9776. [
  9777. {
  9778. name: "Micro",
  9779. height: math.unit(1.5, "inches"),
  9780. },
  9781. {
  9782. name: "Normal",
  9783. height: math.unit(2 + 7 / 12, "feet"),
  9784. default: true
  9785. },
  9786. {
  9787. name: "Macro",
  9788. height: math.unit(85, "feet")
  9789. },
  9790. {
  9791. name: "Megamacro",
  9792. height: math.unit(2.2, "km")
  9793. }
  9794. ]
  9795. ))
  9796. characterMakers.push(() => makeCharacter(
  9797. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9798. {
  9799. front: {
  9800. height: math.unit(5 + 9 / 12, "feet"),
  9801. weight: math.unit(150, "lbs"),
  9802. name: "Front",
  9803. image: {
  9804. source: "./media/characters/coffee/front.svg",
  9805. extra: 946/880,
  9806. bottom: 66/1012
  9807. }
  9808. },
  9809. foot: {
  9810. height: math.unit(1.29, "feet"),
  9811. name: "Foot",
  9812. image: {
  9813. source: "./media/characters/coffee/foot.svg"
  9814. }
  9815. },
  9816. },
  9817. [
  9818. {
  9819. name: "Micro",
  9820. height: math.unit(2, "inches"),
  9821. },
  9822. {
  9823. name: "Normal",
  9824. height: math.unit(5 + 9 / 12, "feet"),
  9825. default: true
  9826. },
  9827. {
  9828. name: "Macro",
  9829. height: math.unit(800, "feet")
  9830. },
  9831. {
  9832. name: "Megamacro",
  9833. height: math.unit(25, "miles")
  9834. }
  9835. ]
  9836. ))
  9837. characterMakers.push(() => makeCharacter(
  9838. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9839. {
  9840. front: {
  9841. height: math.unit(6, "feet"),
  9842. weight: math.unit(200, "lbs"),
  9843. name: "Front",
  9844. image: {
  9845. source: "./media/characters/chari-gal/front.svg",
  9846. extra: 735/649,
  9847. bottom: 55/790
  9848. },
  9849. form: "normal",
  9850. default: true
  9851. },
  9852. back: {
  9853. height: math.unit(6, "feet"),
  9854. weight: math.unit(200, "lb"),
  9855. name: "Back",
  9856. image: {
  9857. source: "./media/characters/chari-gal/back.svg",
  9858. extra: 762/666,
  9859. bottom: 31/793
  9860. },
  9861. form: "normal"
  9862. },
  9863. mouth: {
  9864. height: math.unit(1.35, "feet"),
  9865. name: "Mouth",
  9866. image: {
  9867. source: "./media/characters/chari-gal/mouth.svg"
  9868. },
  9869. form: "normal"
  9870. },
  9871. gigantamax: {
  9872. height: math.unit(6 * 16, "feet"),
  9873. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9874. name: "Gigantamax",
  9875. image: {
  9876. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9877. extra: 1507/1149,
  9878. bottom: 254/1761
  9879. },
  9880. form: "gigantamax",
  9881. default: true
  9882. },
  9883. },
  9884. [
  9885. {
  9886. name: "Normal",
  9887. height: math.unit(5 + 7 / 12, "feet"),
  9888. form: "normal",
  9889. },
  9890. {
  9891. name: "Macro",
  9892. height: math.unit(200, "feet"),
  9893. default: true,
  9894. form: "normal"
  9895. },
  9896. {
  9897. name: "Normal",
  9898. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9899. form: "gigantamax",
  9900. },
  9901. {
  9902. name: "Macro",
  9903. height: math.unit(16 * 200, "feet"),
  9904. default: true,
  9905. form: "gigantamax"
  9906. },
  9907. ],
  9908. {
  9909. "normal": {
  9910. name: "Normal",
  9911. default: true
  9912. },
  9913. "gigantamax": {
  9914. name: "Gigantamax",
  9915. },
  9916. }
  9917. ))
  9918. characterMakers.push(() => makeCharacter(
  9919. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9920. {
  9921. front: {
  9922. height: math.unit(6, "feet"),
  9923. weight: math.unit(150, "lbs"),
  9924. name: "Front",
  9925. image: {
  9926. source: "./media/characters/nova/front.svg",
  9927. extra: 5000 / 4722,
  9928. bottom: 0.02
  9929. }
  9930. }
  9931. },
  9932. [
  9933. {
  9934. name: "Micro-",
  9935. height: math.unit(0.8, "inches")
  9936. },
  9937. {
  9938. name: "Micro",
  9939. height: math.unit(2, "inches"),
  9940. default: true
  9941. },
  9942. ]
  9943. ))
  9944. characterMakers.push(() => makeCharacter(
  9945. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9946. {
  9947. koboldFront: {
  9948. height: math.unit(3 + 1 / 12, "feet"),
  9949. weight: math.unit(21.7, "lbs"),
  9950. name: "Front",
  9951. image: {
  9952. source: "./media/characters/argent/kobold-front.svg",
  9953. extra: 1471 / 1331,
  9954. bottom: 100.8 / 1575.5
  9955. },
  9956. form: "kobold",
  9957. default: true
  9958. },
  9959. dragonFront: {
  9960. height: math.unit(75, "inches"),
  9961. name: "Front",
  9962. image: {
  9963. source: "./media/characters/argent/dragon-front.svg",
  9964. extra: 1389/1248,
  9965. bottom: 54/1443
  9966. },
  9967. form: "dragon",
  9968. },
  9969. dragonBack: {
  9970. height: math.unit(75, "inches"),
  9971. name: "Back",
  9972. image: {
  9973. source: "./media/characters/argent/dragon-back.svg",
  9974. extra: 1399/1271,
  9975. bottom: 23/1422
  9976. },
  9977. form: "dragon",
  9978. },
  9979. dragonDressed: {
  9980. height: math.unit(75, "inches"),
  9981. name: "Dressed",
  9982. image: {
  9983. source: "./media/characters/argent/dragon-dressed.svg",
  9984. extra: 1350/1215,
  9985. bottom: 26/1376
  9986. },
  9987. form: "dragon"
  9988. },
  9989. dragonHead: {
  9990. height: math.unit(23.5, "inches"),
  9991. name: "Head",
  9992. image: {
  9993. source: "./media/characters/argent/dragon-head.svg"
  9994. },
  9995. form: "dragon",
  9996. },
  9997. },
  9998. [
  9999. {
  10000. name: "Micro",
  10001. height: math.unit(2, "inches"),
  10002. form: "kobold",
  10003. },
  10004. {
  10005. name: "Normal",
  10006. height: math.unit(3 + 1 / 12, "feet"),
  10007. form: "kobold",
  10008. default: true
  10009. },
  10010. {
  10011. name: "Macro",
  10012. height: math.unit(120, "feet"),
  10013. form: "kobold",
  10014. },
  10015. {
  10016. name: "Speck",
  10017. height: math.unit(1, "mm"),
  10018. form: "dragon",
  10019. },
  10020. {
  10021. name: "Tiny",
  10022. height: math.unit(1, "cm"),
  10023. form: "dragon",
  10024. },
  10025. {
  10026. name: "Micro",
  10027. height: math.unit(5, "cm"),
  10028. form: "dragon",
  10029. },
  10030. {
  10031. name: "Normal",
  10032. height: math.unit(75, "inches"),
  10033. form: "dragon",
  10034. default: true
  10035. },
  10036. {
  10037. name: "Extra Tall",
  10038. height: math.unit(9, "feet"),
  10039. form: "dragon",
  10040. },
  10041. {
  10042. name: "Inconvenient",
  10043. height: math.unit(5, "meters"),
  10044. form: "dragon",
  10045. },
  10046. {
  10047. name: "Macro",
  10048. height: math.unit(70, "meters"),
  10049. form: "dragon",
  10050. },
  10051. {
  10052. name: "Macro+",
  10053. height: math.unit(250, "meters"),
  10054. form: "dragon",
  10055. },
  10056. {
  10057. name: "Megamacro",
  10058. height: math.unit(20, "km"),
  10059. form: "dragon",
  10060. },
  10061. {
  10062. name: "Mountainous",
  10063. height: math.unit(100, "km"),
  10064. form: "dragon",
  10065. },
  10066. {
  10067. name: "Continental",
  10068. height: math.unit(2, "megameters"),
  10069. form: "dragon",
  10070. },
  10071. {
  10072. name: "Too Big",
  10073. height: math.unit(900, "megameters"),
  10074. form: "dragon",
  10075. },
  10076. ],
  10077. {
  10078. "kobold": {
  10079. name: "Kobold",
  10080. default: true
  10081. },
  10082. "dragon": {
  10083. name: "Dragon",
  10084. },
  10085. }
  10086. ))
  10087. characterMakers.push(() => makeCharacter(
  10088. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  10089. {
  10090. lamp: {
  10091. height: math.unit(7 * 1559 / 989, "feet"),
  10092. name: "Magic Lamp",
  10093. image: {
  10094. source: "./media/characters/mira-al-cul/lamp.svg",
  10095. extra: 1617 / 1559
  10096. }
  10097. },
  10098. front: {
  10099. height: math.unit(7, "feet"),
  10100. name: "Front",
  10101. image: {
  10102. source: "./media/characters/mira-al-cul/front.svg",
  10103. extra: 1044 / 990
  10104. }
  10105. },
  10106. },
  10107. [
  10108. {
  10109. name: "Heavily Restricted",
  10110. height: math.unit(7 * 1559 / 989, "feet")
  10111. },
  10112. {
  10113. name: "Freshly Freed",
  10114. height: math.unit(50 * 1559 / 989, "feet")
  10115. },
  10116. {
  10117. name: "World Encompassing",
  10118. height: math.unit(10000 * 1559 / 989, "miles")
  10119. },
  10120. {
  10121. name: "Galactic",
  10122. height: math.unit(1.433 * 1559 / 989, "zettameters")
  10123. },
  10124. {
  10125. name: "Palmed Universe",
  10126. height: math.unit(6000 * 1559 / 989, "yottameters"),
  10127. default: true
  10128. },
  10129. {
  10130. name: "Multiversal Matriarch",
  10131. height: math.unit(8.87e10, "yottameters")
  10132. },
  10133. {
  10134. name: "Void Mother",
  10135. height: math.unit(3.14e110, "yottaparsecs")
  10136. },
  10137. {
  10138. name: "Toying with Transcendence",
  10139. height: math.unit(1e307, "meters")
  10140. },
  10141. ]
  10142. ))
  10143. characterMakers.push(() => makeCharacter(
  10144. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  10145. {
  10146. front: {
  10147. height: math.unit(17 + 1 / 12, "feet"),
  10148. weight: math.unit(476.2 * 5, "lbs"),
  10149. name: "Front",
  10150. image: {
  10151. source: "./media/characters/kuro-shi-uchū/front.svg",
  10152. extra: 2329 / 1835,
  10153. bottom: 0.02
  10154. }
  10155. },
  10156. },
  10157. [
  10158. {
  10159. name: "Micro",
  10160. height: math.unit(2, "inches")
  10161. },
  10162. {
  10163. name: "Normal",
  10164. height: math.unit(12, "meters")
  10165. },
  10166. {
  10167. name: "Planetary",
  10168. height: math.unit(0.00929, "AU"),
  10169. default: true
  10170. },
  10171. {
  10172. name: "Universal",
  10173. height: math.unit(20, "gigaparsecs")
  10174. },
  10175. ]
  10176. ))
  10177. characterMakers.push(() => makeCharacter(
  10178. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  10179. {
  10180. front: {
  10181. height: math.unit(5 + 2 / 12, "feet"),
  10182. weight: math.unit(120, "lbs"),
  10183. name: "Front",
  10184. image: {
  10185. source: "./media/characters/katherine/front.svg",
  10186. extra: 2075 / 1969
  10187. }
  10188. },
  10189. dress: {
  10190. height: math.unit(5 + 2 / 12, "feet"),
  10191. weight: math.unit(120, "lbs"),
  10192. name: "Dress",
  10193. image: {
  10194. source: "./media/characters/katherine/dress.svg",
  10195. extra: 2258 / 2064
  10196. }
  10197. },
  10198. },
  10199. [
  10200. {
  10201. name: "Micro",
  10202. height: math.unit(1, "inches"),
  10203. default: true
  10204. },
  10205. {
  10206. name: "Normal",
  10207. height: math.unit(5 + 2 / 12, "feet")
  10208. },
  10209. {
  10210. name: "Macro",
  10211. height: math.unit(100, "meters")
  10212. },
  10213. {
  10214. name: "Megamacro",
  10215. height: math.unit(80, "miles")
  10216. },
  10217. ]
  10218. ))
  10219. characterMakers.push(() => makeCharacter(
  10220. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  10221. {
  10222. front: {
  10223. height: math.unit(7 + 8 / 12, "feet"),
  10224. weight: math.unit(250, "lbs"),
  10225. name: "Front",
  10226. image: {
  10227. source: "./media/characters/yevis/front.svg",
  10228. extra: 1938 / 1755
  10229. }
  10230. }
  10231. },
  10232. [
  10233. {
  10234. name: "Mortal",
  10235. height: math.unit(7 + 8 / 12, "feet")
  10236. },
  10237. {
  10238. name: "Battle",
  10239. height: math.unit(25 + 11 / 12, "feet")
  10240. },
  10241. {
  10242. name: "Wrath",
  10243. height: math.unit(1654 + 11 / 12, "feet")
  10244. },
  10245. {
  10246. name: "Planet Destroyer",
  10247. height: math.unit(12000, "miles")
  10248. },
  10249. {
  10250. name: "Galaxy Conqueror",
  10251. height: math.unit(1.45, "zettameters"),
  10252. default: true
  10253. },
  10254. {
  10255. name: "Universal War",
  10256. height: math.unit(184, "gigaparsecs")
  10257. },
  10258. {
  10259. name: "Eternity War",
  10260. height: math.unit(1.98e55, "yottaparsecs")
  10261. },
  10262. ]
  10263. ))
  10264. characterMakers.push(() => makeCharacter(
  10265. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  10266. {
  10267. front: {
  10268. height: math.unit(5 + 8 / 12, "feet"),
  10269. weight: math.unit(63, "kg"),
  10270. name: "Front",
  10271. image: {
  10272. source: "./media/characters/xavier/front.svg",
  10273. extra: 944 / 883
  10274. }
  10275. },
  10276. frontStretch: {
  10277. height: math.unit(5 + 8 / 12, "feet"),
  10278. weight: math.unit(63, "kg"),
  10279. name: "Stretching",
  10280. image: {
  10281. source: "./media/characters/xavier/front-stretch.svg",
  10282. extra: 962 / 820
  10283. }
  10284. },
  10285. },
  10286. [
  10287. {
  10288. name: "Normal",
  10289. height: math.unit(5 + 8 / 12, "feet")
  10290. },
  10291. {
  10292. name: "Macro",
  10293. height: math.unit(100, "meters"),
  10294. default: true
  10295. },
  10296. {
  10297. name: "McLargeHuge",
  10298. height: math.unit(10, "miles")
  10299. },
  10300. ]
  10301. ))
  10302. characterMakers.push(() => makeCharacter(
  10303. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10304. {
  10305. front: {
  10306. height: math.unit(5 + 5 / 12, "feet"),
  10307. weight: math.unit(150, "lb"),
  10308. name: "Front",
  10309. image: {
  10310. source: "./media/characters/joshii/front.svg",
  10311. extra: 765 / 653,
  10312. bottom: 51 / 816
  10313. }
  10314. },
  10315. foot: {
  10316. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10317. name: "Foot",
  10318. image: {
  10319. source: "./media/characters/joshii/foot.svg"
  10320. }
  10321. },
  10322. },
  10323. [
  10324. {
  10325. name: "Micro",
  10326. height: math.unit(2, "inches")
  10327. },
  10328. {
  10329. name: "Normal",
  10330. height: math.unit(5 + 5 / 12, "feet")
  10331. },
  10332. {
  10333. name: "Macro",
  10334. height: math.unit(785, "feet"),
  10335. default: true
  10336. },
  10337. {
  10338. name: "Megamacro",
  10339. height: math.unit(24.5, "miles")
  10340. },
  10341. ]
  10342. ))
  10343. characterMakers.push(() => makeCharacter(
  10344. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10345. {
  10346. front: {
  10347. height: math.unit(6, "feet"),
  10348. weight: math.unit(150, "lb"),
  10349. name: "Front",
  10350. image: {
  10351. source: "./media/characters/goddess-elizabeth/front.svg",
  10352. extra: 1800 / 1525,
  10353. bottom: 0.005
  10354. }
  10355. },
  10356. foot: {
  10357. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10358. name: "Foot",
  10359. image: {
  10360. source: "./media/characters/goddess-elizabeth/foot.svg"
  10361. }
  10362. },
  10363. mouth: {
  10364. height: math.unit(6, "feet"),
  10365. name: "Mouth",
  10366. image: {
  10367. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10368. }
  10369. },
  10370. },
  10371. [
  10372. {
  10373. name: "Micro",
  10374. height: math.unit(12, "feet")
  10375. },
  10376. {
  10377. name: "Normal",
  10378. height: math.unit(80, "miles"),
  10379. default: true
  10380. },
  10381. {
  10382. name: "Macro",
  10383. height: math.unit(15000, "parsecs")
  10384. },
  10385. ]
  10386. ))
  10387. characterMakers.push(() => makeCharacter(
  10388. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10389. {
  10390. front: {
  10391. height: math.unit(5 + 9 / 12, "feet"),
  10392. weight: math.unit(144, "lb"),
  10393. name: "Front",
  10394. image: {
  10395. source: "./media/characters/kara/front.svg"
  10396. }
  10397. },
  10398. feet: {
  10399. height: math.unit(6 / 6.765, "feet"),
  10400. name: "Kara's Feet",
  10401. rename: true,
  10402. image: {
  10403. source: "./media/characters/kara/feet.svg"
  10404. }
  10405. },
  10406. },
  10407. [
  10408. {
  10409. name: "Normal",
  10410. height: math.unit(5 + 9 / 12, "feet")
  10411. },
  10412. {
  10413. name: "Macro",
  10414. height: math.unit(174, "feet"),
  10415. default: true
  10416. },
  10417. ]
  10418. ))
  10419. characterMakers.push(() => makeCharacter(
  10420. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10421. {
  10422. front: {
  10423. height: math.unit(18, "feet"),
  10424. weight: math.unit(4050, "lb"),
  10425. name: "Front",
  10426. image: {
  10427. source: "./media/characters/tyrone/front.svg",
  10428. extra: 2405 / 2270,
  10429. bottom: 182 / 2587
  10430. }
  10431. },
  10432. },
  10433. [
  10434. {
  10435. name: "Normal",
  10436. height: math.unit(18, "feet"),
  10437. default: true
  10438. },
  10439. {
  10440. name: "Macro",
  10441. height: math.unit(300, "feet")
  10442. },
  10443. {
  10444. name: "Megamacro",
  10445. height: math.unit(15, "km")
  10446. },
  10447. {
  10448. name: "Gigamacro",
  10449. height: math.unit(500, "km")
  10450. },
  10451. {
  10452. name: "Teramacro",
  10453. height: math.unit(0.5, "gigameters")
  10454. },
  10455. {
  10456. name: "Omnimacro",
  10457. height: math.unit(1e252, "yottauniverse")
  10458. },
  10459. ]
  10460. ))
  10461. characterMakers.push(() => makeCharacter(
  10462. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10463. {
  10464. front: {
  10465. height: math.unit(7 + 8 / 12, "feet"),
  10466. weight: math.unit(120, "lb"),
  10467. name: "Front",
  10468. image: {
  10469. source: "./media/characters/danny/front.svg",
  10470. extra: 1490 / 1350
  10471. }
  10472. },
  10473. back: {
  10474. height: math.unit(7 + 8 / 12, "feet"),
  10475. weight: math.unit(120, "lb"),
  10476. name: "Back",
  10477. image: {
  10478. source: "./media/characters/danny/back.svg",
  10479. extra: 1490 / 1350
  10480. }
  10481. },
  10482. },
  10483. [
  10484. {
  10485. name: "Normal",
  10486. height: math.unit(7 + 8 / 12, "feet"),
  10487. default: true
  10488. },
  10489. ]
  10490. ))
  10491. characterMakers.push(() => makeCharacter(
  10492. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10493. {
  10494. front: {
  10495. height: math.unit(3.5, "inches"),
  10496. weight: math.unit(19, "grams"),
  10497. name: "Front",
  10498. image: {
  10499. source: "./media/characters/mallow/front.svg",
  10500. extra: 471 / 431
  10501. }
  10502. },
  10503. back: {
  10504. height: math.unit(3.5, "inches"),
  10505. weight: math.unit(19, "grams"),
  10506. name: "Back",
  10507. image: {
  10508. source: "./media/characters/mallow/back.svg",
  10509. extra: 471 / 431
  10510. }
  10511. },
  10512. },
  10513. [
  10514. {
  10515. name: "Normal",
  10516. height: math.unit(3.5, "inches"),
  10517. default: true
  10518. },
  10519. ]
  10520. ))
  10521. characterMakers.push(() => makeCharacter(
  10522. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10523. {
  10524. front: {
  10525. height: math.unit(9, "feet"),
  10526. weight: math.unit(230, "kg"),
  10527. name: "Front",
  10528. image: {
  10529. source: "./media/characters/starry-aqua/front.svg"
  10530. }
  10531. },
  10532. back: {
  10533. height: math.unit(9, "feet"),
  10534. weight: math.unit(230, "kg"),
  10535. name: "Back",
  10536. image: {
  10537. source: "./media/characters/starry-aqua/back.svg"
  10538. }
  10539. },
  10540. hand: {
  10541. height: math.unit(9 * 0.1168, "feet"),
  10542. name: "Hand",
  10543. image: {
  10544. source: "./media/characters/starry-aqua/hand.svg"
  10545. }
  10546. },
  10547. foot: {
  10548. height: math.unit(9 * 0.18, "feet"),
  10549. name: "Foot",
  10550. image: {
  10551. source: "./media/characters/starry-aqua/foot.svg"
  10552. }
  10553. }
  10554. },
  10555. [
  10556. {
  10557. name: "Micro",
  10558. height: math.unit(3, "inches")
  10559. },
  10560. {
  10561. name: "Normal",
  10562. height: math.unit(9, "feet")
  10563. },
  10564. {
  10565. name: "Macro",
  10566. height: math.unit(300, "feet"),
  10567. default: true
  10568. },
  10569. {
  10570. name: "Megamacro",
  10571. height: math.unit(3200, "feet")
  10572. }
  10573. ]
  10574. ))
  10575. characterMakers.push(() => makeCharacter(
  10576. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10577. {
  10578. front: {
  10579. height: math.unit(15, "feet"),
  10580. weight: math.unit(5026, "lb"),
  10581. name: "Front",
  10582. image: {
  10583. source: "./media/characters/luka-towers/front.svg",
  10584. extra: 1269/1133,
  10585. bottom: 51/1320
  10586. }
  10587. },
  10588. },
  10589. [
  10590. {
  10591. name: "Normal",
  10592. height: math.unit(15, "feet"),
  10593. default: true
  10594. },
  10595. {
  10596. name: "Minimacro",
  10597. height: math.unit(25, "feet")
  10598. },
  10599. {
  10600. name: "Macro",
  10601. height: math.unit(320, "feet")
  10602. },
  10603. {
  10604. name: "Megamacro",
  10605. height: math.unit(35000, "feet")
  10606. },
  10607. {
  10608. name: "Gigamacro",
  10609. height: math.unit(4000, "miles")
  10610. },
  10611. {
  10612. name: "Teramacro",
  10613. height: math.unit(15000, "miles")
  10614. },
  10615. ]
  10616. ))
  10617. characterMakers.push(() => makeCharacter(
  10618. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10619. {
  10620. front: {
  10621. height: math.unit(6, "feet"),
  10622. weight: math.unit(150, "lb"),
  10623. name: "Front",
  10624. image: {
  10625. source: "./media/characters/natalie-nightring/front.svg",
  10626. extra: 1,
  10627. bottom: 0.06
  10628. }
  10629. },
  10630. },
  10631. [
  10632. {
  10633. name: "Uh Oh",
  10634. height: math.unit(0.1, "mm")
  10635. },
  10636. {
  10637. name: "Small",
  10638. height: math.unit(3, "inches")
  10639. },
  10640. {
  10641. name: "Human Scale",
  10642. height: math.unit(6, "feet")
  10643. },
  10644. {
  10645. name: "Librarian",
  10646. height: math.unit(50, "feet"),
  10647. default: true
  10648. },
  10649. {
  10650. name: "Immense",
  10651. height: math.unit(200, "miles")
  10652. },
  10653. ]
  10654. ))
  10655. characterMakers.push(() => makeCharacter(
  10656. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10657. {
  10658. front: {
  10659. height: math.unit(6, "feet"),
  10660. weight: math.unit(180, "lbs"),
  10661. name: "Front",
  10662. image: {
  10663. source: "./media/characters/danni-rosie/front.svg",
  10664. extra: 1260 / 1128,
  10665. bottom: 0.022
  10666. }
  10667. },
  10668. },
  10669. [
  10670. {
  10671. name: "Micro",
  10672. height: math.unit(2, "inches"),
  10673. default: true
  10674. },
  10675. ]
  10676. ))
  10677. characterMakers.push(() => makeCharacter(
  10678. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10679. {
  10680. front: {
  10681. height: math.unit(5 + 9 / 12, "feet"),
  10682. weight: math.unit(220, "lb"),
  10683. name: "Front",
  10684. image: {
  10685. source: "./media/characters/samantha-kruse/front.svg",
  10686. extra: (985 / 935),
  10687. bottom: 0.03
  10688. }
  10689. },
  10690. frontUndressed: {
  10691. height: math.unit(5 + 9 / 12, "feet"),
  10692. weight: math.unit(220, "lb"),
  10693. name: "Front (Undressed)",
  10694. image: {
  10695. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10696. extra: (973 / 923),
  10697. bottom: 0.025
  10698. }
  10699. },
  10700. fat: {
  10701. height: math.unit(5 + 9 / 12, "feet"),
  10702. weight: math.unit(900, "lb"),
  10703. name: "Front (Fat)",
  10704. image: {
  10705. source: "./media/characters/samantha-kruse/fat.svg",
  10706. extra: 2688 / 2561
  10707. }
  10708. },
  10709. },
  10710. [
  10711. {
  10712. name: "Normal",
  10713. height: math.unit(5 + 9 / 12, "feet"),
  10714. default: true
  10715. }
  10716. ]
  10717. ))
  10718. characterMakers.push(() => makeCharacter(
  10719. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10720. {
  10721. back: {
  10722. height: math.unit(5 + 4 / 12, "feet"),
  10723. weight: math.unit(4963, "lb"),
  10724. name: "Back",
  10725. image: {
  10726. source: "./media/characters/amelia-rosie/back.svg",
  10727. extra: 1113 / 963,
  10728. bottom: 0.01
  10729. }
  10730. },
  10731. },
  10732. [
  10733. {
  10734. name: "Level 0",
  10735. height: math.unit(5 + 4 / 12, "feet")
  10736. },
  10737. {
  10738. name: "Level 1",
  10739. height: math.unit(164597, "feet"),
  10740. default: true
  10741. },
  10742. {
  10743. name: "Level 2",
  10744. height: math.unit(956243, "miles")
  10745. },
  10746. {
  10747. name: "Level 3",
  10748. height: math.unit(29421709423, "miles")
  10749. },
  10750. {
  10751. name: "Level 4",
  10752. height: math.unit(154, "lightyears")
  10753. },
  10754. {
  10755. name: "Level 5",
  10756. height: math.unit(4738272, "lightyears")
  10757. },
  10758. {
  10759. name: "Level 6",
  10760. height: math.unit(145787152896, "lightyears")
  10761. },
  10762. ]
  10763. ))
  10764. characterMakers.push(() => makeCharacter(
  10765. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10766. {
  10767. front: {
  10768. height: math.unit(5 + 11 / 12, "feet"),
  10769. weight: math.unit(65, "kg"),
  10770. name: "Front",
  10771. image: {
  10772. source: "./media/characters/rook-kitara/front.svg",
  10773. extra: 1347 / 1274,
  10774. bottom: 0.005
  10775. }
  10776. },
  10777. },
  10778. [
  10779. {
  10780. name: "Totally Unfair",
  10781. height: math.unit(1.8, "mm")
  10782. },
  10783. {
  10784. name: "Lap Rookie",
  10785. height: math.unit(1.4, "feet")
  10786. },
  10787. {
  10788. name: "Normal",
  10789. height: math.unit(5 + 11 / 12, "feet"),
  10790. default: true
  10791. },
  10792. {
  10793. name: "How Did This Happen",
  10794. height: math.unit(80, "miles")
  10795. }
  10796. ]
  10797. ))
  10798. characterMakers.push(() => makeCharacter(
  10799. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10800. {
  10801. front: {
  10802. height: math.unit(7, "feet"),
  10803. weight: math.unit(300, "lb"),
  10804. name: "Front",
  10805. image: {
  10806. source: "./media/characters/pisces/front.svg",
  10807. extra: 2255 / 2115,
  10808. bottom: 0.03
  10809. }
  10810. },
  10811. back: {
  10812. height: math.unit(7, "feet"),
  10813. weight: math.unit(300, "lb"),
  10814. name: "Back",
  10815. image: {
  10816. source: "./media/characters/pisces/back.svg",
  10817. extra: 2146 / 2055,
  10818. bottom: 0.04
  10819. }
  10820. },
  10821. },
  10822. [
  10823. {
  10824. name: "Normal",
  10825. height: math.unit(7, "feet"),
  10826. default: true
  10827. },
  10828. {
  10829. name: "Swimming Pool",
  10830. height: math.unit(12.2, "meters")
  10831. },
  10832. {
  10833. name: "Olympic Swimming Pool",
  10834. height: math.unit(56.3, "meters")
  10835. },
  10836. {
  10837. name: "Lake Superior",
  10838. height: math.unit(93900, "meters")
  10839. },
  10840. {
  10841. name: "Mediterranean Sea",
  10842. height: math.unit(644457, "meters")
  10843. },
  10844. {
  10845. name: "World's Oceans",
  10846. height: math.unit(4567491, "meters")
  10847. },
  10848. ]
  10849. ))
  10850. characterMakers.push(() => makeCharacter(
  10851. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10852. {
  10853. front: {
  10854. height: math.unit(2.3, "meters"),
  10855. weight: math.unit(120, "kg"),
  10856. name: "Front",
  10857. image: {
  10858. source: "./media/characters/zelas/front.svg"
  10859. }
  10860. },
  10861. side: {
  10862. height: math.unit(2.3, "meters"),
  10863. weight: math.unit(120, "kg"),
  10864. name: "Side",
  10865. image: {
  10866. source: "./media/characters/zelas/side.svg"
  10867. }
  10868. },
  10869. back: {
  10870. height: math.unit(2.3, "meters"),
  10871. weight: math.unit(120, "kg"),
  10872. name: "Back",
  10873. image: {
  10874. source: "./media/characters/zelas/back.svg"
  10875. }
  10876. },
  10877. foot: {
  10878. height: math.unit(1.116, "feet"),
  10879. name: "Foot",
  10880. image: {
  10881. source: "./media/characters/zelas/foot.svg"
  10882. }
  10883. },
  10884. },
  10885. [
  10886. {
  10887. name: "Normal",
  10888. height: math.unit(2.3, "meters")
  10889. },
  10890. {
  10891. name: "Macro",
  10892. height: math.unit(30, "meters"),
  10893. default: true
  10894. },
  10895. ]
  10896. ))
  10897. characterMakers.push(() => makeCharacter(
  10898. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10899. {
  10900. front: {
  10901. height: math.unit(1, "inch"),
  10902. weight: math.unit(0.21, "grams"),
  10903. name: "Front",
  10904. image: {
  10905. source: "./media/characters/talbot/front.svg",
  10906. extra: 594 / 544
  10907. }
  10908. },
  10909. },
  10910. [
  10911. {
  10912. name: "Micro",
  10913. height: math.unit(1, "inch"),
  10914. default: true
  10915. },
  10916. ]
  10917. ))
  10918. characterMakers.push(() => makeCharacter(
  10919. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10920. {
  10921. front: {
  10922. height: math.unit(3 + 3 / 12, "feet"),
  10923. weight: math.unit(51.8, "lb"),
  10924. name: "Front",
  10925. image: {
  10926. source: "./media/characters/fliss/front.svg",
  10927. extra: 840 / 640
  10928. }
  10929. },
  10930. },
  10931. [
  10932. {
  10933. name: "Teeny Tiny",
  10934. height: math.unit(1, "mm")
  10935. },
  10936. {
  10937. name: "Small",
  10938. height: math.unit(1, "inch"),
  10939. default: true
  10940. },
  10941. {
  10942. name: "Standard Sylveon",
  10943. height: math.unit(3 + 3 / 12, "feet")
  10944. },
  10945. {
  10946. name: "Large Nuisance",
  10947. height: math.unit(33, "feet")
  10948. },
  10949. {
  10950. name: "City Filler",
  10951. height: math.unit(3000, "feet")
  10952. },
  10953. {
  10954. name: "New Horizon",
  10955. height: math.unit(6000, "miles")
  10956. },
  10957. ]
  10958. ))
  10959. characterMakers.push(() => makeCharacter(
  10960. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10961. {
  10962. front: {
  10963. height: math.unit(5, "cm"),
  10964. weight: math.unit(1.94, "g"),
  10965. name: "Front",
  10966. image: {
  10967. source: "./media/characters/fleta/front.svg",
  10968. extra: 835 / 803
  10969. }
  10970. },
  10971. back: {
  10972. height: math.unit(5, "cm"),
  10973. weight: math.unit(1.94, "g"),
  10974. name: "Back",
  10975. image: {
  10976. source: "./media/characters/fleta/back.svg",
  10977. extra: 835 / 803
  10978. }
  10979. },
  10980. },
  10981. [
  10982. {
  10983. name: "Micro",
  10984. height: math.unit(5, "cm"),
  10985. default: true
  10986. },
  10987. ]
  10988. ))
  10989. characterMakers.push(() => makeCharacter(
  10990. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10991. {
  10992. front: {
  10993. height: math.unit(6, "feet"),
  10994. weight: math.unit(225, "lb"),
  10995. name: "Front",
  10996. image: {
  10997. source: "./media/characters/dominic/front.svg",
  10998. extra: 1770 / 1620,
  10999. bottom: 0.025
  11000. }
  11001. },
  11002. back: {
  11003. height: math.unit(6, "feet"),
  11004. weight: math.unit(225, "lb"),
  11005. name: "Back",
  11006. image: {
  11007. source: "./media/characters/dominic/back.svg",
  11008. extra: 1745 / 1620,
  11009. bottom: 0.065
  11010. }
  11011. },
  11012. },
  11013. [
  11014. {
  11015. name: "Nano",
  11016. height: math.unit(0.1, "mm")
  11017. },
  11018. {
  11019. name: "Micro-",
  11020. height: math.unit(1, "mm")
  11021. },
  11022. {
  11023. name: "Micro",
  11024. height: math.unit(4, "inches")
  11025. },
  11026. {
  11027. name: "Normal",
  11028. height: math.unit(6 + 4 / 12, "feet"),
  11029. default: true
  11030. },
  11031. {
  11032. name: "Macro",
  11033. height: math.unit(115, "feet")
  11034. },
  11035. {
  11036. name: "Macro+",
  11037. height: math.unit(955, "feet")
  11038. },
  11039. {
  11040. name: "Megamacro",
  11041. height: math.unit(8990, "feet")
  11042. },
  11043. {
  11044. name: "Gigmacro",
  11045. height: math.unit(9310, "miles")
  11046. },
  11047. {
  11048. name: "Teramacro",
  11049. height: math.unit(1567005010, "miles")
  11050. },
  11051. {
  11052. name: "Examacro",
  11053. height: math.unit(1425, "parsecs")
  11054. },
  11055. ]
  11056. ))
  11057. characterMakers.push(() => makeCharacter(
  11058. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  11059. {
  11060. front: {
  11061. height: math.unit(400, "feet"),
  11062. weight: math.unit(44444444, "lb"),
  11063. name: "Front",
  11064. image: {
  11065. source: "./media/characters/major-colonel/front.svg"
  11066. }
  11067. },
  11068. back: {
  11069. height: math.unit(400, "feet"),
  11070. weight: math.unit(44444444, "lb"),
  11071. name: "Back",
  11072. image: {
  11073. source: "./media/characters/major-colonel/back.svg"
  11074. }
  11075. },
  11076. },
  11077. [
  11078. {
  11079. name: "Macro",
  11080. height: math.unit(400, "feet"),
  11081. default: true
  11082. },
  11083. ]
  11084. ))
  11085. characterMakers.push(() => makeCharacter(
  11086. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  11087. {
  11088. catFront: {
  11089. height: math.unit(6, "feet"),
  11090. weight: math.unit(120, "lb"),
  11091. name: "Front (Cat Side)",
  11092. image: {
  11093. source: "./media/characters/axel-lycan/cat-front.svg",
  11094. extra: 430 / 402,
  11095. bottom: 43 / 472.35
  11096. }
  11097. },
  11098. catBack: {
  11099. height: math.unit(6, "feet"),
  11100. weight: math.unit(120, "lb"),
  11101. name: "Back (Cat Side)",
  11102. image: {
  11103. source: "./media/characters/axel-lycan/cat-back.svg",
  11104. extra: 447 / 419,
  11105. bottom: 23.3 / 469
  11106. }
  11107. },
  11108. wolfFront: {
  11109. height: math.unit(6, "feet"),
  11110. weight: math.unit(120, "lb"),
  11111. name: "Front (Wolf Side)",
  11112. image: {
  11113. source: "./media/characters/axel-lycan/wolf-front.svg",
  11114. extra: 485 / 456,
  11115. bottom: 19 / 504
  11116. }
  11117. },
  11118. wolfBack: {
  11119. height: math.unit(6, "feet"),
  11120. weight: math.unit(120, "lb"),
  11121. name: "Back (Wolf Side)",
  11122. image: {
  11123. source: "./media/characters/axel-lycan/wolf-back.svg",
  11124. extra: 475 / 438,
  11125. bottom: 39.2 / 514
  11126. }
  11127. },
  11128. },
  11129. [
  11130. {
  11131. name: "Macro",
  11132. height: math.unit(1, "km"),
  11133. default: true
  11134. },
  11135. ]
  11136. ))
  11137. characterMakers.push(() => makeCharacter(
  11138. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  11139. {
  11140. front: {
  11141. height: math.unit(5 + 9 / 12, "feet"),
  11142. weight: math.unit(175, "lb"),
  11143. name: "Front",
  11144. image: {
  11145. source: "./media/characters/vanrel-hyena/front.svg",
  11146. extra: 1086 / 1010,
  11147. bottom: 0.04
  11148. }
  11149. },
  11150. },
  11151. [
  11152. {
  11153. name: "Normal",
  11154. height: math.unit(5 + 9 / 12, "feet"),
  11155. default: true
  11156. },
  11157. ]
  11158. ))
  11159. characterMakers.push(() => makeCharacter(
  11160. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  11161. {
  11162. front: {
  11163. height: math.unit(6, "feet"),
  11164. weight: math.unit(103, "lb"),
  11165. name: "Front",
  11166. image: {
  11167. source: "./media/characters/abbott-absol/front.svg",
  11168. extra: 765/694,
  11169. bottom: 47/812
  11170. }
  11171. },
  11172. },
  11173. [
  11174. {
  11175. name: "Megamicro",
  11176. height: math.unit(0.1, "mm")
  11177. },
  11178. {
  11179. name: "Micro",
  11180. height: math.unit(1, "inch")
  11181. },
  11182. {
  11183. name: "Normal",
  11184. height: math.unit(6, "feet"),
  11185. default: true
  11186. },
  11187. ]
  11188. ))
  11189. characterMakers.push(() => makeCharacter(
  11190. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  11191. {
  11192. front: {
  11193. height: math.unit(6, "feet"),
  11194. weight: math.unit(264, "lb"),
  11195. name: "Front",
  11196. image: {
  11197. source: "./media/characters/hector/front.svg",
  11198. extra: 2280 / 2130,
  11199. bottom: 0.07
  11200. }
  11201. },
  11202. },
  11203. [
  11204. {
  11205. name: "Normal",
  11206. height: math.unit(12.25, "foot"),
  11207. default: true
  11208. },
  11209. {
  11210. name: "Macro",
  11211. height: math.unit(160, "feet")
  11212. },
  11213. ]
  11214. ))
  11215. characterMakers.push(() => makeCharacter(
  11216. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  11217. {
  11218. front: {
  11219. height: math.unit(6, "feet"),
  11220. weight: math.unit(150, "lb"),
  11221. name: "Front",
  11222. image: {
  11223. source: "./media/characters/sal/front.svg",
  11224. extra: 1846 / 1699,
  11225. bottom: 0.04
  11226. }
  11227. },
  11228. },
  11229. [
  11230. {
  11231. name: "Megamacro",
  11232. height: math.unit(10, "miles"),
  11233. default: true
  11234. },
  11235. ]
  11236. ))
  11237. characterMakers.push(() => makeCharacter(
  11238. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  11239. {
  11240. front: {
  11241. height: math.unit(3, "meters"),
  11242. weight: math.unit(450, "kg"),
  11243. name: "front",
  11244. image: {
  11245. source: "./media/characters/ranger/front.svg",
  11246. extra: 2401 / 2243,
  11247. bottom: 0.05
  11248. }
  11249. },
  11250. },
  11251. [
  11252. {
  11253. name: "Normal",
  11254. height: math.unit(3, "meters"),
  11255. default: true
  11256. },
  11257. ]
  11258. ))
  11259. characterMakers.push(() => makeCharacter(
  11260. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  11261. {
  11262. front: {
  11263. height: math.unit(14, "feet"),
  11264. weight: math.unit(800, "kg"),
  11265. name: "Front",
  11266. image: {
  11267. source: "./media/characters/theresa/front.svg",
  11268. extra: 3575 / 3346,
  11269. bottom: 0.03
  11270. }
  11271. },
  11272. },
  11273. [
  11274. {
  11275. name: "Normal",
  11276. height: math.unit(14, "feet"),
  11277. default: true
  11278. },
  11279. ]
  11280. ))
  11281. characterMakers.push(() => makeCharacter(
  11282. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  11283. {
  11284. front: {
  11285. height: math.unit(6, "feet"),
  11286. weight: math.unit(3, "kg"),
  11287. name: "Front",
  11288. image: {
  11289. source: "./media/characters/ine/front.svg",
  11290. extra: 678 / 539,
  11291. bottom: 0.023
  11292. }
  11293. },
  11294. },
  11295. [
  11296. {
  11297. name: "Normal",
  11298. height: math.unit(2.265, "feet"),
  11299. default: true
  11300. },
  11301. ]
  11302. ))
  11303. characterMakers.push(() => makeCharacter(
  11304. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11305. {
  11306. front: {
  11307. height: math.unit(5, "feet"),
  11308. weight: math.unit(30, "kg"),
  11309. name: "Front",
  11310. image: {
  11311. source: "./media/characters/vial/front.svg",
  11312. extra: 1365 / 1277,
  11313. bottom: 0.04
  11314. }
  11315. },
  11316. },
  11317. [
  11318. {
  11319. name: "Normal",
  11320. height: math.unit(5, "feet"),
  11321. default: true
  11322. },
  11323. ]
  11324. ))
  11325. characterMakers.push(() => makeCharacter(
  11326. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11327. {
  11328. side: {
  11329. height: math.unit(3.4, "meters"),
  11330. weight: math.unit(1000, "lb"),
  11331. name: "Side",
  11332. image: {
  11333. source: "./media/characters/rovoska/side.svg",
  11334. extra: 4403 / 1515
  11335. }
  11336. },
  11337. },
  11338. [
  11339. {
  11340. name: "Normal",
  11341. height: math.unit(3.4, "meters"),
  11342. default: true
  11343. },
  11344. ]
  11345. ))
  11346. characterMakers.push(() => makeCharacter(
  11347. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11348. {
  11349. front: {
  11350. height: math.unit(8, "feet"),
  11351. weight: math.unit(315, "lb"),
  11352. name: "Front",
  11353. image: {
  11354. source: "./media/characters/gunner-rotthbauer/front.svg"
  11355. }
  11356. },
  11357. back: {
  11358. height: math.unit(8, "feet"),
  11359. weight: math.unit(315, "lb"),
  11360. name: "Back",
  11361. image: {
  11362. source: "./media/characters/gunner-rotthbauer/back.svg"
  11363. }
  11364. },
  11365. },
  11366. [
  11367. {
  11368. name: "Micro",
  11369. height: math.unit(3.5, "inches")
  11370. },
  11371. {
  11372. name: "Normal",
  11373. height: math.unit(8, "feet"),
  11374. default: true
  11375. },
  11376. {
  11377. name: "Macro",
  11378. height: math.unit(250, "feet")
  11379. },
  11380. {
  11381. name: "Megamacro",
  11382. height: math.unit(1, "AU")
  11383. },
  11384. ]
  11385. ))
  11386. characterMakers.push(() => makeCharacter(
  11387. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11388. {
  11389. front: {
  11390. height: math.unit(5 + 5 / 12, "feet"),
  11391. weight: math.unit(140, "lb"),
  11392. name: "Front",
  11393. image: {
  11394. source: "./media/characters/allatia/front.svg",
  11395. extra: 1227 / 1180,
  11396. bottom: 0.027
  11397. }
  11398. },
  11399. },
  11400. [
  11401. {
  11402. name: "Normal",
  11403. height: math.unit(5 + 5 / 12, "feet")
  11404. },
  11405. {
  11406. name: "Macro",
  11407. height: math.unit(250, "feet"),
  11408. default: true
  11409. },
  11410. {
  11411. name: "Megamacro",
  11412. height: math.unit(8, "miles")
  11413. }
  11414. ]
  11415. ))
  11416. characterMakers.push(() => makeCharacter(
  11417. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11418. {
  11419. front: {
  11420. height: math.unit(6, "feet"),
  11421. weight: math.unit(120, "lb"),
  11422. name: "Front",
  11423. image: {
  11424. source: "./media/characters/tene/front.svg",
  11425. extra: 814/750,
  11426. bottom: 36/850
  11427. }
  11428. },
  11429. stomping: {
  11430. height: math.unit(2.025, "meters"),
  11431. weight: math.unit(120, "lb"),
  11432. name: "Stomping",
  11433. image: {
  11434. source: "./media/characters/tene/stomping.svg",
  11435. extra: 885/821,
  11436. bottom: 15/900
  11437. }
  11438. },
  11439. sitting: {
  11440. height: math.unit(1, "meter"),
  11441. weight: math.unit(120, "lb"),
  11442. name: "Sitting",
  11443. image: {
  11444. source: "./media/characters/tene/sitting.svg",
  11445. extra: 396/366,
  11446. bottom: 79/475
  11447. }
  11448. },
  11449. smiling: {
  11450. height: math.unit(1.2, "feet"),
  11451. name: "Smiling",
  11452. image: {
  11453. source: "./media/characters/tene/smiling.svg",
  11454. extra: 1364/1071,
  11455. bottom: 0/1364
  11456. }
  11457. },
  11458. smug: {
  11459. height: math.unit(1.3, "feet"),
  11460. name: "Smug",
  11461. image: {
  11462. source: "./media/characters/tene/smug.svg",
  11463. extra: 1323/1082,
  11464. bottom: 0/1323
  11465. }
  11466. },
  11467. feral: {
  11468. height: math.unit(3.9, "feet"),
  11469. weight: math.unit(250, "lb"),
  11470. name: "Feral",
  11471. image: {
  11472. source: "./media/characters/tene/feral.svg",
  11473. extra: 717 / 458,
  11474. bottom: 0.179
  11475. }
  11476. },
  11477. },
  11478. [
  11479. {
  11480. name: "Normal",
  11481. height: math.unit(6, "feet")
  11482. },
  11483. {
  11484. name: "Macro",
  11485. height: math.unit(300, "feet"),
  11486. default: true
  11487. },
  11488. {
  11489. name: "Megamacro",
  11490. height: math.unit(5, "miles")
  11491. },
  11492. ]
  11493. ))
  11494. characterMakers.push(() => makeCharacter(
  11495. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11496. {
  11497. side: {
  11498. height: math.unit(6, "feet"),
  11499. name: "Side",
  11500. image: {
  11501. source: "./media/characters/evander/side.svg",
  11502. extra: 877 / 477
  11503. }
  11504. },
  11505. },
  11506. [
  11507. {
  11508. name: "Normal",
  11509. height: math.unit(0.83, "meters"),
  11510. default: true
  11511. },
  11512. ]
  11513. ))
  11514. characterMakers.push(() => makeCharacter(
  11515. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11516. {
  11517. front: {
  11518. height: math.unit(12, "feet"),
  11519. weight: math.unit(1000, "lb"),
  11520. name: "Front",
  11521. image: {
  11522. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11523. extra: 1762 / 1611
  11524. }
  11525. },
  11526. back: {
  11527. height: math.unit(12, "feet"),
  11528. weight: math.unit(1000, "lb"),
  11529. name: "Back",
  11530. image: {
  11531. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11532. extra: 1762 / 1611
  11533. }
  11534. },
  11535. },
  11536. [
  11537. {
  11538. name: "Normal",
  11539. height: math.unit(12, "feet"),
  11540. default: true
  11541. },
  11542. {
  11543. name: "Kaiju",
  11544. height: math.unit(150, "feet")
  11545. },
  11546. ]
  11547. ))
  11548. characterMakers.push(() => makeCharacter(
  11549. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11550. {
  11551. front: {
  11552. height: math.unit(5 + 11/12, "feet"),
  11553. weight: math.unit(180, "lb"),
  11554. name: "Front",
  11555. image: {
  11556. source: "./media/characters/zero-alurus/front.svg",
  11557. extra: 1032/957,
  11558. bottom: 10/1042
  11559. }
  11560. },
  11561. back: {
  11562. height: math.unit(5 + 11/12, "feet"),
  11563. weight: math.unit(180, "lb"),
  11564. name: "Back",
  11565. image: {
  11566. source: "./media/characters/zero-alurus/back.svg",
  11567. extra: 1027/950,
  11568. bottom: 12/1039
  11569. }
  11570. },
  11571. },
  11572. [
  11573. {
  11574. name: "Normal",
  11575. height: math.unit(5 + 11 / 12, "feet")
  11576. },
  11577. {
  11578. name: "Mini-Macro",
  11579. height: math.unit(25, "feet")
  11580. },
  11581. {
  11582. name: "Macro",
  11583. height: math.unit(90, "feet"),
  11584. default: true
  11585. },
  11586. {
  11587. name: "Macro+",
  11588. height: math.unit(500, "feet")
  11589. },
  11590. {
  11591. name: "Megamacro",
  11592. height: math.unit(1200, "feet")
  11593. },
  11594. ]
  11595. ))
  11596. characterMakers.push(() => makeCharacter(
  11597. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11598. {
  11599. front: {
  11600. height: math.unit(6, "feet"),
  11601. weight: math.unit(200, "lb"),
  11602. name: "Front",
  11603. image: {
  11604. source: "./media/characters/mega-shi/front.svg",
  11605. extra: 1279 / 1250,
  11606. bottom: 0.02
  11607. }
  11608. },
  11609. back: {
  11610. height: math.unit(6, "feet"),
  11611. weight: math.unit(200, "lb"),
  11612. name: "Back",
  11613. image: {
  11614. source: "./media/characters/mega-shi/back.svg",
  11615. extra: 1279 / 1250,
  11616. bottom: 0.02
  11617. }
  11618. },
  11619. },
  11620. [
  11621. {
  11622. name: "Micro",
  11623. height: math.unit(16 + 6 / 12, "feet")
  11624. },
  11625. {
  11626. name: "Third Dimension",
  11627. height: math.unit(40, "meters")
  11628. },
  11629. {
  11630. name: "Normal",
  11631. height: math.unit(660, "feet"),
  11632. default: true
  11633. },
  11634. {
  11635. name: "Megamacro",
  11636. height: math.unit(10, "miles")
  11637. },
  11638. {
  11639. name: "Planetary Launch",
  11640. height: math.unit(500, "miles")
  11641. },
  11642. {
  11643. name: "Interstellar",
  11644. height: math.unit(1e9, "miles")
  11645. },
  11646. {
  11647. name: "Leaving the Universe",
  11648. height: math.unit(1, "gigaparsec")
  11649. },
  11650. {
  11651. name: "Travelling Universes",
  11652. height: math.unit(30e15, "parsecs")
  11653. },
  11654. ]
  11655. ))
  11656. characterMakers.push(() => makeCharacter(
  11657. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11658. {
  11659. front: {
  11660. height: math.unit(5 + 4/12, "feet"),
  11661. weight: math.unit(120, "lb"),
  11662. name: "Front",
  11663. image: {
  11664. source: "./media/characters/odyssey/front.svg",
  11665. extra: 1747/1571,
  11666. bottom: 47/1794
  11667. }
  11668. },
  11669. side: {
  11670. height: math.unit(5.1, "feet"),
  11671. weight: math.unit(120, "lb"),
  11672. name: "Side",
  11673. image: {
  11674. source: "./media/characters/odyssey/side.svg",
  11675. extra: 1847/1619,
  11676. bottom: 47/1894
  11677. }
  11678. },
  11679. lounging: {
  11680. height: math.unit(1.464, "feet"),
  11681. weight: math.unit(120, "lb"),
  11682. name: "Lounging",
  11683. image: {
  11684. source: "./media/characters/odyssey/lounging.svg",
  11685. extra: 1235/837,
  11686. bottom: 551/1786
  11687. }
  11688. },
  11689. },
  11690. [
  11691. {
  11692. name: "Normal",
  11693. height: math.unit(5 + 4 / 12, "feet")
  11694. },
  11695. {
  11696. name: "Macro",
  11697. height: math.unit(1, "km")
  11698. },
  11699. {
  11700. name: "Megamacro",
  11701. height: math.unit(3000, "km")
  11702. },
  11703. {
  11704. name: "Gigamacro",
  11705. height: math.unit(1, "AU"),
  11706. default: true
  11707. },
  11708. {
  11709. name: "Omniversal",
  11710. height: math.unit(100e14, "lightyears")
  11711. },
  11712. ]
  11713. ))
  11714. characterMakers.push(() => makeCharacter(
  11715. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11716. {
  11717. front: {
  11718. height: math.unit(5 + 10/12, "feet"),
  11719. name: "Front",
  11720. image: {
  11721. source: "./media/characters/mekuto/front.svg",
  11722. extra: 875/835,
  11723. bottom: 46/921
  11724. }
  11725. },
  11726. },
  11727. [
  11728. {
  11729. name: "Minimicro",
  11730. height: math.unit(0.2, "inches")
  11731. },
  11732. {
  11733. name: "Micro",
  11734. height: math.unit(1.5, "inches")
  11735. },
  11736. {
  11737. name: "Normal",
  11738. height: math.unit(5 + 10 / 12, "feet"),
  11739. default: true
  11740. },
  11741. {
  11742. name: "Minimacro",
  11743. height: math.unit(17 + 9 / 12, "feet")
  11744. },
  11745. {
  11746. name: "Macro",
  11747. height: math.unit(177.5, "feet")
  11748. },
  11749. {
  11750. name: "Megamacro",
  11751. height: math.unit(152, "miles")
  11752. },
  11753. ]
  11754. ))
  11755. characterMakers.push(() => makeCharacter(
  11756. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11757. {
  11758. front: {
  11759. height: math.unit(6.5, "inches"),
  11760. weight: math.unit(13, "oz"),
  11761. name: "Front",
  11762. image: {
  11763. source: "./media/characters/dafydd-tomos/front.svg",
  11764. extra: 2990 / 2603,
  11765. bottom: 0.03
  11766. }
  11767. },
  11768. },
  11769. [
  11770. {
  11771. name: "Micro",
  11772. height: math.unit(6.5, "inches"),
  11773. default: true
  11774. },
  11775. ]
  11776. ))
  11777. characterMakers.push(() => makeCharacter(
  11778. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11779. {
  11780. front: {
  11781. height: math.unit(6, "feet"),
  11782. weight: math.unit(150, "lb"),
  11783. name: "Front",
  11784. image: {
  11785. source: "./media/characters/splinter/front.svg",
  11786. extra: 2990 / 2882,
  11787. bottom: 0.04
  11788. }
  11789. },
  11790. back: {
  11791. height: math.unit(6, "feet"),
  11792. weight: math.unit(150, "lb"),
  11793. name: "Back",
  11794. image: {
  11795. source: "./media/characters/splinter/back.svg",
  11796. extra: 2990 / 2882,
  11797. bottom: 0.04
  11798. }
  11799. },
  11800. },
  11801. [
  11802. {
  11803. name: "Normal",
  11804. height: math.unit(6, "feet")
  11805. },
  11806. {
  11807. name: "Macro",
  11808. height: math.unit(230, "meters"),
  11809. default: true
  11810. },
  11811. ]
  11812. ))
  11813. characterMakers.push(() => makeCharacter(
  11814. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11815. {
  11816. front: {
  11817. height: math.unit(4 + 10 / 12, "feet"),
  11818. weight: math.unit(480, "lb"),
  11819. name: "Front",
  11820. image: {
  11821. source: "./media/characters/snow-gabumon/front.svg",
  11822. extra: 1140 / 963,
  11823. bottom: 0.058
  11824. }
  11825. },
  11826. back: {
  11827. height: math.unit(4 + 10 / 12, "feet"),
  11828. weight: math.unit(480, "lb"),
  11829. name: "Back",
  11830. image: {
  11831. source: "./media/characters/snow-gabumon/back.svg",
  11832. extra: 1115 / 962,
  11833. bottom: 0.041
  11834. }
  11835. },
  11836. frontUndresed: {
  11837. height: math.unit(4 + 10 / 12, "feet"),
  11838. weight: math.unit(480, "lb"),
  11839. name: "Front (Undressed)",
  11840. image: {
  11841. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11842. extra: 1061 / 960,
  11843. bottom: 0.045
  11844. }
  11845. },
  11846. },
  11847. [
  11848. {
  11849. name: "Micro",
  11850. height: math.unit(1, "inch")
  11851. },
  11852. {
  11853. name: "Normal",
  11854. height: math.unit(4 + 10 / 12, "feet"),
  11855. default: true
  11856. },
  11857. {
  11858. name: "Macro",
  11859. height: math.unit(200, "feet")
  11860. },
  11861. {
  11862. name: "Megamacro",
  11863. height: math.unit(120, "miles")
  11864. },
  11865. {
  11866. name: "Gigamacro",
  11867. height: math.unit(9800, "miles")
  11868. },
  11869. ]
  11870. ))
  11871. characterMakers.push(() => makeCharacter(
  11872. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11873. {
  11874. front: {
  11875. height: math.unit(1.7, "meters"),
  11876. weight: math.unit(140, "lb"),
  11877. name: "Front",
  11878. image: {
  11879. source: "./media/characters/moody/front.svg",
  11880. extra: 3226 / 3007,
  11881. bottom: 0.087
  11882. }
  11883. },
  11884. },
  11885. [
  11886. {
  11887. name: "Micro",
  11888. height: math.unit(1, "mm")
  11889. },
  11890. {
  11891. name: "Normal",
  11892. height: math.unit(1.7, "meters"),
  11893. default: true
  11894. },
  11895. {
  11896. name: "Macro",
  11897. height: math.unit(80, "meters")
  11898. },
  11899. {
  11900. name: "Macro+",
  11901. height: math.unit(500, "meters")
  11902. },
  11903. ]
  11904. ))
  11905. characterMakers.push(() => makeCharacter(
  11906. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11907. {
  11908. front: {
  11909. height: math.unit(6, "feet"),
  11910. weight: math.unit(150, "lb"),
  11911. name: "Front",
  11912. image: {
  11913. source: "./media/characters/zyas/front.svg",
  11914. extra: 1180 / 1120,
  11915. bottom: 0.045
  11916. }
  11917. },
  11918. },
  11919. [
  11920. {
  11921. name: "Normal",
  11922. height: math.unit(10, "feet"),
  11923. default: true
  11924. },
  11925. {
  11926. name: "Macro",
  11927. height: math.unit(500, "feet")
  11928. },
  11929. {
  11930. name: "Megamacro",
  11931. height: math.unit(5, "miles")
  11932. },
  11933. {
  11934. name: "Teramacro",
  11935. height: math.unit(150000, "miles")
  11936. },
  11937. ]
  11938. ))
  11939. characterMakers.push(() => makeCharacter(
  11940. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11941. {
  11942. front: {
  11943. height: math.unit(6, "feet"),
  11944. weight: math.unit(150, "lb"),
  11945. name: "Front",
  11946. image: {
  11947. source: "./media/characters/cuon/front.svg",
  11948. extra: 1390 / 1320,
  11949. bottom: 0.008
  11950. }
  11951. },
  11952. },
  11953. [
  11954. {
  11955. name: "Micro",
  11956. height: math.unit(3, "inches")
  11957. },
  11958. {
  11959. name: "Normal",
  11960. height: math.unit(18 + 9 / 12, "feet"),
  11961. default: true
  11962. },
  11963. {
  11964. name: "Macro",
  11965. height: math.unit(360, "feet")
  11966. },
  11967. {
  11968. name: "Megamacro",
  11969. height: math.unit(360, "miles")
  11970. },
  11971. ]
  11972. ))
  11973. characterMakers.push(() => makeCharacter(
  11974. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11975. {
  11976. front: {
  11977. height: math.unit(2.4, "meters"),
  11978. weight: math.unit(70, "kg"),
  11979. name: "Front",
  11980. image: {
  11981. source: "./media/characters/nyanuxk/front.svg",
  11982. extra: 1172 / 1084,
  11983. bottom: 0.065
  11984. }
  11985. },
  11986. side: {
  11987. height: math.unit(2.4, "meters"),
  11988. weight: math.unit(70, "kg"),
  11989. name: "Side",
  11990. image: {
  11991. source: "./media/characters/nyanuxk/side.svg",
  11992. extra: 1190 / 1132,
  11993. bottom: 0.007
  11994. }
  11995. },
  11996. back: {
  11997. height: math.unit(2.4, "meters"),
  11998. weight: math.unit(70, "kg"),
  11999. name: "Back",
  12000. image: {
  12001. source: "./media/characters/nyanuxk/back.svg",
  12002. extra: 1200 / 1141,
  12003. bottom: 0.015
  12004. }
  12005. },
  12006. foot: {
  12007. height: math.unit(0.52, "meters"),
  12008. name: "Foot",
  12009. image: {
  12010. source: "./media/characters/nyanuxk/foot.svg"
  12011. }
  12012. },
  12013. },
  12014. [
  12015. {
  12016. name: "Micro",
  12017. height: math.unit(2, "cm")
  12018. },
  12019. {
  12020. name: "Normal",
  12021. height: math.unit(2.4, "meters"),
  12022. default: true
  12023. },
  12024. {
  12025. name: "Smaller Macro",
  12026. height: math.unit(120, "meters")
  12027. },
  12028. {
  12029. name: "Bigger Macro",
  12030. height: math.unit(1.2, "km")
  12031. },
  12032. {
  12033. name: "Megamacro",
  12034. height: math.unit(15, "kilometers")
  12035. },
  12036. {
  12037. name: "Gigamacro",
  12038. height: math.unit(2000, "km")
  12039. },
  12040. {
  12041. name: "Teramacro",
  12042. height: math.unit(500000, "km")
  12043. },
  12044. ]
  12045. ))
  12046. characterMakers.push(() => makeCharacter(
  12047. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  12048. {
  12049. side: {
  12050. height: math.unit(6, "feet"),
  12051. name: "Side",
  12052. image: {
  12053. source: "./media/characters/ailbhe/side.svg",
  12054. extra: 757 / 464,
  12055. bottom: 0.041
  12056. }
  12057. },
  12058. },
  12059. [
  12060. {
  12061. name: "Normal",
  12062. height: math.unit(1.07, "meters"),
  12063. default: true
  12064. },
  12065. ]
  12066. ))
  12067. characterMakers.push(() => makeCharacter(
  12068. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  12069. {
  12070. front: {
  12071. height: math.unit(6, "feet"),
  12072. weight: math.unit(120, "kg"),
  12073. name: "Front",
  12074. image: {
  12075. source: "./media/characters/zevulfius/front.svg",
  12076. extra: 965 / 903
  12077. }
  12078. },
  12079. side: {
  12080. height: math.unit(6, "feet"),
  12081. weight: math.unit(120, "kg"),
  12082. name: "Side",
  12083. image: {
  12084. source: "./media/characters/zevulfius/side.svg",
  12085. extra: 939 / 900
  12086. }
  12087. },
  12088. back: {
  12089. height: math.unit(6, "feet"),
  12090. weight: math.unit(120, "kg"),
  12091. name: "Back",
  12092. image: {
  12093. source: "./media/characters/zevulfius/back.svg",
  12094. extra: 918 / 854,
  12095. bottom: 0.005
  12096. }
  12097. },
  12098. foot: {
  12099. height: math.unit(6 / 3.72, "feet"),
  12100. name: "Foot",
  12101. image: {
  12102. source: "./media/characters/zevulfius/foot.svg"
  12103. }
  12104. },
  12105. },
  12106. [
  12107. {
  12108. name: "Macro",
  12109. height: math.unit(750, "meters")
  12110. },
  12111. {
  12112. name: "Megamacro",
  12113. height: math.unit(20, "km"),
  12114. default: true
  12115. },
  12116. {
  12117. name: "Gigamacro",
  12118. height: math.unit(2000, "km")
  12119. },
  12120. {
  12121. name: "Teramacro",
  12122. height: math.unit(250000, "km")
  12123. },
  12124. ]
  12125. ))
  12126. characterMakers.push(() => makeCharacter(
  12127. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  12128. {
  12129. front: {
  12130. height: math.unit(100, "feet"),
  12131. weight: math.unit(350, "kg"),
  12132. name: "Front",
  12133. image: {
  12134. source: "./media/characters/rikes/front.svg",
  12135. extra: 1565 / 1483,
  12136. bottom: 0.017
  12137. }
  12138. },
  12139. },
  12140. [
  12141. {
  12142. name: "Macro",
  12143. height: math.unit(100, "feet"),
  12144. default: true
  12145. },
  12146. ]
  12147. ))
  12148. characterMakers.push(() => makeCharacter(
  12149. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  12150. {
  12151. front: {
  12152. height: math.unit(8, "feet"),
  12153. weight: math.unit(356, "lb"),
  12154. name: "Front",
  12155. image: {
  12156. source: "./media/characters/adam-silver-mane/front.svg",
  12157. extra: 1036/937,
  12158. bottom: 63/1099
  12159. }
  12160. },
  12161. side: {
  12162. height: math.unit(8, "feet"),
  12163. weight: math.unit(356, "lb"),
  12164. name: "Side",
  12165. image: {
  12166. source: "./media/characters/adam-silver-mane/side.svg",
  12167. extra: 997/901,
  12168. bottom: 59/1056
  12169. }
  12170. },
  12171. frontNsfw: {
  12172. height: math.unit(8, "feet"),
  12173. weight: math.unit(356, "lb"),
  12174. name: "Front (NSFW)",
  12175. image: {
  12176. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  12177. extra: 1036/937,
  12178. bottom: 63/1099
  12179. }
  12180. },
  12181. sideNsfw: {
  12182. height: math.unit(8, "feet"),
  12183. weight: math.unit(356, "lb"),
  12184. name: "Side (NSFW)",
  12185. image: {
  12186. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  12187. extra: 997/901,
  12188. bottom: 59/1056
  12189. }
  12190. },
  12191. dick: {
  12192. height: math.unit(2.1, "feet"),
  12193. name: "Dick",
  12194. image: {
  12195. source: "./media/characters/adam-silver-mane/dick.svg"
  12196. }
  12197. },
  12198. taur: {
  12199. height: math.unit(16, "feet"),
  12200. weight: math.unit(1500, "kg"),
  12201. name: "Taur",
  12202. image: {
  12203. source: "./media/characters/adam-silver-mane/taur.svg",
  12204. extra: 1713 / 1571,
  12205. bottom: 0.01
  12206. }
  12207. },
  12208. },
  12209. [
  12210. {
  12211. name: "Normal",
  12212. height: math.unit(8, "feet")
  12213. },
  12214. {
  12215. name: "Minimacro",
  12216. height: math.unit(80, "feet")
  12217. },
  12218. {
  12219. name: "MDA",
  12220. height: math.unit(80, "meters")
  12221. },
  12222. {
  12223. name: "Macro",
  12224. height: math.unit(800, "feet"),
  12225. default: true
  12226. },
  12227. {
  12228. name: "Megamacro",
  12229. height: math.unit(8000, "feet")
  12230. },
  12231. {
  12232. name: "Gigamacro",
  12233. height: math.unit(800, "miles")
  12234. },
  12235. {
  12236. name: "Teramacro",
  12237. height: math.unit(80000, "miles")
  12238. },
  12239. {
  12240. name: "Celestial",
  12241. height: math.unit(8e6, "miles")
  12242. },
  12243. {
  12244. name: "Star Dragon",
  12245. height: math.unit(800000, "parsecs")
  12246. },
  12247. {
  12248. name: "Godly",
  12249. height: math.unit(800, "teraparsecs")
  12250. },
  12251. ]
  12252. ))
  12253. characterMakers.push(() => makeCharacter(
  12254. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  12255. {
  12256. front: {
  12257. height: math.unit(6, "feet"),
  12258. weight: math.unit(150, "lb"),
  12259. name: "Front",
  12260. image: {
  12261. source: "./media/characters/ky'owin/front.svg",
  12262. extra: 3862/3053,
  12263. bottom: 74/3936
  12264. }
  12265. },
  12266. },
  12267. [
  12268. {
  12269. name: "Normal",
  12270. height: math.unit(6 + 8 / 12, "feet")
  12271. },
  12272. {
  12273. name: "Large",
  12274. height: math.unit(68, "feet")
  12275. },
  12276. {
  12277. name: "Macro",
  12278. height: math.unit(132, "feet")
  12279. },
  12280. {
  12281. name: "Macro+",
  12282. height: math.unit(340, "feet")
  12283. },
  12284. {
  12285. name: "Macro++",
  12286. height: math.unit(680, "feet"),
  12287. default: true
  12288. },
  12289. {
  12290. name: "Megamacro",
  12291. height: math.unit(1, "mile")
  12292. },
  12293. {
  12294. name: "Megamacro+",
  12295. height: math.unit(10, "miles")
  12296. },
  12297. ]
  12298. ))
  12299. characterMakers.push(() => makeCharacter(
  12300. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12301. {
  12302. front: {
  12303. height: math.unit(4, "feet"),
  12304. weight: math.unit(50, "lb"),
  12305. name: "Front",
  12306. image: {
  12307. source: "./media/characters/mal/front.svg",
  12308. extra: 785 / 724,
  12309. bottom: 0.07
  12310. }
  12311. },
  12312. },
  12313. [
  12314. {
  12315. name: "Micro",
  12316. height: math.unit(4, "inches")
  12317. },
  12318. {
  12319. name: "Normal",
  12320. height: math.unit(4, "feet"),
  12321. default: true
  12322. },
  12323. {
  12324. name: "Macro",
  12325. height: math.unit(200, "feet")
  12326. },
  12327. ]
  12328. ))
  12329. characterMakers.push(() => makeCharacter(
  12330. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12331. {
  12332. front: {
  12333. height: math.unit(6, "feet"),
  12334. weight: math.unit(150, "lb"),
  12335. name: "Front",
  12336. image: {
  12337. source: "./media/characters/jordan-deware/front.svg",
  12338. extra: 1191 / 1012
  12339. }
  12340. },
  12341. },
  12342. [
  12343. {
  12344. name: "Nano",
  12345. height: math.unit(0.01, "mm")
  12346. },
  12347. {
  12348. name: "Minimicro",
  12349. height: math.unit(1, "mm")
  12350. },
  12351. {
  12352. name: "Micro",
  12353. height: math.unit(0.5, "inches")
  12354. },
  12355. {
  12356. name: "Normal",
  12357. height: math.unit(4, "feet"),
  12358. default: true
  12359. },
  12360. {
  12361. name: "Minimacro",
  12362. height: math.unit(40, "meters")
  12363. },
  12364. {
  12365. name: "Small Macro",
  12366. height: math.unit(400, "meters")
  12367. },
  12368. {
  12369. name: "Macro",
  12370. height: math.unit(4, "miles")
  12371. },
  12372. {
  12373. name: "Megamacro",
  12374. height: math.unit(40, "miles")
  12375. },
  12376. {
  12377. name: "Megamacro+",
  12378. height: math.unit(400, "miles")
  12379. },
  12380. {
  12381. name: "Gigamacro",
  12382. height: math.unit(400000, "miles")
  12383. },
  12384. ]
  12385. ))
  12386. characterMakers.push(() => makeCharacter(
  12387. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12388. {
  12389. front: {
  12390. height: math.unit(15, "feet"),
  12391. weight: math.unit(3000, "kg"),
  12392. preyCapacity: math.unit(450, "people"),
  12393. name: "Front",
  12394. image: {
  12395. source: "./media/characters/kimiko/front.svg",
  12396. extra: 875/832,
  12397. bottom: 36/911
  12398. },
  12399. extraAttributes: {
  12400. "pawSize": {
  12401. name: "Paw Size",
  12402. power: 1,
  12403. type: "length",
  12404. base: math.unit(0.9, "meters")
  12405. },
  12406. }
  12407. },
  12408. side: {
  12409. height: math.unit(15, "feet"),
  12410. weight: math.unit(3000, "kg"),
  12411. preyCapacity: math.unit(400, "people"),
  12412. name: "Side",
  12413. image: {
  12414. source: "./media/characters/kimiko/side.svg",
  12415. extra: 448/270,
  12416. bottom: 7/455
  12417. },
  12418. extraAttributes: {
  12419. "pawSize": {
  12420. name: "Paw Size",
  12421. power: 1,
  12422. type: "length",
  12423. base: math.unit(0.9, "meters")
  12424. },
  12425. }
  12426. },
  12427. maw: {
  12428. height: math.unit(0.81, "feet"),
  12429. name: "Maw",
  12430. image: {
  12431. source: "./media/characters/kimiko/maw.svg"
  12432. }
  12433. },
  12434. },
  12435. [
  12436. {
  12437. name: "Normal",
  12438. height: math.unit(15, "feet"),
  12439. default: true
  12440. },
  12441. {
  12442. name: "Macro",
  12443. height: math.unit(220, "feet")
  12444. },
  12445. {
  12446. name: "Macro+",
  12447. height: math.unit(1450, "feet")
  12448. },
  12449. {
  12450. name: "Megamacro",
  12451. height: math.unit(11500, "feet")
  12452. },
  12453. {
  12454. name: "Gigamacro",
  12455. height: math.unit(9500, "miles")
  12456. },
  12457. {
  12458. name: "Teramacro",
  12459. height: math.unit(2208005005, "miles")
  12460. },
  12461. {
  12462. name: "Examacro",
  12463. height: math.unit(2750, "parsecs")
  12464. },
  12465. {
  12466. name: "Zettamacro",
  12467. height: math.unit(101500, "parsecs")
  12468. },
  12469. ]
  12470. ))
  12471. characterMakers.push(() => makeCharacter(
  12472. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12473. {
  12474. front: {
  12475. height: math.unit(6, "feet"),
  12476. weight: math.unit(70, "kg"),
  12477. name: "Front",
  12478. image: {
  12479. source: "./media/characters/andrew-sleepy/front.svg"
  12480. }
  12481. },
  12482. side: {
  12483. height: math.unit(6, "feet"),
  12484. weight: math.unit(70, "kg"),
  12485. name: "Side",
  12486. image: {
  12487. source: "./media/characters/andrew-sleepy/side.svg"
  12488. }
  12489. },
  12490. },
  12491. [
  12492. {
  12493. name: "Micro",
  12494. height: math.unit(1, "mm"),
  12495. default: true
  12496. },
  12497. ]
  12498. ))
  12499. characterMakers.push(() => makeCharacter(
  12500. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12501. {
  12502. front: {
  12503. height: math.unit(6, "feet"),
  12504. weight: math.unit(150, "lb"),
  12505. name: "Front",
  12506. image: {
  12507. source: "./media/characters/judio/front.svg",
  12508. extra: 1258 / 1110
  12509. }
  12510. },
  12511. },
  12512. [
  12513. {
  12514. name: "Normal",
  12515. height: math.unit(5 + 6 / 12, "feet")
  12516. },
  12517. {
  12518. name: "Macro",
  12519. height: math.unit(1000, "feet"),
  12520. default: true
  12521. },
  12522. {
  12523. name: "Megamacro",
  12524. height: math.unit(10, "miles")
  12525. },
  12526. ]
  12527. ))
  12528. characterMakers.push(() => makeCharacter(
  12529. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12530. {
  12531. frontDressed: {
  12532. height: math.unit(6, "feet"),
  12533. weight: math.unit(68, "kg"),
  12534. name: "Front (Dressed)",
  12535. image: {
  12536. source: "./media/characters/nomaxice/front-dressed.svg",
  12537. extra: 1137/824,
  12538. bottom: 74/1211
  12539. }
  12540. },
  12541. frontShorts: {
  12542. height: math.unit(6, "feet"),
  12543. weight: math.unit(68, "kg"),
  12544. name: "Front (Shorts)",
  12545. image: {
  12546. source: "./media/characters/nomaxice/front-shorts.svg",
  12547. extra: 1137/824,
  12548. bottom: 74/1211
  12549. }
  12550. },
  12551. back: {
  12552. height: math.unit(6, "feet"),
  12553. weight: math.unit(68, "kg"),
  12554. name: "Back",
  12555. image: {
  12556. source: "./media/characters/nomaxice/back.svg",
  12557. extra: 822/786,
  12558. bottom: 39/861
  12559. }
  12560. },
  12561. hand: {
  12562. height: math.unit(0.565, "feet"),
  12563. name: "Hand",
  12564. image: {
  12565. source: "./media/characters/nomaxice/hand.svg"
  12566. }
  12567. },
  12568. foot: {
  12569. height: math.unit(1, "feet"),
  12570. name: "Foot",
  12571. image: {
  12572. source: "./media/characters/nomaxice/foot.svg"
  12573. }
  12574. },
  12575. },
  12576. [
  12577. {
  12578. name: "Micro",
  12579. height: math.unit(8, "cm")
  12580. },
  12581. {
  12582. name: "Norm",
  12583. height: math.unit(1.82, "m")
  12584. },
  12585. {
  12586. name: "Norm+",
  12587. height: math.unit(8.8, "feet"),
  12588. default: true
  12589. },
  12590. {
  12591. name: "Big",
  12592. height: math.unit(8, "meters")
  12593. },
  12594. {
  12595. name: "Macro",
  12596. height: math.unit(18, "meters")
  12597. },
  12598. {
  12599. name: "Macro+",
  12600. height: math.unit(88, "meters")
  12601. },
  12602. ]
  12603. ))
  12604. characterMakers.push(() => makeCharacter(
  12605. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12606. {
  12607. front: {
  12608. height: math.unit(12, "feet"),
  12609. weight: math.unit(1.5, "tons"),
  12610. name: "Front",
  12611. image: {
  12612. source: "./media/characters/dydros/front.svg",
  12613. extra: 863 / 800,
  12614. bottom: 0.015
  12615. }
  12616. },
  12617. back: {
  12618. height: math.unit(12, "feet"),
  12619. weight: math.unit(1.5, "tons"),
  12620. name: "Back",
  12621. image: {
  12622. source: "./media/characters/dydros/back.svg",
  12623. extra: 900 / 843,
  12624. bottom: 0.005
  12625. }
  12626. },
  12627. },
  12628. [
  12629. {
  12630. name: "Normal",
  12631. height: math.unit(12, "feet"),
  12632. default: true
  12633. },
  12634. ]
  12635. ))
  12636. characterMakers.push(() => makeCharacter(
  12637. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12638. {
  12639. front: {
  12640. height: math.unit(6, "feet"),
  12641. weight: math.unit(100, "kg"),
  12642. name: "Front",
  12643. image: {
  12644. source: "./media/characters/riggi/front.svg",
  12645. extra: 5787 / 5303
  12646. }
  12647. },
  12648. hyper: {
  12649. height: math.unit(6 * 5 / 3, "feet"),
  12650. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12651. name: "Hyper",
  12652. image: {
  12653. source: "./media/characters/riggi/hyper.svg",
  12654. extra: 3595 / 3485
  12655. }
  12656. },
  12657. },
  12658. [
  12659. {
  12660. name: "Small Macro",
  12661. height: math.unit(50, "feet")
  12662. },
  12663. {
  12664. name: "Default",
  12665. height: math.unit(200, "feet"),
  12666. default: true
  12667. },
  12668. {
  12669. name: "Loom",
  12670. height: math.unit(10000, "feet")
  12671. },
  12672. {
  12673. name: "Cruising Altitude",
  12674. height: math.unit(30000, "feet")
  12675. },
  12676. {
  12677. name: "Megamacro",
  12678. height: math.unit(100, "miles")
  12679. },
  12680. {
  12681. name: "Continent Sized",
  12682. height: math.unit(2800, "miles")
  12683. },
  12684. {
  12685. name: "Earth Sized",
  12686. height: math.unit(8000, "miles")
  12687. },
  12688. ]
  12689. ))
  12690. characterMakers.push(() => makeCharacter(
  12691. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12692. {
  12693. front: {
  12694. height: math.unit(6, "feet"),
  12695. weight: math.unit(250, "lb"),
  12696. name: "Front",
  12697. image: {
  12698. source: "./media/characters/alexi/front.svg",
  12699. extra: 3483 / 3291,
  12700. bottom: 0.04
  12701. }
  12702. },
  12703. back: {
  12704. height: math.unit(6, "feet"),
  12705. weight: math.unit(250, "lb"),
  12706. name: "Back",
  12707. image: {
  12708. source: "./media/characters/alexi/back.svg",
  12709. extra: 3533 / 3356,
  12710. bottom: 0.021
  12711. }
  12712. },
  12713. frontTransforming: {
  12714. height: math.unit(8.58, "feet"),
  12715. weight: math.unit(1300, "lb"),
  12716. name: "Transforming",
  12717. image: {
  12718. source: "./media/characters/alexi/front-transforming.svg",
  12719. extra: 437 / 409,
  12720. bottom: 19 / 458.66
  12721. }
  12722. },
  12723. frontTransformed: {
  12724. height: math.unit(12.5, "feet"),
  12725. weight: math.unit(4000, "lb"),
  12726. name: "Transformed",
  12727. image: {
  12728. source: "./media/characters/alexi/front-transformed.svg",
  12729. extra: 639 / 614,
  12730. bottom: 30.55 / 671
  12731. }
  12732. },
  12733. },
  12734. [
  12735. {
  12736. name: "Normal",
  12737. height: math.unit(14, "feet"),
  12738. default: true
  12739. },
  12740. {
  12741. name: "Minimacro",
  12742. height: math.unit(30, "meters")
  12743. },
  12744. {
  12745. name: "Macro",
  12746. height: math.unit(500, "meters")
  12747. },
  12748. {
  12749. name: "Megamacro",
  12750. height: math.unit(9000, "km")
  12751. },
  12752. {
  12753. name: "Teramacro",
  12754. height: math.unit(384000, "km")
  12755. },
  12756. ]
  12757. ))
  12758. characterMakers.push(() => makeCharacter(
  12759. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12760. {
  12761. front: {
  12762. height: math.unit(6, "feet"),
  12763. weight: math.unit(150, "lb"),
  12764. name: "Front",
  12765. image: {
  12766. source: "./media/characters/kayroo/front.svg",
  12767. extra: 1153 / 1038,
  12768. bottom: 0.06
  12769. }
  12770. },
  12771. foot: {
  12772. height: math.unit(6, "feet"),
  12773. weight: math.unit(150, "lb"),
  12774. name: "Foot",
  12775. image: {
  12776. source: "./media/characters/kayroo/foot.svg"
  12777. }
  12778. },
  12779. },
  12780. [
  12781. {
  12782. name: "Normal",
  12783. height: math.unit(8, "feet"),
  12784. default: true
  12785. },
  12786. {
  12787. name: "Minimacro",
  12788. height: math.unit(250, "feet")
  12789. },
  12790. {
  12791. name: "Macro",
  12792. height: math.unit(2800, "feet")
  12793. },
  12794. {
  12795. name: "Megamacro",
  12796. height: math.unit(5200, "feet")
  12797. },
  12798. {
  12799. name: "Gigamacro",
  12800. height: math.unit(27000, "feet")
  12801. },
  12802. {
  12803. name: "Omega",
  12804. height: math.unit(45000, "feet")
  12805. },
  12806. ]
  12807. ))
  12808. characterMakers.push(() => makeCharacter(
  12809. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12810. {
  12811. front: {
  12812. height: math.unit(18, "feet"),
  12813. weight: math.unit(5800, "lb"),
  12814. name: "Front",
  12815. image: {
  12816. source: "./media/characters/rhys/front.svg",
  12817. extra: 3386 / 3090,
  12818. bottom: 0.07
  12819. }
  12820. },
  12821. },
  12822. [
  12823. {
  12824. name: "Normal",
  12825. height: math.unit(18, "feet"),
  12826. default: true
  12827. },
  12828. {
  12829. name: "Working Size",
  12830. height: math.unit(200, "feet")
  12831. },
  12832. {
  12833. name: "Demolition Size",
  12834. height: math.unit(2000, "feet")
  12835. },
  12836. {
  12837. name: "Maximum Licensed Size",
  12838. height: math.unit(5, "miles")
  12839. },
  12840. {
  12841. name: "Maximum Observed Size",
  12842. height: math.unit(10, "yottameters")
  12843. },
  12844. ]
  12845. ))
  12846. characterMakers.push(() => makeCharacter(
  12847. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12848. {
  12849. front: {
  12850. height: math.unit(6, "feet"),
  12851. weight: math.unit(250, "lb"),
  12852. name: "Front",
  12853. image: {
  12854. source: "./media/characters/toto/front.svg",
  12855. extra: 527 / 479,
  12856. bottom: 0.05
  12857. }
  12858. },
  12859. },
  12860. [
  12861. {
  12862. name: "Micro",
  12863. height: math.unit(3, "feet")
  12864. },
  12865. {
  12866. name: "Normal",
  12867. height: math.unit(10, "feet")
  12868. },
  12869. {
  12870. name: "Macro",
  12871. height: math.unit(150, "feet"),
  12872. default: true
  12873. },
  12874. {
  12875. name: "Megamacro",
  12876. height: math.unit(1200, "feet")
  12877. },
  12878. ]
  12879. ))
  12880. characterMakers.push(() => makeCharacter(
  12881. { name: "King", species: ["lion"], tags: ["anthro"] },
  12882. {
  12883. back: {
  12884. height: math.unit(6, "feet"),
  12885. weight: math.unit(150, "lb"),
  12886. name: "Back",
  12887. image: {
  12888. source: "./media/characters/king/back.svg"
  12889. }
  12890. },
  12891. },
  12892. [
  12893. {
  12894. name: "Micro",
  12895. height: math.unit(2, "inches")
  12896. },
  12897. {
  12898. name: "Normal",
  12899. height: math.unit(8, "feet")
  12900. },
  12901. {
  12902. name: "Macro",
  12903. height: math.unit(200, "feet"),
  12904. default: true
  12905. },
  12906. {
  12907. name: "Megamacro",
  12908. height: math.unit(50, "miles")
  12909. },
  12910. ]
  12911. ))
  12912. characterMakers.push(() => makeCharacter(
  12913. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12914. {
  12915. front: {
  12916. height: math.unit(11, "feet"),
  12917. weight: math.unit(1400, "lb"),
  12918. name: "Front",
  12919. image: {
  12920. source: "./media/characters/cordite/front.svg",
  12921. extra: 1919/1827,
  12922. bottom: 40/1959
  12923. }
  12924. },
  12925. side: {
  12926. height: math.unit(11, "feet"),
  12927. weight: math.unit(1400, "lb"),
  12928. name: "Side",
  12929. image: {
  12930. source: "./media/characters/cordite/side.svg",
  12931. extra: 1908/1793,
  12932. bottom: 38/1946
  12933. }
  12934. },
  12935. back: {
  12936. height: math.unit(11, "feet"),
  12937. weight: math.unit(1400, "lb"),
  12938. name: "Back",
  12939. image: {
  12940. source: "./media/characters/cordite/back.svg",
  12941. extra: 1938/1837,
  12942. bottom: 10/1948
  12943. }
  12944. },
  12945. feral: {
  12946. height: math.unit(2, "feet"),
  12947. weight: math.unit(90, "lb"),
  12948. name: "Feral",
  12949. image: {
  12950. source: "./media/characters/cordite/feral.svg",
  12951. extra: 1260 / 755,
  12952. bottom: 0.05
  12953. }
  12954. },
  12955. },
  12956. [
  12957. {
  12958. name: "Normal",
  12959. height: math.unit(11, "feet"),
  12960. default: true
  12961. },
  12962. ]
  12963. ))
  12964. characterMakers.push(() => makeCharacter(
  12965. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12966. {
  12967. front: {
  12968. height: math.unit(6, "feet"),
  12969. weight: math.unit(150, "lb"),
  12970. name: "Front",
  12971. image: {
  12972. source: "./media/characters/pianostrong/front.svg",
  12973. extra: 6577 / 6254,
  12974. bottom: 0.02
  12975. }
  12976. },
  12977. side: {
  12978. height: math.unit(6, "feet"),
  12979. weight: math.unit(150, "lb"),
  12980. name: "Side",
  12981. image: {
  12982. source: "./media/characters/pianostrong/side.svg",
  12983. extra: 6106 / 5730
  12984. }
  12985. },
  12986. back: {
  12987. height: math.unit(6, "feet"),
  12988. weight: math.unit(150, "lb"),
  12989. name: "Back",
  12990. image: {
  12991. source: "./media/characters/pianostrong/back.svg",
  12992. extra: 6085 / 5733,
  12993. bottom: 0.01
  12994. }
  12995. },
  12996. },
  12997. [
  12998. {
  12999. name: "Macro",
  13000. height: math.unit(100, "feet")
  13001. },
  13002. {
  13003. name: "Macro+",
  13004. height: math.unit(300, "feet"),
  13005. default: true
  13006. },
  13007. {
  13008. name: "Macro++",
  13009. height: math.unit(1000, "feet")
  13010. },
  13011. ]
  13012. ))
  13013. characterMakers.push(() => makeCharacter(
  13014. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  13015. {
  13016. front: {
  13017. height: math.unit(6, "feet"),
  13018. weight: math.unit(150, "lb"),
  13019. name: "Front",
  13020. image: {
  13021. source: "./media/characters/kona/front.svg",
  13022. extra: 2960 / 2629,
  13023. bottom: 0.005
  13024. }
  13025. },
  13026. },
  13027. [
  13028. {
  13029. name: "Normal",
  13030. height: math.unit(11 + 8 / 12, "feet")
  13031. },
  13032. {
  13033. name: "Macro",
  13034. height: math.unit(850, "feet"),
  13035. default: true
  13036. },
  13037. {
  13038. name: "Macro+",
  13039. height: math.unit(1.5, "km"),
  13040. default: true
  13041. },
  13042. {
  13043. name: "Megamacro",
  13044. height: math.unit(80, "miles")
  13045. },
  13046. {
  13047. name: "Gigamacro",
  13048. height: math.unit(3500, "miles")
  13049. },
  13050. ]
  13051. ))
  13052. characterMakers.push(() => makeCharacter(
  13053. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  13054. {
  13055. side: {
  13056. height: math.unit(1.9, "meters"),
  13057. weight: math.unit(326, "kg"),
  13058. name: "Side",
  13059. image: {
  13060. source: "./media/characters/levi/side.svg",
  13061. extra: 1704 / 1334,
  13062. bottom: 0.02
  13063. }
  13064. },
  13065. },
  13066. [
  13067. {
  13068. name: "Normal",
  13069. height: math.unit(1.9, "meters"),
  13070. default: true
  13071. },
  13072. {
  13073. name: "Macro",
  13074. height: math.unit(20, "meters")
  13075. },
  13076. {
  13077. name: "Macro+",
  13078. height: math.unit(200, "meters")
  13079. },
  13080. {
  13081. name: "Megamacro",
  13082. height: math.unit(2, "km")
  13083. },
  13084. {
  13085. name: "Megamacro+",
  13086. height: math.unit(20, "km")
  13087. },
  13088. {
  13089. name: "Gigamacro",
  13090. height: math.unit(2500, "km")
  13091. },
  13092. {
  13093. name: "Gigamacro+",
  13094. height: math.unit(120000, "km")
  13095. },
  13096. {
  13097. name: "Teramacro",
  13098. height: math.unit(7.77e6, "km")
  13099. },
  13100. ]
  13101. ))
  13102. characterMakers.push(() => makeCharacter(
  13103. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  13104. {
  13105. front: {
  13106. height: math.unit(6 + 4/12, "feet"),
  13107. weight: math.unit(190, "lb"),
  13108. name: "Front",
  13109. image: {
  13110. source: "./media/characters/bmc/front.svg",
  13111. extra: 1626/1472,
  13112. bottom: 79/1705
  13113. }
  13114. },
  13115. back: {
  13116. height: math.unit(6 + 4/12, "feet"),
  13117. weight: math.unit(190, "lb"),
  13118. name: "Back",
  13119. image: {
  13120. source: "./media/characters/bmc/back.svg",
  13121. extra: 1640/1479,
  13122. bottom: 45/1685
  13123. }
  13124. },
  13125. frontArmor: {
  13126. height: math.unit(6 + 4/12, "feet"),
  13127. weight: math.unit(190, "lb"),
  13128. name: "Front-armor",
  13129. image: {
  13130. source: "./media/characters/bmc/front-armor.svg",
  13131. extra: 1538/1468,
  13132. bottom: 79/1617
  13133. }
  13134. },
  13135. },
  13136. [
  13137. {
  13138. name: "Human-sized",
  13139. height: math.unit(6 + 4 / 12, "feet")
  13140. },
  13141. {
  13142. name: "Interactive Size",
  13143. height: math.unit(25, "feet")
  13144. },
  13145. {
  13146. name: "Small",
  13147. height: math.unit(250, "feet")
  13148. },
  13149. {
  13150. name: "Normal",
  13151. height: math.unit(1250, "feet"),
  13152. default: true
  13153. },
  13154. {
  13155. name: "Good Day",
  13156. height: math.unit(88, "miles")
  13157. },
  13158. {
  13159. name: "Largest Measured Size",
  13160. height: math.unit(105.960, "galaxies")
  13161. },
  13162. ]
  13163. ))
  13164. characterMakers.push(() => makeCharacter(
  13165. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  13166. {
  13167. front: {
  13168. height: math.unit(20, "feet"),
  13169. weight: math.unit(2016, "kg"),
  13170. name: "Front",
  13171. image: {
  13172. source: "./media/characters/sven-the-kaiju/front.svg",
  13173. extra: 1277/1250,
  13174. bottom: 35/1312
  13175. }
  13176. },
  13177. mouth: {
  13178. height: math.unit(1.85, "feet"),
  13179. name: "Mouth",
  13180. image: {
  13181. source: "./media/characters/sven-the-kaiju/mouth.svg"
  13182. }
  13183. },
  13184. },
  13185. [
  13186. {
  13187. name: "Fairy",
  13188. height: math.unit(6, "inches")
  13189. },
  13190. {
  13191. name: "Normal",
  13192. height: math.unit(20, "feet"),
  13193. default: true
  13194. },
  13195. {
  13196. name: "Rampage",
  13197. height: math.unit(200, "feet")
  13198. },
  13199. {
  13200. name: "Archfey Forest Guardian",
  13201. height: math.unit(1, "mile")
  13202. },
  13203. ]
  13204. ))
  13205. characterMakers.push(() => makeCharacter(
  13206. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  13207. {
  13208. front: {
  13209. height: math.unit(4, "meters"),
  13210. weight: math.unit(2, "tons"),
  13211. name: "Front",
  13212. image: {
  13213. source: "./media/characters/marik/front.svg",
  13214. extra: 1057 / 1003,
  13215. bottom: 0.08
  13216. }
  13217. },
  13218. },
  13219. [
  13220. {
  13221. name: "Normal",
  13222. height: math.unit(4, "meters"),
  13223. default: true
  13224. },
  13225. {
  13226. name: "Macro",
  13227. height: math.unit(20, "meters")
  13228. },
  13229. {
  13230. name: "Megamacro",
  13231. height: math.unit(50, "km")
  13232. },
  13233. {
  13234. name: "Gigamacro",
  13235. height: math.unit(100, "km")
  13236. },
  13237. {
  13238. name: "Alpha Macro",
  13239. height: math.unit(7.88e7, "yottameters")
  13240. },
  13241. ]
  13242. ))
  13243. characterMakers.push(() => makeCharacter(
  13244. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  13245. {
  13246. front: {
  13247. height: math.unit(6, "feet"),
  13248. weight: math.unit(110, "lb"),
  13249. name: "Front",
  13250. image: {
  13251. source: "./media/characters/mel/front.svg",
  13252. extra: 736 / 617,
  13253. bottom: 0.017
  13254. }
  13255. },
  13256. },
  13257. [
  13258. {
  13259. name: "Pico",
  13260. height: math.unit(3, "pm")
  13261. },
  13262. {
  13263. name: "Nano",
  13264. height: math.unit(3, "nm")
  13265. },
  13266. {
  13267. name: "Micro",
  13268. height: math.unit(0.3, "mm"),
  13269. default: true
  13270. },
  13271. {
  13272. name: "Micro+",
  13273. height: math.unit(3, "mm")
  13274. },
  13275. {
  13276. name: "Normal",
  13277. height: math.unit(5 + 10.5 / 12, "feet")
  13278. },
  13279. ]
  13280. ))
  13281. characterMakers.push(() => makeCharacter(
  13282. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  13283. {
  13284. kaiju: {
  13285. height: math.unit(1.75, "meters"),
  13286. weight: math.unit(55, "kg"),
  13287. name: "Kaiju",
  13288. image: {
  13289. source: "./media/characters/lykonous/kaiju.svg",
  13290. extra: 1055 / 946,
  13291. bottom: 0.135
  13292. }
  13293. },
  13294. },
  13295. [
  13296. {
  13297. name: "Normal",
  13298. height: math.unit(2.5, "meters"),
  13299. default: true
  13300. },
  13301. {
  13302. name: "Kaiju Dragon",
  13303. height: math.unit(60, "meters")
  13304. },
  13305. {
  13306. name: "Mega Kaiju",
  13307. height: math.unit(120, "km")
  13308. },
  13309. {
  13310. name: "Giga Kaiju",
  13311. height: math.unit(200, "megameters")
  13312. },
  13313. {
  13314. name: "Terra Kaiju",
  13315. height: math.unit(400, "gigameters")
  13316. },
  13317. {
  13318. name: "Kaiju Dragon God",
  13319. height: math.unit(13000, "exaparsecs")
  13320. },
  13321. ]
  13322. ))
  13323. characterMakers.push(() => makeCharacter(
  13324. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  13325. {
  13326. front: {
  13327. height: math.unit(6, "feet"),
  13328. weight: math.unit(150, "lb"),
  13329. name: "Front",
  13330. image: {
  13331. source: "./media/characters/blü/front.svg",
  13332. extra: 1883 / 1564,
  13333. bottom: 0.031
  13334. }
  13335. },
  13336. },
  13337. [
  13338. {
  13339. name: "Normal",
  13340. height: math.unit(13, "feet"),
  13341. default: true
  13342. },
  13343. {
  13344. name: "Big Boi",
  13345. height: math.unit(150, "meters")
  13346. },
  13347. {
  13348. name: "Mini Stomper",
  13349. height: math.unit(300, "meters")
  13350. },
  13351. {
  13352. name: "Macro",
  13353. height: math.unit(1000, "meters")
  13354. },
  13355. {
  13356. name: "Megamacro",
  13357. height: math.unit(11000, "meters")
  13358. },
  13359. {
  13360. name: "Gigamacro",
  13361. height: math.unit(11000, "km")
  13362. },
  13363. {
  13364. name: "Teramacro",
  13365. height: math.unit(420000, "km")
  13366. },
  13367. {
  13368. name: "Examacro",
  13369. height: math.unit(120, "parsecs")
  13370. },
  13371. {
  13372. name: "God Tho",
  13373. height: math.unit(98000000000, "parsecs")
  13374. },
  13375. ]
  13376. ))
  13377. characterMakers.push(() => makeCharacter(
  13378. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13379. {
  13380. taurFront: {
  13381. height: math.unit(6, "feet"),
  13382. weight: math.unit(200, "lb"),
  13383. name: "Taur (Front)",
  13384. image: {
  13385. source: "./media/characters/scales/taur-front.svg",
  13386. extra: 1,
  13387. bottom: 0.05
  13388. }
  13389. },
  13390. taurBack: {
  13391. height: math.unit(6, "feet"),
  13392. weight: math.unit(200, "lb"),
  13393. name: "Taur (Back)",
  13394. image: {
  13395. source: "./media/characters/scales/taur-back.svg",
  13396. extra: 1,
  13397. bottom: 0.08
  13398. }
  13399. },
  13400. anthro: {
  13401. height: math.unit(6 * 7 / 12, "feet"),
  13402. weight: math.unit(100, "lb"),
  13403. name: "Anthro",
  13404. image: {
  13405. source: "./media/characters/scales/anthro.svg",
  13406. extra: 1,
  13407. bottom: 0.06
  13408. }
  13409. },
  13410. },
  13411. [
  13412. {
  13413. name: "Normal",
  13414. height: math.unit(12, "feet"),
  13415. default: true
  13416. },
  13417. ]
  13418. ))
  13419. characterMakers.push(() => makeCharacter(
  13420. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13421. {
  13422. front: {
  13423. height: math.unit(6, "feet"),
  13424. weight: math.unit(150, "lb"),
  13425. name: "Front",
  13426. image: {
  13427. source: "./media/characters/koragos/front.svg",
  13428. extra: 841 / 794,
  13429. bottom: 0.035
  13430. }
  13431. },
  13432. back: {
  13433. height: math.unit(6, "feet"),
  13434. weight: math.unit(150, "lb"),
  13435. name: "Back",
  13436. image: {
  13437. source: "./media/characters/koragos/back.svg",
  13438. extra: 841 / 810,
  13439. bottom: 0.022
  13440. }
  13441. },
  13442. },
  13443. [
  13444. {
  13445. name: "Normal",
  13446. height: math.unit(6 + 11 / 12, "feet"),
  13447. default: true
  13448. },
  13449. {
  13450. name: "Macro",
  13451. height: math.unit(490, "feet")
  13452. },
  13453. {
  13454. name: "Megamacro",
  13455. height: math.unit(10, "miles")
  13456. },
  13457. {
  13458. name: "Gigamacro",
  13459. height: math.unit(50, "miles")
  13460. },
  13461. ]
  13462. ))
  13463. characterMakers.push(() => makeCharacter(
  13464. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13465. {
  13466. front: {
  13467. height: math.unit(6, "feet"),
  13468. weight: math.unit(250, "lb"),
  13469. name: "Front",
  13470. image: {
  13471. source: "./media/characters/xylrem/front.svg",
  13472. extra: 3323 / 3050,
  13473. bottom: 0.065
  13474. }
  13475. },
  13476. },
  13477. [
  13478. {
  13479. name: "Micro",
  13480. height: math.unit(4, "feet")
  13481. },
  13482. {
  13483. name: "Normal",
  13484. height: math.unit(16, "feet"),
  13485. default: true
  13486. },
  13487. {
  13488. name: "Macro",
  13489. height: math.unit(2720, "feet")
  13490. },
  13491. {
  13492. name: "Megamacro",
  13493. height: math.unit(25000, "miles")
  13494. },
  13495. ]
  13496. ))
  13497. characterMakers.push(() => makeCharacter(
  13498. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13499. {
  13500. front: {
  13501. height: math.unit(8, "feet"),
  13502. weight: math.unit(250, "kg"),
  13503. name: "Front",
  13504. image: {
  13505. source: "./media/characters/ikideru/front.svg",
  13506. extra: 930 / 870,
  13507. bottom: 0.087
  13508. }
  13509. },
  13510. back: {
  13511. height: math.unit(8, "feet"),
  13512. weight: math.unit(250, "kg"),
  13513. name: "Back",
  13514. image: {
  13515. source: "./media/characters/ikideru/back.svg",
  13516. extra: 919 / 852,
  13517. bottom: 0.055
  13518. }
  13519. },
  13520. },
  13521. [
  13522. {
  13523. name: "Rare",
  13524. height: math.unit(8, "feet"),
  13525. default: true
  13526. },
  13527. {
  13528. name: "Playful Loom",
  13529. height: math.unit(80, "feet")
  13530. },
  13531. {
  13532. name: "City Leaner",
  13533. height: math.unit(230, "feet")
  13534. },
  13535. {
  13536. name: "Megamacro",
  13537. height: math.unit(2500, "feet")
  13538. },
  13539. {
  13540. name: "Gigamacro",
  13541. height: math.unit(26400, "feet")
  13542. },
  13543. {
  13544. name: "Tectonic Shifter",
  13545. height: math.unit(1.7, "megameters")
  13546. },
  13547. {
  13548. name: "Planet Carer",
  13549. height: math.unit(21, "megameters")
  13550. },
  13551. {
  13552. name: "God",
  13553. height: math.unit(11157.22, "parsecs")
  13554. },
  13555. ]
  13556. ))
  13557. characterMakers.push(() => makeCharacter(
  13558. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13559. {
  13560. front: {
  13561. height: math.unit(6, "feet"),
  13562. weight: math.unit(120, "lb"),
  13563. name: "Front",
  13564. image: {
  13565. source: "./media/characters/neo/front.svg"
  13566. }
  13567. },
  13568. },
  13569. [
  13570. {
  13571. name: "Micro",
  13572. height: math.unit(2, "inches"),
  13573. default: true
  13574. },
  13575. {
  13576. name: "Human Size",
  13577. height: math.unit(5 + 8 / 12, "feet")
  13578. },
  13579. ]
  13580. ))
  13581. characterMakers.push(() => makeCharacter(
  13582. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13583. {
  13584. front: {
  13585. height: math.unit(13 + 10 / 12, "feet"),
  13586. weight: math.unit(5320, "lb"),
  13587. name: "Front",
  13588. image: {
  13589. source: "./media/characters/chauncey-chantz/front.svg",
  13590. extra: 1587 / 1435,
  13591. bottom: 0.02
  13592. }
  13593. },
  13594. },
  13595. [
  13596. {
  13597. name: "Normal",
  13598. height: math.unit(13 + 10 / 12, "feet"),
  13599. default: true
  13600. },
  13601. {
  13602. name: "Macro",
  13603. height: math.unit(45, "feet")
  13604. },
  13605. {
  13606. name: "Megamacro",
  13607. height: math.unit(250, "miles")
  13608. },
  13609. {
  13610. name: "Planetary",
  13611. height: math.unit(10000, "miles")
  13612. },
  13613. {
  13614. name: "Galactic",
  13615. height: math.unit(40000, "parsecs")
  13616. },
  13617. {
  13618. name: "Universal",
  13619. height: math.unit(1, "yottameter")
  13620. },
  13621. ]
  13622. ))
  13623. characterMakers.push(() => makeCharacter(
  13624. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13625. {
  13626. front: {
  13627. height: math.unit(6, "feet"),
  13628. weight: math.unit(150, "lb"),
  13629. name: "Front",
  13630. image: {
  13631. source: "./media/characters/epifox/front.svg",
  13632. extra: 1,
  13633. bottom: 0.075
  13634. }
  13635. },
  13636. },
  13637. [
  13638. {
  13639. name: "Micro",
  13640. height: math.unit(6, "inches")
  13641. },
  13642. {
  13643. name: "Normal",
  13644. height: math.unit(12, "feet"),
  13645. default: true
  13646. },
  13647. {
  13648. name: "Macro",
  13649. height: math.unit(3810, "feet")
  13650. },
  13651. {
  13652. name: "Megamacro",
  13653. height: math.unit(500, "miles")
  13654. },
  13655. ]
  13656. ))
  13657. characterMakers.push(() => makeCharacter(
  13658. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13659. {
  13660. front: {
  13661. height: math.unit(1.8796, "m"),
  13662. weight: math.unit(230, "lb"),
  13663. name: "Front",
  13664. image: {
  13665. source: "./media/characters/colin-t/front.svg",
  13666. extra: 1272 / 1193,
  13667. bottom: 0.07
  13668. }
  13669. },
  13670. },
  13671. [
  13672. {
  13673. name: "Micro",
  13674. height: math.unit(0.571, "meters")
  13675. },
  13676. {
  13677. name: "Normal",
  13678. height: math.unit(1.8796, "meters"),
  13679. default: true
  13680. },
  13681. {
  13682. name: "Tall",
  13683. height: math.unit(4, "meters")
  13684. },
  13685. {
  13686. name: "Macro",
  13687. height: math.unit(67.241, "meters")
  13688. },
  13689. {
  13690. name: "Megamacro",
  13691. height: math.unit(371.856, "meters")
  13692. },
  13693. {
  13694. name: "Planetary",
  13695. height: math.unit(12631.5689, "km")
  13696. },
  13697. ]
  13698. ))
  13699. characterMakers.push(() => makeCharacter(
  13700. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13701. {
  13702. front: {
  13703. height: math.unit(1.85, "meters"),
  13704. weight: math.unit(80, "kg"),
  13705. name: "Front",
  13706. image: {
  13707. source: "./media/characters/matvei/front.svg",
  13708. extra: 456/447,
  13709. bottom: 8/464
  13710. }
  13711. },
  13712. back: {
  13713. height: math.unit(1.85, "meters"),
  13714. weight: math.unit(80, "kg"),
  13715. name: "Back",
  13716. image: {
  13717. source: "./media/characters/matvei/back.svg",
  13718. extra: 434/427,
  13719. bottom: 11/445
  13720. }
  13721. },
  13722. },
  13723. [
  13724. {
  13725. name: "Normal",
  13726. height: math.unit(1.85, "meters"),
  13727. default: true
  13728. },
  13729. ]
  13730. ))
  13731. characterMakers.push(() => makeCharacter(
  13732. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13733. {
  13734. front: {
  13735. height: math.unit(5 + 9 / 12, "feet"),
  13736. weight: math.unit(70, "lb"),
  13737. name: "Front",
  13738. image: {
  13739. source: "./media/characters/quincy/front.svg",
  13740. extra: 3041 / 2751
  13741. }
  13742. },
  13743. back: {
  13744. height: math.unit(5 + 9 / 12, "feet"),
  13745. weight: math.unit(70, "lb"),
  13746. name: "Back",
  13747. image: {
  13748. source: "./media/characters/quincy/back.svg",
  13749. extra: 3041 / 2751
  13750. }
  13751. },
  13752. flying: {
  13753. height: math.unit(5 + 4 / 12, "feet"),
  13754. weight: math.unit(70, "lb"),
  13755. name: "Flying",
  13756. image: {
  13757. source: "./media/characters/quincy/flying.svg",
  13758. extra: 1044 / 930
  13759. }
  13760. },
  13761. },
  13762. [
  13763. {
  13764. name: "Micro",
  13765. height: math.unit(3, "cm")
  13766. },
  13767. {
  13768. name: "Normal",
  13769. height: math.unit(5 + 9 / 12, "feet")
  13770. },
  13771. {
  13772. name: "Macro",
  13773. height: math.unit(200, "meters"),
  13774. default: true
  13775. },
  13776. {
  13777. name: "Megamacro",
  13778. height: math.unit(1000, "meters")
  13779. },
  13780. ]
  13781. ))
  13782. characterMakers.push(() => makeCharacter(
  13783. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13784. {
  13785. front: {
  13786. height: math.unit(3 + 11/12, "feet"),
  13787. weight: math.unit(50, "lb"),
  13788. name: "Front",
  13789. image: {
  13790. source: "./media/characters/vanrel/front.svg",
  13791. extra: 1104/949,
  13792. bottom: 52/1156
  13793. }
  13794. },
  13795. back: {
  13796. height: math.unit(3 + 11/12, "feet"),
  13797. weight: math.unit(50, "lb"),
  13798. name: "Back",
  13799. image: {
  13800. source: "./media/characters/vanrel/back.svg",
  13801. extra: 1119/976,
  13802. bottom: 37/1156
  13803. }
  13804. },
  13805. tome: {
  13806. height: math.unit(1.35, "feet"),
  13807. weight: math.unit(10, "lb"),
  13808. name: "Vanrel's Tome",
  13809. rename: true,
  13810. image: {
  13811. source: "./media/characters/vanrel/tome.svg"
  13812. }
  13813. },
  13814. beans: {
  13815. height: math.unit(0.89, "feet"),
  13816. name: "Beans",
  13817. image: {
  13818. source: "./media/characters/vanrel/beans.svg"
  13819. }
  13820. },
  13821. },
  13822. [
  13823. {
  13824. name: "Normal",
  13825. height: math.unit(3 + 11/12, "feet"),
  13826. default: true
  13827. },
  13828. ]
  13829. ))
  13830. characterMakers.push(() => makeCharacter(
  13831. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13832. {
  13833. front: {
  13834. height: math.unit(7 + 5 / 12, "feet"),
  13835. name: "Front",
  13836. image: {
  13837. source: "./media/characters/kuiper-vanrel/front.svg",
  13838. extra: 1219/1169,
  13839. bottom: 69/1288
  13840. }
  13841. },
  13842. back: {
  13843. height: math.unit(7 + 5 / 12, "feet"),
  13844. name: "Back",
  13845. image: {
  13846. source: "./media/characters/kuiper-vanrel/back.svg",
  13847. extra: 1236/1193,
  13848. bottom: 27/1263
  13849. }
  13850. },
  13851. foot: {
  13852. height: math.unit(0.55, "meters"),
  13853. name: "Foot",
  13854. image: {
  13855. source: "./media/characters/kuiper-vanrel/foot.svg",
  13856. }
  13857. },
  13858. battle: {
  13859. height: math.unit(6.824, "feet"),
  13860. name: "Battle",
  13861. image: {
  13862. source: "./media/characters/kuiper-vanrel/battle.svg",
  13863. extra: 1466 / 1327,
  13864. bottom: 29 / 1492.5
  13865. }
  13866. },
  13867. meerkui: {
  13868. height: math.unit(18, "inches"),
  13869. name: "Meerkui",
  13870. image: {
  13871. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13872. extra: 1354/1289,
  13873. bottom: 69/1423
  13874. }
  13875. },
  13876. },
  13877. [
  13878. {
  13879. name: "Normal",
  13880. height: math.unit(7 + 5 / 12, "feet"),
  13881. default: true
  13882. },
  13883. ]
  13884. ))
  13885. characterMakers.push(() => makeCharacter(
  13886. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13887. {
  13888. front: {
  13889. height: math.unit(8 + 5 / 12, "feet"),
  13890. name: "Front",
  13891. image: {
  13892. source: "./media/characters/keset-vanrel/front.svg",
  13893. extra: 1231/1148,
  13894. bottom: 82/1313
  13895. }
  13896. },
  13897. back: {
  13898. height: math.unit(8 + 5 / 12, "feet"),
  13899. name: "Back",
  13900. image: {
  13901. source: "./media/characters/keset-vanrel/back.svg",
  13902. extra: 1240/1174,
  13903. bottom: 33/1273
  13904. }
  13905. },
  13906. hand: {
  13907. height: math.unit(0.6, "meters"),
  13908. name: "Hand",
  13909. image: {
  13910. source: "./media/characters/keset-vanrel/hand.svg"
  13911. }
  13912. },
  13913. foot: {
  13914. height: math.unit(0.94978, "meters"),
  13915. name: "Foot",
  13916. image: {
  13917. source: "./media/characters/keset-vanrel/foot.svg"
  13918. }
  13919. },
  13920. battle: {
  13921. height: math.unit(7.408, "feet"),
  13922. name: "Battle",
  13923. image: {
  13924. source: "./media/characters/keset-vanrel/battle.svg",
  13925. extra: 1890 / 1386,
  13926. bottom: 73.28 / 1970
  13927. }
  13928. },
  13929. },
  13930. [
  13931. {
  13932. name: "Normal",
  13933. height: math.unit(8 + 5 / 12, "feet"),
  13934. default: true
  13935. },
  13936. ]
  13937. ))
  13938. characterMakers.push(() => makeCharacter(
  13939. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13940. {
  13941. front: {
  13942. height: math.unit(6, "feet"),
  13943. weight: math.unit(150, "lb"),
  13944. name: "Front",
  13945. image: {
  13946. source: "./media/characters/neos/front.svg",
  13947. extra: 1696 / 992,
  13948. bottom: 0.14
  13949. }
  13950. },
  13951. },
  13952. [
  13953. {
  13954. name: "Normal",
  13955. height: math.unit(54, "cm"),
  13956. default: true
  13957. },
  13958. {
  13959. name: "Macro",
  13960. height: math.unit(100, "m")
  13961. },
  13962. {
  13963. name: "Megamacro",
  13964. height: math.unit(10, "km")
  13965. },
  13966. {
  13967. name: "Megamacro+",
  13968. height: math.unit(100, "km")
  13969. },
  13970. {
  13971. name: "Gigamacro",
  13972. height: math.unit(100, "Mm")
  13973. },
  13974. {
  13975. name: "Teramacro",
  13976. height: math.unit(100, "Gm")
  13977. },
  13978. {
  13979. name: "Examacro",
  13980. height: math.unit(100, "Em")
  13981. },
  13982. {
  13983. name: "Godly",
  13984. height: math.unit(10000, "Ym")
  13985. },
  13986. {
  13987. name: "Beyond Godly",
  13988. height: math.unit(25, "multiverses")
  13989. },
  13990. ]
  13991. ))
  13992. characterMakers.push(() => makeCharacter(
  13993. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13994. {
  13995. fluide_tame: {
  13996. height: math.unit(5, "feet"),
  13997. name: "Tame",
  13998. image: {
  13999. source: "./media/characters/sammy-mouse/fluide-tame.svg",
  14000. extra: 1655/1574,
  14001. bottom: 231/1886
  14002. },
  14003. form: "fluide",
  14004. default: true
  14005. },
  14006. fluide_nude: {
  14007. height: math.unit(5, "feet"),
  14008. name: "Nude",
  14009. image: {
  14010. source: "./media/characters/sammy-mouse/fluide-nude.svg",
  14011. extra: 1655/1574,
  14012. bottom: 231/1886
  14013. },
  14014. form: "fluide",
  14015. },
  14016. male_tame: {
  14017. height: math.unit(5, "feet"),
  14018. name: "Tame",
  14019. image: {
  14020. source: "./media/characters/sammy-mouse/male-tame.svg",
  14021. extra: 1655/1574,
  14022. bottom: 231/1886
  14023. },
  14024. form: "male",
  14025. default: true
  14026. },
  14027. male_nude: {
  14028. height: math.unit(5, "feet"),
  14029. name: "Nude",
  14030. image: {
  14031. source: "./media/characters/sammy-mouse/male-nude.svg",
  14032. extra: 1655/1574,
  14033. bottom: 231/1886
  14034. },
  14035. form: "male",
  14036. },
  14037. female_nude: {
  14038. height: math.unit(5, "feet"),
  14039. name: "Nude",
  14040. image: {
  14041. source: "./media/characters/sammy-mouse/female-nude.svg",
  14042. extra: 1655/1574,
  14043. bottom: 231/1886
  14044. },
  14045. form: "female",
  14046. default: true
  14047. },
  14048. mouth: {
  14049. height: math.unit(0.32, "feet"),
  14050. name: "Mouth",
  14051. image: {
  14052. source: "./media/characters/sammy-mouse/mouth.svg"
  14053. },
  14054. allForms: true
  14055. },
  14056. paw: {
  14057. height: math.unit(0.42, "feet"),
  14058. name: "Paw",
  14059. image: {
  14060. source: "./media/characters/sammy-mouse/paw.svg"
  14061. },
  14062. allForms: true
  14063. },
  14064. },
  14065. [
  14066. {
  14067. name: "Micro",
  14068. height: math.unit(5, "inches"),
  14069. allForms: true
  14070. },
  14071. {
  14072. name: "Normal",
  14073. height: math.unit(5, "feet"),
  14074. default: true,
  14075. allForms: true
  14076. },
  14077. {
  14078. name: "Macro",
  14079. height: math.unit(60, "feet"),
  14080. allForms: true
  14081. },
  14082. ],
  14083. {
  14084. "fluide": {
  14085. name: "Fluide",
  14086. default: true
  14087. },
  14088. "male": {
  14089. name: "Male",
  14090. },
  14091. "female": {
  14092. name: "Female",
  14093. },
  14094. }
  14095. ))
  14096. characterMakers.push(() => makeCharacter(
  14097. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  14098. {
  14099. front: {
  14100. height: math.unit(4, "feet"),
  14101. weight: math.unit(50, "lb"),
  14102. name: "Front",
  14103. image: {
  14104. source: "./media/characters/kole/front.svg",
  14105. extra: 1423 / 1303,
  14106. bottom: 0.025
  14107. }
  14108. },
  14109. back: {
  14110. height: math.unit(4, "feet"),
  14111. weight: math.unit(50, "lb"),
  14112. name: "Back",
  14113. image: {
  14114. source: "./media/characters/kole/back.svg",
  14115. extra: 1426 / 1280,
  14116. bottom: 0.02
  14117. }
  14118. },
  14119. },
  14120. [
  14121. {
  14122. name: "Normal",
  14123. height: math.unit(4, "feet"),
  14124. default: true
  14125. },
  14126. ]
  14127. ))
  14128. characterMakers.push(() => makeCharacter(
  14129. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  14130. {
  14131. front: {
  14132. height: math.unit(2.5, "feet"),
  14133. weight: math.unit(32, "lb"),
  14134. name: "Front",
  14135. image: {
  14136. source: "./media/characters/rufran/front.svg",
  14137. extra: 1313/885,
  14138. bottom: 94/1407
  14139. }
  14140. },
  14141. side: {
  14142. height: math.unit(2.5, "feet"),
  14143. weight: math.unit(32, "lb"),
  14144. name: "Side",
  14145. image: {
  14146. source: "./media/characters/rufran/side.svg",
  14147. extra: 1109/852,
  14148. bottom: 118/1227
  14149. }
  14150. },
  14151. back: {
  14152. height: math.unit(2.5, "feet"),
  14153. weight: math.unit(32, "lb"),
  14154. name: "Back",
  14155. image: {
  14156. source: "./media/characters/rufran/back.svg",
  14157. extra: 1280/878,
  14158. bottom: 131/1411
  14159. }
  14160. },
  14161. mouth: {
  14162. height: math.unit(1.13, "feet"),
  14163. name: "Mouth",
  14164. image: {
  14165. source: "./media/characters/rufran/mouth.svg"
  14166. }
  14167. },
  14168. foot: {
  14169. height: math.unit(1.33, "feet"),
  14170. name: "Foot",
  14171. image: {
  14172. source: "./media/characters/rufran/foot.svg"
  14173. }
  14174. },
  14175. koboldFront: {
  14176. height: math.unit(2 + 6 / 12, "feet"),
  14177. weight: math.unit(20, "lb"),
  14178. name: "Front (Kobold)",
  14179. image: {
  14180. source: "./media/characters/rufran/kobold-front.svg",
  14181. extra: 2041 / 1839,
  14182. bottom: 0.055
  14183. }
  14184. },
  14185. koboldBack: {
  14186. height: math.unit(2 + 6 / 12, "feet"),
  14187. weight: math.unit(20, "lb"),
  14188. name: "Back (Kobold)",
  14189. image: {
  14190. source: "./media/characters/rufran/kobold-back.svg",
  14191. extra: 2054 / 1839,
  14192. bottom: 0.01
  14193. }
  14194. },
  14195. koboldHand: {
  14196. height: math.unit(0.2166, "meters"),
  14197. name: "Hand (Kobold)",
  14198. image: {
  14199. source: "./media/characters/rufran/kobold-hand.svg"
  14200. }
  14201. },
  14202. koboldFoot: {
  14203. height: math.unit(0.185, "meters"),
  14204. name: "Foot (Kobold)",
  14205. image: {
  14206. source: "./media/characters/rufran/kobold-foot.svg"
  14207. }
  14208. },
  14209. },
  14210. [
  14211. {
  14212. name: "Micro",
  14213. height: math.unit(1, "inch")
  14214. },
  14215. {
  14216. name: "Normal",
  14217. height: math.unit(2 + 6 / 12, "feet"),
  14218. default: true
  14219. },
  14220. {
  14221. name: "Big",
  14222. height: math.unit(60, "feet")
  14223. },
  14224. {
  14225. name: "Macro",
  14226. height: math.unit(325, "feet")
  14227. },
  14228. ]
  14229. ))
  14230. characterMakers.push(() => makeCharacter(
  14231. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  14232. {
  14233. front: {
  14234. height: math.unit(0.3, "meters"),
  14235. weight: math.unit(3.5, "kg"),
  14236. name: "Front",
  14237. image: {
  14238. source: "./media/characters/chip/front.svg",
  14239. extra: 748 / 674
  14240. }
  14241. },
  14242. },
  14243. [
  14244. {
  14245. name: "Micro",
  14246. height: math.unit(1, "inch"),
  14247. default: true
  14248. },
  14249. ]
  14250. ))
  14251. characterMakers.push(() => makeCharacter(
  14252. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  14253. {
  14254. side: {
  14255. height: math.unit(2.3, "meters"),
  14256. weight: math.unit(3500, "lb"),
  14257. name: "Side",
  14258. image: {
  14259. source: "./media/characters/torvid/side.svg",
  14260. extra: 1972 / 722,
  14261. bottom: 0.035
  14262. }
  14263. },
  14264. },
  14265. [
  14266. {
  14267. name: "Normal",
  14268. height: math.unit(2.3, "meters"),
  14269. default: true
  14270. },
  14271. ]
  14272. ))
  14273. characterMakers.push(() => makeCharacter(
  14274. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  14275. {
  14276. front: {
  14277. height: math.unit(2, "meters"),
  14278. weight: math.unit(150.5, "kg"),
  14279. name: "Front",
  14280. image: {
  14281. source: "./media/characters/susan/front.svg",
  14282. extra: 693 / 635,
  14283. bottom: 0.05
  14284. }
  14285. },
  14286. },
  14287. [
  14288. {
  14289. name: "Megamacro",
  14290. height: math.unit(505, "miles"),
  14291. default: true
  14292. },
  14293. ]
  14294. ))
  14295. characterMakers.push(() => makeCharacter(
  14296. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  14297. {
  14298. front: {
  14299. height: math.unit(6, "feet"),
  14300. weight: math.unit(150, "lb"),
  14301. name: "Front",
  14302. image: {
  14303. source: "./media/characters/raindrops/front.svg",
  14304. extra: 2655 / 2461,
  14305. bottom: 49 / 2705
  14306. }
  14307. },
  14308. back: {
  14309. height: math.unit(6, "feet"),
  14310. weight: math.unit(150, "lb"),
  14311. name: "Back",
  14312. image: {
  14313. source: "./media/characters/raindrops/back.svg",
  14314. extra: 2574 / 2400,
  14315. bottom: 65 / 2634
  14316. }
  14317. },
  14318. },
  14319. [
  14320. {
  14321. name: "Micro",
  14322. height: math.unit(6, "inches")
  14323. },
  14324. {
  14325. name: "Normal",
  14326. height: math.unit(6 + 2 / 12, "feet")
  14327. },
  14328. {
  14329. name: "Macro",
  14330. height: math.unit(131, "feet"),
  14331. default: true
  14332. },
  14333. {
  14334. name: "Megamacro",
  14335. height: math.unit(15, "miles")
  14336. },
  14337. {
  14338. name: "Gigamacro",
  14339. height: math.unit(4000, "miles")
  14340. },
  14341. {
  14342. name: "Teramacro",
  14343. height: math.unit(315000, "miles")
  14344. },
  14345. ]
  14346. ))
  14347. characterMakers.push(() => makeCharacter(
  14348. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  14349. {
  14350. front: {
  14351. height: math.unit(2.794, "meters"),
  14352. weight: math.unit(325, "kg"),
  14353. name: "Front",
  14354. image: {
  14355. source: "./media/characters/tezwa/front.svg",
  14356. extra: 2083 / 1906,
  14357. bottom: 0.031
  14358. }
  14359. },
  14360. foot: {
  14361. height: math.unit(0.687, "meters"),
  14362. name: "Foot",
  14363. image: {
  14364. source: "./media/characters/tezwa/foot.svg"
  14365. }
  14366. },
  14367. },
  14368. [
  14369. {
  14370. name: "Normal",
  14371. height: math.unit(9 + 2 / 12, "feet"),
  14372. default: true
  14373. },
  14374. ]
  14375. ))
  14376. characterMakers.push(() => makeCharacter(
  14377. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  14378. {
  14379. front: {
  14380. height: math.unit(58, "feet"),
  14381. weight: math.unit(89000, "lb"),
  14382. name: "Front",
  14383. image: {
  14384. source: "./media/characters/typhus/front.svg",
  14385. extra: 816 / 800,
  14386. bottom: 0.065
  14387. }
  14388. },
  14389. },
  14390. [
  14391. {
  14392. name: "Macro",
  14393. height: math.unit(58, "feet"),
  14394. default: true
  14395. },
  14396. ]
  14397. ))
  14398. characterMakers.push(() => makeCharacter(
  14399. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14400. {
  14401. front: {
  14402. height: math.unit(12, "feet"),
  14403. weight: math.unit(6, "tonnes"),
  14404. name: "Front",
  14405. image: {
  14406. source: "./media/characters/lyra-von-wulf/front.svg",
  14407. extra: 1,
  14408. bottom: 0.10
  14409. }
  14410. },
  14411. frontMecha: {
  14412. height: math.unit(12, "feet"),
  14413. weight: math.unit(12, "tonnes"),
  14414. name: "Front (Mecha)",
  14415. image: {
  14416. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14417. extra: 1,
  14418. bottom: 0.042
  14419. }
  14420. },
  14421. maw: {
  14422. height: math.unit(2.2, "feet"),
  14423. name: "Maw",
  14424. image: {
  14425. source: "./media/characters/lyra-von-wulf/maw.svg"
  14426. }
  14427. },
  14428. },
  14429. [
  14430. {
  14431. name: "Normal",
  14432. height: math.unit(12, "feet"),
  14433. default: true
  14434. },
  14435. {
  14436. name: "Classic",
  14437. height: math.unit(50, "feet")
  14438. },
  14439. {
  14440. name: "Macro",
  14441. height: math.unit(500, "feet")
  14442. },
  14443. {
  14444. name: "Megamacro",
  14445. height: math.unit(1, "mile")
  14446. },
  14447. {
  14448. name: "Gigamacro",
  14449. height: math.unit(400, "miles")
  14450. },
  14451. {
  14452. name: "Teramacro",
  14453. height: math.unit(22000, "miles")
  14454. },
  14455. {
  14456. name: "Solarmacro",
  14457. height: math.unit(8600000, "miles")
  14458. },
  14459. {
  14460. name: "Galactic",
  14461. height: math.unit(1057000, "lightyears")
  14462. },
  14463. ]
  14464. ))
  14465. characterMakers.push(() => makeCharacter(
  14466. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14467. {
  14468. front: {
  14469. height: math.unit(6 + 10 / 12, "feet"),
  14470. weight: math.unit(150, "lb"),
  14471. name: "Front",
  14472. image: {
  14473. source: "./media/characters/dixon/front.svg",
  14474. extra: 3361 / 3209,
  14475. bottom: 0.01
  14476. }
  14477. },
  14478. },
  14479. [
  14480. {
  14481. name: "Normal",
  14482. height: math.unit(6 + 10 / 12, "feet"),
  14483. default: true
  14484. },
  14485. {
  14486. name: "Big",
  14487. height: math.unit(12, "meters")
  14488. },
  14489. {
  14490. name: "Macro",
  14491. height: math.unit(500, "meters")
  14492. },
  14493. {
  14494. name: "Megamacro",
  14495. height: math.unit(2, "km")
  14496. },
  14497. ]
  14498. ))
  14499. characterMakers.push(() => makeCharacter(
  14500. { name: "Kauko", species: ["wolf", "king-cheetah"], tags: ["anthro"] },
  14501. {
  14502. kingCheetah_front: {
  14503. height: math.unit(1.85, "meters"),
  14504. weight: math.unit(68, "kg"),
  14505. name: "Front",
  14506. image: {
  14507. source: "./media/characters/kauko/king-cheetah-front.svg",
  14508. extra: 1007/972,
  14509. bottom: 35/1042
  14510. },
  14511. form: "king-cheetah",
  14512. default: true
  14513. },
  14514. kingCheetah_back: {
  14515. height: math.unit(1.85, "meters"),
  14516. weight: math.unit(68, "kg"),
  14517. name: "Back",
  14518. image: {
  14519. source: "./media/characters/kauko/king-cheetah-back.svg",
  14520. extra: 1015/980,
  14521. bottom: 11/1026
  14522. },
  14523. form: "king-cheetah",
  14524. },
  14525. kingCheetah_hand: {
  14526. height: math.unit(0.23, "meters"),
  14527. name: "Hand",
  14528. image: {
  14529. source: "./media/characters/kauko/king-cheetah-hand.svg"
  14530. },
  14531. form: "king-cheetah",
  14532. },
  14533. kingCheetah_paw: {
  14534. height: math.unit(0.38, "meters"),
  14535. name: "Paw",
  14536. image: {
  14537. source: "./media/characters/kauko/king-cheetah-paw.svg"
  14538. },
  14539. form: "king-cheetah",
  14540. },
  14541. kingCheetah_nape: {
  14542. height: math.unit(0.23, "meters"),
  14543. name: "Nape",
  14544. image: {
  14545. source: "./media/characters/kauko/king-cheetah-nape.svg"
  14546. },
  14547. form: "king-cheetah",
  14548. },
  14549. wolf_front: {
  14550. height: math.unit(1.88, "meters"),
  14551. weight: math.unit(74, "kg"),
  14552. name: "Front",
  14553. image: {
  14554. source: "./media/characters/kauko/wolf-front.svg",
  14555. extra: 952/908,
  14556. bottom: 64/1016
  14557. },
  14558. form: "wolf",
  14559. default: true
  14560. },
  14561. wolf_dressed: {
  14562. height: math.unit(1.88, "meters"),
  14563. weight: math.unit(74, "kg"),
  14564. name: "Dressed",
  14565. image: {
  14566. source: "./media/characters/kauko/wolf-dressed.svg",
  14567. extra: 963/916,
  14568. bottom: 101/1064
  14569. },
  14570. form: "wolf",
  14571. },
  14572. wolf_hand: {
  14573. height: math.unit(0.3, "meters"),
  14574. name: "Hand",
  14575. image: {
  14576. source: "./media/characters/kauko/wolf-hand.svg"
  14577. },
  14578. form: "wolf",
  14579. },
  14580. wolf_paw: {
  14581. height: math.unit(0.407, "meters"),
  14582. name: "Paw",
  14583. image: {
  14584. source: "./media/characters/kauko/wolf-paw.svg"
  14585. },
  14586. form: "wolf",
  14587. },
  14588. wolf_nape: {
  14589. height: math.unit(0.25, "meters"),
  14590. name: "Nape",
  14591. image: {
  14592. source: "./media/characters/kauko/wolf-nape.svg"
  14593. },
  14594. form: "wolf",
  14595. },
  14596. },
  14597. [
  14598. {
  14599. name: "Normal",
  14600. height: math.unit(1.85, "m"),
  14601. default: true,
  14602. form: "king-cheetah"
  14603. },
  14604. {
  14605. name: "Normal",
  14606. height: math.unit(1.88, "m"),
  14607. default: true,
  14608. form: "wolf"
  14609. },
  14610. ],
  14611. {
  14612. "king-cheetah": {
  14613. name: "King Cheetah",
  14614. default: true
  14615. },
  14616. "wolf": {
  14617. name: "Wolf",
  14618. },
  14619. }
  14620. ))
  14621. characterMakers.push(() => makeCharacter(
  14622. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14623. {
  14624. frontSfw: {
  14625. height: math.unit(5, "meters"),
  14626. weight: math.unit(4250, "lb"),
  14627. name: "Front",
  14628. image: {
  14629. source: "./media/characters/varg/front-sfw.svg",
  14630. extra: 1103/1010,
  14631. bottom: 50/1153
  14632. },
  14633. form: "anthro",
  14634. default: true
  14635. },
  14636. backSfw: {
  14637. height: math.unit(5, "meters"),
  14638. weight: math.unit(4250, "lb"),
  14639. name: "Back",
  14640. image: {
  14641. source: "./media/characters/varg/back-sfw.svg",
  14642. extra: 1038/1022,
  14643. bottom: 36/1074
  14644. },
  14645. form: "anthro"
  14646. },
  14647. frontNsfw: {
  14648. height: math.unit(5, "meters"),
  14649. weight: math.unit(4250, "lb"),
  14650. name: "Front (NSFW)",
  14651. image: {
  14652. source: "./media/characters/varg/front-nsfw.svg",
  14653. extra: 1103/1010,
  14654. bottom: 50/1153
  14655. },
  14656. form: "anthro"
  14657. },
  14658. sheath: {
  14659. height: math.unit(3.8, "feet"),
  14660. weight: math.unit(90, "kilograms"),
  14661. name: "Sheath",
  14662. image: {
  14663. source: "./media/characters/varg/sheath.svg"
  14664. },
  14665. form: "anthro"
  14666. },
  14667. dick: {
  14668. height: math.unit(4.6, "feet"),
  14669. weight: math.unit(451, "kilograms"),
  14670. name: "Dick",
  14671. image: {
  14672. source: "./media/characters/varg/dick.svg"
  14673. },
  14674. form: "anthro"
  14675. },
  14676. feralSfw: {
  14677. height: math.unit(5, "meters"),
  14678. weight: math.unit(100000, "lb"),
  14679. name: "Side",
  14680. image: {
  14681. source: "./media/characters/varg/feral-sfw.svg",
  14682. extra: 1065/511,
  14683. bottom: 211/1276
  14684. },
  14685. form: "feral",
  14686. default: true
  14687. },
  14688. feralNsfw: {
  14689. height: math.unit(5, "meters"),
  14690. weight: math.unit(100000, "lb"),
  14691. name: "Side (NSFW)",
  14692. image: {
  14693. source: "./media/characters/varg/feral-nsfw.svg",
  14694. extra: 1065/511,
  14695. bottom: 211/1276
  14696. },
  14697. form: "feral",
  14698. },
  14699. feralSheath: {
  14700. height: math.unit(9.8, "feet"),
  14701. weight: math.unit(2000, "kilograms"),
  14702. name: "Sheath",
  14703. image: {
  14704. source: "./media/characters/varg/sheath.svg"
  14705. },
  14706. form: "feral"
  14707. },
  14708. feralDick: {
  14709. height: math.unit(13.11, "feet"),
  14710. weight: math.unit(10440, "kilograms"),
  14711. name: "Dick",
  14712. image: {
  14713. source: "./media/characters/varg/dick.svg"
  14714. },
  14715. form: "feral"
  14716. },
  14717. },
  14718. [
  14719. {
  14720. name: "Normal",
  14721. height: math.unit(5, "meters"),
  14722. form: "anthro"
  14723. },
  14724. {
  14725. name: "Macro",
  14726. height: math.unit(200, "meters"),
  14727. form: "anthro"
  14728. },
  14729. {
  14730. name: "Megamacro",
  14731. height: math.unit(20, "kilometers"),
  14732. form: "anthro"
  14733. },
  14734. {
  14735. name: "True Size",
  14736. height: math.unit(211, "km"),
  14737. form: "anthro",
  14738. default: true
  14739. },
  14740. {
  14741. name: "Gigamacro",
  14742. height: math.unit(1000, "km"),
  14743. form: "anthro"
  14744. },
  14745. {
  14746. name: "Gigamacro+",
  14747. height: math.unit(8000, "km"),
  14748. form: "anthro"
  14749. },
  14750. {
  14751. name: "Teramacro",
  14752. height: math.unit(1000000, "km"),
  14753. form: "anthro"
  14754. },
  14755. {
  14756. name: "Normal",
  14757. height: math.unit(5, "meters"),
  14758. form: "feral"
  14759. },
  14760. {
  14761. name: "Macro",
  14762. height: math.unit(200, "meters"),
  14763. form: "feral"
  14764. },
  14765. {
  14766. name: "Megamacro",
  14767. height: math.unit(20, "kilometers"),
  14768. form: "feral"
  14769. },
  14770. {
  14771. name: "True Size",
  14772. height: math.unit(211, "km"),
  14773. form: "feral",
  14774. default: true
  14775. },
  14776. {
  14777. name: "Gigamacro",
  14778. height: math.unit(1000, "km"),
  14779. form: "feral"
  14780. },
  14781. {
  14782. name: "Gigamacro+",
  14783. height: math.unit(8000, "km"),
  14784. form: "feral"
  14785. },
  14786. {
  14787. name: "Teramacro",
  14788. height: math.unit(1000000, "km"),
  14789. form: "feral"
  14790. },
  14791. ],
  14792. {
  14793. "anthro": {
  14794. name: "Anthro",
  14795. default: true
  14796. },
  14797. "feral": {
  14798. name: "Feral",
  14799. },
  14800. }
  14801. ))
  14802. characterMakers.push(() => makeCharacter(
  14803. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14804. {
  14805. front: {
  14806. height: math.unit(7 + 7 / 12, "feet"),
  14807. weight: math.unit(267, "lb"),
  14808. name: "Front",
  14809. image: {
  14810. source: "./media/characters/dayza/front.svg",
  14811. extra: 1262 / 1200,
  14812. bottom: 0.035
  14813. }
  14814. },
  14815. side: {
  14816. height: math.unit(7 + 7 / 12, "feet"),
  14817. weight: math.unit(267, "lb"),
  14818. name: "Side",
  14819. image: {
  14820. source: "./media/characters/dayza/side.svg",
  14821. extra: 1295 / 1245,
  14822. bottom: 0.05
  14823. }
  14824. },
  14825. back: {
  14826. height: math.unit(7 + 7 / 12, "feet"),
  14827. weight: math.unit(267, "lb"),
  14828. name: "Back",
  14829. image: {
  14830. source: "./media/characters/dayza/back.svg",
  14831. extra: 1241 / 1170
  14832. }
  14833. },
  14834. },
  14835. [
  14836. {
  14837. name: "Normal",
  14838. height: math.unit(7 + 7 / 12, "feet"),
  14839. default: true
  14840. },
  14841. {
  14842. name: "Macro",
  14843. height: math.unit(155, "feet")
  14844. },
  14845. ]
  14846. ))
  14847. characterMakers.push(() => makeCharacter(
  14848. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14849. {
  14850. front: {
  14851. height: math.unit(6 + 5 / 12, "feet"),
  14852. weight: math.unit(160, "lb"),
  14853. name: "Front",
  14854. image: {
  14855. source: "./media/characters/xanthos/front.svg",
  14856. extra: 1,
  14857. bottom: 0.04
  14858. }
  14859. },
  14860. back: {
  14861. height: math.unit(6 + 5 / 12, "feet"),
  14862. weight: math.unit(160, "lb"),
  14863. name: "Back",
  14864. image: {
  14865. source: "./media/characters/xanthos/back.svg",
  14866. extra: 1,
  14867. bottom: 0.03
  14868. }
  14869. },
  14870. hand: {
  14871. height: math.unit(0.928, "feet"),
  14872. name: "Hand",
  14873. image: {
  14874. source: "./media/characters/xanthos/hand.svg"
  14875. }
  14876. },
  14877. foot: {
  14878. height: math.unit(1.286, "feet"),
  14879. name: "Foot",
  14880. image: {
  14881. source: "./media/characters/xanthos/foot.svg"
  14882. }
  14883. },
  14884. },
  14885. [
  14886. {
  14887. name: "Normal",
  14888. height: math.unit(6 + 5 / 12, "feet"),
  14889. default: true
  14890. },
  14891. {
  14892. name: "Normal+",
  14893. height: math.unit(6, "meters")
  14894. },
  14895. {
  14896. name: "Macro",
  14897. height: math.unit(40, "feet")
  14898. },
  14899. {
  14900. name: "Macro+",
  14901. height: math.unit(200, "meters")
  14902. },
  14903. {
  14904. name: "Megamacro",
  14905. height: math.unit(20, "km")
  14906. },
  14907. {
  14908. name: "Megamacro+",
  14909. height: math.unit(100, "km")
  14910. },
  14911. {
  14912. name: "Gigamacro",
  14913. height: math.unit(200, "megameters")
  14914. },
  14915. {
  14916. name: "Gigamacro+",
  14917. height: math.unit(1.5, "gigameters")
  14918. },
  14919. ]
  14920. ))
  14921. characterMakers.push(() => makeCharacter(
  14922. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14923. {
  14924. front: {
  14925. height: math.unit(6 + 3 / 12, "feet"),
  14926. weight: math.unit(215, "lb"),
  14927. name: "Front",
  14928. image: {
  14929. source: "./media/characters/grynn/front.svg",
  14930. extra: 4627 / 4209,
  14931. bottom: 0.047
  14932. }
  14933. },
  14934. },
  14935. [
  14936. {
  14937. name: "Micro",
  14938. height: math.unit(6, "inches")
  14939. },
  14940. {
  14941. name: "Normal",
  14942. height: math.unit(6 + 3 / 12, "feet"),
  14943. default: true
  14944. },
  14945. {
  14946. name: "Big",
  14947. height: math.unit(104, "feet")
  14948. },
  14949. {
  14950. name: "Macro",
  14951. height: math.unit(944, "feet")
  14952. },
  14953. {
  14954. name: "Macro+",
  14955. height: math.unit(9480, "feet")
  14956. },
  14957. {
  14958. name: "Megamacro",
  14959. height: math.unit(78752, "feet")
  14960. },
  14961. {
  14962. name: "Megamacro+",
  14963. height: math.unit(630128, "feet")
  14964. },
  14965. {
  14966. name: "Megamacro++",
  14967. height: math.unit(3150695, "feet")
  14968. },
  14969. ]
  14970. ))
  14971. characterMakers.push(() => makeCharacter(
  14972. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14973. {
  14974. front: {
  14975. height: math.unit(7 + 5 / 12, "feet"),
  14976. weight: math.unit(450, "lb"),
  14977. name: "Front",
  14978. image: {
  14979. source: "./media/characters/mocha-aura/front.svg",
  14980. extra: 1907 / 1817,
  14981. bottom: 0.04
  14982. }
  14983. },
  14984. back: {
  14985. height: math.unit(7 + 5 / 12, "feet"),
  14986. weight: math.unit(450, "lb"),
  14987. name: "Back",
  14988. image: {
  14989. source: "./media/characters/mocha-aura/back.svg",
  14990. extra: 1900 / 1825,
  14991. bottom: 0.045
  14992. }
  14993. },
  14994. },
  14995. [
  14996. {
  14997. name: "Nano",
  14998. height: math.unit(1, "nm")
  14999. },
  15000. {
  15001. name: "Megamicro",
  15002. height: math.unit(1, "mm")
  15003. },
  15004. {
  15005. name: "Micro",
  15006. height: math.unit(3, "inches")
  15007. },
  15008. {
  15009. name: "Normal",
  15010. height: math.unit(7 + 5 / 12, "feet"),
  15011. default: true
  15012. },
  15013. {
  15014. name: "Macro",
  15015. height: math.unit(30, "feet")
  15016. },
  15017. {
  15018. name: "Megamacro",
  15019. height: math.unit(3500, "feet")
  15020. },
  15021. {
  15022. name: "Teramacro",
  15023. height: math.unit(500000, "miles")
  15024. },
  15025. {
  15026. name: "Petamacro",
  15027. height: math.unit(50000000000000000, "parsecs")
  15028. },
  15029. ]
  15030. ))
  15031. characterMakers.push(() => makeCharacter(
  15032. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  15033. {
  15034. front: {
  15035. height: math.unit(6, "feet"),
  15036. weight: math.unit(150, "lb"),
  15037. name: "Front",
  15038. image: {
  15039. source: "./media/characters/ilisha-devya/front.svg",
  15040. extra: 1053/1049,
  15041. bottom: 270/1323
  15042. }
  15043. },
  15044. back: {
  15045. height: math.unit(6, "feet"),
  15046. weight: math.unit(150, "lb"),
  15047. name: "Back",
  15048. image: {
  15049. source: "./media/characters/ilisha-devya/back.svg",
  15050. extra: 1131/1128,
  15051. bottom: 39/1170
  15052. }
  15053. },
  15054. },
  15055. [
  15056. {
  15057. name: "Macro",
  15058. height: math.unit(500, "feet"),
  15059. default: true
  15060. },
  15061. {
  15062. name: "Megamacro",
  15063. height: math.unit(10, "miles")
  15064. },
  15065. {
  15066. name: "Gigamacro",
  15067. height: math.unit(100000, "miles")
  15068. },
  15069. {
  15070. name: "Examacro",
  15071. height: math.unit(1e9, "lightyears")
  15072. },
  15073. {
  15074. name: "Omniversal",
  15075. height: math.unit(1e33, "lightyears")
  15076. },
  15077. {
  15078. name: "Beyond Infinite",
  15079. height: math.unit(1e100, "lightyears")
  15080. },
  15081. ]
  15082. ))
  15083. characterMakers.push(() => makeCharacter(
  15084. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  15085. {
  15086. Side: {
  15087. height: math.unit(6, "feet"),
  15088. weight: math.unit(150, "lb"),
  15089. name: "Side",
  15090. image: {
  15091. source: "./media/characters/mira/side.svg",
  15092. extra: 900 / 799,
  15093. bottom: 0.02
  15094. }
  15095. },
  15096. },
  15097. [
  15098. {
  15099. name: "Human Size",
  15100. height: math.unit(6, "feet")
  15101. },
  15102. {
  15103. name: "Macro",
  15104. height: math.unit(100, "feet"),
  15105. default: true
  15106. },
  15107. {
  15108. name: "Megamacro",
  15109. height: math.unit(10, "miles")
  15110. },
  15111. {
  15112. name: "Gigamacro",
  15113. height: math.unit(25000, "miles")
  15114. },
  15115. {
  15116. name: "Teramacro",
  15117. height: math.unit(300, "AU")
  15118. },
  15119. {
  15120. name: "Full Size",
  15121. height: math.unit(4.5e10, "lightyears")
  15122. },
  15123. ]
  15124. ))
  15125. characterMakers.push(() => makeCharacter(
  15126. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  15127. {
  15128. front: {
  15129. height: math.unit(6, "feet"),
  15130. weight: math.unit(150, "lb"),
  15131. name: "Front",
  15132. image: {
  15133. source: "./media/characters/holly/front.svg",
  15134. extra: 639 / 606
  15135. }
  15136. },
  15137. back: {
  15138. height: math.unit(6, "feet"),
  15139. weight: math.unit(150, "lb"),
  15140. name: "Back",
  15141. image: {
  15142. source: "./media/characters/holly/back.svg",
  15143. extra: 623 / 598
  15144. }
  15145. },
  15146. frontWorking: {
  15147. height: math.unit(6, "feet"),
  15148. weight: math.unit(150, "lb"),
  15149. name: "Front (Working)",
  15150. image: {
  15151. source: "./media/characters/holly/front-working.svg",
  15152. extra: 607 / 577,
  15153. bottom: 0.048
  15154. }
  15155. },
  15156. },
  15157. [
  15158. {
  15159. name: "Normal",
  15160. height: math.unit(12 + 3 / 12, "feet"),
  15161. default: true
  15162. },
  15163. ]
  15164. ))
  15165. characterMakers.push(() => makeCharacter(
  15166. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  15167. {
  15168. front: {
  15169. height: math.unit(6, "feet"),
  15170. weight: math.unit(150, "lb"),
  15171. name: "Front",
  15172. image: {
  15173. source: "./media/characters/porter/front.svg",
  15174. extra: 1,
  15175. bottom: 0.01
  15176. }
  15177. },
  15178. frontRobes: {
  15179. height: math.unit(6, "feet"),
  15180. weight: math.unit(150, "lb"),
  15181. name: "Front (Robes)",
  15182. image: {
  15183. source: "./media/characters/porter/front-robes.svg",
  15184. extra: 1.01,
  15185. bottom: 0.01
  15186. }
  15187. },
  15188. },
  15189. [
  15190. {
  15191. name: "Normal",
  15192. height: math.unit(11 + 9 / 12, "feet"),
  15193. default: true
  15194. },
  15195. ]
  15196. ))
  15197. characterMakers.push(() => makeCharacter(
  15198. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  15199. {
  15200. legendary: {
  15201. height: math.unit(6, "feet"),
  15202. weight: math.unit(150, "lb"),
  15203. name: "Legendary",
  15204. image: {
  15205. source: "./media/characters/lucy/legendary.svg",
  15206. extra: 1355 / 1100,
  15207. bottom: 0.045
  15208. }
  15209. },
  15210. },
  15211. [
  15212. {
  15213. name: "Legendary",
  15214. height: math.unit(86882 * 2, "miles"),
  15215. default: true
  15216. },
  15217. ]
  15218. ))
  15219. characterMakers.push(() => makeCharacter(
  15220. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  15221. {
  15222. front: {
  15223. height: math.unit(6, "feet"),
  15224. weight: math.unit(150, "lb"),
  15225. name: "Front",
  15226. image: {
  15227. source: "./media/characters/drusilla/front.svg",
  15228. extra: 678 / 635,
  15229. bottom: 0.03
  15230. }
  15231. },
  15232. back: {
  15233. height: math.unit(6, "feet"),
  15234. weight: math.unit(150, "lb"),
  15235. name: "Back",
  15236. image: {
  15237. source: "./media/characters/drusilla/back.svg",
  15238. extra: 678 / 635,
  15239. bottom: 0.005
  15240. }
  15241. },
  15242. },
  15243. [
  15244. {
  15245. name: "Macro",
  15246. height: math.unit(100, "feet")
  15247. },
  15248. {
  15249. name: "Canon Height",
  15250. height: math.unit(2000, "feet"),
  15251. default: true
  15252. },
  15253. ]
  15254. ))
  15255. characterMakers.push(() => makeCharacter(
  15256. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  15257. {
  15258. front: {
  15259. height: math.unit(6, "feet"),
  15260. weight: math.unit(180, "lb"),
  15261. name: "Front",
  15262. image: {
  15263. source: "./media/characters/renard-thatch/front.svg",
  15264. extra: 2411 / 2275,
  15265. bottom: 0.01
  15266. }
  15267. },
  15268. frontPosing: {
  15269. height: math.unit(6, "feet"),
  15270. weight: math.unit(180, "lb"),
  15271. name: "Front (Posing)",
  15272. image: {
  15273. source: "./media/characters/renard-thatch/front-posing.svg",
  15274. extra: 2381 / 2261,
  15275. bottom: 0.01
  15276. }
  15277. },
  15278. back: {
  15279. height: math.unit(6, "feet"),
  15280. weight: math.unit(180, "lb"),
  15281. name: "Back",
  15282. image: {
  15283. source: "./media/characters/renard-thatch/back.svg",
  15284. extra: 2428 / 2288
  15285. }
  15286. },
  15287. },
  15288. [
  15289. {
  15290. name: "Micro",
  15291. height: math.unit(3, "inches")
  15292. },
  15293. {
  15294. name: "Default",
  15295. height: math.unit(6, "feet"),
  15296. default: true
  15297. },
  15298. {
  15299. name: "Macro",
  15300. height: math.unit(75, "feet")
  15301. },
  15302. ]
  15303. ))
  15304. characterMakers.push(() => makeCharacter(
  15305. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  15306. {
  15307. front: {
  15308. height: math.unit(1450, "feet"),
  15309. weight: math.unit(1.21e6, "tons"),
  15310. name: "Front",
  15311. image: {
  15312. source: "./media/characters/sekvra/front.svg",
  15313. extra: 1193/1190,
  15314. bottom: 78/1271
  15315. }
  15316. },
  15317. side: {
  15318. height: math.unit(1450, "feet"),
  15319. weight: math.unit(1.21e6, "tons"),
  15320. name: "Side",
  15321. image: {
  15322. source: "./media/characters/sekvra/side.svg",
  15323. extra: 1193/1190,
  15324. bottom: 52/1245
  15325. }
  15326. },
  15327. back: {
  15328. height: math.unit(1450, "feet"),
  15329. weight: math.unit(1.21e6, "tons"),
  15330. name: "Back",
  15331. image: {
  15332. source: "./media/characters/sekvra/back.svg",
  15333. extra: 1219/1216,
  15334. bottom: 21/1240
  15335. }
  15336. },
  15337. frontClothed: {
  15338. height: math.unit(1450, "feet"),
  15339. weight: math.unit(1.21e6, "tons"),
  15340. name: "Front (Clothed)",
  15341. image: {
  15342. source: "./media/characters/sekvra/front-clothed.svg",
  15343. extra: 1192/1189,
  15344. bottom: 79/1271
  15345. }
  15346. },
  15347. },
  15348. [
  15349. {
  15350. name: "Macro",
  15351. height: math.unit(1450, "feet"),
  15352. default: true
  15353. },
  15354. {
  15355. name: "Megamacro",
  15356. height: math.unit(15000, "feet")
  15357. },
  15358. ]
  15359. ))
  15360. characterMakers.push(() => makeCharacter(
  15361. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  15362. {
  15363. front: {
  15364. height: math.unit(6, "feet"),
  15365. weight: math.unit(150, "lb"),
  15366. name: "Front",
  15367. image: {
  15368. source: "./media/characters/carmine/front.svg",
  15369. extra: 1557/1538,
  15370. bottom: 68/1625
  15371. }
  15372. },
  15373. frontArmor: {
  15374. height: math.unit(6, "feet"),
  15375. weight: math.unit(150, "lb"),
  15376. name: "Front (Armor)",
  15377. image: {
  15378. source: "./media/characters/carmine/front-armor.svg",
  15379. extra: 1549/1530,
  15380. bottom: 82/1631
  15381. }
  15382. },
  15383. mouth: {
  15384. height: math.unit(0.55, "feet"),
  15385. name: "Mouth",
  15386. image: {
  15387. source: "./media/characters/carmine/mouth.svg"
  15388. }
  15389. },
  15390. hand: {
  15391. height: math.unit(1.05, "feet"),
  15392. name: "Hand",
  15393. image: {
  15394. source: "./media/characters/carmine/hand.svg"
  15395. }
  15396. },
  15397. foot: {
  15398. height: math.unit(0.6, "feet"),
  15399. name: "Foot",
  15400. image: {
  15401. source: "./media/characters/carmine/foot.svg"
  15402. }
  15403. },
  15404. },
  15405. [
  15406. {
  15407. name: "Large",
  15408. height: math.unit(1, "mile")
  15409. },
  15410. {
  15411. name: "Huge",
  15412. height: math.unit(40, "miles"),
  15413. default: true
  15414. },
  15415. {
  15416. name: "Colossal",
  15417. height: math.unit(2500, "miles")
  15418. },
  15419. ]
  15420. ))
  15421. characterMakers.push(() => makeCharacter(
  15422. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  15423. {
  15424. front: {
  15425. height: math.unit(6, "feet"),
  15426. weight: math.unit(150, "lb"),
  15427. name: "Front",
  15428. image: {
  15429. source: "./media/characters/elyssia/front.svg",
  15430. extra: 2201 / 2035,
  15431. bottom: 0.05
  15432. }
  15433. },
  15434. frontClothed: {
  15435. height: math.unit(6, "feet"),
  15436. weight: math.unit(150, "lb"),
  15437. name: "Front (Clothed)",
  15438. image: {
  15439. source: "./media/characters/elyssia/front-clothed.svg",
  15440. extra: 2201 / 2035,
  15441. bottom: 0.05
  15442. }
  15443. },
  15444. back: {
  15445. height: math.unit(6, "feet"),
  15446. weight: math.unit(150, "lb"),
  15447. name: "Back",
  15448. image: {
  15449. source: "./media/characters/elyssia/back.svg",
  15450. extra: 2201 / 2035,
  15451. bottom: 0.013
  15452. }
  15453. },
  15454. },
  15455. [
  15456. {
  15457. name: "Smaller",
  15458. height: math.unit(150, "feet")
  15459. },
  15460. {
  15461. name: "Standard",
  15462. height: math.unit(1400, "feet"),
  15463. default: true
  15464. },
  15465. {
  15466. name: "Distracted",
  15467. height: math.unit(15000, "feet")
  15468. },
  15469. ]
  15470. ))
  15471. characterMakers.push(() => makeCharacter(
  15472. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  15473. {
  15474. front: {
  15475. height: math.unit(7 + 4/12, "feet"),
  15476. weight: math.unit(690, "lb"),
  15477. name: "Front",
  15478. image: {
  15479. source: "./media/characters/geno-maxwell/front.svg",
  15480. extra: 984/856,
  15481. bottom: 87/1071
  15482. }
  15483. },
  15484. back: {
  15485. height: math.unit(7 + 4/12, "feet"),
  15486. weight: math.unit(690, "lb"),
  15487. name: "Back",
  15488. image: {
  15489. source: "./media/characters/geno-maxwell/back.svg",
  15490. extra: 981/854,
  15491. bottom: 57/1038
  15492. }
  15493. },
  15494. frontCostume: {
  15495. height: math.unit(7 + 4/12, "feet"),
  15496. weight: math.unit(690, "lb"),
  15497. name: "Front (Costume)",
  15498. image: {
  15499. source: "./media/characters/geno-maxwell/front-costume.svg",
  15500. extra: 984/856,
  15501. bottom: 87/1071
  15502. }
  15503. },
  15504. backcostume: {
  15505. height: math.unit(7 + 4/12, "feet"),
  15506. weight: math.unit(690, "lb"),
  15507. name: "Back (Costume)",
  15508. image: {
  15509. source: "./media/characters/geno-maxwell/back-costume.svg",
  15510. extra: 981/854,
  15511. bottom: 57/1038
  15512. }
  15513. },
  15514. },
  15515. [
  15516. {
  15517. name: "Micro",
  15518. height: math.unit(3, "inches")
  15519. },
  15520. {
  15521. name: "Normal",
  15522. height: math.unit(7 + 4 / 12, "feet"),
  15523. default: true
  15524. },
  15525. {
  15526. name: "Macro",
  15527. height: math.unit(220, "feet")
  15528. },
  15529. {
  15530. name: "Megamacro",
  15531. height: math.unit(11, "miles")
  15532. },
  15533. ]
  15534. ))
  15535. characterMakers.push(() => makeCharacter(
  15536. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15537. {
  15538. front: {
  15539. height: math.unit(7 + 4/12, "feet"),
  15540. weight: math.unit(750, "lb"),
  15541. name: "Front",
  15542. image: {
  15543. source: "./media/characters/regena-maxwell/front.svg",
  15544. extra: 984/856,
  15545. bottom: 87/1071
  15546. }
  15547. },
  15548. back: {
  15549. height: math.unit(7 + 4/12, "feet"),
  15550. weight: math.unit(750, "lb"),
  15551. name: "Back",
  15552. image: {
  15553. source: "./media/characters/regena-maxwell/back.svg",
  15554. extra: 981/854,
  15555. bottom: 57/1038
  15556. }
  15557. },
  15558. frontCostume: {
  15559. height: math.unit(7 + 4/12, "feet"),
  15560. weight: math.unit(750, "lb"),
  15561. name: "Front (Costume)",
  15562. image: {
  15563. source: "./media/characters/regena-maxwell/front-costume.svg",
  15564. extra: 984/856,
  15565. bottom: 87/1071
  15566. }
  15567. },
  15568. backcostume: {
  15569. height: math.unit(7 + 4/12, "feet"),
  15570. weight: math.unit(750, "lb"),
  15571. name: "Back (Costume)",
  15572. image: {
  15573. source: "./media/characters/regena-maxwell/back-costume.svg",
  15574. extra: 981/854,
  15575. bottom: 57/1038
  15576. }
  15577. },
  15578. },
  15579. [
  15580. {
  15581. name: "Normal",
  15582. height: math.unit(7 + 4 / 12, "feet"),
  15583. default: true
  15584. },
  15585. {
  15586. name: "Macro",
  15587. height: math.unit(220, "feet")
  15588. },
  15589. {
  15590. name: "Megamacro",
  15591. height: math.unit(11, "miles")
  15592. },
  15593. ]
  15594. ))
  15595. characterMakers.push(() => makeCharacter(
  15596. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15597. {
  15598. front: {
  15599. height: math.unit(6, "feet"),
  15600. weight: math.unit(150, "lb"),
  15601. name: "Front",
  15602. image: {
  15603. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15604. extra: 860 / 690,
  15605. bottom: 0.03
  15606. }
  15607. },
  15608. },
  15609. [
  15610. {
  15611. name: "Normal",
  15612. height: math.unit(1.7, "meters"),
  15613. default: true
  15614. },
  15615. ]
  15616. ))
  15617. characterMakers.push(() => makeCharacter(
  15618. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15619. {
  15620. front: {
  15621. height: math.unit(6, "feet"),
  15622. weight: math.unit(150, "lb"),
  15623. name: "Front",
  15624. image: {
  15625. source: "./media/characters/quilly/front.svg",
  15626. extra: 890 / 776
  15627. }
  15628. },
  15629. },
  15630. [
  15631. {
  15632. name: "Gigamacro",
  15633. height: math.unit(404090, "miles"),
  15634. default: true
  15635. },
  15636. ]
  15637. ))
  15638. characterMakers.push(() => makeCharacter(
  15639. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15640. {
  15641. front: {
  15642. height: math.unit(7 + 8 / 12, "feet"),
  15643. weight: math.unit(350, "lb"),
  15644. name: "Front",
  15645. image: {
  15646. source: "./media/characters/tempest/front.svg",
  15647. extra: 1175 / 1086,
  15648. bottom: 0.02
  15649. }
  15650. },
  15651. },
  15652. [
  15653. {
  15654. name: "Normal",
  15655. height: math.unit(7 + 8 / 12, "feet"),
  15656. default: true
  15657. },
  15658. ]
  15659. ))
  15660. characterMakers.push(() => makeCharacter(
  15661. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15662. {
  15663. side: {
  15664. height: math.unit(4 + 5 / 12, "feet"),
  15665. weight: math.unit(80, "lb"),
  15666. name: "Side",
  15667. image: {
  15668. source: "./media/characters/rodger/side.svg",
  15669. extra: 1235 / 1118
  15670. }
  15671. },
  15672. },
  15673. [
  15674. {
  15675. name: "Micro",
  15676. height: math.unit(1, "inch")
  15677. },
  15678. {
  15679. name: "Normal",
  15680. height: math.unit(4 + 5 / 12, "feet"),
  15681. default: true
  15682. },
  15683. {
  15684. name: "Macro",
  15685. height: math.unit(120, "feet")
  15686. },
  15687. ]
  15688. ))
  15689. characterMakers.push(() => makeCharacter(
  15690. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15691. {
  15692. front: {
  15693. height: math.unit(6, "feet"),
  15694. weight: math.unit(150, "lb"),
  15695. name: "Front",
  15696. image: {
  15697. source: "./media/characters/danyel/front.svg",
  15698. extra: 1185 / 1123,
  15699. bottom: 0.05
  15700. }
  15701. },
  15702. },
  15703. [
  15704. {
  15705. name: "Shrunken",
  15706. height: math.unit(0.5, "mm")
  15707. },
  15708. {
  15709. name: "Micro",
  15710. height: math.unit(1, "mm"),
  15711. default: true
  15712. },
  15713. {
  15714. name: "Upsized",
  15715. height: math.unit(5 + 5 / 12, "feet")
  15716. },
  15717. ]
  15718. ))
  15719. characterMakers.push(() => makeCharacter(
  15720. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15721. {
  15722. front: {
  15723. height: math.unit(5 + 6 / 12, "feet"),
  15724. weight: math.unit(200, "lb"),
  15725. name: "Front",
  15726. image: {
  15727. source: "./media/characters/vivian-bijoux/front.svg",
  15728. extra: 1217/1209,
  15729. bottom: 76/1293
  15730. }
  15731. },
  15732. back: {
  15733. height: math.unit(5 + 6 / 12, "feet"),
  15734. weight: math.unit(200, "lb"),
  15735. name: "Back",
  15736. image: {
  15737. source: "./media/characters/vivian-bijoux/back.svg",
  15738. extra: 1214/1208,
  15739. bottom: 51/1265
  15740. }
  15741. },
  15742. dressed: {
  15743. height: math.unit(5 + 6 / 12, "feet"),
  15744. weight: math.unit(200, "lb"),
  15745. name: "Dressed",
  15746. image: {
  15747. source: "./media/characters/vivian-bijoux/dressed.svg",
  15748. extra: 1217/1209,
  15749. bottom: 76/1293
  15750. }
  15751. },
  15752. },
  15753. [
  15754. {
  15755. name: "Normal",
  15756. height: math.unit(5 + 6 / 12, "feet"),
  15757. default: true
  15758. },
  15759. {
  15760. name: "Bad Dream",
  15761. height: math.unit(500, "feet")
  15762. },
  15763. {
  15764. name: "Nightmare",
  15765. height: math.unit(500, "miles")
  15766. },
  15767. ]
  15768. ))
  15769. characterMakers.push(() => makeCharacter(
  15770. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15771. {
  15772. front: {
  15773. height: math.unit(6 + 1 / 12, "feet"),
  15774. weight: math.unit(260, "lb"),
  15775. name: "Front",
  15776. image: {
  15777. source: "./media/characters/zeta/front.svg",
  15778. extra: 1968 / 1889,
  15779. bottom: 0.06
  15780. }
  15781. },
  15782. back: {
  15783. height: math.unit(6 + 1 / 12, "feet"),
  15784. weight: math.unit(260, "lb"),
  15785. name: "Back",
  15786. image: {
  15787. source: "./media/characters/zeta/back.svg",
  15788. extra: 1944 / 1858,
  15789. bottom: 0.03
  15790. }
  15791. },
  15792. hand: {
  15793. height: math.unit(1.112, "feet"),
  15794. name: "Hand",
  15795. image: {
  15796. source: "./media/characters/zeta/hand.svg"
  15797. }
  15798. },
  15799. foot: {
  15800. height: math.unit(1.48, "feet"),
  15801. name: "Foot",
  15802. image: {
  15803. source: "./media/characters/zeta/foot.svg"
  15804. }
  15805. },
  15806. },
  15807. [
  15808. {
  15809. name: "Micro",
  15810. height: math.unit(6, "inches")
  15811. },
  15812. {
  15813. name: "Normal",
  15814. height: math.unit(6 + 1 / 12, "feet"),
  15815. default: true
  15816. },
  15817. {
  15818. name: "Macro",
  15819. height: math.unit(20, "feet")
  15820. },
  15821. ]
  15822. ))
  15823. characterMakers.push(() => makeCharacter(
  15824. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15825. {
  15826. front: {
  15827. height: math.unit(6, "feet"),
  15828. weight: math.unit(150, "lb"),
  15829. name: "Front",
  15830. image: {
  15831. source: "./media/characters/jamie-larsen/front.svg",
  15832. extra: 962 / 933,
  15833. bottom: 0.02
  15834. }
  15835. },
  15836. back: {
  15837. height: math.unit(6, "feet"),
  15838. weight: math.unit(150, "lb"),
  15839. name: "Back",
  15840. image: {
  15841. source: "./media/characters/jamie-larsen/back.svg",
  15842. extra: 997 / 946
  15843. }
  15844. },
  15845. },
  15846. [
  15847. {
  15848. name: "Macro",
  15849. height: math.unit(28 + 7 / 12, "feet"),
  15850. default: true
  15851. },
  15852. {
  15853. name: "Macro+",
  15854. height: math.unit(180, "feet")
  15855. },
  15856. {
  15857. name: "Megamacro",
  15858. height: math.unit(10, "miles")
  15859. },
  15860. {
  15861. name: "Gigamacro",
  15862. height: math.unit(200000, "miles")
  15863. },
  15864. ]
  15865. ))
  15866. characterMakers.push(() => makeCharacter(
  15867. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15868. {
  15869. front: {
  15870. height: math.unit(6, "feet"),
  15871. weight: math.unit(120, "lb"),
  15872. name: "Front",
  15873. image: {
  15874. source: "./media/characters/vance/front.svg",
  15875. extra: 1980 / 1890,
  15876. bottom: 0.09
  15877. }
  15878. },
  15879. back: {
  15880. height: math.unit(6, "feet"),
  15881. weight: math.unit(120, "lb"),
  15882. name: "Back",
  15883. image: {
  15884. source: "./media/characters/vance/back.svg",
  15885. extra: 2081 / 1994,
  15886. bottom: 0.014
  15887. }
  15888. },
  15889. hand: {
  15890. height: math.unit(0.88, "feet"),
  15891. name: "Hand",
  15892. image: {
  15893. source: "./media/characters/vance/hand.svg"
  15894. }
  15895. },
  15896. foot: {
  15897. height: math.unit(0.64, "feet"),
  15898. name: "Foot",
  15899. image: {
  15900. source: "./media/characters/vance/foot.svg"
  15901. }
  15902. },
  15903. },
  15904. [
  15905. {
  15906. name: "Small",
  15907. height: math.unit(90, "feet"),
  15908. default: true
  15909. },
  15910. {
  15911. name: "Macro",
  15912. height: math.unit(100, "meters")
  15913. },
  15914. {
  15915. name: "Megamacro",
  15916. height: math.unit(15, "miles")
  15917. },
  15918. ]
  15919. ))
  15920. characterMakers.push(() => makeCharacter(
  15921. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15922. {
  15923. front: {
  15924. height: math.unit(6, "feet"),
  15925. weight: math.unit(180, "lb"),
  15926. name: "Front",
  15927. image: {
  15928. source: "./media/characters/xochitl/front.svg",
  15929. extra: 2297 / 2261,
  15930. bottom: 0.065
  15931. }
  15932. },
  15933. back: {
  15934. height: math.unit(6, "feet"),
  15935. weight: math.unit(180, "lb"),
  15936. name: "Back",
  15937. image: {
  15938. source: "./media/characters/xochitl/back.svg",
  15939. extra: 2386 / 2354,
  15940. bottom: 0.01
  15941. }
  15942. },
  15943. foot: {
  15944. height: math.unit(6 / 5 * 1.15, "feet"),
  15945. weight: math.unit(150, "lb"),
  15946. name: "Foot",
  15947. image: {
  15948. source: "./media/characters/xochitl/foot.svg"
  15949. }
  15950. },
  15951. },
  15952. [
  15953. {
  15954. name: "Macro",
  15955. height: math.unit(80, "feet")
  15956. },
  15957. {
  15958. name: "Macro+",
  15959. height: math.unit(400, "feet"),
  15960. default: true
  15961. },
  15962. {
  15963. name: "Gigamacro",
  15964. height: math.unit(80000, "miles")
  15965. },
  15966. {
  15967. name: "Gigamacro+",
  15968. height: math.unit(400000, "miles")
  15969. },
  15970. {
  15971. name: "Teramacro",
  15972. height: math.unit(300, "AU")
  15973. },
  15974. ]
  15975. ))
  15976. characterMakers.push(() => makeCharacter(
  15977. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15978. {
  15979. front: {
  15980. height: math.unit(6, "feet"),
  15981. weight: math.unit(150, "lb"),
  15982. name: "Front",
  15983. image: {
  15984. source: "./media/characters/vincent/front.svg",
  15985. extra: 1130 / 1080,
  15986. bottom: 0.055
  15987. }
  15988. },
  15989. beak: {
  15990. height: math.unit(6 * 0.1, "feet"),
  15991. name: "Beak",
  15992. image: {
  15993. source: "./media/characters/vincent/beak.svg"
  15994. }
  15995. },
  15996. hand: {
  15997. height: math.unit(6 * 0.85, "feet"),
  15998. weight: math.unit(150, "lb"),
  15999. name: "Hand",
  16000. image: {
  16001. source: "./media/characters/vincent/hand.svg"
  16002. }
  16003. },
  16004. foot: {
  16005. height: math.unit(6 * 0.19, "feet"),
  16006. weight: math.unit(150, "lb"),
  16007. name: "Foot",
  16008. image: {
  16009. source: "./media/characters/vincent/foot.svg"
  16010. }
  16011. },
  16012. },
  16013. [
  16014. {
  16015. name: "Base",
  16016. height: math.unit(6 + 5 / 12, "feet"),
  16017. default: true
  16018. },
  16019. {
  16020. name: "Macro",
  16021. height: math.unit(300, "feet")
  16022. },
  16023. {
  16024. name: "Megamacro",
  16025. height: math.unit(2, "miles")
  16026. },
  16027. {
  16028. name: "Gigamacro",
  16029. height: math.unit(1000, "miles")
  16030. },
  16031. ]
  16032. ))
  16033. characterMakers.push(() => makeCharacter(
  16034. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  16035. {
  16036. front: {
  16037. height: math.unit(2, "meters"),
  16038. weight: math.unit(500, "kg"),
  16039. name: "Front",
  16040. image: {
  16041. source: "./media/characters/coatl/front.svg",
  16042. extra: 3948 / 3500,
  16043. bottom: 0.082
  16044. }
  16045. },
  16046. },
  16047. [
  16048. {
  16049. name: "Normal",
  16050. height: math.unit(4, "meters")
  16051. },
  16052. {
  16053. name: "Macro",
  16054. height: math.unit(100, "meters"),
  16055. default: true
  16056. },
  16057. {
  16058. name: "Macro+",
  16059. height: math.unit(300, "meters")
  16060. },
  16061. {
  16062. name: "Megamacro",
  16063. height: math.unit(3, "gigameters")
  16064. },
  16065. {
  16066. name: "Megamacro+",
  16067. height: math.unit(300, "terameters")
  16068. },
  16069. {
  16070. name: "Megamacro++",
  16071. height: math.unit(3, "lightyears")
  16072. },
  16073. ]
  16074. ))
  16075. characterMakers.push(() => makeCharacter(
  16076. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  16077. {
  16078. front: {
  16079. height: math.unit(6, "feet"),
  16080. weight: math.unit(50, "kg"),
  16081. name: "front",
  16082. image: {
  16083. source: "./media/characters/shiroryu/front.svg",
  16084. extra: 1990 / 1935
  16085. }
  16086. },
  16087. },
  16088. [
  16089. {
  16090. name: "Mortal Mingling",
  16091. height: math.unit(3, "meters")
  16092. },
  16093. {
  16094. name: "Kaiju-ish",
  16095. height: math.unit(250, "meters")
  16096. },
  16097. {
  16098. name: "Somewhat Godly",
  16099. height: math.unit(400, "km"),
  16100. default: true
  16101. },
  16102. {
  16103. name: "Planetary",
  16104. height: math.unit(300, "megameters")
  16105. },
  16106. {
  16107. name: "Galaxy-dwarfing",
  16108. height: math.unit(450, "kiloparsecs")
  16109. },
  16110. {
  16111. name: "Universe Eater",
  16112. height: math.unit(150, "gigaparsecs")
  16113. },
  16114. {
  16115. name: "Almost Immeasurable",
  16116. height: math.unit(1.3e266, "yottaparsecs")
  16117. },
  16118. ]
  16119. ))
  16120. characterMakers.push(() => makeCharacter(
  16121. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  16122. {
  16123. front: {
  16124. height: math.unit(6, "feet"),
  16125. weight: math.unit(150, "lb"),
  16126. name: "Front",
  16127. image: {
  16128. source: "./media/characters/umeko/front.svg",
  16129. extra: 1,
  16130. bottom: 0.019
  16131. }
  16132. },
  16133. frontArmored: {
  16134. height: math.unit(6, "feet"),
  16135. weight: math.unit(150, "lb"),
  16136. name: "Front (Armored)",
  16137. image: {
  16138. source: "./media/characters/umeko/front-armored.svg",
  16139. extra: 1,
  16140. bottom: 0.021
  16141. }
  16142. },
  16143. },
  16144. [
  16145. {
  16146. name: "Macro",
  16147. height: math.unit(220, "feet"),
  16148. default: true
  16149. },
  16150. {
  16151. name: "Guardian Dragon",
  16152. height: math.unit(50, "miles")
  16153. },
  16154. {
  16155. name: "Cosmic",
  16156. height: math.unit(800000, "miles")
  16157. },
  16158. ]
  16159. ))
  16160. characterMakers.push(() => makeCharacter(
  16161. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  16162. {
  16163. front: {
  16164. height: math.unit(6, "feet"),
  16165. weight: math.unit(150, "lb"),
  16166. name: "Front",
  16167. image: {
  16168. source: "./media/characters/cassidy/front.svg",
  16169. extra: 810/808,
  16170. bottom: 41/851
  16171. }
  16172. },
  16173. },
  16174. [
  16175. {
  16176. name: "Canon Height",
  16177. height: math.unit(120, "feet"),
  16178. default: true
  16179. },
  16180. {
  16181. name: "Macro+",
  16182. height: math.unit(400, "feet")
  16183. },
  16184. {
  16185. name: "Macro++",
  16186. height: math.unit(4000, "feet")
  16187. },
  16188. {
  16189. name: "Megamacro",
  16190. height: math.unit(3, "miles")
  16191. },
  16192. ]
  16193. ))
  16194. characterMakers.push(() => makeCharacter(
  16195. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  16196. {
  16197. front: {
  16198. height: math.unit(6, "feet"),
  16199. weight: math.unit(150, "lb"),
  16200. name: "Front",
  16201. image: {
  16202. source: "./media/characters/isaac/front.svg",
  16203. extra: 896 / 815,
  16204. bottom: 0.11
  16205. }
  16206. },
  16207. },
  16208. [
  16209. {
  16210. name: "Human Size",
  16211. height: math.unit(8, "feet"),
  16212. default: true
  16213. },
  16214. {
  16215. name: "Macro",
  16216. height: math.unit(400, "feet")
  16217. },
  16218. {
  16219. name: "Megamacro",
  16220. height: math.unit(50, "miles")
  16221. },
  16222. {
  16223. name: "Canon Height",
  16224. height: math.unit(200, "AU")
  16225. },
  16226. ]
  16227. ))
  16228. characterMakers.push(() => makeCharacter(
  16229. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  16230. {
  16231. front: {
  16232. height: math.unit(6, "feet"),
  16233. weight: math.unit(72, "kg"),
  16234. name: "Front",
  16235. image: {
  16236. source: "./media/characters/sleekit/front.svg",
  16237. extra: 4693 / 4487,
  16238. bottom: 0.012
  16239. }
  16240. },
  16241. },
  16242. [
  16243. {
  16244. name: "Minimum Height",
  16245. height: math.unit(10, "meters")
  16246. },
  16247. {
  16248. name: "Smaller",
  16249. height: math.unit(25, "meters")
  16250. },
  16251. {
  16252. name: "Larger",
  16253. height: math.unit(38, "meters"),
  16254. default: true
  16255. },
  16256. {
  16257. name: "Maximum height",
  16258. height: math.unit(100, "meters")
  16259. },
  16260. ]
  16261. ))
  16262. characterMakers.push(() => makeCharacter(
  16263. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  16264. {
  16265. front: {
  16266. height: math.unit(6, "feet"),
  16267. weight: math.unit(150, "lb"),
  16268. name: "Front",
  16269. image: {
  16270. source: "./media/characters/nillia/front.svg",
  16271. extra: 719/665,
  16272. bottom: 6/725
  16273. }
  16274. },
  16275. back: {
  16276. height: math.unit(6, "feet"),
  16277. weight: math.unit(150, "lb"),
  16278. name: "Back",
  16279. image: {
  16280. source: "./media/characters/nillia/back.svg",
  16281. extra: 705/651,
  16282. bottom: 5/710
  16283. }
  16284. },
  16285. },
  16286. [
  16287. {
  16288. name: "Canon Height",
  16289. height: math.unit(489, "feet"),
  16290. default: true
  16291. }
  16292. ]
  16293. ))
  16294. characterMakers.push(() => makeCharacter(
  16295. { name: "Mesmyriza", species: ["shark", "dragon", "robot", "deity"], tags: ["anthro"] },
  16296. {
  16297. front: {
  16298. height: math.unit(6, "feet"),
  16299. weight: math.unit(150, "lb"),
  16300. name: "Front",
  16301. image: {
  16302. source: "./media/characters/mesmyriza/front.svg",
  16303. extra: 1541/1291,
  16304. bottom: 87/1628
  16305. }
  16306. },
  16307. foot: {
  16308. height: math.unit(6 / (250 / 35), "feet"),
  16309. name: "Foot",
  16310. image: {
  16311. source: "./media/characters/mesmyriza/foot.svg"
  16312. }
  16313. },
  16314. },
  16315. [
  16316. {
  16317. name: "Macro",
  16318. height: math.unit(457, "meters"),
  16319. default: true
  16320. },
  16321. {
  16322. name: "Megamacro",
  16323. height: math.unit(8, "megameters")
  16324. },
  16325. ]
  16326. ))
  16327. characterMakers.push(() => makeCharacter(
  16328. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  16329. {
  16330. front: {
  16331. height: math.unit(6, "feet"),
  16332. weight: math.unit(250, "lb"),
  16333. name: "Front",
  16334. image: {
  16335. source: "./media/characters/saudade/front.svg",
  16336. extra: 1172 / 1139,
  16337. bottom: 0.035
  16338. }
  16339. },
  16340. },
  16341. [
  16342. {
  16343. name: "Micro",
  16344. height: math.unit(3, "inches")
  16345. },
  16346. {
  16347. name: "Normal",
  16348. height: math.unit(6, "feet"),
  16349. default: true
  16350. },
  16351. {
  16352. name: "Macro",
  16353. height: math.unit(50, "feet")
  16354. },
  16355. {
  16356. name: "Megamacro",
  16357. height: math.unit(2800, "feet")
  16358. },
  16359. ]
  16360. ))
  16361. characterMakers.push(() => makeCharacter(
  16362. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  16363. {
  16364. front: {
  16365. height: math.unit(5 + 4 / 12, "feet"),
  16366. weight: math.unit(100, "lb"),
  16367. name: "Front",
  16368. image: {
  16369. source: "./media/characters/keireer/front.svg",
  16370. extra: 716 / 666,
  16371. bottom: 0.05
  16372. }
  16373. },
  16374. },
  16375. [
  16376. {
  16377. name: "Normal",
  16378. height: math.unit(5 + 4 / 12, "feet"),
  16379. default: true
  16380. },
  16381. ]
  16382. ))
  16383. characterMakers.push(() => makeCharacter(
  16384. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  16385. {
  16386. front: {
  16387. height: math.unit(5.5, "feet"),
  16388. weight: math.unit(90, "kg"),
  16389. name: "Front",
  16390. image: {
  16391. source: "./media/characters/mirja/front.svg",
  16392. extra: 1452/1262,
  16393. bottom: 67/1519
  16394. }
  16395. },
  16396. frontDressed: {
  16397. height: math.unit(5.5, "feet"),
  16398. weight: math.unit(90, "lb"),
  16399. name: "Front (Dressed)",
  16400. image: {
  16401. source: "./media/characters/mirja/dressed.svg",
  16402. extra: 1452/1262,
  16403. bottom: 67/1519
  16404. }
  16405. },
  16406. back: {
  16407. height: math.unit(6, "feet"),
  16408. weight: math.unit(90, "lb"),
  16409. name: "Back",
  16410. image: {
  16411. source: "./media/characters/mirja/back.svg",
  16412. extra: 1892/1795,
  16413. bottom: 48/1940
  16414. }
  16415. },
  16416. maw: {
  16417. height: math.unit(1.312, "feet"),
  16418. name: "Maw",
  16419. image: {
  16420. source: "./media/characters/mirja/maw.svg"
  16421. }
  16422. },
  16423. paw: {
  16424. height: math.unit(1.15, "feet"),
  16425. name: "Paw",
  16426. image: {
  16427. source: "./media/characters/mirja/paw.svg"
  16428. }
  16429. },
  16430. },
  16431. [
  16432. {
  16433. name: "\"Incognito\"",
  16434. height: math.unit(3, "meters")
  16435. },
  16436. {
  16437. name: "Strolling Size",
  16438. height: math.unit(15, "km")
  16439. },
  16440. {
  16441. name: "Larger Strolling Size",
  16442. height: math.unit(400, "km")
  16443. },
  16444. {
  16445. name: "Preferred Size",
  16446. height: math.unit(5000, "km"),
  16447. default: true
  16448. },
  16449. {
  16450. name: "True Size",
  16451. height: math.unit(30657809462086840000000000000000, "parsecs"),
  16452. },
  16453. ]
  16454. ))
  16455. characterMakers.push(() => makeCharacter(
  16456. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  16457. {
  16458. front: {
  16459. height: math.unit(15, "feet"),
  16460. weight: math.unit(880, "kg"),
  16461. name: "Front",
  16462. image: {
  16463. source: "./media/characters/nightraver/front.svg",
  16464. extra: 2444 / 2160,
  16465. bottom: 0.027
  16466. }
  16467. },
  16468. back: {
  16469. height: math.unit(15, "feet"),
  16470. weight: math.unit(880, "kg"),
  16471. name: "Back",
  16472. image: {
  16473. source: "./media/characters/nightraver/back.svg",
  16474. extra: 2309 / 2180,
  16475. bottom: 0.005
  16476. }
  16477. },
  16478. sole: {
  16479. height: math.unit(2.878, "feet"),
  16480. name: "Sole",
  16481. image: {
  16482. source: "./media/characters/nightraver/sole.svg"
  16483. }
  16484. },
  16485. foot: {
  16486. height: math.unit(2.285, "feet"),
  16487. name: "Foot",
  16488. image: {
  16489. source: "./media/characters/nightraver/foot.svg"
  16490. }
  16491. },
  16492. maw: {
  16493. height: math.unit(2.67, "feet"),
  16494. name: "Maw",
  16495. image: {
  16496. source: "./media/characters/nightraver/maw.svg"
  16497. }
  16498. },
  16499. },
  16500. [
  16501. {
  16502. name: "Micro",
  16503. height: math.unit(1, "cm")
  16504. },
  16505. {
  16506. name: "Normal",
  16507. height: math.unit(15, "feet"),
  16508. default: true
  16509. },
  16510. {
  16511. name: "Macro",
  16512. height: math.unit(300, "feet")
  16513. },
  16514. {
  16515. name: "Megamacro",
  16516. height: math.unit(300, "miles")
  16517. },
  16518. {
  16519. name: "Gigamacro",
  16520. height: math.unit(10000, "miles")
  16521. },
  16522. ]
  16523. ))
  16524. characterMakers.push(() => makeCharacter(
  16525. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16526. {
  16527. side: {
  16528. height: math.unit(2, "inches"),
  16529. weight: math.unit(5, "grams"),
  16530. name: "Side",
  16531. image: {
  16532. source: "./media/characters/arc/side.svg"
  16533. }
  16534. },
  16535. },
  16536. [
  16537. {
  16538. name: "Micro",
  16539. height: math.unit(2, "inches"),
  16540. default: true
  16541. },
  16542. ]
  16543. ))
  16544. characterMakers.push(() => makeCharacter(
  16545. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16546. {
  16547. front: {
  16548. height: math.unit(1.1938, "meters"),
  16549. weight: math.unit(54, "kg"),
  16550. name: "Front",
  16551. image: {
  16552. source: "./media/characters/nebula-shahar/front.svg",
  16553. extra: 1642 / 1436,
  16554. bottom: 0.06
  16555. }
  16556. },
  16557. },
  16558. [
  16559. {
  16560. name: "Megamicro",
  16561. height: math.unit(0.3, "mm")
  16562. },
  16563. {
  16564. name: "Micro",
  16565. height: math.unit(3, "cm")
  16566. },
  16567. {
  16568. name: "Normal",
  16569. height: math.unit(138, "cm"),
  16570. default: true
  16571. },
  16572. {
  16573. name: "Macro",
  16574. height: math.unit(30, "m")
  16575. },
  16576. ]
  16577. ))
  16578. characterMakers.push(() => makeCharacter(
  16579. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16580. {
  16581. front: {
  16582. height: math.unit(5.24, "feet"),
  16583. weight: math.unit(150, "lb"),
  16584. name: "Front",
  16585. image: {
  16586. source: "./media/characters/shayla/front.svg",
  16587. extra: 1512 / 1414,
  16588. bottom: 0.01
  16589. }
  16590. },
  16591. back: {
  16592. height: math.unit(5.24, "feet"),
  16593. weight: math.unit(150, "lb"),
  16594. name: "Back",
  16595. image: {
  16596. source: "./media/characters/shayla/back.svg",
  16597. extra: 1512 / 1414
  16598. }
  16599. },
  16600. hand: {
  16601. height: math.unit(0.7781496062992126, "feet"),
  16602. name: "Hand",
  16603. image: {
  16604. source: "./media/characters/shayla/hand.svg"
  16605. }
  16606. },
  16607. foot: {
  16608. height: math.unit(1.4206036745406823, "feet"),
  16609. name: "Foot",
  16610. image: {
  16611. source: "./media/characters/shayla/foot.svg"
  16612. }
  16613. },
  16614. },
  16615. [
  16616. {
  16617. name: "Micro",
  16618. height: math.unit(0.32, "feet")
  16619. },
  16620. {
  16621. name: "Normal",
  16622. height: math.unit(5.24, "feet"),
  16623. default: true
  16624. },
  16625. {
  16626. name: "Macro",
  16627. height: math.unit(492.12, "feet")
  16628. },
  16629. {
  16630. name: "Megamacro",
  16631. height: math.unit(186.41, "miles")
  16632. },
  16633. ]
  16634. ))
  16635. characterMakers.push(() => makeCharacter(
  16636. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16637. {
  16638. front: {
  16639. height: math.unit(2.2, "m"),
  16640. weight: math.unit(120, "kg"),
  16641. name: "Front",
  16642. image: {
  16643. source: "./media/characters/pia-jr/front.svg",
  16644. extra: 1000 / 970,
  16645. bottom: 0.035
  16646. }
  16647. },
  16648. hand: {
  16649. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16650. name: "Hand",
  16651. image: {
  16652. source: "./media/characters/pia-jr/hand.svg"
  16653. }
  16654. },
  16655. paw: {
  16656. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16657. name: "Paw",
  16658. image: {
  16659. source: "./media/characters/pia-jr/paw.svg"
  16660. }
  16661. },
  16662. },
  16663. [
  16664. {
  16665. name: "Micro",
  16666. height: math.unit(1.2, "cm")
  16667. },
  16668. {
  16669. name: "Normal",
  16670. height: math.unit(2.2, "m"),
  16671. default: true
  16672. },
  16673. {
  16674. name: "Macro",
  16675. height: math.unit(180, "m")
  16676. },
  16677. {
  16678. name: "Megamacro",
  16679. height: math.unit(420, "km")
  16680. },
  16681. ]
  16682. ))
  16683. characterMakers.push(() => makeCharacter(
  16684. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16685. {
  16686. front: {
  16687. height: math.unit(2, "m"),
  16688. weight: math.unit(115, "kg"),
  16689. name: "Front",
  16690. image: {
  16691. source: "./media/characters/pia-sr/front.svg",
  16692. extra: 760 / 730,
  16693. bottom: 0.015
  16694. }
  16695. },
  16696. back: {
  16697. height: math.unit(2, "m"),
  16698. weight: math.unit(115, "kg"),
  16699. name: "Back",
  16700. image: {
  16701. source: "./media/characters/pia-sr/back.svg",
  16702. extra: 760 / 730,
  16703. bottom: 0.01
  16704. }
  16705. },
  16706. hand: {
  16707. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16708. name: "Hand",
  16709. image: {
  16710. source: "./media/characters/pia-sr/hand.svg"
  16711. }
  16712. },
  16713. foot: {
  16714. height: math.unit(1.83, "feet"),
  16715. name: "Foot",
  16716. image: {
  16717. source: "./media/characters/pia-sr/foot.svg"
  16718. }
  16719. },
  16720. },
  16721. [
  16722. {
  16723. name: "Micro",
  16724. height: math.unit(88, "mm")
  16725. },
  16726. {
  16727. name: "Normal",
  16728. height: math.unit(2, "m"),
  16729. default: true
  16730. },
  16731. {
  16732. name: "Macro",
  16733. height: math.unit(200, "m")
  16734. },
  16735. {
  16736. name: "Megamacro",
  16737. height: math.unit(420, "km")
  16738. },
  16739. ]
  16740. ))
  16741. characterMakers.push(() => makeCharacter(
  16742. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16743. {
  16744. front: {
  16745. height: math.unit(8 + 2 / 12, "feet"),
  16746. weight: math.unit(300, "lb"),
  16747. name: "Front",
  16748. image: {
  16749. source: "./media/characters/kibibyte/front.svg",
  16750. extra: 2221 / 2098,
  16751. bottom: 0.04
  16752. }
  16753. },
  16754. },
  16755. [
  16756. {
  16757. name: "Normal",
  16758. height: math.unit(8 + 2 / 12, "feet"),
  16759. default: true
  16760. },
  16761. {
  16762. name: "Socialable Macro",
  16763. height: math.unit(50, "feet")
  16764. },
  16765. {
  16766. name: "Macro",
  16767. height: math.unit(300, "feet")
  16768. },
  16769. {
  16770. name: "Megamacro",
  16771. height: math.unit(500, "miles")
  16772. },
  16773. ]
  16774. ))
  16775. characterMakers.push(() => makeCharacter(
  16776. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16777. {
  16778. front: {
  16779. height: math.unit(6, "feet"),
  16780. weight: math.unit(150, "lb"),
  16781. name: "Front",
  16782. image: {
  16783. source: "./media/characters/felix/front.svg",
  16784. extra: 762 / 722,
  16785. bottom: 0.02
  16786. }
  16787. },
  16788. frontClothed: {
  16789. height: math.unit(6, "feet"),
  16790. weight: math.unit(150, "lb"),
  16791. name: "Front (Clothed)",
  16792. image: {
  16793. source: "./media/characters/felix/front-clothed.svg",
  16794. extra: 762 / 722,
  16795. bottom: 0.02
  16796. }
  16797. },
  16798. },
  16799. [
  16800. {
  16801. name: "Normal",
  16802. height: math.unit(6 + 8 / 12, "feet"),
  16803. default: true
  16804. },
  16805. {
  16806. name: "Macro",
  16807. height: math.unit(2600, "feet")
  16808. },
  16809. {
  16810. name: "Megamacro",
  16811. height: math.unit(450, "miles")
  16812. },
  16813. ]
  16814. ))
  16815. characterMakers.push(() => makeCharacter(
  16816. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16817. {
  16818. front: {
  16819. height: math.unit(6 + 1 / 12, "feet"),
  16820. weight: math.unit(250, "lb"),
  16821. name: "Front",
  16822. image: {
  16823. source: "./media/characters/tobo/front.svg",
  16824. extra: 608 / 586,
  16825. bottom: 0.023
  16826. }
  16827. },
  16828. back: {
  16829. height: math.unit(6 + 1 / 12, "feet"),
  16830. weight: math.unit(250, "lb"),
  16831. name: "Back",
  16832. image: {
  16833. source: "./media/characters/tobo/back.svg",
  16834. extra: 608 / 586
  16835. }
  16836. },
  16837. },
  16838. [
  16839. {
  16840. name: "Nano",
  16841. height: math.unit(2, "nm")
  16842. },
  16843. {
  16844. name: "Megamicro",
  16845. height: math.unit(0.1, "mm")
  16846. },
  16847. {
  16848. name: "Micro",
  16849. height: math.unit(1, "inch"),
  16850. default: true
  16851. },
  16852. {
  16853. name: "Human-sized",
  16854. height: math.unit(6 + 1 / 12, "feet")
  16855. },
  16856. {
  16857. name: "Macro",
  16858. height: math.unit(250, "feet")
  16859. },
  16860. {
  16861. name: "Megamacro",
  16862. height: math.unit(75, "miles")
  16863. },
  16864. {
  16865. name: "Texas-sized",
  16866. height: math.unit(750, "miles")
  16867. },
  16868. {
  16869. name: "Teramacro",
  16870. height: math.unit(50000, "miles")
  16871. },
  16872. ]
  16873. ))
  16874. characterMakers.push(() => makeCharacter(
  16875. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16876. {
  16877. front: {
  16878. height: math.unit(6, "feet"),
  16879. weight: math.unit(269, "lb"),
  16880. name: "Front",
  16881. image: {
  16882. source: "./media/characters/danny-kapowsky/front.svg",
  16883. extra: 766 / 736,
  16884. bottom: 0.044
  16885. }
  16886. },
  16887. back: {
  16888. height: math.unit(6, "feet"),
  16889. weight: math.unit(269, "lb"),
  16890. name: "Back",
  16891. image: {
  16892. source: "./media/characters/danny-kapowsky/back.svg",
  16893. extra: 797 / 760,
  16894. bottom: 0.025
  16895. }
  16896. },
  16897. },
  16898. [
  16899. {
  16900. name: "Macro",
  16901. height: math.unit(150, "feet"),
  16902. default: true
  16903. },
  16904. {
  16905. name: "Macro+",
  16906. height: math.unit(200, "feet")
  16907. },
  16908. {
  16909. name: "Macro++",
  16910. height: math.unit(300, "feet")
  16911. },
  16912. {
  16913. name: "Macro+++",
  16914. height: math.unit(400, "feet")
  16915. },
  16916. ]
  16917. ))
  16918. characterMakers.push(() => makeCharacter(
  16919. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16920. {
  16921. side: {
  16922. height: math.unit(6, "feet"),
  16923. weight: math.unit(170, "lb"),
  16924. name: "Side",
  16925. image: {
  16926. source: "./media/characters/finn/side.svg",
  16927. extra: 1953 / 1807,
  16928. bottom: 0.057
  16929. }
  16930. },
  16931. },
  16932. [
  16933. {
  16934. name: "Megamacro",
  16935. height: math.unit(14445, "feet"),
  16936. default: true
  16937. },
  16938. ]
  16939. ))
  16940. characterMakers.push(() => makeCharacter(
  16941. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16942. {
  16943. front: {
  16944. height: math.unit(5 + 6 / 12, "feet"),
  16945. weight: math.unit(125, "lb"),
  16946. name: "Front",
  16947. image: {
  16948. source: "./media/characters/roy/front.svg",
  16949. extra: 1,
  16950. bottom: 0.11
  16951. }
  16952. },
  16953. },
  16954. [
  16955. {
  16956. name: "Micro",
  16957. height: math.unit(3, "inches"),
  16958. default: true
  16959. },
  16960. {
  16961. name: "Normal",
  16962. height: math.unit(5 + 6 / 12, "feet")
  16963. },
  16964. {
  16965. name: "Lesser Macro",
  16966. height: math.unit(60, "feet")
  16967. },
  16968. {
  16969. name: "Greater Macro",
  16970. height: math.unit(120, "feet")
  16971. },
  16972. ]
  16973. ))
  16974. characterMakers.push(() => makeCharacter(
  16975. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16976. {
  16977. front: {
  16978. height: math.unit(6, "feet"),
  16979. weight: math.unit(100, "lb"),
  16980. name: "Front",
  16981. image: {
  16982. source: "./media/characters/aevsivs/front.svg",
  16983. extra: 1,
  16984. bottom: 0.03
  16985. }
  16986. },
  16987. back: {
  16988. height: math.unit(6, "feet"),
  16989. weight: math.unit(100, "lb"),
  16990. name: "Back",
  16991. image: {
  16992. source: "./media/characters/aevsivs/back.svg"
  16993. }
  16994. },
  16995. },
  16996. [
  16997. {
  16998. name: "Micro",
  16999. height: math.unit(2, "inches"),
  17000. default: true
  17001. },
  17002. {
  17003. name: "Normal",
  17004. height: math.unit(5, "feet")
  17005. },
  17006. ]
  17007. ))
  17008. characterMakers.push(() => makeCharacter(
  17009. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  17010. {
  17011. front: {
  17012. height: math.unit(5 + 7 / 12, "feet"),
  17013. weight: math.unit(159, "lb"),
  17014. name: "Front",
  17015. image: {
  17016. source: "./media/characters/hildegard/front.svg",
  17017. extra: 289 / 269,
  17018. bottom: 7.63 / 297.8
  17019. }
  17020. },
  17021. back: {
  17022. height: math.unit(5 + 7 / 12, "feet"),
  17023. weight: math.unit(159, "lb"),
  17024. name: "Back",
  17025. image: {
  17026. source: "./media/characters/hildegard/back.svg",
  17027. extra: 280 / 260,
  17028. bottom: 2.3 / 282
  17029. }
  17030. },
  17031. },
  17032. [
  17033. {
  17034. name: "Normal",
  17035. height: math.unit(5 + 7 / 12, "feet"),
  17036. default: true
  17037. },
  17038. ]
  17039. ))
  17040. characterMakers.push(() => makeCharacter(
  17041. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  17042. {
  17043. bernard: {
  17044. height: math.unit(2 + 7 / 12, "feet"),
  17045. weight: math.unit(66, "lb"),
  17046. name: "Bernard",
  17047. rename: true,
  17048. image: {
  17049. source: "./media/characters/bernard-wilder/bernard.svg",
  17050. extra: 192 / 128,
  17051. bottom: 0.05
  17052. }
  17053. },
  17054. wilder: {
  17055. height: math.unit(5 + 8 / 12, "feet"),
  17056. weight: math.unit(143, "lb"),
  17057. name: "Wilder",
  17058. rename: true,
  17059. image: {
  17060. source: "./media/characters/bernard-wilder/wilder.svg",
  17061. extra: 361 / 312,
  17062. bottom: 0.02
  17063. }
  17064. },
  17065. },
  17066. [
  17067. {
  17068. name: "Normal",
  17069. height: math.unit(2 + 7 / 12, "feet"),
  17070. default: true
  17071. },
  17072. ]
  17073. ))
  17074. characterMakers.push(() => makeCharacter(
  17075. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  17076. {
  17077. anthro: {
  17078. height: math.unit(6 + 1 / 12, "feet"),
  17079. weight: math.unit(155, "lb"),
  17080. name: "Anthro",
  17081. image: {
  17082. source: "./media/characters/hearth/anthro.svg",
  17083. extra: 1178/1136,
  17084. bottom: 28/1206
  17085. }
  17086. },
  17087. feral: {
  17088. height: math.unit(3.78, "feet"),
  17089. weight: math.unit(35, "kg"),
  17090. name: "Feral",
  17091. image: {
  17092. source: "./media/characters/hearth/feral.svg",
  17093. extra: 153 / 135,
  17094. bottom: 0.03
  17095. }
  17096. },
  17097. },
  17098. [
  17099. {
  17100. name: "Normal",
  17101. height: math.unit(6 + 1 / 12, "feet"),
  17102. default: true
  17103. },
  17104. ]
  17105. ))
  17106. characterMakers.push(() => makeCharacter(
  17107. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  17108. {
  17109. front: {
  17110. height: math.unit(6, "feet"),
  17111. weight: math.unit(182, "lb"),
  17112. name: "Front",
  17113. image: {
  17114. source: "./media/characters/ingrid/front.svg",
  17115. extra: 294 / 268,
  17116. bottom: 0.027
  17117. }
  17118. },
  17119. },
  17120. [
  17121. {
  17122. name: "Normal",
  17123. height: math.unit(6, "feet"),
  17124. default: true
  17125. },
  17126. ]
  17127. ))
  17128. characterMakers.push(() => makeCharacter(
  17129. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  17130. {
  17131. eevee: {
  17132. height: math.unit(2 + 10 / 12, "feet"),
  17133. weight: math.unit(86, "lb"),
  17134. name: "Malgam",
  17135. image: {
  17136. source: "./media/characters/malgam/eevee.svg",
  17137. extra: 952/784,
  17138. bottom: 38/990
  17139. }
  17140. },
  17141. sylveon: {
  17142. height: math.unit(4, "feet"),
  17143. weight: math.unit(101, "lb"),
  17144. name: "Future Malgam",
  17145. rename: true,
  17146. image: {
  17147. source: "./media/characters/malgam/sylveon.svg",
  17148. extra: 371 / 325,
  17149. bottom: 0.015
  17150. }
  17151. },
  17152. gigantamax: {
  17153. height: math.unit(50, "feet"),
  17154. name: "Gigantamax Malgam",
  17155. rename: true,
  17156. image: {
  17157. source: "./media/characters/malgam/gigantamax.svg"
  17158. }
  17159. },
  17160. },
  17161. [
  17162. {
  17163. name: "Normal",
  17164. height: math.unit(2 + 10 / 12, "feet"),
  17165. default: true
  17166. },
  17167. ]
  17168. ))
  17169. characterMakers.push(() => makeCharacter(
  17170. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  17171. {
  17172. front: {
  17173. height: math.unit(5 + 11 / 12, "feet"),
  17174. weight: math.unit(188, "lb"),
  17175. name: "Front",
  17176. image: {
  17177. source: "./media/characters/fleur/front.svg",
  17178. extra: 309 / 283,
  17179. bottom: 0.007
  17180. }
  17181. },
  17182. },
  17183. [
  17184. {
  17185. name: "Normal",
  17186. height: math.unit(5 + 11 / 12, "feet"),
  17187. default: true
  17188. },
  17189. ]
  17190. ))
  17191. characterMakers.push(() => makeCharacter(
  17192. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  17193. {
  17194. front: {
  17195. height: math.unit(5 + 4 / 12, "feet"),
  17196. weight: math.unit(122, "lb"),
  17197. name: "Front",
  17198. image: {
  17199. source: "./media/characters/jude/front.svg",
  17200. extra: 288 / 273,
  17201. bottom: 0.03
  17202. }
  17203. },
  17204. },
  17205. [
  17206. {
  17207. name: "Normal",
  17208. height: math.unit(5 + 4 / 12, "feet"),
  17209. default: true
  17210. },
  17211. ]
  17212. ))
  17213. characterMakers.push(() => makeCharacter(
  17214. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  17215. {
  17216. front: {
  17217. height: math.unit(5 + 11 / 12, "feet"),
  17218. weight: math.unit(190, "lb"),
  17219. name: "Front",
  17220. image: {
  17221. source: "./media/characters/seara/front.svg",
  17222. extra: 1,
  17223. bottom: 0.05
  17224. }
  17225. },
  17226. },
  17227. [
  17228. {
  17229. name: "Normal",
  17230. height: math.unit(5 + 11 / 12, "feet"),
  17231. default: true
  17232. },
  17233. ]
  17234. ))
  17235. characterMakers.push(() => makeCharacter(
  17236. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  17237. {
  17238. front: {
  17239. height: math.unit(16 + 5 / 12, "feet"),
  17240. weight: math.unit(524, "lb"),
  17241. name: "Front",
  17242. image: {
  17243. source: "./media/characters/caspian-lugia/front.svg",
  17244. extra: 1,
  17245. bottom: 0.04
  17246. }
  17247. },
  17248. },
  17249. [
  17250. {
  17251. name: "Normal",
  17252. height: math.unit(16 + 5 / 12, "feet"),
  17253. default: true
  17254. },
  17255. ]
  17256. ))
  17257. characterMakers.push(() => makeCharacter(
  17258. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  17259. {
  17260. front: {
  17261. height: math.unit(5 + 7 / 12, "feet"),
  17262. weight: math.unit(170, "lb"),
  17263. name: "Front",
  17264. image: {
  17265. source: "./media/characters/mika/front.svg",
  17266. extra: 1,
  17267. bottom: 0.016
  17268. }
  17269. },
  17270. },
  17271. [
  17272. {
  17273. name: "Normal",
  17274. height: math.unit(5 + 7 / 12, "feet"),
  17275. default: true
  17276. },
  17277. ]
  17278. ))
  17279. characterMakers.push(() => makeCharacter(
  17280. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  17281. {
  17282. front: {
  17283. height: math.unit(6 + 2 / 12, "feet"),
  17284. weight: math.unit(268, "lb"),
  17285. name: "Front",
  17286. image: {
  17287. source: "./media/characters/sol/front.svg",
  17288. extra: 247 / 231,
  17289. bottom: 0.05
  17290. }
  17291. },
  17292. },
  17293. [
  17294. {
  17295. name: "Normal",
  17296. height: math.unit(6 + 2 / 12, "feet"),
  17297. default: true
  17298. },
  17299. ]
  17300. ))
  17301. characterMakers.push(() => makeCharacter(
  17302. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  17303. {
  17304. buizel: {
  17305. height: math.unit(2 + 5 / 12, "feet"),
  17306. weight: math.unit(87, "lb"),
  17307. name: "Front",
  17308. image: {
  17309. source: "./media/characters/umiko/buizel.svg",
  17310. extra: 172 / 157,
  17311. bottom: 0.01
  17312. },
  17313. form: "buizel",
  17314. default: true
  17315. },
  17316. floatzel: {
  17317. height: math.unit(5 + 9 / 12, "feet"),
  17318. weight: math.unit(250, "lb"),
  17319. name: "Front",
  17320. image: {
  17321. source: "./media/characters/umiko/floatzel.svg",
  17322. extra: 1076/1006,
  17323. bottom: 15/1091
  17324. },
  17325. form: "floatzel",
  17326. default: true
  17327. },
  17328. },
  17329. [
  17330. {
  17331. name: "Normal",
  17332. height: math.unit(2 + 5 / 12, "feet"),
  17333. form: "buizel",
  17334. default: true
  17335. },
  17336. {
  17337. name: "Normal",
  17338. height: math.unit(5 + 9 / 12, "feet"),
  17339. form: "floatzel",
  17340. default: true
  17341. },
  17342. ],
  17343. {
  17344. "buizel": {
  17345. name: "Buizel"
  17346. },
  17347. "floatzel": {
  17348. name: "Floatzel",
  17349. default: true
  17350. }
  17351. }
  17352. ))
  17353. characterMakers.push(() => makeCharacter(
  17354. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  17355. {
  17356. front: {
  17357. height: math.unit(6 + 2 / 12, "feet"),
  17358. weight: math.unit(146, "lb"),
  17359. name: "Front",
  17360. image: {
  17361. source: "./media/characters/iliac/front.svg",
  17362. extra: 389 / 365,
  17363. bottom: 0.035
  17364. }
  17365. },
  17366. },
  17367. [
  17368. {
  17369. name: "Normal",
  17370. height: math.unit(6 + 2 / 12, "feet"),
  17371. default: true
  17372. },
  17373. ]
  17374. ))
  17375. characterMakers.push(() => makeCharacter(
  17376. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  17377. {
  17378. front: {
  17379. height: math.unit(6, "feet"),
  17380. weight: math.unit(170, "lb"),
  17381. name: "Front",
  17382. image: {
  17383. source: "./media/characters/topaz/front.svg",
  17384. extra: 317 / 303,
  17385. bottom: 0.055
  17386. }
  17387. },
  17388. },
  17389. [
  17390. {
  17391. name: "Normal",
  17392. height: math.unit(6, "feet"),
  17393. default: true
  17394. },
  17395. ]
  17396. ))
  17397. characterMakers.push(() => makeCharacter(
  17398. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  17399. {
  17400. front: {
  17401. height: math.unit(5 + 11 / 12, "feet"),
  17402. weight: math.unit(144, "lb"),
  17403. name: "Front",
  17404. image: {
  17405. source: "./media/characters/gabriel/front.svg",
  17406. extra: 285 / 262,
  17407. bottom: 0.004
  17408. }
  17409. },
  17410. },
  17411. [
  17412. {
  17413. name: "Normal",
  17414. height: math.unit(5 + 11 / 12, "feet"),
  17415. default: true
  17416. },
  17417. ]
  17418. ))
  17419. characterMakers.push(() => makeCharacter(
  17420. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  17421. {
  17422. side: {
  17423. height: math.unit(6 + 5 / 12, "feet"),
  17424. weight: math.unit(300, "lb"),
  17425. name: "Side",
  17426. image: {
  17427. source: "./media/characters/tempest-suicune/side.svg",
  17428. extra: 195 / 154,
  17429. bottom: 0.04
  17430. }
  17431. },
  17432. },
  17433. [
  17434. {
  17435. name: "Normal",
  17436. height: math.unit(6 + 5 / 12, "feet"),
  17437. default: true
  17438. },
  17439. ]
  17440. ))
  17441. characterMakers.push(() => makeCharacter(
  17442. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  17443. {
  17444. front: {
  17445. height: math.unit(7 + 2 / 12, "feet"),
  17446. weight: math.unit(322, "lb"),
  17447. name: "Front",
  17448. image: {
  17449. source: "./media/characters/vulcan/front.svg",
  17450. extra: 154 / 147,
  17451. bottom: 0.04
  17452. }
  17453. },
  17454. },
  17455. [
  17456. {
  17457. name: "Normal",
  17458. height: math.unit(7 + 2 / 12, "feet"),
  17459. default: true
  17460. },
  17461. ]
  17462. ))
  17463. characterMakers.push(() => makeCharacter(
  17464. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  17465. {
  17466. front: {
  17467. height: math.unit(5 + 10 / 12, "feet"),
  17468. weight: math.unit(264, "lb"),
  17469. name: "Front",
  17470. image: {
  17471. source: "./media/characters/gault/front.svg",
  17472. extra: 161 / 140,
  17473. bottom: 0.028
  17474. }
  17475. },
  17476. },
  17477. [
  17478. {
  17479. name: "Normal",
  17480. height: math.unit(5 + 10 / 12, "feet"),
  17481. default: true
  17482. },
  17483. ]
  17484. ))
  17485. characterMakers.push(() => makeCharacter(
  17486. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  17487. {
  17488. front: {
  17489. height: math.unit(6, "feet"),
  17490. weight: math.unit(150, "lb"),
  17491. name: "Front",
  17492. image: {
  17493. source: "./media/characters/shard/front.svg",
  17494. extra: 273 / 238,
  17495. bottom: 0.02
  17496. }
  17497. },
  17498. },
  17499. [
  17500. {
  17501. name: "Normal",
  17502. height: math.unit(3 + 6 / 12, "feet"),
  17503. default: true
  17504. },
  17505. ]
  17506. ))
  17507. characterMakers.push(() => makeCharacter(
  17508. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17509. {
  17510. front: {
  17511. height: math.unit(5 + 11 / 12, "feet"),
  17512. weight: math.unit(146, "lb"),
  17513. name: "Front",
  17514. image: {
  17515. source: "./media/characters/ashe/front.svg",
  17516. extra: 400 / 373,
  17517. bottom: 0.01
  17518. }
  17519. },
  17520. },
  17521. [
  17522. {
  17523. name: "Normal",
  17524. height: math.unit(5 + 11 / 12, "feet"),
  17525. default: true
  17526. },
  17527. ]
  17528. ))
  17529. characterMakers.push(() => makeCharacter(
  17530. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17531. {
  17532. front: {
  17533. height: math.unit(5 + 5 / 12, "feet"),
  17534. weight: math.unit(135, "lb"),
  17535. name: "Front",
  17536. image: {
  17537. source: "./media/characters/beatrix/front.svg",
  17538. extra: 392 / 379,
  17539. bottom: 0.01
  17540. }
  17541. },
  17542. },
  17543. [
  17544. {
  17545. name: "Normal",
  17546. height: math.unit(6, "feet"),
  17547. default: true
  17548. },
  17549. ]
  17550. ))
  17551. characterMakers.push(() => makeCharacter(
  17552. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17553. {
  17554. front: {
  17555. height: math.unit(6 + 2/12, "feet"),
  17556. weight: math.unit(135, "lb"),
  17557. name: "Front",
  17558. image: {
  17559. source: "./media/characters/ignatius/front.svg",
  17560. extra: 1380/1259,
  17561. bottom: 27/1407
  17562. }
  17563. },
  17564. },
  17565. [
  17566. {
  17567. name: "Normal",
  17568. height: math.unit(6 + 2/12, "feet"),
  17569. default: true
  17570. },
  17571. ]
  17572. ))
  17573. characterMakers.push(() => makeCharacter(
  17574. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17575. {
  17576. front: {
  17577. height: math.unit(6 + 2 / 12, "feet"),
  17578. weight: math.unit(138, "lb"),
  17579. name: "Front",
  17580. image: {
  17581. source: "./media/characters/mei-li/front.svg",
  17582. extra: 237 / 229,
  17583. bottom: 0.03
  17584. }
  17585. },
  17586. },
  17587. [
  17588. {
  17589. name: "Normal",
  17590. height: math.unit(6 + 2 / 12, "feet"),
  17591. default: true
  17592. },
  17593. ]
  17594. ))
  17595. characterMakers.push(() => makeCharacter(
  17596. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17597. {
  17598. front: {
  17599. height: math.unit(2 + 4 / 12, "feet"),
  17600. weight: math.unit(62, "lb"),
  17601. name: "Front",
  17602. image: {
  17603. source: "./media/characters/puru/front.svg",
  17604. extra: 206 / 149,
  17605. bottom: 0.06
  17606. }
  17607. },
  17608. },
  17609. [
  17610. {
  17611. name: "Normal",
  17612. height: math.unit(2 + 4 / 12, "feet"),
  17613. default: true
  17614. },
  17615. ]
  17616. ))
  17617. characterMakers.push(() => makeCharacter(
  17618. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17619. {
  17620. anthro: {
  17621. height: math.unit(5 + 8/12, "feet"),
  17622. weight: math.unit(200, "lb"),
  17623. energyNeed: math.unit(2000, "kcal"),
  17624. name: "Anthro",
  17625. image: {
  17626. source: "./media/characters/kee/anthro.svg",
  17627. extra: 3251/3184,
  17628. bottom: 250/3501
  17629. }
  17630. },
  17631. taur: {
  17632. height: math.unit(11, "feet"),
  17633. weight: math.unit(500, "lb"),
  17634. energyNeed: math.unit(5000, "kcal"),
  17635. name: "Taur",
  17636. image: {
  17637. source: "./media/characters/kee/taur.svg",
  17638. extra: 1362/1320,
  17639. bottom: 83/1445
  17640. }
  17641. },
  17642. },
  17643. [
  17644. {
  17645. name: "Normal",
  17646. height: math.unit(5 + 8/12, "feet"),
  17647. default: true
  17648. },
  17649. {
  17650. name: "Macro",
  17651. height: math.unit(35, "feet")
  17652. },
  17653. ]
  17654. ))
  17655. characterMakers.push(() => makeCharacter(
  17656. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17657. {
  17658. anthro: {
  17659. height: math.unit(7, "feet"),
  17660. weight: math.unit(190, "lb"),
  17661. name: "Anthro",
  17662. image: {
  17663. source: "./media/characters/cobalt-dracha/anthro.svg",
  17664. extra: 231 / 225,
  17665. bottom: 0.04
  17666. }
  17667. },
  17668. feral: {
  17669. height: math.unit(9 + 7 / 12, "feet"),
  17670. weight: math.unit(294, "lb"),
  17671. name: "Feral",
  17672. image: {
  17673. source: "./media/characters/cobalt-dracha/feral.svg",
  17674. extra: 692 / 633,
  17675. bottom: 0.05
  17676. }
  17677. },
  17678. },
  17679. [
  17680. {
  17681. name: "Normal",
  17682. height: math.unit(7, "feet"),
  17683. default: true
  17684. },
  17685. ]
  17686. ))
  17687. characterMakers.push(() => makeCharacter(
  17688. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17689. {
  17690. fallen: {
  17691. height: math.unit(11 + 8 / 12, "feet"),
  17692. weight: math.unit(485, "lb"),
  17693. name: "Java (Fallen)",
  17694. rename: true,
  17695. image: {
  17696. source: "./media/characters/java/fallen.svg",
  17697. extra: 226 / 208,
  17698. bottom: 0.005
  17699. }
  17700. },
  17701. godkin: {
  17702. height: math.unit(10 + 6 / 12, "feet"),
  17703. weight: math.unit(328, "lb"),
  17704. name: "Java (Godkin)",
  17705. rename: true,
  17706. image: {
  17707. source: "./media/characters/java/godkin.svg",
  17708. extra: 1104/1068,
  17709. bottom: 36/1140
  17710. }
  17711. },
  17712. },
  17713. [
  17714. {
  17715. name: "Normal",
  17716. height: math.unit(11 + 8 / 12, "feet"),
  17717. default: true
  17718. },
  17719. ]
  17720. ))
  17721. characterMakers.push(() => makeCharacter(
  17722. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17723. {
  17724. front: {
  17725. height: math.unit(5 + 9 / 12, "feet"),
  17726. weight: math.unit(170, "lb"),
  17727. name: "Front",
  17728. image: {
  17729. source: "./media/characters/purna/front.svg",
  17730. extra: 239 / 229,
  17731. bottom: 0.01
  17732. }
  17733. },
  17734. },
  17735. [
  17736. {
  17737. name: "Normal",
  17738. height: math.unit(5 + 9 / 12, "feet"),
  17739. default: true
  17740. },
  17741. ]
  17742. ))
  17743. characterMakers.push(() => makeCharacter(
  17744. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17745. {
  17746. front: {
  17747. height: math.unit(5 + 9 / 12, "feet"),
  17748. weight: math.unit(142, "lb"),
  17749. name: "Front",
  17750. image: {
  17751. source: "./media/characters/kuva/front.svg",
  17752. extra: 281 / 271,
  17753. bottom: 0.006
  17754. }
  17755. },
  17756. },
  17757. [
  17758. {
  17759. name: "Normal",
  17760. height: math.unit(5 + 9 / 12, "feet"),
  17761. default: true
  17762. },
  17763. ]
  17764. ))
  17765. characterMakers.push(() => makeCharacter(
  17766. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17767. {
  17768. anthro: {
  17769. height: math.unit(9 + 2 / 12, "feet"),
  17770. weight: math.unit(270, "lb"),
  17771. name: "Anthro",
  17772. image: {
  17773. source: "./media/characters/embra/anthro.svg",
  17774. extra: 200 / 187,
  17775. bottom: 0.02
  17776. }
  17777. },
  17778. feral: {
  17779. height: math.unit(18 + 8 / 12, "feet"),
  17780. weight: math.unit(576, "lb"),
  17781. name: "Feral",
  17782. image: {
  17783. source: "./media/characters/embra/feral.svg",
  17784. extra: 152 / 137,
  17785. bottom: 0.037
  17786. }
  17787. },
  17788. },
  17789. [
  17790. {
  17791. name: "Normal",
  17792. height: math.unit(9 + 2 / 12, "feet"),
  17793. default: true
  17794. },
  17795. ]
  17796. ))
  17797. characterMakers.push(() => makeCharacter(
  17798. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17799. {
  17800. anthro: {
  17801. height: math.unit(10 + 9 / 12, "feet"),
  17802. weight: math.unit(224, "lb"),
  17803. name: "Anthro",
  17804. image: {
  17805. source: "./media/characters/grottos/anthro.svg",
  17806. extra: 350 / 332,
  17807. bottom: 0.045
  17808. }
  17809. },
  17810. feral: {
  17811. height: math.unit(20 + 7 / 12, "feet"),
  17812. weight: math.unit(629, "lb"),
  17813. name: "Feral",
  17814. image: {
  17815. source: "./media/characters/grottos/feral.svg",
  17816. extra: 207 / 190,
  17817. bottom: 0.05
  17818. }
  17819. },
  17820. },
  17821. [
  17822. {
  17823. name: "Normal",
  17824. height: math.unit(10 + 9 / 12, "feet"),
  17825. default: true
  17826. },
  17827. ]
  17828. ))
  17829. characterMakers.push(() => makeCharacter(
  17830. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17831. {
  17832. anthro: {
  17833. height: math.unit(9 + 6 / 12, "feet"),
  17834. weight: math.unit(298, "lb"),
  17835. name: "Anthro",
  17836. image: {
  17837. source: "./media/characters/frifna/anthro.svg",
  17838. extra: 282 / 269,
  17839. bottom: 0.015
  17840. }
  17841. },
  17842. feral: {
  17843. height: math.unit(16 + 2 / 12, "feet"),
  17844. weight: math.unit(624, "lb"),
  17845. name: "Feral",
  17846. image: {
  17847. source: "./media/characters/frifna/feral.svg"
  17848. }
  17849. },
  17850. },
  17851. [
  17852. {
  17853. name: "Normal",
  17854. height: math.unit(9 + 6 / 12, "feet"),
  17855. default: true
  17856. },
  17857. ]
  17858. ))
  17859. characterMakers.push(() => makeCharacter(
  17860. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17861. {
  17862. front: {
  17863. height: math.unit(6 + 2 / 12, "feet"),
  17864. weight: math.unit(168, "lb"),
  17865. name: "Front",
  17866. image: {
  17867. source: "./media/characters/elise/front.svg",
  17868. extra: 276 / 271
  17869. }
  17870. },
  17871. },
  17872. [
  17873. {
  17874. name: "Normal",
  17875. height: math.unit(6 + 2 / 12, "feet"),
  17876. default: true
  17877. },
  17878. ]
  17879. ))
  17880. characterMakers.push(() => makeCharacter(
  17881. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17882. {
  17883. front: {
  17884. height: math.unit(5 + 10 / 12, "feet"),
  17885. weight: math.unit(210, "lb"),
  17886. name: "Front",
  17887. image: {
  17888. source: "./media/characters/glade/front.svg",
  17889. extra: 258 / 247,
  17890. bottom: 0.008
  17891. }
  17892. },
  17893. },
  17894. [
  17895. {
  17896. name: "Normal",
  17897. height: math.unit(5 + 10 / 12, "feet"),
  17898. default: true
  17899. },
  17900. ]
  17901. ))
  17902. characterMakers.push(() => makeCharacter(
  17903. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17904. {
  17905. front: {
  17906. height: math.unit(5 + 10 / 12, "feet"),
  17907. weight: math.unit(129, "lb"),
  17908. name: "Front",
  17909. image: {
  17910. source: "./media/characters/rina/front.svg",
  17911. extra: 266 / 255,
  17912. bottom: 0.005
  17913. }
  17914. },
  17915. },
  17916. [
  17917. {
  17918. name: "Normal",
  17919. height: math.unit(5 + 10 / 12, "feet"),
  17920. default: true
  17921. },
  17922. ]
  17923. ))
  17924. characterMakers.push(() => makeCharacter(
  17925. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17926. {
  17927. front: {
  17928. height: math.unit(6 + 1 / 12, "feet"),
  17929. weight: math.unit(192, "lb"),
  17930. name: "Front",
  17931. image: {
  17932. source: "./media/characters/veronica/front.svg",
  17933. extra: 319 / 309,
  17934. bottom: 0.005
  17935. }
  17936. },
  17937. },
  17938. [
  17939. {
  17940. name: "Normal",
  17941. height: math.unit(6 + 1 / 12, "feet"),
  17942. default: true
  17943. },
  17944. ]
  17945. ))
  17946. characterMakers.push(() => makeCharacter(
  17947. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17948. {
  17949. front: {
  17950. height: math.unit(9 + 3 / 12, "feet"),
  17951. weight: math.unit(1100, "lb"),
  17952. name: "Front",
  17953. image: {
  17954. source: "./media/characters/braxton/front.svg",
  17955. extra: 1057 / 984,
  17956. bottom: 0.05
  17957. }
  17958. },
  17959. },
  17960. [
  17961. {
  17962. name: "Normal",
  17963. height: math.unit(9 + 3 / 12, "feet")
  17964. },
  17965. {
  17966. name: "Giant",
  17967. height: math.unit(300, "feet"),
  17968. default: true
  17969. },
  17970. {
  17971. name: "Macro",
  17972. height: math.unit(700, "feet")
  17973. },
  17974. {
  17975. name: "Megamacro",
  17976. height: math.unit(6000, "feet")
  17977. },
  17978. ]
  17979. ))
  17980. characterMakers.push(() => makeCharacter(
  17981. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17982. {
  17983. front: {
  17984. height: math.unit(6 + 7 / 12, "feet"),
  17985. weight: math.unit(150, "lb"),
  17986. name: "Front",
  17987. image: {
  17988. source: "./media/characters/blue-feyonics/front.svg",
  17989. extra: 1403 / 1306,
  17990. bottom: 0.047
  17991. }
  17992. },
  17993. },
  17994. [
  17995. {
  17996. name: "Normal",
  17997. height: math.unit(6 + 7 / 12, "feet"),
  17998. default: true
  17999. },
  18000. ]
  18001. ))
  18002. characterMakers.push(() => makeCharacter(
  18003. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  18004. {
  18005. front: {
  18006. height: math.unit(1.8, "meters"),
  18007. weight: math.unit(60, "kg"),
  18008. name: "Front",
  18009. image: {
  18010. source: "./media/characters/maxwell/front.svg",
  18011. extra: 2060 / 1873
  18012. }
  18013. },
  18014. },
  18015. [
  18016. {
  18017. name: "Micro",
  18018. height: math.unit(1, "mm")
  18019. },
  18020. {
  18021. name: "Normal",
  18022. height: math.unit(1.8, "meter"),
  18023. default: true
  18024. },
  18025. {
  18026. name: "Macro",
  18027. height: math.unit(30, "meters")
  18028. },
  18029. {
  18030. name: "Megamacro",
  18031. height: math.unit(10, "km")
  18032. },
  18033. ]
  18034. ))
  18035. characterMakers.push(() => makeCharacter(
  18036. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  18037. {
  18038. front: {
  18039. height: math.unit(6, "feet"),
  18040. weight: math.unit(150, "lb"),
  18041. name: "Front",
  18042. image: {
  18043. source: "./media/characters/jack/front.svg",
  18044. extra: 1754 / 1640,
  18045. bottom: 0.01
  18046. }
  18047. },
  18048. },
  18049. [
  18050. {
  18051. name: "Normal",
  18052. height: math.unit(80000, "feet"),
  18053. default: true
  18054. },
  18055. {
  18056. name: "Max size",
  18057. height: math.unit(10, "lightyears")
  18058. },
  18059. ]
  18060. ))
  18061. characterMakers.push(() => makeCharacter(
  18062. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  18063. {
  18064. urban: {
  18065. height: math.unit(5, "feet"),
  18066. weight: math.unit(240, "lb"),
  18067. name: "Urban",
  18068. image: {
  18069. source: "./media/characters/cafat/urban.svg",
  18070. extra: 1223/1126,
  18071. bottom: 205/1428
  18072. }
  18073. },
  18074. summer: {
  18075. height: math.unit(5, "feet"),
  18076. weight: math.unit(240, "lb"),
  18077. name: "Summer",
  18078. image: {
  18079. source: "./media/characters/cafat/summer.svg",
  18080. extra: 1223/1126,
  18081. bottom: 205/1428
  18082. }
  18083. },
  18084. winter: {
  18085. height: math.unit(5, "feet"),
  18086. weight: math.unit(240, "lb"),
  18087. name: "Winter",
  18088. image: {
  18089. source: "./media/characters/cafat/winter.svg",
  18090. extra: 1223/1126,
  18091. bottom: 205/1428
  18092. }
  18093. },
  18094. lingerie: {
  18095. height: math.unit(5, "feet"),
  18096. weight: math.unit(240, "lb"),
  18097. name: "Lingerie",
  18098. image: {
  18099. source: "./media/characters/cafat/lingerie.svg",
  18100. extra: 1223/1126,
  18101. bottom: 205/1428
  18102. }
  18103. },
  18104. upright: {
  18105. height: math.unit(6.3, "feet"),
  18106. weight: math.unit(240, "lb"),
  18107. name: "Upright",
  18108. image: {
  18109. source: "./media/characters/cafat/upright.svg",
  18110. bottom: 0.01
  18111. }
  18112. },
  18113. uprightFull: {
  18114. height: math.unit(6.3, "feet"),
  18115. weight: math.unit(240, "lb"),
  18116. name: "Upright (Full)",
  18117. image: {
  18118. source: "./media/characters/cafat/upright-full.svg",
  18119. bottom: 0.01
  18120. }
  18121. },
  18122. },
  18123. [
  18124. {
  18125. name: "Small",
  18126. height: math.unit(5, "feet"),
  18127. default: true
  18128. },
  18129. {
  18130. name: "Large",
  18131. height: math.unit(13, "feet")
  18132. },
  18133. ]
  18134. ))
  18135. characterMakers.push(() => makeCharacter(
  18136. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  18137. {
  18138. front: {
  18139. height: math.unit(6, "feet"),
  18140. weight: math.unit(150, "lb"),
  18141. name: "Front",
  18142. image: {
  18143. source: "./media/characters/verin-raharra/front.svg",
  18144. extra: 5019 / 4835,
  18145. bottom: 0.023
  18146. }
  18147. },
  18148. },
  18149. [
  18150. {
  18151. name: "Normal",
  18152. height: math.unit(7 + 5 / 12, "feet"),
  18153. default: true
  18154. },
  18155. {
  18156. name: "Upsized",
  18157. height: math.unit(20, "feet")
  18158. },
  18159. ]
  18160. ))
  18161. characterMakers.push(() => makeCharacter(
  18162. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  18163. {
  18164. front: {
  18165. height: math.unit(7, "feet"),
  18166. weight: math.unit(230, "lb"),
  18167. name: "Front",
  18168. image: {
  18169. source: "./media/characters/nakata/front.svg",
  18170. extra: 1.005,
  18171. bottom: 0.01
  18172. }
  18173. },
  18174. },
  18175. [
  18176. {
  18177. name: "Normal",
  18178. height: math.unit(7, "feet"),
  18179. default: true
  18180. },
  18181. {
  18182. name: "Big",
  18183. height: math.unit(14, "feet")
  18184. },
  18185. {
  18186. name: "Macro",
  18187. height: math.unit(400, "feet")
  18188. },
  18189. ]
  18190. ))
  18191. characterMakers.push(() => makeCharacter(
  18192. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  18193. {
  18194. front: {
  18195. height: math.unit(4.91, "feet"),
  18196. weight: math.unit(100, "lb"),
  18197. name: "Front",
  18198. image: {
  18199. source: "./media/characters/lily/front.svg",
  18200. extra: 1585 / 1415,
  18201. bottom: 0.02
  18202. }
  18203. },
  18204. },
  18205. [
  18206. {
  18207. name: "Normal",
  18208. height: math.unit(4.91, "feet"),
  18209. default: true
  18210. },
  18211. ]
  18212. ))
  18213. characterMakers.push(() => makeCharacter(
  18214. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  18215. {
  18216. laying: {
  18217. height: math.unit(4 + 4 / 12, "feet"),
  18218. weight: math.unit(600, "lb"),
  18219. name: "Laying",
  18220. image: {
  18221. source: "./media/characters/sheila/laying.svg",
  18222. extra: 1333 / 1265,
  18223. bottom: 0.16
  18224. }
  18225. },
  18226. },
  18227. [
  18228. {
  18229. name: "Normal",
  18230. height: math.unit(4 + 4 / 12, "feet"),
  18231. default: true
  18232. },
  18233. ]
  18234. ))
  18235. characterMakers.push(() => makeCharacter(
  18236. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  18237. {
  18238. front: {
  18239. height: math.unit(6, "feet"),
  18240. weight: math.unit(190, "lb"),
  18241. name: "Front",
  18242. image: {
  18243. source: "./media/characters/sax/front.svg",
  18244. extra: 1187 / 973,
  18245. bottom: 0.042
  18246. }
  18247. },
  18248. },
  18249. [
  18250. {
  18251. name: "Micro",
  18252. height: math.unit(4, "inches"),
  18253. default: true
  18254. },
  18255. ]
  18256. ))
  18257. characterMakers.push(() => makeCharacter(
  18258. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  18259. {
  18260. front: {
  18261. height: math.unit(6, "feet"),
  18262. weight: math.unit(150, "lb"),
  18263. name: "Front",
  18264. image: {
  18265. source: "./media/characters/pandora/front.svg",
  18266. extra: 2720 / 2556,
  18267. bottom: 0.015
  18268. }
  18269. },
  18270. back: {
  18271. height: math.unit(6, "feet"),
  18272. weight: math.unit(150, "lb"),
  18273. name: "Back",
  18274. image: {
  18275. source: "./media/characters/pandora/back.svg",
  18276. extra: 2720 / 2556,
  18277. bottom: 0.01
  18278. }
  18279. },
  18280. beans: {
  18281. height: math.unit(6 / 8, "feet"),
  18282. name: "Beans",
  18283. image: {
  18284. source: "./media/characters/pandora/beans.svg"
  18285. }
  18286. },
  18287. collar: {
  18288. height: math.unit(0.31, "feet"),
  18289. name: "Collar",
  18290. image: {
  18291. source: "./media/characters/pandora/collar.svg"
  18292. }
  18293. },
  18294. skirt: {
  18295. height: math.unit(6, "feet"),
  18296. weight: math.unit(150, "lb"),
  18297. name: "Skirt",
  18298. image: {
  18299. source: "./media/characters/pandora/skirt.svg",
  18300. extra: 1622 / 1525,
  18301. bottom: 0.015
  18302. }
  18303. },
  18304. hoodie: {
  18305. height: math.unit(6, "feet"),
  18306. weight: math.unit(150, "lb"),
  18307. name: "Hoodie",
  18308. image: {
  18309. source: "./media/characters/pandora/hoodie.svg",
  18310. extra: 1622 / 1525,
  18311. bottom: 0.015
  18312. }
  18313. },
  18314. casual: {
  18315. height: math.unit(6, "feet"),
  18316. weight: math.unit(150, "lb"),
  18317. name: "Casual",
  18318. image: {
  18319. source: "./media/characters/pandora/casual.svg",
  18320. extra: 1622 / 1525,
  18321. bottom: 0.015
  18322. }
  18323. },
  18324. },
  18325. [
  18326. {
  18327. name: "Normal",
  18328. height: math.unit(6, "feet")
  18329. },
  18330. {
  18331. name: "Big Steppy",
  18332. height: math.unit(1, "km"),
  18333. default: true
  18334. },
  18335. {
  18336. name: "Galactic Steppy",
  18337. height: math.unit(2, "gigameters")
  18338. },
  18339. ]
  18340. ))
  18341. characterMakers.push(() => makeCharacter(
  18342. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  18343. {
  18344. side: {
  18345. height: math.unit(10, "feet"),
  18346. weight: math.unit(800, "kg"),
  18347. name: "Side",
  18348. image: {
  18349. source: "./media/characters/venio-darcony/side.svg",
  18350. extra: 1373 / 1003,
  18351. bottom: 0.037
  18352. }
  18353. },
  18354. front: {
  18355. height: math.unit(19, "feet"),
  18356. weight: math.unit(800, "kg"),
  18357. name: "Front",
  18358. image: {
  18359. source: "./media/characters/venio-darcony/front.svg"
  18360. }
  18361. },
  18362. back: {
  18363. height: math.unit(19, "feet"),
  18364. weight: math.unit(800, "kg"),
  18365. name: "Back",
  18366. image: {
  18367. source: "./media/characters/venio-darcony/back.svg"
  18368. }
  18369. },
  18370. sideNsfw: {
  18371. height: math.unit(10, "feet"),
  18372. weight: math.unit(800, "kg"),
  18373. name: "Side (NSFW)",
  18374. image: {
  18375. source: "./media/characters/venio-darcony/side-nsfw.svg",
  18376. extra: 1373 / 1003,
  18377. bottom: 0.037
  18378. }
  18379. },
  18380. frontNsfw: {
  18381. height: math.unit(19, "feet"),
  18382. weight: math.unit(800, "kg"),
  18383. name: "Front (NSFW)",
  18384. image: {
  18385. source: "./media/characters/venio-darcony/front-nsfw.svg"
  18386. }
  18387. },
  18388. backNsfw: {
  18389. height: math.unit(19, "feet"),
  18390. weight: math.unit(800, "kg"),
  18391. name: "Back (NSFW)",
  18392. image: {
  18393. source: "./media/characters/venio-darcony/back-nsfw.svg"
  18394. }
  18395. },
  18396. sideArmored: {
  18397. height: math.unit(10, "feet"),
  18398. weight: math.unit(800, "kg"),
  18399. name: "Side (Armored)",
  18400. image: {
  18401. source: "./media/characters/venio-darcony/side-armored.svg",
  18402. extra: 1373 / 1003,
  18403. bottom: 0.037
  18404. }
  18405. },
  18406. frontArmored: {
  18407. height: math.unit(19, "feet"),
  18408. weight: math.unit(900, "kg"),
  18409. name: "Front (Armored)",
  18410. image: {
  18411. source: "./media/characters/venio-darcony/front-armored.svg"
  18412. }
  18413. },
  18414. backArmored: {
  18415. height: math.unit(19, "feet"),
  18416. weight: math.unit(900, "kg"),
  18417. name: "Back (Armored)",
  18418. image: {
  18419. source: "./media/characters/venio-darcony/back-armored.svg"
  18420. }
  18421. },
  18422. sword: {
  18423. height: math.unit(10, "feet"),
  18424. weight: math.unit(50, "lb"),
  18425. name: "Sword",
  18426. image: {
  18427. source: "./media/characters/venio-darcony/sword.svg"
  18428. }
  18429. },
  18430. },
  18431. [
  18432. {
  18433. name: "Normal",
  18434. height: math.unit(10, "feet")
  18435. },
  18436. {
  18437. name: "Macro",
  18438. height: math.unit(130, "feet"),
  18439. default: true
  18440. },
  18441. {
  18442. name: "Macro+",
  18443. height: math.unit(240, "feet")
  18444. },
  18445. ]
  18446. ))
  18447. characterMakers.push(() => makeCharacter(
  18448. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  18449. {
  18450. front: {
  18451. height: math.unit(6, "feet"),
  18452. weight: math.unit(150, "lb"),
  18453. name: "Front",
  18454. image: {
  18455. source: "./media/characters/veski/front.svg",
  18456. extra: 1299 / 1225,
  18457. bottom: 0.04
  18458. }
  18459. },
  18460. back: {
  18461. height: math.unit(6, "feet"),
  18462. weight: math.unit(150, "lb"),
  18463. name: "Back",
  18464. image: {
  18465. source: "./media/characters/veski/back.svg",
  18466. extra: 1299 / 1225,
  18467. bottom: 0.008
  18468. }
  18469. },
  18470. maw: {
  18471. height: math.unit(1.5 * 1.21, "feet"),
  18472. name: "Maw",
  18473. image: {
  18474. source: "./media/characters/veski/maw.svg"
  18475. }
  18476. },
  18477. },
  18478. [
  18479. {
  18480. name: "Macro",
  18481. height: math.unit(2, "km"),
  18482. default: true
  18483. },
  18484. ]
  18485. ))
  18486. characterMakers.push(() => makeCharacter(
  18487. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18488. {
  18489. front: {
  18490. height: math.unit(5 + 7 / 12, "feet"),
  18491. name: "Front",
  18492. image: {
  18493. source: "./media/characters/isabelle/front.svg",
  18494. extra: 2130 / 1976,
  18495. bottom: 0.05
  18496. }
  18497. },
  18498. },
  18499. [
  18500. {
  18501. name: "Supermicro",
  18502. height: math.unit(10, "micrometers")
  18503. },
  18504. {
  18505. name: "Micro",
  18506. height: math.unit(1, "inch")
  18507. },
  18508. {
  18509. name: "Tiny",
  18510. height: math.unit(5, "inches")
  18511. },
  18512. {
  18513. name: "Standard",
  18514. height: math.unit(5 + 7 / 12, "inches")
  18515. },
  18516. {
  18517. name: "Macro",
  18518. height: math.unit(80, "meters"),
  18519. default: true
  18520. },
  18521. {
  18522. name: "Megamacro",
  18523. height: math.unit(250, "meters")
  18524. },
  18525. {
  18526. name: "Gigamacro",
  18527. height: math.unit(5, "km")
  18528. },
  18529. {
  18530. name: "Cosmic",
  18531. height: math.unit(2.5e6, "miles")
  18532. },
  18533. ]
  18534. ))
  18535. characterMakers.push(() => makeCharacter(
  18536. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18537. {
  18538. front: {
  18539. height: math.unit(6, "feet"),
  18540. weight: math.unit(150, "lb"),
  18541. name: "Front",
  18542. image: {
  18543. source: "./media/characters/hanzo/front.svg",
  18544. extra: 374 / 344,
  18545. bottom: 0.02
  18546. }
  18547. },
  18548. },
  18549. [
  18550. {
  18551. name: "Normal",
  18552. height: math.unit(8, "feet"),
  18553. default: true
  18554. },
  18555. ]
  18556. ))
  18557. characterMakers.push(() => makeCharacter(
  18558. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18559. {
  18560. front: {
  18561. height: math.unit(7, "feet"),
  18562. weight: math.unit(130, "lb"),
  18563. name: "Front",
  18564. image: {
  18565. source: "./media/characters/anna/front.svg",
  18566. extra: 169 / 145,
  18567. bottom: 0.06
  18568. }
  18569. },
  18570. full: {
  18571. height: math.unit(4.96, "feet"),
  18572. weight: math.unit(220, "lb"),
  18573. name: "Full",
  18574. image: {
  18575. source: "./media/characters/anna/full.svg",
  18576. extra: 138 / 114,
  18577. bottom: 0.15
  18578. }
  18579. },
  18580. tongue: {
  18581. height: math.unit(2.53, "feet"),
  18582. name: "Tongue",
  18583. image: {
  18584. source: "./media/characters/anna/tongue.svg"
  18585. }
  18586. },
  18587. },
  18588. [
  18589. {
  18590. name: "Normal",
  18591. height: math.unit(7, "feet"),
  18592. default: true
  18593. },
  18594. ]
  18595. ))
  18596. characterMakers.push(() => makeCharacter(
  18597. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18598. {
  18599. front: {
  18600. height: math.unit(7 + 1/12, "feet"),
  18601. weight: math.unit(150, "lb"),
  18602. name: "Front",
  18603. image: {
  18604. source: "./media/characters/ian-corvid/front.svg",
  18605. extra: 621/591,
  18606. bottom: 14/635
  18607. }
  18608. },
  18609. back: {
  18610. height: math.unit(7 + 1/12, "feet"),
  18611. weight: math.unit(150, "lb"),
  18612. name: "Back",
  18613. image: {
  18614. source: "./media/characters/ian-corvid/back.svg",
  18615. extra: 621/600,
  18616. bottom: 10/631
  18617. }
  18618. },
  18619. stomping: {
  18620. height: math.unit(7 + 1/12, "feet"),
  18621. weight: math.unit(150, "lb"),
  18622. name: "Stomping",
  18623. image: {
  18624. source: "./media/characters/ian-corvid/stomping.svg",
  18625. extra: 309/291,
  18626. bottom: 7/316
  18627. }
  18628. },
  18629. tongue: {
  18630. height: math.unit(3.9, "feet"),
  18631. name: "Tongue",
  18632. image: {
  18633. source: "./media/characters/ian-corvid/tongue.svg"
  18634. }
  18635. },
  18636. beak: {
  18637. height: math.unit(0.9, "feet"),
  18638. name: "Beak",
  18639. image: {
  18640. source: "./media/characters/ian-corvid/beak.svg"
  18641. }
  18642. },
  18643. sitting: {
  18644. height: math.unit(7 / 1.8, "feet"),
  18645. weight: math.unit(150, "lb"),
  18646. name: "Sitting",
  18647. image: {
  18648. source: "./media/characters/ian-corvid/sitting.svg",
  18649. extra: 1400 / 1269,
  18650. bottom: 0.15
  18651. }
  18652. },
  18653. },
  18654. [
  18655. {
  18656. name: "Tiny Microw",
  18657. height: math.unit(1, "inch")
  18658. },
  18659. {
  18660. name: "Microw",
  18661. height: math.unit(6, "inches")
  18662. },
  18663. {
  18664. name: "Crow",
  18665. height: math.unit(7 + 1 / 12, "feet"),
  18666. default: true
  18667. },
  18668. {
  18669. name: "Macrow",
  18670. height: math.unit(176, "feet")
  18671. },
  18672. ]
  18673. ))
  18674. characterMakers.push(() => makeCharacter(
  18675. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18676. {
  18677. front: {
  18678. height: math.unit(5 + 7 / 12, "feet"),
  18679. weight: math.unit(147, "lb"),
  18680. name: "Front",
  18681. image: {
  18682. source: "./media/characters/natalie-kellon/front.svg",
  18683. extra: 1214 / 1141,
  18684. bottom: 0.02
  18685. }
  18686. },
  18687. },
  18688. [
  18689. {
  18690. name: "Micro",
  18691. height: math.unit(1 / 16, "inch")
  18692. },
  18693. {
  18694. name: "Tiny",
  18695. height: math.unit(4, "inches")
  18696. },
  18697. {
  18698. name: "Normal",
  18699. height: math.unit(5 + 7 / 12, "feet"),
  18700. default: true
  18701. },
  18702. {
  18703. name: "Amazon",
  18704. height: math.unit(12, "feet")
  18705. },
  18706. {
  18707. name: "Giantess",
  18708. height: math.unit(160, "meters")
  18709. },
  18710. {
  18711. name: "Titaness",
  18712. height: math.unit(800, "meters")
  18713. },
  18714. ]
  18715. ))
  18716. characterMakers.push(() => makeCharacter(
  18717. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18718. {
  18719. front: {
  18720. height: math.unit(6, "feet"),
  18721. weight: math.unit(150, "lb"),
  18722. name: "Front",
  18723. image: {
  18724. source: "./media/characters/alluria/front.svg",
  18725. extra: 806 / 738,
  18726. bottom: 0.01
  18727. }
  18728. },
  18729. side: {
  18730. height: math.unit(6, "feet"),
  18731. weight: math.unit(150, "lb"),
  18732. name: "Side",
  18733. image: {
  18734. source: "./media/characters/alluria/side.svg",
  18735. extra: 800 / 750,
  18736. }
  18737. },
  18738. back: {
  18739. height: math.unit(6, "feet"),
  18740. weight: math.unit(150, "lb"),
  18741. name: "Back",
  18742. image: {
  18743. source: "./media/characters/alluria/back.svg",
  18744. extra: 806 / 738,
  18745. }
  18746. },
  18747. frontMaid: {
  18748. height: math.unit(6, "feet"),
  18749. weight: math.unit(150, "lb"),
  18750. name: "Front (Maid)",
  18751. image: {
  18752. source: "./media/characters/alluria/front-maid.svg",
  18753. extra: 806 / 738,
  18754. bottom: 0.01
  18755. }
  18756. },
  18757. sideMaid: {
  18758. height: math.unit(6, "feet"),
  18759. weight: math.unit(150, "lb"),
  18760. name: "Side (Maid)",
  18761. image: {
  18762. source: "./media/characters/alluria/side-maid.svg",
  18763. extra: 800 / 750,
  18764. bottom: 0.005
  18765. }
  18766. },
  18767. backMaid: {
  18768. height: math.unit(6, "feet"),
  18769. weight: math.unit(150, "lb"),
  18770. name: "Back (Maid)",
  18771. image: {
  18772. source: "./media/characters/alluria/back-maid.svg",
  18773. extra: 806 / 738,
  18774. }
  18775. },
  18776. },
  18777. [
  18778. {
  18779. name: "Micro",
  18780. height: math.unit(6, "inches"),
  18781. default: true
  18782. },
  18783. ]
  18784. ))
  18785. characterMakers.push(() => makeCharacter(
  18786. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18787. {
  18788. front: {
  18789. height: math.unit(6, "feet"),
  18790. weight: math.unit(150, "lb"),
  18791. name: "Front",
  18792. image: {
  18793. source: "./media/characters/kyle/front.svg",
  18794. extra: 1069 / 962,
  18795. bottom: 77.228 / 1727.45
  18796. }
  18797. },
  18798. },
  18799. [
  18800. {
  18801. name: "Macro",
  18802. height: math.unit(150, "feet"),
  18803. default: true
  18804. },
  18805. ]
  18806. ))
  18807. characterMakers.push(() => makeCharacter(
  18808. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18809. {
  18810. front: {
  18811. height: math.unit(6, "feet"),
  18812. weight: math.unit(300, "lb"),
  18813. name: "Front",
  18814. image: {
  18815. source: "./media/characters/duncan/front.svg",
  18816. extra: 1650 / 1482,
  18817. bottom: 0.05
  18818. }
  18819. },
  18820. },
  18821. [
  18822. {
  18823. name: "Macro",
  18824. height: math.unit(100, "feet"),
  18825. default: true
  18826. },
  18827. ]
  18828. ))
  18829. characterMakers.push(() => makeCharacter(
  18830. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18831. {
  18832. front: {
  18833. height: math.unit(5 + 4 / 12, "feet"),
  18834. weight: math.unit(220, "lb"),
  18835. name: "Front",
  18836. image: {
  18837. source: "./media/characters/memory/front.svg",
  18838. extra: 3641 / 3545,
  18839. bottom: 0.03
  18840. }
  18841. },
  18842. back: {
  18843. height: math.unit(5 + 4 / 12, "feet"),
  18844. weight: math.unit(220, "lb"),
  18845. name: "Back",
  18846. image: {
  18847. source: "./media/characters/memory/back.svg",
  18848. extra: 3641 / 3545,
  18849. bottom: 0.025
  18850. }
  18851. },
  18852. frontSkirt: {
  18853. height: math.unit(5 + 4 / 12, "feet"),
  18854. weight: math.unit(220, "lb"),
  18855. name: "Front (Skirt)",
  18856. image: {
  18857. source: "./media/characters/memory/front-skirt.svg",
  18858. extra: 3641 / 3545,
  18859. bottom: 0.03
  18860. }
  18861. },
  18862. frontDress: {
  18863. height: math.unit(5 + 4 / 12, "feet"),
  18864. weight: math.unit(220, "lb"),
  18865. name: "Front (Dress)",
  18866. image: {
  18867. source: "./media/characters/memory/front-dress.svg",
  18868. extra: 3641 / 3545,
  18869. bottom: 0.03
  18870. }
  18871. },
  18872. },
  18873. [
  18874. {
  18875. name: "Micro",
  18876. height: math.unit(6, "inches"),
  18877. default: true
  18878. },
  18879. {
  18880. name: "Normal",
  18881. height: math.unit(5 + 4 / 12, "feet")
  18882. },
  18883. ]
  18884. ))
  18885. characterMakers.push(() => makeCharacter(
  18886. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18887. {
  18888. front: {
  18889. height: math.unit(4 + 11 / 12, "feet"),
  18890. weight: math.unit(100, "lb"),
  18891. name: "Front",
  18892. image: {
  18893. source: "./media/characters/luno/front.svg",
  18894. extra: 1535 / 1487,
  18895. bottom: 0.03
  18896. }
  18897. },
  18898. },
  18899. [
  18900. {
  18901. name: "Micro",
  18902. height: math.unit(3, "inches")
  18903. },
  18904. {
  18905. name: "Normal",
  18906. height: math.unit(4 + 11 / 12, "feet"),
  18907. default: true
  18908. },
  18909. {
  18910. name: "Macro",
  18911. height: math.unit(300, "feet")
  18912. },
  18913. {
  18914. name: "Megamacro",
  18915. height: math.unit(700, "miles")
  18916. },
  18917. ]
  18918. ))
  18919. characterMakers.push(() => makeCharacter(
  18920. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18921. {
  18922. front: {
  18923. height: math.unit(6 + 2 / 12, "feet"),
  18924. weight: math.unit(170, "lb"),
  18925. name: "Front",
  18926. image: {
  18927. source: "./media/characters/jamesy/front.svg",
  18928. extra: 440 / 382,
  18929. bottom: 0.005
  18930. }
  18931. },
  18932. },
  18933. [
  18934. {
  18935. name: "Micro",
  18936. height: math.unit(3, "inches")
  18937. },
  18938. {
  18939. name: "Normal",
  18940. height: math.unit(6 + 2 / 12, "feet"),
  18941. default: true
  18942. },
  18943. {
  18944. name: "Macro",
  18945. height: math.unit(300, "feet")
  18946. },
  18947. {
  18948. name: "Megamacro",
  18949. height: math.unit(700, "miles")
  18950. },
  18951. ]
  18952. ))
  18953. characterMakers.push(() => makeCharacter(
  18954. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18955. {
  18956. front: {
  18957. height: math.unit(6, "feet"),
  18958. weight: math.unit(160, "lb"),
  18959. name: "Front",
  18960. image: {
  18961. source: "./media/characters/mark/front.svg",
  18962. extra: 3300 / 3100,
  18963. bottom: 136.42 / 3440.47
  18964. }
  18965. },
  18966. },
  18967. [
  18968. {
  18969. name: "Macro",
  18970. height: math.unit(120, "meters")
  18971. },
  18972. {
  18973. name: "Bigger Macro",
  18974. height: math.unit(350, "meters")
  18975. },
  18976. {
  18977. name: "Megamacro",
  18978. height: math.unit(8, "km"),
  18979. default: true
  18980. },
  18981. {
  18982. name: "Continental",
  18983. height: math.unit(4550, "km")
  18984. },
  18985. {
  18986. name: "Planetary",
  18987. height: math.unit(65000, "km")
  18988. },
  18989. ]
  18990. ))
  18991. characterMakers.push(() => makeCharacter(
  18992. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18993. {
  18994. front: {
  18995. height: math.unit(6, "feet"),
  18996. weight: math.unit(400, "lb"),
  18997. name: "Front",
  18998. image: {
  18999. source: "./media/characters/mac/front.svg",
  19000. extra: 1048 / 987.7,
  19001. bottom: 60 / 1107.6,
  19002. }
  19003. },
  19004. },
  19005. [
  19006. {
  19007. name: "Macro",
  19008. height: math.unit(500, "feet"),
  19009. default: true
  19010. },
  19011. ]
  19012. ))
  19013. characterMakers.push(() => makeCharacter(
  19014. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  19015. {
  19016. front: {
  19017. height: math.unit(5 + 2 / 12, "feet"),
  19018. weight: math.unit(190, "lb"),
  19019. name: "Front",
  19020. image: {
  19021. source: "./media/characters/bari/front.svg",
  19022. extra: 3156 / 2880,
  19023. bottom: 0.03
  19024. }
  19025. },
  19026. back: {
  19027. height: math.unit(5 + 2 / 12, "feet"),
  19028. weight: math.unit(190, "lb"),
  19029. name: "Back",
  19030. image: {
  19031. source: "./media/characters/bari/back.svg",
  19032. extra: 3260 / 2834,
  19033. bottom: 0.025
  19034. }
  19035. },
  19036. frontPlush: {
  19037. height: math.unit(5 + 2 / 12, "feet"),
  19038. weight: math.unit(190, "lb"),
  19039. name: "Front (Plush)",
  19040. image: {
  19041. source: "./media/characters/bari/front-plush.svg",
  19042. extra: 1112 / 1061,
  19043. bottom: 0.002
  19044. }
  19045. },
  19046. },
  19047. [
  19048. {
  19049. name: "Micro",
  19050. height: math.unit(3, "inches")
  19051. },
  19052. {
  19053. name: "Normal",
  19054. height: math.unit(5 + 2 / 12, "feet"),
  19055. default: true
  19056. },
  19057. {
  19058. name: "Macro",
  19059. height: math.unit(20, "feet")
  19060. },
  19061. ]
  19062. ))
  19063. characterMakers.push(() => makeCharacter(
  19064. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  19065. {
  19066. front: {
  19067. height: math.unit(6 + 1 / 12, "feet"),
  19068. weight: math.unit(275, "lb"),
  19069. name: "Front",
  19070. image: {
  19071. source: "./media/characters/hunter-misha-raven/front.svg"
  19072. }
  19073. },
  19074. },
  19075. [
  19076. {
  19077. name: "Mortal",
  19078. height: math.unit(6 + 1 / 12, "feet")
  19079. },
  19080. {
  19081. name: "Divine",
  19082. height: math.unit(1.12134e34, "parsecs"),
  19083. default: true
  19084. },
  19085. ]
  19086. ))
  19087. characterMakers.push(() => makeCharacter(
  19088. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  19089. {
  19090. front: {
  19091. height: math.unit(6 + 3 / 12, "feet"),
  19092. weight: math.unit(220, "lb"),
  19093. name: "Front",
  19094. image: {
  19095. source: "./media/characters/max-calore/front.svg",
  19096. extra: 1700 / 1648,
  19097. bottom: 0.01
  19098. }
  19099. },
  19100. back: {
  19101. height: math.unit(6 + 3 / 12, "feet"),
  19102. weight: math.unit(220, "lb"),
  19103. name: "Back",
  19104. image: {
  19105. source: "./media/characters/max-calore/back.svg",
  19106. extra: 1700 / 1648,
  19107. bottom: 0.01
  19108. }
  19109. },
  19110. },
  19111. [
  19112. {
  19113. name: "Normal",
  19114. height: math.unit(6 + 3 / 12, "feet"),
  19115. default: true
  19116. },
  19117. ]
  19118. ))
  19119. characterMakers.push(() => makeCharacter(
  19120. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  19121. {
  19122. side: {
  19123. height: math.unit(2 + 8 / 12, "feet"),
  19124. weight: math.unit(99, "lb"),
  19125. name: "Side",
  19126. image: {
  19127. source: "./media/characters/aspen/side.svg",
  19128. extra: 152 / 138,
  19129. bottom: 0.032
  19130. }
  19131. },
  19132. },
  19133. [
  19134. {
  19135. name: "Normal",
  19136. height: math.unit(2 + 8 / 12, "feet"),
  19137. default: true
  19138. },
  19139. ]
  19140. ))
  19141. characterMakers.push(() => makeCharacter(
  19142. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  19143. {
  19144. side: {
  19145. height: math.unit(3 + 2 / 12, "feet"),
  19146. weight: math.unit(224, "lb"),
  19147. name: "Side",
  19148. image: {
  19149. source: "./media/characters/sheila-feral-wolf/side.svg",
  19150. extra: 179 / 166,
  19151. bottom: 0.03
  19152. }
  19153. },
  19154. },
  19155. [
  19156. {
  19157. name: "Normal",
  19158. height: math.unit(3 + 2 / 12, "feet"),
  19159. default: true
  19160. },
  19161. ]
  19162. ))
  19163. characterMakers.push(() => makeCharacter(
  19164. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  19165. {
  19166. side: {
  19167. height: math.unit(1 + 9 / 12, "feet"),
  19168. weight: math.unit(38, "lb"),
  19169. name: "Side",
  19170. image: {
  19171. source: "./media/characters/michelle/side.svg",
  19172. extra: 147 / 136.7,
  19173. bottom: 0.03
  19174. }
  19175. },
  19176. },
  19177. [
  19178. {
  19179. name: "Normal",
  19180. height: math.unit(1 + 9 / 12, "feet"),
  19181. default: true
  19182. },
  19183. ]
  19184. ))
  19185. characterMakers.push(() => makeCharacter(
  19186. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  19187. {
  19188. front: {
  19189. height: math.unit(1.54, "feet"),
  19190. weight: math.unit(50, "lb"),
  19191. name: "Front",
  19192. image: {
  19193. source: "./media/characters/nino/front.svg"
  19194. }
  19195. },
  19196. },
  19197. [
  19198. {
  19199. name: "Normal",
  19200. height: math.unit(1.54, "feet"),
  19201. default: true
  19202. },
  19203. ]
  19204. ))
  19205. characterMakers.push(() => makeCharacter(
  19206. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  19207. {
  19208. front: {
  19209. height: math.unit(1.49, "feet"),
  19210. weight: math.unit(45, "lb"),
  19211. name: "Front",
  19212. image: {
  19213. source: "./media/characters/viola/front.svg"
  19214. }
  19215. },
  19216. },
  19217. [
  19218. {
  19219. name: "Normal",
  19220. height: math.unit(1.49, "feet"),
  19221. default: true
  19222. },
  19223. ]
  19224. ))
  19225. characterMakers.push(() => makeCharacter(
  19226. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  19227. {
  19228. front: {
  19229. height: math.unit(6 + 5 / 12, "feet"),
  19230. weight: math.unit(580, "lb"),
  19231. name: "Front",
  19232. image: {
  19233. source: "./media/characters/atlas/front.svg",
  19234. extra: 298.5 / 290,
  19235. bottom: 0.015
  19236. }
  19237. },
  19238. },
  19239. [
  19240. {
  19241. name: "Normal",
  19242. height: math.unit(6 + 5 / 12, "feet"),
  19243. default: true
  19244. },
  19245. ]
  19246. ))
  19247. characterMakers.push(() => makeCharacter(
  19248. { name: "Davy", species: ["cat"], tags: ["feral"] },
  19249. {
  19250. side: {
  19251. height: math.unit(15.6, "inches"),
  19252. weight: math.unit(10, "lb"),
  19253. name: "Side",
  19254. image: {
  19255. source: "./media/characters/davy/side.svg",
  19256. extra: 200 / 170,
  19257. bottom: 0.01
  19258. }
  19259. },
  19260. },
  19261. [
  19262. {
  19263. name: "Normal",
  19264. height: math.unit(15.6, "inches"),
  19265. default: true
  19266. },
  19267. ]
  19268. ))
  19269. characterMakers.push(() => makeCharacter(
  19270. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  19271. {
  19272. side: {
  19273. height: math.unit(4 + 8 / 12, "feet"),
  19274. weight: math.unit(166, "lb"),
  19275. name: "Side",
  19276. image: {
  19277. source: "./media/characters/fiona/side.svg",
  19278. extra: 232 / 220,
  19279. bottom: 0.03
  19280. }
  19281. },
  19282. },
  19283. [
  19284. {
  19285. name: "Normal",
  19286. height: math.unit(4 + 8 / 12, "feet"),
  19287. default: true
  19288. },
  19289. ]
  19290. ))
  19291. characterMakers.push(() => makeCharacter(
  19292. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  19293. {
  19294. front: {
  19295. height: math.unit(26, "inches"),
  19296. weight: math.unit(35, "lb"),
  19297. name: "Front",
  19298. image: {
  19299. source: "./media/characters/lyla/front.svg",
  19300. bottom: 0.1
  19301. }
  19302. },
  19303. },
  19304. [
  19305. {
  19306. name: "Normal",
  19307. height: math.unit(3, "feet"),
  19308. default: true
  19309. },
  19310. ]
  19311. ))
  19312. characterMakers.push(() => makeCharacter(
  19313. { name: "Perseus", species: ["monitor-lizard", "deity"], tags: ["feral"] },
  19314. {
  19315. side: {
  19316. height: math.unit(1.8, "feet"),
  19317. weight: math.unit(44, "lb"),
  19318. name: "Side",
  19319. image: {
  19320. source: "./media/characters/perseus/side.svg",
  19321. bottom: 0.21
  19322. }
  19323. },
  19324. },
  19325. [
  19326. {
  19327. name: "Normal",
  19328. height: math.unit(1.8, "feet"),
  19329. default: true
  19330. },
  19331. ]
  19332. ))
  19333. characterMakers.push(() => makeCharacter(
  19334. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  19335. {
  19336. side: {
  19337. height: math.unit(4 + 2 / 12, "feet"),
  19338. weight: math.unit(20, "lb"),
  19339. name: "Side",
  19340. image: {
  19341. source: "./media/characters/remus/side.svg"
  19342. }
  19343. },
  19344. },
  19345. [
  19346. {
  19347. name: "Normal",
  19348. height: math.unit(4 + 2 / 12, "feet"),
  19349. default: true
  19350. },
  19351. ]
  19352. ))
  19353. characterMakers.push(() => makeCharacter(
  19354. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  19355. {
  19356. front: {
  19357. height: math.unit(4 + 11 / 12, "feet"),
  19358. weight: math.unit(114, "lb"),
  19359. name: "Front",
  19360. image: {
  19361. source: "./media/characters/raf/front.svg",
  19362. extra: 1504/1339,
  19363. bottom: 26/1530
  19364. }
  19365. },
  19366. side: {
  19367. height: math.unit(4 + 11 / 12, "feet"),
  19368. weight: math.unit(114, "lb"),
  19369. name: "Side",
  19370. image: {
  19371. source: "./media/characters/raf/side.svg",
  19372. extra: 1466/1316,
  19373. bottom: 29/1495
  19374. }
  19375. },
  19376. paw: {
  19377. height: math.unit(1.45, "feet"),
  19378. name: "Paw",
  19379. image: {
  19380. source: "./media/characters/raf/paw.svg"
  19381. },
  19382. extraAttributes: {
  19383. "toeSize": {
  19384. name: "Toe Size",
  19385. power: 2,
  19386. type: "area",
  19387. base: math.unit(0.004, "m^2")
  19388. },
  19389. "padSize": {
  19390. name: "Pad Size",
  19391. power: 2,
  19392. type: "area",
  19393. base: math.unit(0.04, "m^2")
  19394. },
  19395. "footSize": {
  19396. name: "Foot Size",
  19397. power: 2,
  19398. type: "area",
  19399. base: math.unit(0.08, "m^2")
  19400. },
  19401. }
  19402. },
  19403. },
  19404. [
  19405. {
  19406. name: "Micro",
  19407. height: math.unit(2, "inches")
  19408. },
  19409. {
  19410. name: "Normal",
  19411. height: math.unit(4 + 11 / 12, "feet"),
  19412. default: true
  19413. },
  19414. {
  19415. name: "Macro",
  19416. height: math.unit(70, "feet")
  19417. },
  19418. ]
  19419. ))
  19420. characterMakers.push(() => makeCharacter(
  19421. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  19422. {
  19423. front: {
  19424. height: math.unit(1.5, "meters"),
  19425. weight: math.unit(68, "kg"),
  19426. name: "Front",
  19427. image: {
  19428. source: "./media/characters/liam-einarr/front.svg",
  19429. extra: 2822 / 2666
  19430. }
  19431. },
  19432. back: {
  19433. height: math.unit(1.5, "meters"),
  19434. weight: math.unit(68, "kg"),
  19435. name: "Back",
  19436. image: {
  19437. source: "./media/characters/liam-einarr/back.svg",
  19438. extra: 2822 / 2666,
  19439. bottom: 0.015
  19440. }
  19441. },
  19442. },
  19443. [
  19444. {
  19445. name: "Normal",
  19446. height: math.unit(1.5, "meters"),
  19447. default: true
  19448. },
  19449. {
  19450. name: "Macro",
  19451. height: math.unit(150, "meters")
  19452. },
  19453. {
  19454. name: "Megamacro",
  19455. height: math.unit(35, "km")
  19456. },
  19457. ]
  19458. ))
  19459. characterMakers.push(() => makeCharacter(
  19460. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  19461. {
  19462. front: {
  19463. height: math.unit(6, "feet"),
  19464. weight: math.unit(75, "kg"),
  19465. name: "Front",
  19466. image: {
  19467. source: "./media/characters/linda/front.svg",
  19468. extra: 930 / 874,
  19469. bottom: 0.004
  19470. }
  19471. },
  19472. },
  19473. [
  19474. {
  19475. name: "Normal",
  19476. height: math.unit(6, "feet"),
  19477. default: true
  19478. },
  19479. ]
  19480. ))
  19481. characterMakers.push(() => makeCharacter(
  19482. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  19483. {
  19484. front: {
  19485. height: math.unit(6 + 8 / 12, "feet"),
  19486. weight: math.unit(220, "lb"),
  19487. name: "Front",
  19488. image: {
  19489. source: "./media/characters/caylex/front.svg",
  19490. extra: 821 / 772,
  19491. bottom: 0.07
  19492. }
  19493. },
  19494. back: {
  19495. height: math.unit(6 + 8 / 12, "feet"),
  19496. weight: math.unit(220, "lb"),
  19497. name: "Back",
  19498. image: {
  19499. source: "./media/characters/caylex/back.svg",
  19500. extra: 821 / 772,
  19501. bottom: 0.022
  19502. }
  19503. },
  19504. hand: {
  19505. height: math.unit(1.25, "feet"),
  19506. name: "Hand",
  19507. image: {
  19508. source: "./media/characters/caylex/hand.svg"
  19509. }
  19510. },
  19511. foot: {
  19512. height: math.unit(1.6, "feet"),
  19513. name: "Foot",
  19514. image: {
  19515. source: "./media/characters/caylex/foot.svg"
  19516. }
  19517. },
  19518. armored: {
  19519. height: math.unit(6 + 8 / 12, "feet"),
  19520. weight: math.unit(250, "lb"),
  19521. name: "Armored",
  19522. image: {
  19523. source: "./media/characters/caylex/armored.svg",
  19524. extra: 1420 / 1310,
  19525. bottom: 0.045
  19526. }
  19527. },
  19528. },
  19529. [
  19530. {
  19531. name: "Normal",
  19532. height: math.unit(6 + 8 / 12, "feet"),
  19533. default: true
  19534. },
  19535. {
  19536. name: "Normal+",
  19537. height: math.unit(12, "feet")
  19538. },
  19539. ]
  19540. ))
  19541. characterMakers.push(() => makeCharacter(
  19542. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19543. {
  19544. front: {
  19545. height: math.unit(7 + 6 / 12, "feet"),
  19546. weight: math.unit(288, "lb"),
  19547. name: "Front",
  19548. image: {
  19549. source: "./media/characters/alana/front.svg",
  19550. extra: 679 / 653,
  19551. bottom: 22.5 / 701
  19552. }
  19553. },
  19554. },
  19555. [
  19556. {
  19557. name: "Normal",
  19558. height: math.unit(7 + 6 / 12, "feet")
  19559. },
  19560. {
  19561. name: "Large",
  19562. height: math.unit(50, "feet")
  19563. },
  19564. {
  19565. name: "Macro",
  19566. height: math.unit(100, "feet"),
  19567. default: true
  19568. },
  19569. {
  19570. name: "Macro+",
  19571. height: math.unit(200, "feet")
  19572. },
  19573. ]
  19574. ))
  19575. characterMakers.push(() => makeCharacter(
  19576. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19577. {
  19578. front: {
  19579. height: math.unit(6 + 1 / 12, "feet"),
  19580. weight: math.unit(210, "lb"),
  19581. name: "Front",
  19582. image: {
  19583. source: "./media/characters/hasani/front.svg",
  19584. extra: 244 / 232,
  19585. bottom: 0.01
  19586. }
  19587. },
  19588. back: {
  19589. height: math.unit(6 + 1 / 12, "feet"),
  19590. weight: math.unit(210, "lb"),
  19591. name: "Back",
  19592. image: {
  19593. source: "./media/characters/hasani/back.svg",
  19594. extra: 244 / 232,
  19595. bottom: 0.01
  19596. }
  19597. },
  19598. },
  19599. [
  19600. {
  19601. name: "Normal",
  19602. height: math.unit(6 + 1 / 12, "feet")
  19603. },
  19604. {
  19605. name: "Macro",
  19606. height: math.unit(175, "feet"),
  19607. default: true
  19608. },
  19609. ]
  19610. ))
  19611. characterMakers.push(() => makeCharacter(
  19612. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19613. {
  19614. front: {
  19615. height: math.unit(1.82, "meters"),
  19616. weight: math.unit(140, "lb"),
  19617. name: "Front",
  19618. image: {
  19619. source: "./media/characters/nita/front.svg",
  19620. extra: 2473 / 2363,
  19621. bottom: 0.01
  19622. }
  19623. },
  19624. },
  19625. [
  19626. {
  19627. name: "Normal",
  19628. height: math.unit(1.82, "m")
  19629. },
  19630. {
  19631. name: "Macro",
  19632. height: math.unit(300, "m")
  19633. },
  19634. {
  19635. name: "Mistake Canon",
  19636. height: math.unit(0.5, "miles"),
  19637. default: true
  19638. },
  19639. {
  19640. name: "Big Mistake",
  19641. height: math.unit(13, "miles")
  19642. },
  19643. {
  19644. name: "Playing God",
  19645. height: math.unit(2450, "miles")
  19646. },
  19647. ]
  19648. ))
  19649. characterMakers.push(() => makeCharacter(
  19650. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19651. {
  19652. front: {
  19653. height: math.unit(4, "feet"),
  19654. weight: math.unit(120, "lb"),
  19655. name: "Front",
  19656. image: {
  19657. source: "./media/characters/shiriko/front.svg",
  19658. extra: 970/934,
  19659. bottom: 5/975
  19660. }
  19661. },
  19662. },
  19663. [
  19664. {
  19665. name: "Normal",
  19666. height: math.unit(4, "feet"),
  19667. default: true
  19668. },
  19669. ]
  19670. ))
  19671. characterMakers.push(() => makeCharacter(
  19672. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19673. {
  19674. front: {
  19675. height: math.unit(6, "feet"),
  19676. name: "front",
  19677. image: {
  19678. source: "./media/characters/deja/front.svg",
  19679. extra: 926 / 840,
  19680. bottom: 0.07
  19681. }
  19682. },
  19683. },
  19684. [
  19685. {
  19686. name: "Planck Length",
  19687. height: math.unit(1.6e-35, "meters")
  19688. },
  19689. {
  19690. name: "Normal",
  19691. height: math.unit(30.48, "meters"),
  19692. default: true
  19693. },
  19694. {
  19695. name: "Universal",
  19696. height: math.unit(8.8e26, "meters")
  19697. },
  19698. ]
  19699. ))
  19700. characterMakers.push(() => makeCharacter(
  19701. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19702. {
  19703. side: {
  19704. height: math.unit(8, "feet"),
  19705. weight: math.unit(6300, "lb"),
  19706. name: "Side",
  19707. image: {
  19708. source: "./media/characters/anima/side.svg",
  19709. bottom: 0.035
  19710. }
  19711. },
  19712. },
  19713. [
  19714. {
  19715. name: "Normal",
  19716. height: math.unit(8, "feet"),
  19717. default: true
  19718. },
  19719. ]
  19720. ))
  19721. characterMakers.push(() => makeCharacter(
  19722. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19723. {
  19724. front: {
  19725. height: math.unit(8, "feet"),
  19726. weight: math.unit(350, "lb"),
  19727. name: "Front",
  19728. image: {
  19729. source: "./media/characters/bianca/front.svg",
  19730. extra: 234 / 225,
  19731. bottom: 0.03
  19732. }
  19733. },
  19734. },
  19735. [
  19736. {
  19737. name: "Normal",
  19738. height: math.unit(8, "feet"),
  19739. default: true
  19740. },
  19741. ]
  19742. ))
  19743. characterMakers.push(() => makeCharacter(
  19744. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19745. {
  19746. front: {
  19747. height: math.unit(11 + 5/12, "feet"),
  19748. weight: math.unit(1200, "lb"),
  19749. name: "Front",
  19750. image: {
  19751. source: "./media/characters/adinia/front.svg",
  19752. extra: 1767/1641,
  19753. bottom: 44/1811
  19754. },
  19755. extraAttributes: {
  19756. "energyIntake": {
  19757. name: "Energy Intake",
  19758. power: 3,
  19759. type: "energy",
  19760. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19761. },
  19762. }
  19763. },
  19764. back: {
  19765. height: math.unit(11 + 5/12, "feet"),
  19766. weight: math.unit(1200, "lb"),
  19767. name: "Back",
  19768. image: {
  19769. source: "./media/characters/adinia/back.svg",
  19770. extra: 1834/1684,
  19771. bottom: 14/1848
  19772. },
  19773. extraAttributes: {
  19774. "energyIntake": {
  19775. name: "Energy Intake",
  19776. power: 3,
  19777. type: "energy",
  19778. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19779. },
  19780. }
  19781. },
  19782. maw: {
  19783. height: math.unit(3.79, "feet"),
  19784. name: "Maw",
  19785. image: {
  19786. source: "./media/characters/adinia/maw.svg"
  19787. }
  19788. },
  19789. rump: {
  19790. height: math.unit(4.6, "feet"),
  19791. name: "Rump",
  19792. image: {
  19793. source: "./media/characters/adinia/rump.svg"
  19794. }
  19795. },
  19796. },
  19797. [
  19798. {
  19799. name: "Normal",
  19800. height: math.unit(11 + 5 / 12, "feet"),
  19801. default: true
  19802. },
  19803. ]
  19804. ))
  19805. characterMakers.push(() => makeCharacter(
  19806. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19807. {
  19808. front: {
  19809. height: math.unit(3, "meters"),
  19810. weight: math.unit(200, "kg"),
  19811. name: "Front",
  19812. image: {
  19813. source: "./media/characters/lykasa/front.svg",
  19814. extra: 1076 / 976,
  19815. bottom: 0.06
  19816. }
  19817. },
  19818. },
  19819. [
  19820. {
  19821. name: "Normal",
  19822. height: math.unit(3, "meters")
  19823. },
  19824. {
  19825. name: "Kaiju",
  19826. height: math.unit(120, "meters"),
  19827. default: true
  19828. },
  19829. {
  19830. name: "Mega Kaiju",
  19831. height: math.unit(240, "km")
  19832. },
  19833. {
  19834. name: "Giga Kaiju",
  19835. height: math.unit(400, "megameters")
  19836. },
  19837. {
  19838. name: "Tera Kaiju",
  19839. height: math.unit(800, "gigameters")
  19840. },
  19841. {
  19842. name: "Kaiju Dragon Goddess",
  19843. height: math.unit(26, "zettaparsecs")
  19844. },
  19845. ]
  19846. ))
  19847. characterMakers.push(() => makeCharacter(
  19848. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19849. {
  19850. side: {
  19851. height: math.unit(283 / 124 * 6, "feet"),
  19852. weight: math.unit(35000, "lb"),
  19853. name: "Side",
  19854. image: {
  19855. source: "./media/characters/malfaren/side.svg",
  19856. extra: 1310/529,
  19857. bottom: 24/1334
  19858. }
  19859. },
  19860. front: {
  19861. height: math.unit(22.36, "feet"),
  19862. weight: math.unit(35000, "lb"),
  19863. name: "Front",
  19864. image: {
  19865. source: "./media/characters/malfaren/front.svg",
  19866. extra: 1237/1115,
  19867. bottom: 32/1269
  19868. }
  19869. },
  19870. maw: {
  19871. height: math.unit(6.9, "feet"),
  19872. name: "Maw",
  19873. image: {
  19874. source: "./media/characters/malfaren/maw.svg"
  19875. }
  19876. },
  19877. dick: {
  19878. height: math.unit(6.19, "feet"),
  19879. name: "Dick",
  19880. image: {
  19881. source: "./media/characters/malfaren/dick.svg"
  19882. }
  19883. },
  19884. eye: {
  19885. height: math.unit(0.69, "feet"),
  19886. name: "Eye",
  19887. image: {
  19888. source: "./media/characters/malfaren/eye.svg"
  19889. }
  19890. },
  19891. },
  19892. [
  19893. {
  19894. name: "Big",
  19895. height: math.unit(283 / 162 * 6, "feet"),
  19896. },
  19897. {
  19898. name: "Bigger",
  19899. height: math.unit(283 / 124 * 6, "feet")
  19900. },
  19901. {
  19902. name: "Massive",
  19903. height: math.unit(283 / 92 * 6, "feet"),
  19904. default: true
  19905. },
  19906. {
  19907. name: "👀💦",
  19908. height: math.unit(283 / 73 * 6, "feet"),
  19909. },
  19910. ]
  19911. ))
  19912. characterMakers.push(() => makeCharacter(
  19913. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19914. {
  19915. front: {
  19916. height: math.unit(1.7, "m"),
  19917. weight: math.unit(70, "kg"),
  19918. name: "Front",
  19919. image: {
  19920. source: "./media/characters/kernel/front.svg",
  19921. extra: 1960/1821,
  19922. bottom: 17/1977
  19923. }
  19924. },
  19925. },
  19926. [
  19927. {
  19928. name: "Nano",
  19929. height: math.unit(17, "micrometers")
  19930. },
  19931. {
  19932. name: "Micro",
  19933. height: math.unit(1.7, "mm")
  19934. },
  19935. {
  19936. name: "Small",
  19937. height: math.unit(1.7, "cm")
  19938. },
  19939. {
  19940. name: "Normal",
  19941. height: math.unit(1.7, "m"),
  19942. default: true
  19943. },
  19944. ]
  19945. ))
  19946. characterMakers.push(() => makeCharacter(
  19947. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19948. {
  19949. front: {
  19950. height: math.unit(1.75, "meters"),
  19951. weight: math.unit(65, "kg"),
  19952. name: "Front",
  19953. image: {
  19954. source: "./media/characters/jayne-folest/front.svg",
  19955. extra: 2115 / 2007,
  19956. bottom: 0.02
  19957. }
  19958. },
  19959. back: {
  19960. height: math.unit(1.75, "meters"),
  19961. weight: math.unit(65, "kg"),
  19962. name: "Back",
  19963. image: {
  19964. source: "./media/characters/jayne-folest/back.svg",
  19965. extra: 2115 / 2007,
  19966. bottom: 0.005
  19967. }
  19968. },
  19969. frontClothed: {
  19970. height: math.unit(1.75, "meters"),
  19971. weight: math.unit(65, "kg"),
  19972. name: "Front (Clothed)",
  19973. image: {
  19974. source: "./media/characters/jayne-folest/front-clothed.svg",
  19975. extra: 2115 / 2007,
  19976. bottom: 0.035
  19977. }
  19978. },
  19979. hand: {
  19980. height: math.unit(1 / 1.260, "feet"),
  19981. name: "Hand",
  19982. image: {
  19983. source: "./media/characters/jayne-folest/hand.svg"
  19984. }
  19985. },
  19986. foot: {
  19987. height: math.unit(1 / 0.918, "feet"),
  19988. name: "Foot",
  19989. image: {
  19990. source: "./media/characters/jayne-folest/foot.svg"
  19991. }
  19992. },
  19993. },
  19994. [
  19995. {
  19996. name: "Micro",
  19997. height: math.unit(4, "cm")
  19998. },
  19999. {
  20000. name: "Normal",
  20001. height: math.unit(1.75, "meters")
  20002. },
  20003. {
  20004. name: "Macro",
  20005. height: math.unit(47.5, "meters"),
  20006. default: true
  20007. },
  20008. ]
  20009. ))
  20010. characterMakers.push(() => makeCharacter(
  20011. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  20012. {
  20013. front: {
  20014. height: math.unit(180, "cm"),
  20015. weight: math.unit(70, "kg"),
  20016. name: "Front",
  20017. image: {
  20018. source: "./media/characters/algier/front.svg",
  20019. extra: 596 / 572,
  20020. bottom: 0.04
  20021. }
  20022. },
  20023. back: {
  20024. height: math.unit(180, "cm"),
  20025. weight: math.unit(70, "kg"),
  20026. name: "Back",
  20027. image: {
  20028. source: "./media/characters/algier/back.svg",
  20029. extra: 596 / 572,
  20030. bottom: 0.025
  20031. }
  20032. },
  20033. frontdressed: {
  20034. height: math.unit(180, "cm"),
  20035. weight: math.unit(150, "kg"),
  20036. name: "Front-dressed",
  20037. image: {
  20038. source: "./media/characters/algier/front-dressed.svg",
  20039. extra: 596 / 572,
  20040. bottom: 0.038
  20041. }
  20042. },
  20043. },
  20044. [
  20045. {
  20046. name: "Micro",
  20047. height: math.unit(5, "cm")
  20048. },
  20049. {
  20050. name: "Normal",
  20051. height: math.unit(180, "cm"),
  20052. default: true
  20053. },
  20054. {
  20055. name: "Macro",
  20056. height: math.unit(64, "m")
  20057. },
  20058. ]
  20059. ))
  20060. characterMakers.push(() => makeCharacter(
  20061. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  20062. {
  20063. upright: {
  20064. height: math.unit(7, "feet"),
  20065. weight: math.unit(300, "lb"),
  20066. name: "Upright",
  20067. image: {
  20068. source: "./media/characters/pretzel/upright.svg",
  20069. extra: 534 / 522,
  20070. bottom: 0.065
  20071. }
  20072. },
  20073. sprawling: {
  20074. height: math.unit(3.75, "feet"),
  20075. weight: math.unit(300, "lb"),
  20076. name: "Sprawling",
  20077. image: {
  20078. source: "./media/characters/pretzel/sprawling.svg",
  20079. extra: 314 / 281,
  20080. bottom: 0.1
  20081. }
  20082. },
  20083. tongue: {
  20084. height: math.unit(2, "feet"),
  20085. name: "Tongue",
  20086. image: {
  20087. source: "./media/characters/pretzel/tongue.svg"
  20088. }
  20089. },
  20090. },
  20091. [
  20092. {
  20093. name: "Normal",
  20094. height: math.unit(7, "feet"),
  20095. default: true
  20096. },
  20097. {
  20098. name: "Oversized",
  20099. height: math.unit(15, "feet")
  20100. },
  20101. {
  20102. name: "Huge",
  20103. height: math.unit(30, "feet")
  20104. },
  20105. {
  20106. name: "Macro",
  20107. height: math.unit(250, "feet")
  20108. },
  20109. ]
  20110. ))
  20111. characterMakers.push(() => makeCharacter(
  20112. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  20113. {
  20114. sideFront: {
  20115. height: math.unit(5 + 2 / 12, "feet"),
  20116. weight: math.unit(120, "lb"),
  20117. name: "Front Side",
  20118. image: {
  20119. source: "./media/characters/roxi/side-front.svg",
  20120. extra: 2924 / 2717,
  20121. bottom: 0.08
  20122. }
  20123. },
  20124. sideBack: {
  20125. height: math.unit(5 + 2 / 12, "feet"),
  20126. weight: math.unit(120, "lb"),
  20127. name: "Back Side",
  20128. image: {
  20129. source: "./media/characters/roxi/side-back.svg",
  20130. extra: 2904 / 2693,
  20131. bottom: 0.06
  20132. }
  20133. },
  20134. front: {
  20135. height: math.unit(5 + 2 / 12, "feet"),
  20136. weight: math.unit(120, "lb"),
  20137. name: "Front",
  20138. image: {
  20139. source: "./media/characters/roxi/front.svg",
  20140. extra: 2028 / 1907,
  20141. bottom: 0.01
  20142. }
  20143. },
  20144. frontAlt: {
  20145. height: math.unit(5 + 2 / 12, "feet"),
  20146. weight: math.unit(120, "lb"),
  20147. name: "Front (Alt)",
  20148. image: {
  20149. source: "./media/characters/roxi/front-alt.svg",
  20150. extra: 1828 / 1798,
  20151. bottom: 0.01
  20152. }
  20153. },
  20154. sitting: {
  20155. height: math.unit(2.8, "feet"),
  20156. weight: math.unit(120, "lb"),
  20157. name: "Sitting",
  20158. image: {
  20159. source: "./media/characters/roxi/sitting.svg",
  20160. extra: 2660 / 2462,
  20161. bottom: 0.1
  20162. }
  20163. },
  20164. },
  20165. [
  20166. {
  20167. name: "Normal",
  20168. height: math.unit(5 + 2 / 12, "feet"),
  20169. default: true
  20170. },
  20171. ]
  20172. ))
  20173. characterMakers.push(() => makeCharacter(
  20174. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  20175. {
  20176. side: {
  20177. height: math.unit(55, "feet"),
  20178. weight: math.unit(153, "tons"),
  20179. name: "Side",
  20180. image: {
  20181. source: "./media/characters/shadow/side.svg",
  20182. extra: 701 / 628,
  20183. bottom: 0.02
  20184. }
  20185. },
  20186. flying: {
  20187. height: math.unit(145, "feet"),
  20188. weight: math.unit(153, "tons"),
  20189. name: "Flying",
  20190. image: {
  20191. source: "./media/characters/shadow/flying.svg"
  20192. }
  20193. },
  20194. },
  20195. [
  20196. {
  20197. name: "Normal",
  20198. height: math.unit(55, "feet"),
  20199. default: true
  20200. },
  20201. ]
  20202. ))
  20203. characterMakers.push(() => makeCharacter(
  20204. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  20205. {
  20206. front: {
  20207. height: math.unit(6, "feet"),
  20208. weight: math.unit(200, "lb"),
  20209. name: "Front",
  20210. image: {
  20211. source: "./media/characters/marcie/front.svg",
  20212. extra: 960 / 876,
  20213. bottom: 58 / 1017.87
  20214. }
  20215. },
  20216. },
  20217. [
  20218. {
  20219. name: "Macro",
  20220. height: math.unit(1, "mile"),
  20221. default: true
  20222. },
  20223. ]
  20224. ))
  20225. characterMakers.push(() => makeCharacter(
  20226. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  20227. {
  20228. front: {
  20229. height: math.unit(7, "feet"),
  20230. weight: math.unit(200, "lb"),
  20231. name: "Front",
  20232. image: {
  20233. source: "./media/characters/kachina/front.svg",
  20234. extra: 3206/2764,
  20235. bottom: 140/3346
  20236. }
  20237. },
  20238. },
  20239. [
  20240. {
  20241. name: "Normal",
  20242. height: math.unit(7, "feet"),
  20243. default: true
  20244. },
  20245. ]
  20246. ))
  20247. characterMakers.push(() => makeCharacter(
  20248. { name: "Kash", species: ["canine"], tags: ["feral"] },
  20249. {
  20250. looking: {
  20251. height: math.unit(2, "meters"),
  20252. weight: math.unit(300, "kg"),
  20253. name: "Looking",
  20254. image: {
  20255. source: "./media/characters/kash/looking.svg",
  20256. extra: 474 / 344,
  20257. bottom: 0.03
  20258. }
  20259. },
  20260. side: {
  20261. height: math.unit(2, "meters"),
  20262. weight: math.unit(300, "kg"),
  20263. name: "Side",
  20264. image: {
  20265. source: "./media/characters/kash/side.svg",
  20266. extra: 302 / 251,
  20267. bottom: 0.03
  20268. }
  20269. },
  20270. front: {
  20271. height: math.unit(2, "meters"),
  20272. weight: math.unit(300, "kg"),
  20273. name: "Front",
  20274. image: {
  20275. source: "./media/characters/kash/front.svg",
  20276. extra: 495 / 360,
  20277. bottom: 0.015
  20278. }
  20279. },
  20280. },
  20281. [
  20282. {
  20283. name: "Normal",
  20284. height: math.unit(2, "meters"),
  20285. default: true
  20286. },
  20287. {
  20288. name: "Big",
  20289. height: math.unit(3, "meters")
  20290. },
  20291. {
  20292. name: "Large",
  20293. height: math.unit(5, "meters")
  20294. },
  20295. ]
  20296. ))
  20297. characterMakers.push(() => makeCharacter(
  20298. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  20299. {
  20300. feeding: {
  20301. height: math.unit(6.7, "feet"),
  20302. weight: math.unit(350, "lb"),
  20303. name: "Feeding",
  20304. image: {
  20305. source: "./media/characters/lalim/feeding.svg",
  20306. }
  20307. },
  20308. },
  20309. [
  20310. {
  20311. name: "Normal",
  20312. height: math.unit(6.7, "feet"),
  20313. default: true
  20314. },
  20315. ]
  20316. ))
  20317. characterMakers.push(() => makeCharacter(
  20318. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  20319. {
  20320. front: {
  20321. height: math.unit(9.5, "feet"),
  20322. weight: math.unit(600, "lb"),
  20323. name: "Front",
  20324. image: {
  20325. source: "./media/characters/de'vout/front.svg",
  20326. extra: 1443 / 1328,
  20327. bottom: 0.025
  20328. }
  20329. },
  20330. back: {
  20331. height: math.unit(9.5, "feet"),
  20332. weight: math.unit(600, "lb"),
  20333. name: "Back",
  20334. image: {
  20335. source: "./media/characters/de'vout/back.svg",
  20336. extra: 1443 / 1328
  20337. }
  20338. },
  20339. frontDressed: {
  20340. height: math.unit(9.5, "feet"),
  20341. weight: math.unit(600, "lb"),
  20342. name: "Front (Dressed",
  20343. image: {
  20344. source: "./media/characters/de'vout/front-dressed.svg",
  20345. extra: 1443 / 1328,
  20346. bottom: 0.025
  20347. }
  20348. },
  20349. backDressed: {
  20350. height: math.unit(9.5, "feet"),
  20351. weight: math.unit(600, "lb"),
  20352. name: "Back (Dressed",
  20353. image: {
  20354. source: "./media/characters/de'vout/back-dressed.svg",
  20355. extra: 1443 / 1328
  20356. }
  20357. },
  20358. },
  20359. [
  20360. {
  20361. name: "Normal",
  20362. height: math.unit(9.5, "feet"),
  20363. default: true
  20364. },
  20365. ]
  20366. ))
  20367. characterMakers.push(() => makeCharacter(
  20368. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  20369. {
  20370. front: {
  20371. height: math.unit(8, "feet"),
  20372. weight: math.unit(225, "lb"),
  20373. name: "Front",
  20374. image: {
  20375. source: "./media/characters/talana/front.svg",
  20376. extra: 1410 / 1300,
  20377. bottom: 0.015
  20378. }
  20379. },
  20380. frontDressed: {
  20381. height: math.unit(8, "feet"),
  20382. weight: math.unit(225, "lb"),
  20383. name: "Front (Dressed",
  20384. image: {
  20385. source: "./media/characters/talana/front-dressed.svg",
  20386. extra: 1410 / 1300,
  20387. bottom: 0.015
  20388. }
  20389. },
  20390. },
  20391. [
  20392. {
  20393. name: "Normal",
  20394. height: math.unit(8, "feet"),
  20395. default: true
  20396. },
  20397. ]
  20398. ))
  20399. characterMakers.push(() => makeCharacter(
  20400. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  20401. {
  20402. side: {
  20403. height: math.unit(7.2, "feet"),
  20404. weight: math.unit(150, "lb"),
  20405. name: "Side",
  20406. image: {
  20407. source: "./media/characters/xeauvok/side.svg",
  20408. extra: 1975 / 1523,
  20409. bottom: 0.07
  20410. }
  20411. },
  20412. },
  20413. [
  20414. {
  20415. name: "Normal",
  20416. height: math.unit(7.2, "feet"),
  20417. default: true
  20418. },
  20419. ]
  20420. ))
  20421. characterMakers.push(() => makeCharacter(
  20422. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  20423. {
  20424. side: {
  20425. height: math.unit(4, "meters"),
  20426. weight: math.unit(2200, "kg"),
  20427. name: "Side",
  20428. image: {
  20429. source: "./media/characters/zara/side.svg",
  20430. extra: 765/744,
  20431. bottom: 156/921
  20432. }
  20433. },
  20434. },
  20435. [
  20436. {
  20437. name: "Normal",
  20438. height: math.unit(4, "meters"),
  20439. default: true
  20440. },
  20441. ]
  20442. ))
  20443. characterMakers.push(() => makeCharacter(
  20444. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  20445. {
  20446. side: {
  20447. height: math.unit(6, "feet"),
  20448. weight: math.unit(150, "lb"),
  20449. name: "Side",
  20450. image: {
  20451. source: "./media/characters/richard-dragon/side.svg",
  20452. extra: 845 / 340,
  20453. bottom: 0.017
  20454. }
  20455. },
  20456. maw: {
  20457. height: math.unit(2.97, "feet"),
  20458. name: "Maw",
  20459. image: {
  20460. source: "./media/characters/richard-dragon/maw.svg"
  20461. }
  20462. },
  20463. },
  20464. [
  20465. ]
  20466. ))
  20467. characterMakers.push(() => makeCharacter(
  20468. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  20469. {
  20470. front: {
  20471. height: math.unit(4, "feet"),
  20472. weight: math.unit(100, "lb"),
  20473. name: "Front",
  20474. image: {
  20475. source: "./media/characters/richard-smeargle/front.svg",
  20476. extra: 2952 / 2820,
  20477. bottom: 0.028
  20478. }
  20479. },
  20480. },
  20481. [
  20482. {
  20483. name: "Normal",
  20484. height: math.unit(4, "feet"),
  20485. default: true
  20486. },
  20487. {
  20488. name: "Dynamax",
  20489. height: math.unit(20, "meters")
  20490. },
  20491. ]
  20492. ))
  20493. characterMakers.push(() => makeCharacter(
  20494. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  20495. {
  20496. front: {
  20497. height: math.unit(6, "feet"),
  20498. weight: math.unit(110, "lb"),
  20499. name: "Front",
  20500. image: {
  20501. source: "./media/characters/klay/front.svg",
  20502. extra: 962 / 883,
  20503. bottom: 0.04
  20504. }
  20505. },
  20506. back: {
  20507. height: math.unit(6, "feet"),
  20508. weight: math.unit(110, "lb"),
  20509. name: "Back",
  20510. image: {
  20511. source: "./media/characters/klay/back.svg",
  20512. extra: 962 / 883
  20513. }
  20514. },
  20515. beans: {
  20516. height: math.unit(1.15, "feet"),
  20517. name: "Beans",
  20518. image: {
  20519. source: "./media/characters/klay/beans.svg"
  20520. }
  20521. },
  20522. },
  20523. [
  20524. {
  20525. name: "Micro",
  20526. height: math.unit(6, "inches")
  20527. },
  20528. {
  20529. name: "Mini",
  20530. height: math.unit(3, "feet")
  20531. },
  20532. {
  20533. name: "Normal",
  20534. height: math.unit(6, "feet"),
  20535. default: true
  20536. },
  20537. {
  20538. name: "Big",
  20539. height: math.unit(25, "feet")
  20540. },
  20541. {
  20542. name: "Macro",
  20543. height: math.unit(100, "feet")
  20544. },
  20545. {
  20546. name: "Megamacro",
  20547. height: math.unit(400, "feet")
  20548. },
  20549. ]
  20550. ))
  20551. characterMakers.push(() => makeCharacter(
  20552. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20553. {
  20554. front: {
  20555. height: math.unit(6, "feet"),
  20556. weight: math.unit(160, "lb"),
  20557. name: "Front",
  20558. image: {
  20559. source: "./media/characters/marcus/front.svg",
  20560. extra: 734 / 676,
  20561. bottom: 0.03
  20562. }
  20563. },
  20564. },
  20565. [
  20566. {
  20567. name: "Little",
  20568. height: math.unit(6, "feet")
  20569. },
  20570. {
  20571. name: "Normal",
  20572. height: math.unit(110, "feet"),
  20573. default: true
  20574. },
  20575. {
  20576. name: "Macro",
  20577. height: math.unit(250, "feet")
  20578. },
  20579. {
  20580. name: "Megamacro",
  20581. height: math.unit(1000, "feet")
  20582. },
  20583. ]
  20584. ))
  20585. characterMakers.push(() => makeCharacter(
  20586. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20587. {
  20588. front: {
  20589. height: math.unit(7, "feet"),
  20590. weight: math.unit(275, "lb"),
  20591. name: "Front",
  20592. image: {
  20593. source: "./media/characters/claude-delroute/front.svg",
  20594. extra: 902/827,
  20595. bottom: 26/928
  20596. }
  20597. },
  20598. side: {
  20599. height: math.unit(7, "feet"),
  20600. weight: math.unit(275, "lb"),
  20601. name: "Side",
  20602. image: {
  20603. source: "./media/characters/claude-delroute/side.svg",
  20604. extra: 908/853,
  20605. bottom: 16/924
  20606. }
  20607. },
  20608. back: {
  20609. height: math.unit(7, "feet"),
  20610. weight: math.unit(275, "lb"),
  20611. name: "Back",
  20612. image: {
  20613. source: "./media/characters/claude-delroute/back.svg",
  20614. extra: 911/829,
  20615. bottom: 18/929
  20616. }
  20617. },
  20618. maw: {
  20619. height: math.unit(0.6407, "meters"),
  20620. name: "Maw",
  20621. image: {
  20622. source: "./media/characters/claude-delroute/maw.svg"
  20623. }
  20624. },
  20625. },
  20626. [
  20627. {
  20628. name: "Normal",
  20629. height: math.unit(7, "feet"),
  20630. default: true
  20631. },
  20632. {
  20633. name: "Lorge",
  20634. height: math.unit(20, "feet")
  20635. },
  20636. ]
  20637. ))
  20638. characterMakers.push(() => makeCharacter(
  20639. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20640. {
  20641. front: {
  20642. height: math.unit(8 + 4 / 12, "feet"),
  20643. weight: math.unit(600, "lb"),
  20644. name: "Front",
  20645. image: {
  20646. source: "./media/characters/dragonien/front.svg",
  20647. extra: 100 / 94,
  20648. bottom: 3.3 / 103.3445
  20649. }
  20650. },
  20651. back: {
  20652. height: math.unit(8 + 4 / 12, "feet"),
  20653. weight: math.unit(600, "lb"),
  20654. name: "Back",
  20655. image: {
  20656. source: "./media/characters/dragonien/back.svg",
  20657. extra: 776 / 746,
  20658. bottom: 6.4 / 782.0616
  20659. }
  20660. },
  20661. foot: {
  20662. height: math.unit(1.54, "feet"),
  20663. name: "Foot",
  20664. image: {
  20665. source: "./media/characters/dragonien/foot.svg",
  20666. }
  20667. },
  20668. },
  20669. [
  20670. {
  20671. name: "Normal",
  20672. height: math.unit(8 + 4 / 12, "feet"),
  20673. default: true
  20674. },
  20675. {
  20676. name: "Macro",
  20677. height: math.unit(200, "feet")
  20678. },
  20679. {
  20680. name: "Megamacro",
  20681. height: math.unit(1, "mile")
  20682. },
  20683. {
  20684. name: "Gigamacro",
  20685. height: math.unit(1000, "miles")
  20686. },
  20687. ]
  20688. ))
  20689. characterMakers.push(() => makeCharacter(
  20690. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20691. {
  20692. front: {
  20693. height: math.unit(5 + 2 / 12, "feet"),
  20694. weight: math.unit(110, "lb"),
  20695. name: "Front",
  20696. image: {
  20697. source: "./media/characters/desta/front.svg",
  20698. extra: 767 / 726,
  20699. bottom: 11.7 / 779
  20700. }
  20701. },
  20702. back: {
  20703. height: math.unit(5 + 2 / 12, "feet"),
  20704. weight: math.unit(110, "lb"),
  20705. name: "Back",
  20706. image: {
  20707. source: "./media/characters/desta/back.svg",
  20708. extra: 777 / 728,
  20709. bottom: 6 / 784
  20710. }
  20711. },
  20712. frontAlt: {
  20713. height: math.unit(5 + 2 / 12, "feet"),
  20714. weight: math.unit(110, "lb"),
  20715. name: "Front",
  20716. image: {
  20717. source: "./media/characters/desta/front-alt.svg",
  20718. extra: 1482 / 1417
  20719. }
  20720. },
  20721. side: {
  20722. height: math.unit(5 + 2 / 12, "feet"),
  20723. weight: math.unit(110, "lb"),
  20724. name: "Side",
  20725. image: {
  20726. source: "./media/characters/desta/side.svg",
  20727. extra: 2579 / 2491,
  20728. bottom: 0.053
  20729. }
  20730. },
  20731. },
  20732. [
  20733. {
  20734. name: "Micro",
  20735. height: math.unit(6, "inches")
  20736. },
  20737. {
  20738. name: "Normal",
  20739. height: math.unit(5 + 2 / 12, "feet"),
  20740. default: true
  20741. },
  20742. {
  20743. name: "Macro",
  20744. height: math.unit(62, "feet")
  20745. },
  20746. {
  20747. name: "Megamacro",
  20748. height: math.unit(1800, "feet")
  20749. },
  20750. ]
  20751. ))
  20752. characterMakers.push(() => makeCharacter(
  20753. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20754. {
  20755. front: {
  20756. height: math.unit(10, "feet"),
  20757. weight: math.unit(700, "lb"),
  20758. name: "Front",
  20759. image: {
  20760. source: "./media/characters/storm-alystar/front.svg",
  20761. extra: 2112 / 1898,
  20762. bottom: 0.034
  20763. }
  20764. },
  20765. },
  20766. [
  20767. {
  20768. name: "Micro",
  20769. height: math.unit(3.5, "inches")
  20770. },
  20771. {
  20772. name: "Normal",
  20773. height: math.unit(10, "feet"),
  20774. default: true
  20775. },
  20776. {
  20777. name: "Macro",
  20778. height: math.unit(400, "feet")
  20779. },
  20780. {
  20781. name: "Deific",
  20782. height: math.unit(60, "miles")
  20783. },
  20784. ]
  20785. ))
  20786. characterMakers.push(() => makeCharacter(
  20787. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20788. {
  20789. front: {
  20790. height: math.unit(2.35, "meters"),
  20791. weight: math.unit(119, "kg"),
  20792. name: "Front",
  20793. image: {
  20794. source: "./media/characters/ilia/front.svg",
  20795. extra: 1285 / 1255,
  20796. bottom: 0.06
  20797. }
  20798. },
  20799. },
  20800. [
  20801. {
  20802. name: "Normal",
  20803. height: math.unit(2.35, "meters")
  20804. },
  20805. {
  20806. name: "Macro",
  20807. height: math.unit(140, "meters"),
  20808. default: true
  20809. },
  20810. {
  20811. name: "Megamacro",
  20812. height: math.unit(100, "miles")
  20813. },
  20814. ]
  20815. ))
  20816. characterMakers.push(() => makeCharacter(
  20817. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20818. {
  20819. front: {
  20820. height: math.unit(6 + 5 / 12, "feet"),
  20821. weight: math.unit(190, "lb"),
  20822. name: "Front",
  20823. image: {
  20824. source: "./media/characters/kingdead/front.svg",
  20825. extra: 1228 / 1177
  20826. }
  20827. },
  20828. },
  20829. [
  20830. {
  20831. name: "Micro",
  20832. height: math.unit(7, "inches")
  20833. },
  20834. {
  20835. name: "Normal",
  20836. height: math.unit(6 + 5 / 12, "feet")
  20837. },
  20838. {
  20839. name: "Macro",
  20840. height: math.unit(150, "feet"),
  20841. default: true
  20842. },
  20843. {
  20844. name: "Megamacro",
  20845. height: math.unit(200, "miles")
  20846. },
  20847. ]
  20848. ))
  20849. characterMakers.push(() => makeCharacter(
  20850. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20851. {
  20852. front: {
  20853. height: math.unit(8, "feet"),
  20854. weight: math.unit(600, "lb"),
  20855. name: "Front",
  20856. image: {
  20857. source: "./media/characters/kyrehx/front.svg",
  20858. extra: 1195 / 1095,
  20859. bottom: 0.034
  20860. }
  20861. },
  20862. },
  20863. [
  20864. {
  20865. name: "Micro",
  20866. height: math.unit(2, "inches")
  20867. },
  20868. {
  20869. name: "Normal",
  20870. height: math.unit(8, "feet"),
  20871. default: true
  20872. },
  20873. {
  20874. name: "Macro",
  20875. height: math.unit(255, "feet")
  20876. },
  20877. ]
  20878. ))
  20879. characterMakers.push(() => makeCharacter(
  20880. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20881. {
  20882. front: {
  20883. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20884. weight: math.unit(184, "lb"),
  20885. name: "Front",
  20886. image: {
  20887. source: "./media/characters/xang/front.svg",
  20888. extra: 845 / 755
  20889. }
  20890. },
  20891. },
  20892. [
  20893. {
  20894. name: "Normal",
  20895. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20896. default: true
  20897. },
  20898. {
  20899. name: "Macro",
  20900. height: math.unit(0.935 * 146, "feet")
  20901. },
  20902. {
  20903. name: "Megamacro",
  20904. height: math.unit(0.935 * 3, "miles")
  20905. },
  20906. ]
  20907. ))
  20908. characterMakers.push(() => makeCharacter(
  20909. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20910. {
  20911. frontDressed: {
  20912. height: math.unit(5 + 7 / 12, "feet"),
  20913. weight: math.unit(140, "lb"),
  20914. name: "Front (Dressed)",
  20915. image: {
  20916. source: "./media/characters/doc-weardno/front-dressed.svg",
  20917. extra: 263 / 234
  20918. }
  20919. },
  20920. backDressed: {
  20921. height: math.unit(5 + 7 / 12, "feet"),
  20922. weight: math.unit(140, "lb"),
  20923. name: "Back (Dressed)",
  20924. image: {
  20925. source: "./media/characters/doc-weardno/back-dressed.svg",
  20926. extra: 266 / 238
  20927. }
  20928. },
  20929. front: {
  20930. height: math.unit(5 + 7 / 12, "feet"),
  20931. weight: math.unit(140, "lb"),
  20932. name: "Front",
  20933. image: {
  20934. source: "./media/characters/doc-weardno/front.svg",
  20935. extra: 254 / 233
  20936. }
  20937. },
  20938. },
  20939. [
  20940. {
  20941. name: "Micro",
  20942. height: math.unit(3, "inches")
  20943. },
  20944. {
  20945. name: "Normal",
  20946. height: math.unit(5 + 7 / 12, "feet"),
  20947. default: true
  20948. },
  20949. {
  20950. name: "Macro",
  20951. height: math.unit(25, "feet")
  20952. },
  20953. {
  20954. name: "Megamacro",
  20955. height: math.unit(2, "miles")
  20956. },
  20957. ]
  20958. ))
  20959. characterMakers.push(() => makeCharacter(
  20960. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20961. {
  20962. front: {
  20963. height: math.unit(6 + 2 / 12, "feet"),
  20964. weight: math.unit(153, "lb"),
  20965. name: "Front",
  20966. image: {
  20967. source: "./media/characters/seth-whilst/front.svg",
  20968. bottom: 0.07
  20969. }
  20970. },
  20971. },
  20972. [
  20973. {
  20974. name: "Micro",
  20975. height: math.unit(5, "inches")
  20976. },
  20977. {
  20978. name: "Normal",
  20979. height: math.unit(6 + 2 / 12, "feet"),
  20980. default: true
  20981. },
  20982. ]
  20983. ))
  20984. characterMakers.push(() => makeCharacter(
  20985. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20986. {
  20987. front: {
  20988. height: math.unit(3, "inches"),
  20989. weight: math.unit(8, "grams"),
  20990. name: "Front",
  20991. image: {
  20992. source: "./media/characters/pocket-jabari/front.svg",
  20993. extra: 1024 / 974,
  20994. bottom: 0.039
  20995. }
  20996. },
  20997. },
  20998. [
  20999. {
  21000. name: "Minimicro",
  21001. height: math.unit(8, "mm")
  21002. },
  21003. {
  21004. name: "Micro",
  21005. height: math.unit(3, "inches"),
  21006. default: true
  21007. },
  21008. {
  21009. name: "Normal",
  21010. height: math.unit(3, "feet")
  21011. },
  21012. ]
  21013. ))
  21014. characterMakers.push(() => makeCharacter(
  21015. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  21016. {
  21017. frontDressed: {
  21018. height: math.unit(15, "feet"),
  21019. weight: math.unit(3280, "lb"),
  21020. name: "Front (Dressed)",
  21021. image: {
  21022. source: "./media/characters/sapphy/front-dressed.svg",
  21023. extra: 1951/1654,
  21024. bottom: 194/2145
  21025. },
  21026. form: "anthro",
  21027. default: true
  21028. },
  21029. backDressed: {
  21030. height: math.unit(15, "feet"),
  21031. weight: math.unit(3280, "lb"),
  21032. name: "Back (Dressed)",
  21033. image: {
  21034. source: "./media/characters/sapphy/back-dressed.svg",
  21035. extra: 2058/1918,
  21036. bottom: 125/2183
  21037. },
  21038. form: "anthro"
  21039. },
  21040. frontNude: {
  21041. height: math.unit(15, "feet"),
  21042. weight: math.unit(3280, "lb"),
  21043. name: "Front (Nude)",
  21044. image: {
  21045. source: "./media/characters/sapphy/front-nude.svg",
  21046. extra: 1951/1654,
  21047. bottom: 194/2145
  21048. },
  21049. form: "anthro"
  21050. },
  21051. backNude: {
  21052. height: math.unit(15, "feet"),
  21053. weight: math.unit(3280, "lb"),
  21054. name: "Back (Nude)",
  21055. image: {
  21056. source: "./media/characters/sapphy/back-nude.svg",
  21057. extra: 2058/1918,
  21058. bottom: 125/2183
  21059. },
  21060. form: "anthro"
  21061. },
  21062. full: {
  21063. height: math.unit(15, "feet"),
  21064. weight: math.unit(3280, "lb"),
  21065. name: "Full",
  21066. image: {
  21067. source: "./media/characters/sapphy/full.svg",
  21068. extra: 1396/1317,
  21069. bottom: 44/1440
  21070. },
  21071. form: "anthro"
  21072. },
  21073. dick: {
  21074. height: math.unit(3.8, "feet"),
  21075. name: "Dick",
  21076. image: {
  21077. source: "./media/characters/sapphy/dick.svg"
  21078. },
  21079. form: "anthro"
  21080. },
  21081. feral: {
  21082. height: math.unit(35, "feet"),
  21083. weight: math.unit(160, "tons"),
  21084. name: "Feral",
  21085. image: {
  21086. source: "./media/characters/sapphy/feral.svg",
  21087. extra: 1050/573,
  21088. bottom: 60/1110
  21089. },
  21090. form: "feral",
  21091. default: true
  21092. },
  21093. },
  21094. [
  21095. {
  21096. name: "Normal",
  21097. height: math.unit(15, "feet"),
  21098. form: "anthro"
  21099. },
  21100. {
  21101. name: "Casual Macro",
  21102. height: math.unit(120, "feet"),
  21103. form: "anthro"
  21104. },
  21105. {
  21106. name: "Macro",
  21107. height: math.unit(2150, "feet"),
  21108. default: true,
  21109. form: "anthro"
  21110. },
  21111. {
  21112. name: "Megamacro",
  21113. height: math.unit(8, "miles"),
  21114. form: "anthro"
  21115. },
  21116. {
  21117. name: "Galaxy Mom",
  21118. height: math.unit(6, "megalightyears"),
  21119. form: "anthro"
  21120. },
  21121. {
  21122. name: "Normal",
  21123. height: math.unit(35, "feet"),
  21124. form: "feral",
  21125. default: true
  21126. },
  21127. {
  21128. name: "Macro",
  21129. height: math.unit(300, "feet"),
  21130. form: "feral"
  21131. },
  21132. {
  21133. name: "Galaxy Mom",
  21134. height: math.unit(10, "megalightyears"),
  21135. form: "feral"
  21136. },
  21137. ],
  21138. {
  21139. "anthro": {
  21140. name: "Anthro",
  21141. default: true
  21142. },
  21143. "feral": {
  21144. name: "Feral"
  21145. }
  21146. }
  21147. ))
  21148. characterMakers.push(() => makeCharacter(
  21149. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  21150. {
  21151. hyenaFront: {
  21152. height: math.unit(6, "feet"),
  21153. weight: math.unit(190, "lb"),
  21154. name: "Front",
  21155. image: {
  21156. source: "./media/characters/kiro/hyena-front.svg",
  21157. extra: 927/839,
  21158. bottom: 91/1018
  21159. },
  21160. form: "hyena",
  21161. default: true
  21162. },
  21163. front: {
  21164. height: math.unit(6, "feet"),
  21165. weight: math.unit(170, "lb"),
  21166. name: "Front",
  21167. image: {
  21168. source: "./media/characters/kiro/front.svg",
  21169. extra: 1064 / 1012,
  21170. bottom: 0.052
  21171. },
  21172. form: "folf",
  21173. default: true
  21174. },
  21175. },
  21176. [
  21177. {
  21178. name: "Micro",
  21179. height: math.unit(6, "inches"),
  21180. form: "folf"
  21181. },
  21182. {
  21183. name: "Normal",
  21184. height: math.unit(6, "feet"),
  21185. form: "folf",
  21186. default: true
  21187. },
  21188. {
  21189. name: "Macro",
  21190. height: math.unit(72, "feet"),
  21191. form: "folf"
  21192. },
  21193. {
  21194. name: "Micro",
  21195. height: math.unit(6, "inches"),
  21196. form: "hyena"
  21197. },
  21198. {
  21199. name: "Normal",
  21200. height: math.unit(6, "feet"),
  21201. form: "hyena",
  21202. default: true
  21203. },
  21204. {
  21205. name: "Macro",
  21206. height: math.unit(72, "feet"),
  21207. form: "hyena"
  21208. },
  21209. ],
  21210. {
  21211. "hyena": {
  21212. name: "Hyena",
  21213. default: true
  21214. },
  21215. "folf": {
  21216. name: "Folf",
  21217. },
  21218. }
  21219. ))
  21220. characterMakers.push(() => makeCharacter(
  21221. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  21222. {
  21223. front: {
  21224. height: math.unit(5 + 9 / 12, "feet"),
  21225. weight: math.unit(175, "lb"),
  21226. name: "Front",
  21227. image: {
  21228. source: "./media/characters/irishfox/front.svg",
  21229. extra: 1912 / 1680,
  21230. bottom: 0.02
  21231. }
  21232. },
  21233. },
  21234. [
  21235. {
  21236. name: "Nano",
  21237. height: math.unit(1, "mm")
  21238. },
  21239. {
  21240. name: "Micro",
  21241. height: math.unit(2, "inches")
  21242. },
  21243. {
  21244. name: "Normal",
  21245. height: math.unit(5 + 9 / 12, "feet"),
  21246. default: true
  21247. },
  21248. {
  21249. name: "Macro",
  21250. height: math.unit(45, "feet")
  21251. },
  21252. ]
  21253. ))
  21254. characterMakers.push(() => makeCharacter(
  21255. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  21256. {
  21257. front: {
  21258. height: math.unit(6 + 1 / 12, "feet"),
  21259. weight: math.unit(75, "lb"),
  21260. name: "Front",
  21261. image: {
  21262. source: "./media/characters/aronai-sieyes/front.svg",
  21263. extra: 1532/1450,
  21264. bottom: 42/1574
  21265. }
  21266. },
  21267. side: {
  21268. height: math.unit(6 + 1 / 12, "feet"),
  21269. weight: math.unit(75, "lb"),
  21270. name: "Side",
  21271. image: {
  21272. source: "./media/characters/aronai-sieyes/side.svg",
  21273. extra: 1422/1365,
  21274. bottom: 148/1570
  21275. }
  21276. },
  21277. back: {
  21278. height: math.unit(6 + 1 / 12, "feet"),
  21279. weight: math.unit(75, "lb"),
  21280. name: "Back",
  21281. image: {
  21282. source: "./media/characters/aronai-sieyes/back.svg",
  21283. extra: 1526/1464,
  21284. bottom: 51/1577
  21285. }
  21286. },
  21287. dressed: {
  21288. height: math.unit(6 + 1 / 12, "feet"),
  21289. weight: math.unit(75, "lb"),
  21290. name: "Dressed",
  21291. image: {
  21292. source: "./media/characters/aronai-sieyes/dressed.svg",
  21293. extra: 1559/1483,
  21294. bottom: 39/1598
  21295. }
  21296. },
  21297. slit: {
  21298. height: math.unit(1.3, "feet"),
  21299. name: "Slit",
  21300. image: {
  21301. source: "./media/characters/aronai-sieyes/slit.svg"
  21302. }
  21303. },
  21304. slitSpread: {
  21305. height: math.unit(0.9, "feet"),
  21306. name: "Slit (Spread)",
  21307. image: {
  21308. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  21309. }
  21310. },
  21311. rump: {
  21312. height: math.unit(1.3, "feet"),
  21313. name: "Rump",
  21314. image: {
  21315. source: "./media/characters/aronai-sieyes/rump.svg"
  21316. }
  21317. },
  21318. maw: {
  21319. height: math.unit(1.25, "feet"),
  21320. name: "Maw",
  21321. image: {
  21322. source: "./media/characters/aronai-sieyes/maw.svg"
  21323. }
  21324. },
  21325. feral: {
  21326. height: math.unit(18, "feet"),
  21327. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  21328. name: "Feral",
  21329. image: {
  21330. source: "./media/characters/aronai-sieyes/feral.svg",
  21331. extra: 1530 / 1240,
  21332. bottom: 0.035
  21333. }
  21334. },
  21335. },
  21336. [
  21337. {
  21338. name: "Micro",
  21339. height: math.unit(2, "inches")
  21340. },
  21341. {
  21342. name: "Normal",
  21343. height: math.unit(6 + 1 / 12, "feet"),
  21344. default: true
  21345. }
  21346. ]
  21347. ))
  21348. characterMakers.push(() => makeCharacter(
  21349. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  21350. {
  21351. front: {
  21352. height: math.unit(12, "feet"),
  21353. weight: math.unit(410, "kg"),
  21354. name: "Front",
  21355. image: {
  21356. source: "./media/characters/xuna/front.svg",
  21357. extra: 2184 / 1980
  21358. }
  21359. },
  21360. side: {
  21361. height: math.unit(12, "feet"),
  21362. weight: math.unit(410, "kg"),
  21363. name: "Side",
  21364. image: {
  21365. source: "./media/characters/xuna/side.svg",
  21366. extra: 2184 / 1980
  21367. }
  21368. },
  21369. back: {
  21370. height: math.unit(12, "feet"),
  21371. weight: math.unit(410, "kg"),
  21372. name: "Back",
  21373. image: {
  21374. source: "./media/characters/xuna/back.svg",
  21375. extra: 2184 / 1980
  21376. }
  21377. },
  21378. },
  21379. [
  21380. {
  21381. name: "Nano glow",
  21382. height: math.unit(10, "nm")
  21383. },
  21384. {
  21385. name: "Micro floof",
  21386. height: math.unit(0.3, "m")
  21387. },
  21388. {
  21389. name: "Huggable softy boi",
  21390. height: math.unit(3.6576, "m"),
  21391. default: true
  21392. },
  21393. {
  21394. name: "Admirable floof",
  21395. height: math.unit(80, "meters")
  21396. },
  21397. {
  21398. name: "Gentle macro",
  21399. height: math.unit(300, "meters")
  21400. },
  21401. {
  21402. name: "Very careful floof",
  21403. height: math.unit(3200, "meters")
  21404. },
  21405. {
  21406. name: "The mega floof",
  21407. height: math.unit(36000, "meters")
  21408. },
  21409. {
  21410. name: "Giga-fur-Wicker",
  21411. height: math.unit(4800000, "meters")
  21412. },
  21413. {
  21414. name: "Licky world",
  21415. height: math.unit(20000000, "meters")
  21416. },
  21417. {
  21418. name: "Floofy cyan sun",
  21419. height: math.unit(1500000000, "meters")
  21420. },
  21421. {
  21422. name: "Milky Wicker",
  21423. height: math.unit(1000000000000000000000, "meters")
  21424. },
  21425. {
  21426. name: "The observing Wicker",
  21427. height: math.unit(999999999999999999999999999, "meters")
  21428. },
  21429. ]
  21430. ))
  21431. characterMakers.push(() => makeCharacter(
  21432. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21433. {
  21434. front: {
  21435. height: math.unit(5 + 9 / 12, "feet"),
  21436. weight: math.unit(150, "lb"),
  21437. name: "Front",
  21438. image: {
  21439. source: "./media/characters/arokha-sieyes/front.svg",
  21440. extra: 1425 / 1284,
  21441. bottom: 0.05
  21442. }
  21443. },
  21444. },
  21445. [
  21446. {
  21447. name: "Normal",
  21448. height: math.unit(5 + 9 / 12, "feet")
  21449. },
  21450. {
  21451. name: "Macro",
  21452. height: math.unit(30, "meters"),
  21453. default: true
  21454. },
  21455. ]
  21456. ))
  21457. characterMakers.push(() => makeCharacter(
  21458. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21459. {
  21460. front: {
  21461. height: math.unit(6, "feet"),
  21462. weight: math.unit(180, "lb"),
  21463. name: "Front",
  21464. image: {
  21465. source: "./media/characters/arokh-sieyes/front.svg",
  21466. extra: 1830 / 1769,
  21467. bottom: 0.01
  21468. }
  21469. },
  21470. },
  21471. [
  21472. {
  21473. name: "Normal",
  21474. height: math.unit(6, "feet")
  21475. },
  21476. {
  21477. name: "Macro",
  21478. height: math.unit(30, "meters"),
  21479. default: true
  21480. },
  21481. ]
  21482. ))
  21483. characterMakers.push(() => makeCharacter(
  21484. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  21485. {
  21486. side: {
  21487. height: math.unit(13 + 1 / 12, "feet"),
  21488. weight: math.unit(8.5, "tonnes"),
  21489. preyCapacity: math.unit(36, "people"),
  21490. name: "Side",
  21491. image: {
  21492. source: "./media/characters/goldeneye/side.svg",
  21493. extra: 1139/741,
  21494. bottom: 98/1237
  21495. }
  21496. },
  21497. front: {
  21498. height: math.unit(5.1, "feet"),
  21499. weight: math.unit(8.5, "tonnes"),
  21500. preyCapacity: math.unit(36, "people"),
  21501. name: "Front",
  21502. image: {
  21503. source: "./media/characters/goldeneye/front.svg",
  21504. extra: 635/365,
  21505. bottom: 598/1233
  21506. }
  21507. },
  21508. maw: {
  21509. height: math.unit(6.6, "feet"),
  21510. name: "Maw",
  21511. image: {
  21512. source: "./media/characters/goldeneye/maw.svg"
  21513. }
  21514. },
  21515. headFront: {
  21516. height: math.unit(8, "feet"),
  21517. name: "Head (Front)",
  21518. image: {
  21519. source: "./media/characters/goldeneye/head-front.svg"
  21520. }
  21521. },
  21522. headSide: {
  21523. height: math.unit(6, "feet"),
  21524. name: "Head (Side)",
  21525. image: {
  21526. source: "./media/characters/goldeneye/head-side.svg"
  21527. }
  21528. },
  21529. headBack: {
  21530. height: math.unit(8, "feet"),
  21531. name: "Head (Back)",
  21532. image: {
  21533. source: "./media/characters/goldeneye/head-back.svg"
  21534. }
  21535. },
  21536. paw: {
  21537. height: math.unit(3.4, "feet"),
  21538. name: "Paw",
  21539. image: {
  21540. source: "./media/characters/goldeneye/paw.svg"
  21541. }
  21542. },
  21543. toering: {
  21544. height: math.unit(0.45, "feet"),
  21545. name: "Toering",
  21546. image: {
  21547. source: "./media/characters/goldeneye/toering.svg"
  21548. }
  21549. },
  21550. eyes: {
  21551. height: math.unit(0.5, "feet"),
  21552. name: "Eyes",
  21553. image: {
  21554. source: "./media/characters/goldeneye/eyes.svg"
  21555. }
  21556. },
  21557. },
  21558. [
  21559. {
  21560. name: "Normal",
  21561. height: math.unit(13 + 1 / 12, "feet"),
  21562. default: true
  21563. },
  21564. ]
  21565. ))
  21566. characterMakers.push(() => makeCharacter(
  21567. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21568. {
  21569. front: {
  21570. height: math.unit(6 + 1 / 12, "feet"),
  21571. weight: math.unit(210, "lb"),
  21572. name: "Front",
  21573. image: {
  21574. source: "./media/characters/leonardo-lycheborne/front.svg",
  21575. extra: 776/723,
  21576. bottom: 34/810
  21577. }
  21578. },
  21579. side: {
  21580. height: math.unit(6 + 1 / 12, "feet"),
  21581. weight: math.unit(210, "lb"),
  21582. name: "Side",
  21583. image: {
  21584. source: "./media/characters/leonardo-lycheborne/side.svg",
  21585. extra: 780/728,
  21586. bottom: 12/792
  21587. }
  21588. },
  21589. back: {
  21590. height: math.unit(6 + 1 / 12, "feet"),
  21591. weight: math.unit(210, "lb"),
  21592. name: "Back",
  21593. image: {
  21594. source: "./media/characters/leonardo-lycheborne/back.svg",
  21595. extra: 775/721,
  21596. bottom: 17/792
  21597. }
  21598. },
  21599. hand: {
  21600. height: math.unit(1.08, "feet"),
  21601. name: "Hand",
  21602. image: {
  21603. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21604. }
  21605. },
  21606. foot: {
  21607. height: math.unit(1.32, "feet"),
  21608. name: "Foot",
  21609. image: {
  21610. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21611. }
  21612. },
  21613. maw: {
  21614. height: math.unit(1, "feet"),
  21615. name: "Maw",
  21616. image: {
  21617. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21618. }
  21619. },
  21620. were: {
  21621. height: math.unit(20, "feet"),
  21622. weight: math.unit(7800, "lb"),
  21623. name: "Were",
  21624. image: {
  21625. source: "./media/characters/leonardo-lycheborne/were.svg",
  21626. extra: 1224/1165,
  21627. bottom: 72/1296
  21628. }
  21629. },
  21630. feral: {
  21631. height: math.unit(7.5, "feet"),
  21632. weight: math.unit(600, "lb"),
  21633. name: "Feral",
  21634. image: {
  21635. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21636. extra: 797/702,
  21637. bottom: 139/936
  21638. }
  21639. },
  21640. taur: {
  21641. height: math.unit(11, "feet"),
  21642. weight: math.unit(3300, "lb"),
  21643. name: "Taur",
  21644. image: {
  21645. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21646. extra: 1271/1197,
  21647. bottom: 47/1318
  21648. }
  21649. },
  21650. barghest: {
  21651. height: math.unit(11, "feet"),
  21652. weight: math.unit(1300, "lb"),
  21653. name: "Barghest",
  21654. image: {
  21655. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21656. extra: 1291/1204,
  21657. bottom: 37/1328
  21658. }
  21659. },
  21660. dick: {
  21661. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21662. name: "Dick",
  21663. image: {
  21664. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21665. }
  21666. },
  21667. dickWere: {
  21668. height: math.unit((20) / 3.8, "feet"),
  21669. name: "Dick (Were)",
  21670. image: {
  21671. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21672. }
  21673. },
  21674. },
  21675. [
  21676. {
  21677. name: "Normal",
  21678. height: math.unit(6 + 1 / 12, "feet"),
  21679. default: true
  21680. },
  21681. ]
  21682. ))
  21683. characterMakers.push(() => makeCharacter(
  21684. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21685. {
  21686. front: {
  21687. height: math.unit(10, "feet"),
  21688. weight: math.unit(350, "lb"),
  21689. name: "Front",
  21690. image: {
  21691. source: "./media/characters/jet/front.svg",
  21692. extra: 2050 / 1980,
  21693. bottom: 0.013
  21694. }
  21695. },
  21696. back: {
  21697. height: math.unit(10, "feet"),
  21698. weight: math.unit(350, "lb"),
  21699. name: "Back",
  21700. image: {
  21701. source: "./media/characters/jet/back.svg",
  21702. extra: 2050 / 1980,
  21703. bottom: 0.013
  21704. }
  21705. },
  21706. },
  21707. [
  21708. {
  21709. name: "Micro",
  21710. height: math.unit(6, "inches")
  21711. },
  21712. {
  21713. name: "Normal",
  21714. height: math.unit(10, "feet"),
  21715. default: true
  21716. },
  21717. {
  21718. name: "Macro",
  21719. height: math.unit(100, "feet")
  21720. },
  21721. ]
  21722. ))
  21723. characterMakers.push(() => makeCharacter(
  21724. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21725. {
  21726. front: {
  21727. height: math.unit(15, "feet"),
  21728. weight: math.unit(2800, "lb"),
  21729. name: "Front",
  21730. image: {
  21731. source: "./media/characters/tanarath/front.svg",
  21732. extra: 2392 / 2220,
  21733. bottom: 0.03
  21734. }
  21735. },
  21736. back: {
  21737. height: math.unit(15, "feet"),
  21738. weight: math.unit(2800, "lb"),
  21739. name: "Back",
  21740. image: {
  21741. source: "./media/characters/tanarath/back.svg",
  21742. extra: 2392 / 2220,
  21743. bottom: 0.03
  21744. }
  21745. },
  21746. },
  21747. [
  21748. {
  21749. name: "Normal",
  21750. height: math.unit(15, "feet"),
  21751. default: true
  21752. },
  21753. ]
  21754. ))
  21755. characterMakers.push(() => makeCharacter(
  21756. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21757. {
  21758. front: {
  21759. height: math.unit(7 + 1 / 12, "feet"),
  21760. weight: math.unit(175, "lb"),
  21761. name: "Front",
  21762. image: {
  21763. source: "./media/characters/patty-cattybatty/front.svg",
  21764. extra: 908 / 874,
  21765. bottom: 0.025
  21766. }
  21767. },
  21768. },
  21769. [
  21770. {
  21771. name: "Micro",
  21772. height: math.unit(1, "inch")
  21773. },
  21774. {
  21775. name: "Normal",
  21776. height: math.unit(7 + 1 / 12, "feet")
  21777. },
  21778. {
  21779. name: "Mini Macro",
  21780. height: math.unit(155, "feet")
  21781. },
  21782. {
  21783. name: "Macro",
  21784. height: math.unit(1077, "feet")
  21785. },
  21786. {
  21787. name: "Mega Macro",
  21788. height: math.unit(47650, "feet"),
  21789. default: true
  21790. },
  21791. {
  21792. name: "Giga Macro",
  21793. height: math.unit(440, "miles")
  21794. },
  21795. {
  21796. name: "Tera Macro",
  21797. height: math.unit(8700, "miles")
  21798. },
  21799. {
  21800. name: "Planetary Macro",
  21801. height: math.unit(32700, "miles")
  21802. },
  21803. {
  21804. name: "Solar Macro",
  21805. height: math.unit(550000, "miles")
  21806. },
  21807. {
  21808. name: "Celestial Macro",
  21809. height: math.unit(2.5, "AU")
  21810. },
  21811. ]
  21812. ))
  21813. characterMakers.push(() => makeCharacter(
  21814. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21815. {
  21816. front: {
  21817. height: math.unit(4 + 5 / 12, "feet"),
  21818. weight: math.unit(90, "lb"),
  21819. name: "Front",
  21820. image: {
  21821. source: "./media/characters/cappu/front.svg",
  21822. extra: 1247 / 1152,
  21823. bottom: 0.012
  21824. }
  21825. },
  21826. },
  21827. [
  21828. {
  21829. name: "Normal",
  21830. height: math.unit(4 + 5 / 12, "feet"),
  21831. default: true
  21832. },
  21833. ]
  21834. ))
  21835. characterMakers.push(() => makeCharacter(
  21836. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21837. {
  21838. frontDressed: {
  21839. height: math.unit(70, "cm"),
  21840. weight: math.unit(6, "kg"),
  21841. name: "Front (Dressed)",
  21842. image: {
  21843. source: "./media/characters/sebi/front-dressed.svg",
  21844. extra: 713.5 / 686.5,
  21845. bottom: 0.003
  21846. }
  21847. },
  21848. front: {
  21849. height: math.unit(70, "cm"),
  21850. weight: math.unit(5, "kg"),
  21851. name: "Front",
  21852. image: {
  21853. source: "./media/characters/sebi/front.svg",
  21854. extra: 713.5 / 686.5,
  21855. bottom: 0.003
  21856. }
  21857. }
  21858. },
  21859. [
  21860. {
  21861. name: "Normal",
  21862. height: math.unit(70, "cm"),
  21863. default: true
  21864. },
  21865. {
  21866. name: "Macro",
  21867. height: math.unit(8, "meters")
  21868. },
  21869. ]
  21870. ))
  21871. characterMakers.push(() => makeCharacter(
  21872. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21873. {
  21874. front: {
  21875. height: math.unit(6, "feet"),
  21876. weight: math.unit(150, "lb"),
  21877. name: "Front",
  21878. image: {
  21879. source: "./media/characters/typhek/front.svg",
  21880. extra: 1948 / 1929,
  21881. bottom: 0.025
  21882. }
  21883. },
  21884. side: {
  21885. height: math.unit(6, "feet"),
  21886. weight: math.unit(150, "lb"),
  21887. name: "Side",
  21888. image: {
  21889. source: "./media/characters/typhek/side.svg",
  21890. extra: 2034 / 2010,
  21891. bottom: 0.003
  21892. }
  21893. },
  21894. back: {
  21895. height: math.unit(6, "feet"),
  21896. weight: math.unit(150, "lb"),
  21897. name: "Back",
  21898. image: {
  21899. source: "./media/characters/typhek/back.svg",
  21900. extra: 2005 / 1978,
  21901. bottom: 0.004
  21902. }
  21903. },
  21904. palm: {
  21905. height: math.unit(1.2, "feet"),
  21906. name: "Palm",
  21907. image: {
  21908. source: "./media/characters/typhek/palm.svg"
  21909. }
  21910. },
  21911. fist: {
  21912. height: math.unit(1.1, "feet"),
  21913. name: "Fist",
  21914. image: {
  21915. source: "./media/characters/typhek/fist.svg"
  21916. }
  21917. },
  21918. foot: {
  21919. height: math.unit(1.57, "feet"),
  21920. name: "Foot",
  21921. image: {
  21922. source: "./media/characters/typhek/foot.svg"
  21923. }
  21924. },
  21925. sole: {
  21926. height: math.unit(2.05, "feet"),
  21927. name: "Sole",
  21928. image: {
  21929. source: "./media/characters/typhek/sole.svg"
  21930. }
  21931. },
  21932. },
  21933. [
  21934. {
  21935. name: "Macro",
  21936. height: math.unit(40, "stories"),
  21937. default: true
  21938. },
  21939. {
  21940. name: "Megamacro",
  21941. height: math.unit(1, "mile")
  21942. },
  21943. {
  21944. name: "Gigamacro",
  21945. height: math.unit(4000, "solarradii")
  21946. },
  21947. {
  21948. name: "Universal",
  21949. height: math.unit(1.1, "universes")
  21950. }
  21951. ]
  21952. ))
  21953. characterMakers.push(() => makeCharacter(
  21954. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21955. {
  21956. side: {
  21957. height: math.unit(5 + 7 / 12, "feet"),
  21958. weight: math.unit(150, "lb"),
  21959. name: "Side",
  21960. image: {
  21961. source: "./media/characters/kassy/side.svg",
  21962. extra: 1280 / 1225,
  21963. bottom: 0.002
  21964. }
  21965. },
  21966. front: {
  21967. height: math.unit(5 + 7 / 12, "feet"),
  21968. weight: math.unit(150, "lb"),
  21969. name: "Front",
  21970. image: {
  21971. source: "./media/characters/kassy/front.svg",
  21972. extra: 1280 / 1225,
  21973. bottom: 0.025
  21974. }
  21975. },
  21976. back: {
  21977. height: math.unit(5 + 7 / 12, "feet"),
  21978. weight: math.unit(150, "lb"),
  21979. name: "Back",
  21980. image: {
  21981. source: "./media/characters/kassy/back.svg",
  21982. extra: 1280 / 1225,
  21983. bottom: 0.002
  21984. }
  21985. },
  21986. foot: {
  21987. height: math.unit(1.266, "feet"),
  21988. name: "Foot",
  21989. image: {
  21990. source: "./media/characters/kassy/foot.svg"
  21991. }
  21992. },
  21993. },
  21994. [
  21995. {
  21996. name: "Normal",
  21997. height: math.unit(5 + 7 / 12, "feet")
  21998. },
  21999. {
  22000. name: "Macro",
  22001. height: math.unit(137, "feet"),
  22002. default: true
  22003. },
  22004. {
  22005. name: "Megamacro",
  22006. height: math.unit(1, "mile")
  22007. },
  22008. ]
  22009. ))
  22010. characterMakers.push(() => makeCharacter(
  22011. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  22012. {
  22013. front: {
  22014. height: math.unit(6 + 1 / 12, "feet"),
  22015. weight: math.unit(200, "lb"),
  22016. name: "Front",
  22017. image: {
  22018. source: "./media/characters/neil/front.svg",
  22019. extra: 1326 / 1250,
  22020. bottom: 0.023
  22021. }
  22022. },
  22023. },
  22024. [
  22025. {
  22026. name: "Normal",
  22027. height: math.unit(6 + 1 / 12, "feet"),
  22028. default: true
  22029. },
  22030. {
  22031. name: "Macro",
  22032. height: math.unit(200, "feet")
  22033. },
  22034. ]
  22035. ))
  22036. characterMakers.push(() => makeCharacter(
  22037. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  22038. {
  22039. front: {
  22040. height: math.unit(5 + 9 / 12, "feet"),
  22041. weight: math.unit(190, "lb"),
  22042. name: "Front",
  22043. image: {
  22044. source: "./media/characters/atticus/front.svg",
  22045. extra: 2934 / 2785,
  22046. bottom: 0.025
  22047. }
  22048. },
  22049. },
  22050. [
  22051. {
  22052. name: "Normal",
  22053. height: math.unit(5 + 9 / 12, "feet"),
  22054. default: true
  22055. },
  22056. {
  22057. name: "Macro",
  22058. height: math.unit(180, "feet")
  22059. },
  22060. ]
  22061. ))
  22062. characterMakers.push(() => makeCharacter(
  22063. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  22064. {
  22065. side: {
  22066. height: math.unit(9, "feet"),
  22067. weight: math.unit(650, "lb"),
  22068. name: "Side",
  22069. image: {
  22070. source: "./media/characters/milo/side.svg",
  22071. extra: 2644 / 2310,
  22072. bottom: 0.032
  22073. }
  22074. },
  22075. },
  22076. [
  22077. {
  22078. name: "Normal",
  22079. height: math.unit(9, "feet"),
  22080. default: true
  22081. },
  22082. {
  22083. name: "Macro",
  22084. height: math.unit(300, "feet")
  22085. },
  22086. ]
  22087. ))
  22088. characterMakers.push(() => makeCharacter(
  22089. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  22090. {
  22091. side: {
  22092. height: math.unit(8, "meters"),
  22093. weight: math.unit(90000, "kg"),
  22094. name: "Side",
  22095. image: {
  22096. source: "./media/characters/ijzer/side.svg",
  22097. extra: 2756 / 1600,
  22098. bottom: 0.01
  22099. }
  22100. },
  22101. },
  22102. [
  22103. {
  22104. name: "Small",
  22105. height: math.unit(3, "meters")
  22106. },
  22107. {
  22108. name: "Normal",
  22109. height: math.unit(8, "meters"),
  22110. default: true
  22111. },
  22112. {
  22113. name: "Normal+",
  22114. height: math.unit(10, "meters")
  22115. },
  22116. {
  22117. name: "Bigger",
  22118. height: math.unit(24, "meters")
  22119. },
  22120. {
  22121. name: "Huge",
  22122. height: math.unit(80, "meters")
  22123. },
  22124. ]
  22125. ))
  22126. characterMakers.push(() => makeCharacter(
  22127. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  22128. {
  22129. front: {
  22130. height: math.unit(6 + 2 / 12, "feet"),
  22131. weight: math.unit(153, "lb"),
  22132. name: "Front",
  22133. image: {
  22134. source: "./media/characters/luca-cervicum/front.svg",
  22135. extra: 370 / 327,
  22136. bottom: 0.015
  22137. }
  22138. },
  22139. back: {
  22140. height: math.unit(6 + 2 / 12, "feet"),
  22141. weight: math.unit(153, "lb"),
  22142. name: "Back",
  22143. image: {
  22144. source: "./media/characters/luca-cervicum/back.svg",
  22145. extra: 367 / 333,
  22146. bottom: 0.005
  22147. }
  22148. },
  22149. frontGear: {
  22150. height: math.unit(6 + 2 / 12, "feet"),
  22151. weight: math.unit(173, "lb"),
  22152. name: "Front (Gear)",
  22153. image: {
  22154. source: "./media/characters/luca-cervicum/front-gear.svg",
  22155. extra: 377 / 333,
  22156. bottom: 0.006
  22157. }
  22158. },
  22159. },
  22160. [
  22161. {
  22162. name: "Normal",
  22163. height: math.unit(6 + 2 / 12, "feet"),
  22164. default: true
  22165. },
  22166. ]
  22167. ))
  22168. characterMakers.push(() => makeCharacter(
  22169. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  22170. {
  22171. front: {
  22172. height: math.unit(6 + 1 / 12, "feet"),
  22173. weight: math.unit(304, "lb"),
  22174. name: "Front",
  22175. image: {
  22176. source: "./media/characters/oliver/front.svg",
  22177. extra: 157 / 143,
  22178. bottom: 0.08
  22179. }
  22180. },
  22181. },
  22182. [
  22183. {
  22184. name: "Normal",
  22185. height: math.unit(6 + 1 / 12, "feet"),
  22186. default: true
  22187. },
  22188. ]
  22189. ))
  22190. characterMakers.push(() => makeCharacter(
  22191. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  22192. {
  22193. front: {
  22194. height: math.unit(5 + 7 / 12, "feet"),
  22195. weight: math.unit(140, "lb"),
  22196. name: "Front",
  22197. image: {
  22198. source: "./media/characters/shane/front.svg",
  22199. extra: 304 / 289,
  22200. bottom: 0.005
  22201. }
  22202. },
  22203. },
  22204. [
  22205. {
  22206. name: "Normal",
  22207. height: math.unit(5 + 7 / 12, "feet"),
  22208. default: true
  22209. },
  22210. ]
  22211. ))
  22212. characterMakers.push(() => makeCharacter(
  22213. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  22214. {
  22215. front: {
  22216. height: math.unit(5 + 9 / 12, "feet"),
  22217. weight: math.unit(178, "lb"),
  22218. name: "Front",
  22219. image: {
  22220. source: "./media/characters/shin/front.svg",
  22221. extra: 159 / 151,
  22222. bottom: 0.015
  22223. }
  22224. },
  22225. },
  22226. [
  22227. {
  22228. name: "Normal",
  22229. height: math.unit(5 + 9 / 12, "feet"),
  22230. default: true
  22231. },
  22232. ]
  22233. ))
  22234. characterMakers.push(() => makeCharacter(
  22235. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  22236. {
  22237. front: {
  22238. height: math.unit(5 + 10 / 12, "feet"),
  22239. weight: math.unit(168, "lb"),
  22240. name: "Front",
  22241. image: {
  22242. source: "./media/characters/xerxes/front.svg",
  22243. extra: 282 / 260,
  22244. bottom: 0.045
  22245. }
  22246. },
  22247. },
  22248. [
  22249. {
  22250. name: "Normal",
  22251. height: math.unit(5 + 10 / 12, "feet"),
  22252. default: true
  22253. },
  22254. ]
  22255. ))
  22256. characterMakers.push(() => makeCharacter(
  22257. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  22258. {
  22259. front: {
  22260. height: math.unit(6 + 7 / 12, "feet"),
  22261. weight: math.unit(208, "lb"),
  22262. name: "Front",
  22263. image: {
  22264. source: "./media/characters/chaska/front.svg",
  22265. extra: 332 / 319,
  22266. bottom: 0.015
  22267. }
  22268. },
  22269. },
  22270. [
  22271. {
  22272. name: "Normal",
  22273. height: math.unit(6 + 7 / 12, "feet"),
  22274. default: true
  22275. },
  22276. ]
  22277. ))
  22278. characterMakers.push(() => makeCharacter(
  22279. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  22280. {
  22281. front: {
  22282. height: math.unit(5 + 8 / 12, "feet"),
  22283. weight: math.unit(208, "lb"),
  22284. name: "Front",
  22285. image: {
  22286. source: "./media/characters/enuk/front.svg",
  22287. extra: 437 / 406,
  22288. bottom: 0.02
  22289. }
  22290. },
  22291. },
  22292. [
  22293. {
  22294. name: "Normal",
  22295. height: math.unit(5 + 8 / 12, "feet"),
  22296. default: true
  22297. },
  22298. ]
  22299. ))
  22300. characterMakers.push(() => makeCharacter(
  22301. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  22302. {
  22303. front: {
  22304. height: math.unit(5 + 10 / 12, "feet"),
  22305. weight: math.unit(252, "lb"),
  22306. name: "Front",
  22307. image: {
  22308. source: "./media/characters/bruun/front.svg",
  22309. extra: 197 / 187,
  22310. bottom: 0.012
  22311. }
  22312. },
  22313. },
  22314. [
  22315. {
  22316. name: "Normal",
  22317. height: math.unit(5 + 10 / 12, "feet"),
  22318. default: true
  22319. },
  22320. ]
  22321. ))
  22322. characterMakers.push(() => makeCharacter(
  22323. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  22324. {
  22325. front: {
  22326. height: math.unit(6 + 10 / 12, "feet"),
  22327. weight: math.unit(255, "lb"),
  22328. name: "Front",
  22329. image: {
  22330. source: "./media/characters/alexeev/front.svg",
  22331. extra: 213 / 200,
  22332. bottom: 0.05
  22333. }
  22334. },
  22335. },
  22336. [
  22337. {
  22338. name: "Normal",
  22339. height: math.unit(6 + 10 / 12, "feet"),
  22340. default: true
  22341. },
  22342. ]
  22343. ))
  22344. characterMakers.push(() => makeCharacter(
  22345. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  22346. {
  22347. front: {
  22348. height: math.unit(2 + 8 / 12, "feet"),
  22349. weight: math.unit(22, "lb"),
  22350. name: "Front",
  22351. image: {
  22352. source: "./media/characters/evelyn/front.svg",
  22353. extra: 208 / 180
  22354. }
  22355. },
  22356. },
  22357. [
  22358. {
  22359. name: "Normal",
  22360. height: math.unit(2 + 8 / 12, "feet"),
  22361. default: true
  22362. },
  22363. ]
  22364. ))
  22365. characterMakers.push(() => makeCharacter(
  22366. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  22367. {
  22368. front: {
  22369. height: math.unit(5 + 9 / 12, "feet"),
  22370. weight: math.unit(139, "lb"),
  22371. name: "Front",
  22372. image: {
  22373. source: "./media/characters/inca/front.svg",
  22374. extra: 294 / 291,
  22375. bottom: 0.03
  22376. }
  22377. },
  22378. },
  22379. [
  22380. {
  22381. name: "Normal",
  22382. height: math.unit(5 + 9 / 12, "feet"),
  22383. default: true
  22384. },
  22385. ]
  22386. ))
  22387. characterMakers.push(() => makeCharacter(
  22388. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  22389. {
  22390. front: {
  22391. height: math.unit(6 + 3 / 12, "feet"),
  22392. weight: math.unit(185, "lb"),
  22393. name: "Front",
  22394. image: {
  22395. source: "./media/characters/mera/front.svg",
  22396. extra: 291 / 277,
  22397. bottom: 0.03
  22398. }
  22399. },
  22400. },
  22401. [
  22402. {
  22403. name: "Normal",
  22404. height: math.unit(6 + 3 / 12, "feet"),
  22405. default: true
  22406. },
  22407. ]
  22408. ))
  22409. characterMakers.push(() => makeCharacter(
  22410. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  22411. {
  22412. front: {
  22413. height: math.unit(6 + 7 / 12, "feet"),
  22414. weight: math.unit(160, "lb"),
  22415. name: "Front",
  22416. image: {
  22417. source: "./media/characters/ceres/front.svg",
  22418. extra: 1023 / 950,
  22419. bottom: 0.027
  22420. }
  22421. },
  22422. back: {
  22423. height: math.unit(6 + 7 / 12, "feet"),
  22424. weight: math.unit(160, "lb"),
  22425. name: "Back",
  22426. image: {
  22427. source: "./media/characters/ceres/back.svg",
  22428. extra: 1023 / 950
  22429. }
  22430. },
  22431. },
  22432. [
  22433. {
  22434. name: "Normal",
  22435. height: math.unit(6 + 7 / 12, "feet"),
  22436. default: true
  22437. },
  22438. ]
  22439. ))
  22440. characterMakers.push(() => makeCharacter(
  22441. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  22442. {
  22443. front: {
  22444. height: math.unit(5 + 10 / 12, "feet"),
  22445. weight: math.unit(150, "lb"),
  22446. name: "Front",
  22447. image: {
  22448. source: "./media/characters/kris/front.svg",
  22449. extra: 885 / 803,
  22450. bottom: 0.03
  22451. }
  22452. },
  22453. },
  22454. [
  22455. {
  22456. name: "Normal",
  22457. height: math.unit(5 + 10 / 12, "feet"),
  22458. default: true
  22459. },
  22460. ]
  22461. ))
  22462. characterMakers.push(() => makeCharacter(
  22463. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  22464. {
  22465. dragon_front: {
  22466. height: math.unit(5, "feet"),
  22467. name: "Front",
  22468. image: {
  22469. source: "./media/characters/taluthus/dragon-front.svg",
  22470. extra: 1203/1098,
  22471. bottom: 46/1249
  22472. },
  22473. form: "dragon",
  22474. default: true
  22475. },
  22476. dragon_maw: {
  22477. height: math.unit(2.35, "feet"),
  22478. name: "Maw",
  22479. image: {
  22480. source: "./media/characters/taluthus/dragon-maw.svg"
  22481. },
  22482. form: "dragon",
  22483. },
  22484. kitsune_front: {
  22485. height: math.unit(7, "feet"),
  22486. name: "Front",
  22487. image: {
  22488. source: "./media/characters/taluthus/kitsune-front.svg",
  22489. extra: 900/841,
  22490. bottom: 65/965
  22491. },
  22492. form: "kitsune",
  22493. default: true
  22494. },
  22495. },
  22496. [
  22497. {
  22498. name: "Normal",
  22499. height: math.unit(5, "feet"),
  22500. form: "dragon",
  22501. default: true,
  22502. },
  22503. {
  22504. name: "Normal",
  22505. height: math.unit(7, "feet"),
  22506. form: "kitsune",
  22507. default: true
  22508. },
  22509. {
  22510. name: "Macro",
  22511. height: math.unit(300, "feet"),
  22512. allForms: true
  22513. },
  22514. ],
  22515. {
  22516. "dragon": {
  22517. name: "Dragon",
  22518. default: true
  22519. },
  22520. "kitsune": {
  22521. name: "Kitsune",
  22522. },
  22523. }
  22524. ))
  22525. characterMakers.push(() => makeCharacter(
  22526. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22527. {
  22528. front: {
  22529. height: math.unit(5 + 9 / 12, "feet"),
  22530. weight: math.unit(145, "lb"),
  22531. name: "Front",
  22532. image: {
  22533. source: "./media/characters/dawn/front.svg",
  22534. extra: 2094 / 2016,
  22535. bottom: 0.025
  22536. }
  22537. },
  22538. back: {
  22539. height: math.unit(5 + 9 / 12, "feet"),
  22540. weight: math.unit(160, "lb"),
  22541. name: "Back",
  22542. image: {
  22543. source: "./media/characters/dawn/back.svg",
  22544. extra: 2112 / 2080,
  22545. bottom: 0.005
  22546. }
  22547. },
  22548. },
  22549. [
  22550. {
  22551. name: "Normal",
  22552. height: math.unit(6 + 7 / 12, "feet"),
  22553. default: true
  22554. },
  22555. ]
  22556. ))
  22557. characterMakers.push(() => makeCharacter(
  22558. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22559. {
  22560. anthro: {
  22561. height: math.unit(8 + 3 / 12, "feet"),
  22562. weight: math.unit(450, "lb"),
  22563. name: "Anthro",
  22564. image: {
  22565. source: "./media/characters/arador/anthro.svg",
  22566. extra: 1835 / 1718,
  22567. bottom: 0.025
  22568. }
  22569. },
  22570. feral: {
  22571. height: math.unit(4, "feet"),
  22572. weight: math.unit(200, "lb"),
  22573. name: "Feral",
  22574. image: {
  22575. source: "./media/characters/arador/feral.svg",
  22576. extra: 1683 / 1514,
  22577. bottom: 0.07
  22578. }
  22579. },
  22580. },
  22581. [
  22582. {
  22583. name: "Normal",
  22584. height: math.unit(8 + 3 / 12, "feet")
  22585. },
  22586. {
  22587. name: "Macro",
  22588. height: math.unit(82.5, "feet"),
  22589. default: true
  22590. },
  22591. ]
  22592. ))
  22593. characterMakers.push(() => makeCharacter(
  22594. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22595. {
  22596. front: {
  22597. height: math.unit(5 + 10 / 12, "feet"),
  22598. weight: math.unit(125, "lb"),
  22599. name: "Front",
  22600. image: {
  22601. source: "./media/characters/dharsi/front.svg",
  22602. extra: 716 / 630,
  22603. bottom: 0.035
  22604. }
  22605. },
  22606. },
  22607. [
  22608. {
  22609. name: "Nano",
  22610. height: math.unit(100, "nm")
  22611. },
  22612. {
  22613. name: "Micro",
  22614. height: math.unit(2, "inches")
  22615. },
  22616. {
  22617. name: "Normal",
  22618. height: math.unit(5 + 10 / 12, "feet"),
  22619. default: true
  22620. },
  22621. {
  22622. name: "Macro",
  22623. height: math.unit(1000, "feet")
  22624. },
  22625. {
  22626. name: "Megamacro",
  22627. height: math.unit(10, "miles")
  22628. },
  22629. {
  22630. name: "Gigamacro",
  22631. height: math.unit(3000, "miles")
  22632. },
  22633. {
  22634. name: "Teramacro",
  22635. height: math.unit(500000, "miles")
  22636. },
  22637. {
  22638. name: "Teramacro+",
  22639. height: math.unit(30, "galaxies")
  22640. },
  22641. ]
  22642. ))
  22643. characterMakers.push(() => makeCharacter(
  22644. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22645. {
  22646. front: {
  22647. height: math.unit(6, "feet"),
  22648. weight: math.unit(150, "lb"),
  22649. name: "Front",
  22650. image: {
  22651. source: "./media/characters/deathy/front.svg",
  22652. extra: 1552 / 1463,
  22653. bottom: 0.025
  22654. }
  22655. },
  22656. side: {
  22657. height: math.unit(6, "feet"),
  22658. weight: math.unit(150, "lb"),
  22659. name: "Side",
  22660. image: {
  22661. source: "./media/characters/deathy/side.svg",
  22662. extra: 1604 / 1455,
  22663. bottom: 0.025
  22664. }
  22665. },
  22666. back: {
  22667. height: math.unit(6, "feet"),
  22668. weight: math.unit(150, "lb"),
  22669. name: "Back",
  22670. image: {
  22671. source: "./media/characters/deathy/back.svg",
  22672. extra: 1580 / 1463,
  22673. bottom: 0.005
  22674. }
  22675. },
  22676. },
  22677. [
  22678. {
  22679. name: "Micro",
  22680. height: math.unit(5, "millimeters")
  22681. },
  22682. {
  22683. name: "Normal",
  22684. height: math.unit(6 + 5 / 12, "feet"),
  22685. default: true
  22686. },
  22687. ]
  22688. ))
  22689. characterMakers.push(() => makeCharacter(
  22690. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22691. {
  22692. front: {
  22693. height: math.unit(16, "feet"),
  22694. weight: math.unit(4000, "lb"),
  22695. name: "Front",
  22696. image: {
  22697. source: "./media/characters/juniper/front.svg",
  22698. bottom: 0.04
  22699. }
  22700. },
  22701. },
  22702. [
  22703. {
  22704. name: "Normal",
  22705. height: math.unit(16, "feet"),
  22706. default: true
  22707. },
  22708. ]
  22709. ))
  22710. characterMakers.push(() => makeCharacter(
  22711. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22712. {
  22713. front: {
  22714. height: math.unit(6, "feet"),
  22715. weight: math.unit(150, "lb"),
  22716. name: "Front",
  22717. image: {
  22718. source: "./media/characters/hipster/front.svg",
  22719. extra: 1312 / 1209,
  22720. bottom: 0.025
  22721. }
  22722. },
  22723. back: {
  22724. height: math.unit(6, "feet"),
  22725. weight: math.unit(150, "lb"),
  22726. name: "Back",
  22727. image: {
  22728. source: "./media/characters/hipster/back.svg",
  22729. extra: 1281 / 1196,
  22730. bottom: 0.01
  22731. }
  22732. },
  22733. },
  22734. [
  22735. {
  22736. name: "Micro",
  22737. height: math.unit(1, "mm")
  22738. },
  22739. {
  22740. name: "Normal",
  22741. height: math.unit(4, "inches"),
  22742. default: true
  22743. },
  22744. {
  22745. name: "Macro",
  22746. height: math.unit(500, "feet")
  22747. },
  22748. {
  22749. name: "Megamacro",
  22750. height: math.unit(1000, "miles")
  22751. },
  22752. ]
  22753. ))
  22754. characterMakers.push(() => makeCharacter(
  22755. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22756. {
  22757. front: {
  22758. height: math.unit(6, "feet"),
  22759. weight: math.unit(150, "lb"),
  22760. name: "Front",
  22761. image: {
  22762. source: "./media/characters/tendirmuldr/front.svg",
  22763. extra: 1878 / 1772,
  22764. bottom: 0.015
  22765. }
  22766. },
  22767. },
  22768. [
  22769. {
  22770. name: "Megamacro",
  22771. height: math.unit(1500, "miles"),
  22772. default: true
  22773. },
  22774. ]
  22775. ))
  22776. characterMakers.push(() => makeCharacter(
  22777. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22778. {
  22779. front: {
  22780. height: math.unit(14, "feet"),
  22781. weight: math.unit(12000, "lb"),
  22782. name: "Front",
  22783. image: {
  22784. source: "./media/characters/mort/front.svg",
  22785. extra: 365 / 318,
  22786. bottom: 0.01
  22787. }
  22788. },
  22789. side: {
  22790. height: math.unit(14, "feet"),
  22791. weight: math.unit(12000, "lb"),
  22792. name: "Side",
  22793. image: {
  22794. source: "./media/characters/mort/side.svg",
  22795. extra: 365 / 318,
  22796. bottom: 0.052
  22797. },
  22798. default: true
  22799. },
  22800. back: {
  22801. height: math.unit(14, "feet"),
  22802. weight: math.unit(12000, "lb"),
  22803. name: "Back",
  22804. image: {
  22805. source: "./media/characters/mort/back.svg",
  22806. extra: 371 / 332,
  22807. bottom: 0.18
  22808. }
  22809. },
  22810. },
  22811. [
  22812. {
  22813. name: "Normal",
  22814. height: math.unit(14, "feet"),
  22815. default: true
  22816. },
  22817. ]
  22818. ))
  22819. characterMakers.push(() => makeCharacter(
  22820. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22821. {
  22822. front: {
  22823. height: math.unit(8, "feet"),
  22824. weight: math.unit(1, "ton"),
  22825. name: "Front",
  22826. image: {
  22827. source: "./media/characters/lycoa/front.svg",
  22828. extra: 1836/1728,
  22829. bottom: 81/1917
  22830. }
  22831. },
  22832. back: {
  22833. height: math.unit(8, "feet"),
  22834. weight: math.unit(1, "ton"),
  22835. name: "Back",
  22836. image: {
  22837. source: "./media/characters/lycoa/back.svg",
  22838. extra: 1785/1720,
  22839. bottom: 91/1876
  22840. }
  22841. },
  22842. head: {
  22843. height: math.unit(1.6243, "feet"),
  22844. name: "Head",
  22845. image: {
  22846. source: "./media/characters/lycoa/head.svg",
  22847. extra: 1011/782,
  22848. bottom: 0/1011
  22849. }
  22850. },
  22851. tailmaw: {
  22852. height: math.unit(1.9, "feet"),
  22853. name: "Tailmaw",
  22854. image: {
  22855. source: "./media/characters/lycoa/tailmaw.svg"
  22856. }
  22857. },
  22858. tentacles: {
  22859. height: math.unit(2.1, "feet"),
  22860. name: "Tentacles",
  22861. image: {
  22862. source: "./media/characters/lycoa/tentacles.svg"
  22863. }
  22864. },
  22865. dick: {
  22866. height: math.unit(1.73, "feet"),
  22867. name: "Dick",
  22868. image: {
  22869. source: "./media/characters/lycoa/dick.svg"
  22870. }
  22871. },
  22872. },
  22873. [
  22874. {
  22875. name: "Normal",
  22876. height: math.unit(8, "feet"),
  22877. default: true
  22878. },
  22879. {
  22880. name: "Macro",
  22881. height: math.unit(30, "feet")
  22882. },
  22883. ]
  22884. ))
  22885. characterMakers.push(() => makeCharacter(
  22886. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22887. {
  22888. front: {
  22889. height: math.unit(4 + 2 / 12, "feet"),
  22890. weight: math.unit(70, "lb"),
  22891. name: "Front",
  22892. image: {
  22893. source: "./media/characters/naldara/front.svg",
  22894. extra: 1664/1387,
  22895. bottom: 81/1745
  22896. },
  22897. form: "anthro",
  22898. default: true
  22899. },
  22900. naga: {
  22901. height: math.unit(20, "feet"),
  22902. weight: math.unit(15000, "kg"),
  22903. name: "Front",
  22904. image: {
  22905. source: "./media/characters/naldara/naga.svg",
  22906. extra: 1590/1396,
  22907. bottom: 285/1875
  22908. },
  22909. form: "naga",
  22910. default: true
  22911. },
  22912. },
  22913. [
  22914. {
  22915. name: "Normal",
  22916. height: math.unit(4 + 2 / 12, "feet"),
  22917. form: "anthro",
  22918. default: true
  22919. },
  22920. {
  22921. name: "Normal",
  22922. height: math.unit(20, "feet"),
  22923. form: "naga",
  22924. default: true
  22925. },
  22926. ],
  22927. {
  22928. "anthro": {
  22929. name: "Anthro",
  22930. default: true
  22931. },
  22932. "naga": {
  22933. name: "Naga"
  22934. }
  22935. }
  22936. ))
  22937. characterMakers.push(() => makeCharacter(
  22938. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22939. {
  22940. front: {
  22941. height: math.unit(13 + 7 / 12, "feet"),
  22942. weight: math.unit(1500, "lb"),
  22943. name: "Front",
  22944. image: {
  22945. source: "./media/characters/briar/front.svg",
  22946. extra: 1223/1157,
  22947. bottom: 123/1346
  22948. }
  22949. },
  22950. },
  22951. [
  22952. {
  22953. name: "Normal",
  22954. height: math.unit(13 + 7 / 12, "feet"),
  22955. default: true
  22956. },
  22957. ]
  22958. ))
  22959. characterMakers.push(() => makeCharacter(
  22960. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22961. {
  22962. side: {
  22963. height: math.unit(16, "feet"),
  22964. weight: math.unit(500, "lb"),
  22965. name: "Side",
  22966. image: {
  22967. source: "./media/characters/vanguard/side.svg",
  22968. extra: 1022/914,
  22969. bottom: 30/1052
  22970. }
  22971. },
  22972. sideAlt: {
  22973. height: math.unit(10, "feet"),
  22974. weight: math.unit(500, "lb"),
  22975. name: "Side (Alt)",
  22976. image: {
  22977. source: "./media/characters/vanguard/side-alt.svg",
  22978. extra: 502 / 425,
  22979. bottom: 0.087
  22980. }
  22981. },
  22982. },
  22983. [
  22984. {
  22985. name: "Normal",
  22986. height: math.unit(17.71, "feet"),
  22987. default: true
  22988. },
  22989. ]
  22990. ))
  22991. characterMakers.push(() => makeCharacter(
  22992. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22993. {
  22994. front: {
  22995. height: math.unit(7.5, "feet"),
  22996. weight: math.unit(2, "lb"),
  22997. name: "Front",
  22998. image: {
  22999. source: "./media/characters/artemis/work-safe-front.svg",
  23000. extra: 1192 / 1075,
  23001. bottom: 0.07
  23002. },
  23003. form: "work-safe",
  23004. default: true
  23005. },
  23006. frontNsfw: {
  23007. height: math.unit(7.5, "feet"),
  23008. weight: math.unit(2, "lb"),
  23009. name: "Front",
  23010. image: {
  23011. source: "./media/characters/artemis/calibrating-front.svg",
  23012. extra: 1192 / 1075,
  23013. bottom: 0.07
  23014. },
  23015. form: "calibrating",
  23016. default: true
  23017. },
  23018. frontNsfwer: {
  23019. height: math.unit(7.5, "feet"),
  23020. weight: math.unit(2, "lb"),
  23021. name: "Front",
  23022. image: {
  23023. source: "./media/characters/artemis/oversize-load-front.svg",
  23024. extra: 1192 / 1075,
  23025. bottom: 0.07
  23026. },
  23027. form: "oversize-load",
  23028. default: true
  23029. },
  23030. side: {
  23031. height: math.unit(7.5, "feet"),
  23032. weight: math.unit(2, "lb"),
  23033. name: "Side",
  23034. image: {
  23035. source: "./media/characters/artemis/work-safe-side.svg",
  23036. extra: 1192 / 1075,
  23037. bottom: 0.07
  23038. },
  23039. form: "work-safe"
  23040. },
  23041. sideNsfw: {
  23042. height: math.unit(7.5, "feet"),
  23043. weight: math.unit(2, "lb"),
  23044. name: "Side",
  23045. image: {
  23046. source: "./media/characters/artemis/calibrating-side.svg",
  23047. extra: 1192 / 1075,
  23048. bottom: 0.07
  23049. },
  23050. form: "calibrating"
  23051. },
  23052. sideNsfwer: {
  23053. height: math.unit(7.5, "feet"),
  23054. weight: math.unit(2, "lb"),
  23055. name: "Side",
  23056. image: {
  23057. source: "./media/characters/artemis/oversize-load-side.svg",
  23058. extra: 1192 / 1075,
  23059. bottom: 0.07
  23060. },
  23061. form: "oversize-load"
  23062. },
  23063. maw: {
  23064. height: math.unit(1.1, "feet"),
  23065. name: "Maw",
  23066. image: {
  23067. source: "./media/characters/artemis/maw.svg"
  23068. },
  23069. form: "work-safe"
  23070. },
  23071. stomach: {
  23072. height: math.unit(0.95, "feet"),
  23073. name: "Stomach",
  23074. image: {
  23075. source: "./media/characters/artemis/stomach.svg"
  23076. },
  23077. form: "work-safe"
  23078. },
  23079. dickCanine: {
  23080. height: math.unit(1, "feet"),
  23081. name: "Dick (Canine)",
  23082. image: {
  23083. source: "./media/characters/artemis/dick-canine.svg"
  23084. },
  23085. form: "calibrating"
  23086. },
  23087. dickEquine: {
  23088. height: math.unit(0.85, "feet"),
  23089. name: "Dick (Equine)",
  23090. image: {
  23091. source: "./media/characters/artemis/dick-equine.svg"
  23092. },
  23093. form: "calibrating"
  23094. },
  23095. dickExotic: {
  23096. height: math.unit(0.85, "feet"),
  23097. name: "Dick (Exotic)",
  23098. image: {
  23099. source: "./media/characters/artemis/dick-exotic.svg"
  23100. },
  23101. form: "calibrating"
  23102. },
  23103. dickCanineBigger: {
  23104. height: math.unit(1 * 1.33, "feet"),
  23105. name: "Dick (Canine)",
  23106. image: {
  23107. source: "./media/characters/artemis/dick-canine.svg"
  23108. },
  23109. form: "oversize-load"
  23110. },
  23111. dickEquineBigger: {
  23112. height: math.unit(0.85 * 1.33, "feet"),
  23113. name: "Dick (Equine)",
  23114. image: {
  23115. source: "./media/characters/artemis/dick-equine.svg"
  23116. },
  23117. form: "oversize-load"
  23118. },
  23119. dickExoticBigger: {
  23120. height: math.unit(0.85 * 1.33, "feet"),
  23121. name: "Dick (Exotic)",
  23122. image: {
  23123. source: "./media/characters/artemis/dick-exotic.svg"
  23124. },
  23125. form: "oversize-load"
  23126. },
  23127. },
  23128. [
  23129. {
  23130. name: "Normal",
  23131. height: math.unit(7.5, "feet"),
  23132. form: "work-safe",
  23133. default: true
  23134. },
  23135. {
  23136. name: "Normal",
  23137. height: math.unit(7.5, "feet"),
  23138. form: "calibrating",
  23139. default: true
  23140. },
  23141. {
  23142. name: "Normal",
  23143. height: math.unit(7.5, "feet"),
  23144. form: "oversize-load",
  23145. default: true
  23146. },
  23147. {
  23148. name: "Enlarged",
  23149. height: math.unit(12, "feet"),
  23150. form: "work-safe",
  23151. },
  23152. {
  23153. name: "Enlarged",
  23154. height: math.unit(12, "feet"),
  23155. form: "calibrating",
  23156. },
  23157. {
  23158. name: "Enlarged",
  23159. height: math.unit(12, "feet"),
  23160. form: "oversize-load",
  23161. },
  23162. ],
  23163. {
  23164. "work-safe": {
  23165. name: "Work-Safe",
  23166. default: true
  23167. },
  23168. "calibrating": {
  23169. name: "Calibrating"
  23170. },
  23171. "oversize-load": {
  23172. name: "Oversize Load"
  23173. }
  23174. }
  23175. ))
  23176. characterMakers.push(() => makeCharacter(
  23177. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  23178. {
  23179. front: {
  23180. height: math.unit(5 + 3 / 12, "feet"),
  23181. weight: math.unit(160, "lb"),
  23182. name: "Front",
  23183. image: {
  23184. source: "./media/characters/kira/front.svg",
  23185. extra: 906 / 786,
  23186. bottom: 0.01
  23187. }
  23188. },
  23189. back: {
  23190. height: math.unit(5 + 3 / 12, "feet"),
  23191. weight: math.unit(160, "lb"),
  23192. name: "Back",
  23193. image: {
  23194. source: "./media/characters/kira/back.svg",
  23195. extra: 882 / 757,
  23196. bottom: 0.005
  23197. }
  23198. },
  23199. frontDressed: {
  23200. height: math.unit(5 + 3 / 12, "feet"),
  23201. weight: math.unit(160, "lb"),
  23202. name: "Front (Dressed)",
  23203. image: {
  23204. source: "./media/characters/kira/front-dressed.svg",
  23205. extra: 906 / 786,
  23206. bottom: 0.01
  23207. }
  23208. },
  23209. beans: {
  23210. height: math.unit(0.92, "feet"),
  23211. name: "Beans",
  23212. image: {
  23213. source: "./media/characters/kira/beans.svg"
  23214. }
  23215. },
  23216. },
  23217. [
  23218. {
  23219. name: "Normal",
  23220. height: math.unit(5 + 3 / 12, "feet"),
  23221. default: true
  23222. },
  23223. ]
  23224. ))
  23225. characterMakers.push(() => makeCharacter(
  23226. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  23227. {
  23228. front: {
  23229. height: math.unit(5 + 4 / 12, "feet"),
  23230. weight: math.unit(145, "lb"),
  23231. name: "Front",
  23232. image: {
  23233. source: "./media/characters/scramble/front.svg",
  23234. extra: 763 / 727,
  23235. bottom: 0.05
  23236. }
  23237. },
  23238. back: {
  23239. height: math.unit(5 + 4 / 12, "feet"),
  23240. weight: math.unit(145, "lb"),
  23241. name: "Back",
  23242. image: {
  23243. source: "./media/characters/scramble/back.svg",
  23244. extra: 826 / 737,
  23245. bottom: 0.002
  23246. }
  23247. },
  23248. },
  23249. [
  23250. {
  23251. name: "Normal",
  23252. height: math.unit(5 + 4 / 12, "feet"),
  23253. default: true
  23254. },
  23255. ]
  23256. ))
  23257. characterMakers.push(() => makeCharacter(
  23258. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  23259. {
  23260. side: {
  23261. height: math.unit(6 + 2 / 12, "feet"),
  23262. weight: math.unit(190, "lb"),
  23263. name: "Side",
  23264. image: {
  23265. source: "./media/characters/biscuit/side.svg",
  23266. extra: 858 / 791,
  23267. bottom: 0.044
  23268. }
  23269. },
  23270. },
  23271. [
  23272. {
  23273. name: "Normal",
  23274. height: math.unit(6 + 2 / 12, "feet"),
  23275. default: true
  23276. },
  23277. ]
  23278. ))
  23279. characterMakers.push(() => makeCharacter(
  23280. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  23281. {
  23282. front: {
  23283. height: math.unit(5 + 2 / 12, "feet"),
  23284. weight: math.unit(120, "lb"),
  23285. name: "Front",
  23286. image: {
  23287. source: "./media/characters/poffin/front.svg",
  23288. extra: 786 / 680,
  23289. bottom: 0.005
  23290. }
  23291. },
  23292. },
  23293. [
  23294. {
  23295. name: "Normal",
  23296. height: math.unit(5 + 2 / 12, "feet"),
  23297. default: true
  23298. },
  23299. ]
  23300. ))
  23301. characterMakers.push(() => makeCharacter(
  23302. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  23303. {
  23304. front: {
  23305. height: math.unit(6 + 3 / 12, "feet"),
  23306. weight: math.unit(519, "lb"),
  23307. name: "Front",
  23308. image: {
  23309. source: "./media/characters/dhari/front.svg",
  23310. extra: 1048 / 946,
  23311. bottom: 0.015
  23312. }
  23313. },
  23314. back: {
  23315. height: math.unit(6 + 3 / 12, "feet"),
  23316. weight: math.unit(519, "lb"),
  23317. name: "Back",
  23318. image: {
  23319. source: "./media/characters/dhari/back.svg",
  23320. extra: 1048 / 931,
  23321. bottom: 0.005
  23322. }
  23323. },
  23324. frontDressed: {
  23325. height: math.unit(6 + 3 / 12, "feet"),
  23326. weight: math.unit(519, "lb"),
  23327. name: "Front (Dressed)",
  23328. image: {
  23329. source: "./media/characters/dhari/front-dressed.svg",
  23330. extra: 1713 / 1546,
  23331. bottom: 0.02
  23332. }
  23333. },
  23334. backDressed: {
  23335. height: math.unit(6 + 3 / 12, "feet"),
  23336. weight: math.unit(519, "lb"),
  23337. name: "Back (Dressed)",
  23338. image: {
  23339. source: "./media/characters/dhari/back-dressed.svg",
  23340. extra: 1699 / 1537,
  23341. bottom: 0.01
  23342. }
  23343. },
  23344. maw: {
  23345. height: math.unit(0.95, "feet"),
  23346. name: "Maw",
  23347. image: {
  23348. source: "./media/characters/dhari/maw.svg"
  23349. }
  23350. },
  23351. wereFront: {
  23352. height: math.unit(12 + 8 / 12, "feet"),
  23353. weight: math.unit(4000, "lb"),
  23354. name: "Front (Were)",
  23355. image: {
  23356. source: "./media/characters/dhari/were-front.svg",
  23357. extra: 1065 / 969,
  23358. bottom: 0.015
  23359. }
  23360. },
  23361. wereBack: {
  23362. height: math.unit(12 + 8 / 12, "feet"),
  23363. weight: math.unit(4000, "lb"),
  23364. name: "Back (Were)",
  23365. image: {
  23366. source: "./media/characters/dhari/were-back.svg",
  23367. extra: 1065 / 969,
  23368. bottom: 0.012
  23369. }
  23370. },
  23371. wereMaw: {
  23372. height: math.unit(0.625, "meters"),
  23373. name: "Maw (Were)",
  23374. image: {
  23375. source: "./media/characters/dhari/were-maw.svg"
  23376. }
  23377. },
  23378. },
  23379. [
  23380. {
  23381. name: "Normal",
  23382. height: math.unit(6 + 3 / 12, "feet"),
  23383. default: true
  23384. },
  23385. ]
  23386. ))
  23387. characterMakers.push(() => makeCharacter(
  23388. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  23389. {
  23390. anthro: {
  23391. height: math.unit(5 + 7 / 12, "feet"),
  23392. weight: math.unit(175, "lb"),
  23393. name: "Anthro",
  23394. image: {
  23395. source: "./media/characters/rena-dyne/anthro.svg",
  23396. extra: 1849 / 1785,
  23397. bottom: 0.005
  23398. }
  23399. },
  23400. taur: {
  23401. height: math.unit(15 + 6 / 12, "feet"),
  23402. weight: math.unit(8000, "lb"),
  23403. name: "Taur",
  23404. image: {
  23405. source: "./media/characters/rena-dyne/taur.svg",
  23406. extra: 2315 / 2234,
  23407. bottom: 0.033
  23408. }
  23409. },
  23410. },
  23411. [
  23412. {
  23413. name: "Normal",
  23414. height: math.unit(5 + 7 / 12, "feet"),
  23415. default: true
  23416. },
  23417. ]
  23418. ))
  23419. characterMakers.push(() => makeCharacter(
  23420. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  23421. {
  23422. front: {
  23423. height: math.unit(8, "feet"),
  23424. weight: math.unit(600, "lb"),
  23425. name: "Front",
  23426. image: {
  23427. source: "./media/characters/weremeep/front.svg",
  23428. extra: 970/849,
  23429. bottom: 7/977
  23430. }
  23431. },
  23432. },
  23433. [
  23434. {
  23435. name: "Normal",
  23436. height: math.unit(8, "feet"),
  23437. default: true
  23438. },
  23439. {
  23440. name: "Lorg",
  23441. height: math.unit(12, "feet")
  23442. },
  23443. {
  23444. name: "Oh Lawd She Comin'",
  23445. height: math.unit(20, "feet")
  23446. },
  23447. ]
  23448. ))
  23449. characterMakers.push(() => makeCharacter(
  23450. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  23451. {
  23452. front: {
  23453. height: math.unit(4, "feet"),
  23454. weight: math.unit(90, "lb"),
  23455. name: "Front",
  23456. image: {
  23457. source: "./media/characters/reza/front.svg",
  23458. extra: 1183 / 1111,
  23459. bottom: 0.017
  23460. }
  23461. },
  23462. back: {
  23463. height: math.unit(4, "feet"),
  23464. weight: math.unit(90, "lb"),
  23465. name: "Back",
  23466. image: {
  23467. source: "./media/characters/reza/back.svg",
  23468. extra: 1183 / 1111,
  23469. bottom: 0.01
  23470. }
  23471. },
  23472. drake: {
  23473. height: math.unit(30, "feet"),
  23474. weight: math.unit(246960, "lb"),
  23475. name: "Drake",
  23476. image: {
  23477. source: "./media/characters/reza/drake.svg",
  23478. extra: 2350 / 2024,
  23479. bottom: 60.7 / 2403
  23480. }
  23481. },
  23482. },
  23483. [
  23484. {
  23485. name: "Normal",
  23486. height: math.unit(4, "feet"),
  23487. default: true
  23488. },
  23489. ]
  23490. ))
  23491. characterMakers.push(() => makeCharacter(
  23492. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  23493. {
  23494. side: {
  23495. height: math.unit(15, "feet"),
  23496. weight: math.unit(14, "tons"),
  23497. name: "Side",
  23498. image: {
  23499. source: "./media/characters/athea/side.svg",
  23500. extra: 960 / 540,
  23501. bottom: 0.003
  23502. }
  23503. },
  23504. sitting: {
  23505. height: math.unit(6 * 2.85, "feet"),
  23506. weight: math.unit(14, "tons"),
  23507. name: "Sitting",
  23508. image: {
  23509. source: "./media/characters/athea/sitting.svg",
  23510. extra: 621 / 581,
  23511. bottom: 0.075
  23512. }
  23513. },
  23514. maw: {
  23515. height: math.unit(7.59498031496063, "feet"),
  23516. name: "Maw",
  23517. image: {
  23518. source: "./media/characters/athea/maw.svg"
  23519. }
  23520. },
  23521. },
  23522. [
  23523. {
  23524. name: "Lap Cat",
  23525. height: math.unit(2.5, "feet")
  23526. },
  23527. {
  23528. name: "Minimacro",
  23529. height: math.unit(15, "feet"),
  23530. default: true
  23531. },
  23532. {
  23533. name: "Macro",
  23534. height: math.unit(120, "feet")
  23535. },
  23536. {
  23537. name: "Macro+",
  23538. height: math.unit(640, "feet")
  23539. },
  23540. {
  23541. name: "Colossus",
  23542. height: math.unit(2.2, "miles")
  23543. },
  23544. ]
  23545. ))
  23546. characterMakers.push(() => makeCharacter(
  23547. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23548. {
  23549. front: {
  23550. height: math.unit(8 + 8 / 12, "feet"),
  23551. weight: math.unit(130, "kg"),
  23552. name: "Front",
  23553. image: {
  23554. source: "./media/characters/seroko/front.svg",
  23555. extra: 1385 / 1280,
  23556. bottom: 0.025
  23557. }
  23558. },
  23559. back: {
  23560. height: math.unit(8 + 8 / 12, "feet"),
  23561. weight: math.unit(130, "kg"),
  23562. name: "Back",
  23563. image: {
  23564. source: "./media/characters/seroko/back.svg",
  23565. extra: 1369 / 1238,
  23566. bottom: 0.018
  23567. }
  23568. },
  23569. frontDressed: {
  23570. height: math.unit(8 + 8 / 12, "feet"),
  23571. weight: math.unit(130, "kg"),
  23572. name: "Front (Dressed)",
  23573. image: {
  23574. source: "./media/characters/seroko/front-dressed.svg",
  23575. extra: 1366 / 1275,
  23576. bottom: 0.03
  23577. }
  23578. },
  23579. },
  23580. [
  23581. {
  23582. name: "Normal",
  23583. height: math.unit(8 + 8 / 12, "feet"),
  23584. default: true
  23585. },
  23586. ]
  23587. ))
  23588. characterMakers.push(() => makeCharacter(
  23589. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23590. {
  23591. front: {
  23592. height: math.unit(5.5, "feet"),
  23593. weight: math.unit(160, "lb"),
  23594. name: "Front",
  23595. image: {
  23596. source: "./media/characters/quatzi/front.svg",
  23597. extra: 2346 / 2242,
  23598. bottom: 0.015
  23599. }
  23600. },
  23601. },
  23602. [
  23603. {
  23604. name: "Normal",
  23605. height: math.unit(5.5, "feet"),
  23606. default: true
  23607. },
  23608. {
  23609. name: "Big",
  23610. height: math.unit(7.7, "feet")
  23611. },
  23612. ]
  23613. ))
  23614. characterMakers.push(() => makeCharacter(
  23615. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23616. {
  23617. front: {
  23618. height: math.unit(5 + 11 / 12, "feet"),
  23619. weight: math.unit(180, "lb"),
  23620. name: "Front",
  23621. image: {
  23622. source: "./media/characters/sen/front.svg",
  23623. extra: 1321 / 1254,
  23624. bottom: 0.015
  23625. }
  23626. },
  23627. side: {
  23628. height: math.unit(5 + 11 / 12, "feet"),
  23629. weight: math.unit(180, "lb"),
  23630. name: "Side",
  23631. image: {
  23632. source: "./media/characters/sen/side.svg",
  23633. extra: 1321 / 1254,
  23634. bottom: 0.007
  23635. }
  23636. },
  23637. back: {
  23638. height: math.unit(5 + 11 / 12, "feet"),
  23639. weight: math.unit(180, "lb"),
  23640. name: "Back",
  23641. image: {
  23642. source: "./media/characters/sen/back.svg",
  23643. extra: 1321 / 1254
  23644. }
  23645. },
  23646. },
  23647. [
  23648. {
  23649. name: "Normal",
  23650. height: math.unit(5 + 11 / 12, "feet"),
  23651. default: true
  23652. },
  23653. ]
  23654. ))
  23655. characterMakers.push(() => makeCharacter(
  23656. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23657. {
  23658. front: {
  23659. height: math.unit(166.6, "cm"),
  23660. weight: math.unit(66.6, "kg"),
  23661. name: "Front",
  23662. image: {
  23663. source: "./media/characters/fruity/front.svg",
  23664. extra: 1510 / 1386,
  23665. bottom: 0.04
  23666. }
  23667. },
  23668. back: {
  23669. height: math.unit(166.6, "cm"),
  23670. weight: math.unit(66.6, "lb"),
  23671. name: "Back",
  23672. image: {
  23673. source: "./media/characters/fruity/back.svg",
  23674. extra: 1563 / 1435,
  23675. bottom: 0.005
  23676. }
  23677. },
  23678. },
  23679. [
  23680. {
  23681. name: "Normal",
  23682. height: math.unit(166.6, "cm"),
  23683. default: true
  23684. },
  23685. {
  23686. name: "Demonic",
  23687. height: math.unit(166.6, "feet")
  23688. },
  23689. ]
  23690. ))
  23691. characterMakers.push(() => makeCharacter(
  23692. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23693. {
  23694. side: {
  23695. height: math.unit(10, "feet"),
  23696. weight: math.unit(500, "lb"),
  23697. name: "Side",
  23698. image: {
  23699. source: "./media/characters/zost/side.svg",
  23700. extra: 2870/2533,
  23701. bottom: 252/3122
  23702. }
  23703. },
  23704. mawFront: {
  23705. height: math.unit(1.08, "meters"),
  23706. name: "Maw (Front)",
  23707. image: {
  23708. source: "./media/characters/zost/maw-front.svg"
  23709. }
  23710. },
  23711. mawSide: {
  23712. height: math.unit(2.66, "feet"),
  23713. name: "Maw (Side)",
  23714. image: {
  23715. source: "./media/characters/zost/maw-side.svg"
  23716. }
  23717. },
  23718. wingspan: {
  23719. height: math.unit(7.4, "feet"),
  23720. name: "Wingspan",
  23721. image: {
  23722. source: "./media/characters/zost/wingspan.svg"
  23723. }
  23724. },
  23725. },
  23726. [
  23727. {
  23728. name: "Normal",
  23729. height: math.unit(10, "feet"),
  23730. default: true
  23731. },
  23732. ]
  23733. ))
  23734. characterMakers.push(() => makeCharacter(
  23735. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23736. {
  23737. front: {
  23738. height: math.unit(5 + 4 / 12, "feet"),
  23739. weight: math.unit(120, "lb"),
  23740. name: "Front",
  23741. image: {
  23742. source: "./media/characters/luci/front.svg",
  23743. extra: 1985 / 1884,
  23744. bottom: 0.04
  23745. }
  23746. },
  23747. back: {
  23748. height: math.unit(5 + 4 / 12, "feet"),
  23749. weight: math.unit(120, "lb"),
  23750. name: "Back",
  23751. image: {
  23752. source: "./media/characters/luci/back.svg",
  23753. extra: 1892 / 1791,
  23754. bottom: 0.002
  23755. }
  23756. },
  23757. },
  23758. [
  23759. {
  23760. name: "Normal",
  23761. height: math.unit(5 + 4 / 12, "feet"),
  23762. default: true
  23763. },
  23764. ]
  23765. ))
  23766. characterMakers.push(() => makeCharacter(
  23767. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23768. {
  23769. front: {
  23770. height: math.unit(1500, "feet"),
  23771. weight: math.unit(3.8e6, "tons"),
  23772. name: "Front",
  23773. image: {
  23774. source: "./media/characters/2th/front.svg",
  23775. extra: 3489 / 3350,
  23776. bottom: 0.1
  23777. }
  23778. },
  23779. foot: {
  23780. height: math.unit(461, "feet"),
  23781. name: "Foot",
  23782. image: {
  23783. source: "./media/characters/2th/foot.svg"
  23784. }
  23785. },
  23786. },
  23787. [
  23788. {
  23789. name: "\"Micro\"",
  23790. height: math.unit(15 + 7 / 12, "feet")
  23791. },
  23792. {
  23793. name: "Normal",
  23794. height: math.unit(1500, "feet"),
  23795. default: true
  23796. },
  23797. {
  23798. name: "Macro",
  23799. height: math.unit(5000, "feet")
  23800. },
  23801. {
  23802. name: "Megamacro",
  23803. height: math.unit(15, "miles")
  23804. },
  23805. {
  23806. name: "Gigamacro",
  23807. height: math.unit(4000, "miles")
  23808. },
  23809. {
  23810. name: "Galactic",
  23811. height: math.unit(50, "AU")
  23812. },
  23813. ]
  23814. ))
  23815. characterMakers.push(() => makeCharacter(
  23816. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23817. {
  23818. front: {
  23819. height: math.unit(5 + 6 / 12, "feet"),
  23820. weight: math.unit(220, "lb"),
  23821. name: "Front",
  23822. image: {
  23823. source: "./media/characters/amethyst/front.svg",
  23824. extra: 2078 / 2040,
  23825. bottom: 0.045
  23826. }
  23827. },
  23828. back: {
  23829. height: math.unit(5 + 6 / 12, "feet"),
  23830. weight: math.unit(220, "lb"),
  23831. name: "Back",
  23832. image: {
  23833. source: "./media/characters/amethyst/back.svg",
  23834. extra: 2021 / 1989,
  23835. bottom: 0.02
  23836. }
  23837. },
  23838. },
  23839. [
  23840. {
  23841. name: "Normal",
  23842. height: math.unit(5 + 6 / 12, "feet"),
  23843. default: true
  23844. },
  23845. ]
  23846. ))
  23847. characterMakers.push(() => makeCharacter(
  23848. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23849. {
  23850. front: {
  23851. height: math.unit(4 + 11 / 12, "feet"),
  23852. weight: math.unit(120, "lb"),
  23853. name: "Front",
  23854. image: {
  23855. source: "./media/characters/yumi-akiyama/front.svg",
  23856. extra: 2638/2432,
  23857. bottom: 70/2708
  23858. }
  23859. },
  23860. back: {
  23861. height: math.unit(4 + 11 / 12, "feet"),
  23862. weight: math.unit(120, "lb"),
  23863. name: "Back",
  23864. image: {
  23865. source: "./media/characters/yumi-akiyama/back.svg",
  23866. extra: 2502/2397,
  23867. bottom: 80/2582
  23868. }
  23869. },
  23870. casual: {
  23871. height: math.unit(4 + 11 / 12, "feet"),
  23872. weight: math.unit(120, "lb"),
  23873. name: "Casual",
  23874. image: {
  23875. source: "./media/characters/yumi-akiyama/casual.svg",
  23876. extra: 958/887,
  23877. bottom: 41/999
  23878. }
  23879. },
  23880. jammies: {
  23881. height: math.unit(4 + 11 / 12, "feet"),
  23882. weight: math.unit(120, "lb"),
  23883. name: "Jammies",
  23884. image: {
  23885. source: "./media/characters/yumi-akiyama/jammies.svg",
  23886. extra: 958/894,
  23887. bottom: 37/995
  23888. }
  23889. },
  23890. warmWeather: {
  23891. height: math.unit(4 + 11 / 12, "feet"),
  23892. weight: math.unit(120, "lb"),
  23893. name: "Warm Weather",
  23894. image: {
  23895. source: "./media/characters/yumi-akiyama/warm-weather.svg",
  23896. extra: 929/865,
  23897. bottom: 76/1005
  23898. }
  23899. },
  23900. mouth: {
  23901. height: math.unit(0.35, "feet"),
  23902. name: "Mouth",
  23903. image: {
  23904. source: "./media/characters/yumi-akiyama/mouth.svg"
  23905. }
  23906. },
  23907. paws: {
  23908. height: math.unit(1.05, "feet"),
  23909. name: "Paws",
  23910. image: {
  23911. source: "./media/characters/yumi-akiyama/paws.svg"
  23912. }
  23913. },
  23914. cockRing: {
  23915. height: math.unit(0.225, "feet"),
  23916. name: "Cock Ring",
  23917. image: {
  23918. source: "./media/characters/yumi-akiyama/cock-ring.svg"
  23919. }
  23920. },
  23921. },
  23922. [
  23923. {
  23924. name: "Galactic",
  23925. height: math.unit(50, "galaxies"),
  23926. default: true
  23927. },
  23928. {
  23929. name: "Universal",
  23930. height: math.unit(100, "universes")
  23931. },
  23932. ]
  23933. ))
  23934. characterMakers.push(() => makeCharacter(
  23935. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23936. {
  23937. front: {
  23938. height: math.unit(8, "feet"),
  23939. weight: math.unit(500, "lb"),
  23940. name: "Front",
  23941. image: {
  23942. source: "./media/characters/rifter-yrmori/front.svg",
  23943. extra: 1180 / 1125,
  23944. bottom: 0.02
  23945. }
  23946. },
  23947. back: {
  23948. height: math.unit(8, "feet"),
  23949. weight: math.unit(500, "lb"),
  23950. name: "Back",
  23951. image: {
  23952. source: "./media/characters/rifter-yrmori/back.svg",
  23953. extra: 1190 / 1145,
  23954. bottom: 0.001
  23955. }
  23956. },
  23957. wings: {
  23958. height: math.unit(7.75, "feet"),
  23959. weight: math.unit(500, "lb"),
  23960. name: "Wings",
  23961. image: {
  23962. source: "./media/characters/rifter-yrmori/wings.svg",
  23963. extra: 1357 / 1285
  23964. }
  23965. },
  23966. maw: {
  23967. height: math.unit(0.8, "feet"),
  23968. name: "Maw",
  23969. image: {
  23970. source: "./media/characters/rifter-yrmori/maw.svg"
  23971. }
  23972. },
  23973. mawfront: {
  23974. height: math.unit(1.45, "feet"),
  23975. name: "Maw (Front)",
  23976. image: {
  23977. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23978. }
  23979. },
  23980. },
  23981. [
  23982. {
  23983. name: "Normal",
  23984. height: math.unit(8, "feet"),
  23985. default: true
  23986. },
  23987. {
  23988. name: "Macro",
  23989. height: math.unit(42, "meters")
  23990. },
  23991. ]
  23992. ))
  23993. characterMakers.push(() => makeCharacter(
  23994. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23995. {
  23996. were: {
  23997. height: math.unit(25 + 6 / 12, "feet"),
  23998. weight: math.unit(10000, "lb"),
  23999. name: "Were",
  24000. image: {
  24001. source: "./media/characters/tahajin/were.svg",
  24002. extra: 801 / 770,
  24003. bottom: 0.042
  24004. }
  24005. },
  24006. aquatic: {
  24007. height: math.unit(6 + 4 / 12, "feet"),
  24008. weight: math.unit(160, "lb"),
  24009. name: "Aquatic",
  24010. image: {
  24011. source: "./media/characters/tahajin/aquatic.svg",
  24012. extra: 572 / 542,
  24013. bottom: 0.04
  24014. }
  24015. },
  24016. chow: {
  24017. height: math.unit(8 + 11 / 12, "feet"),
  24018. weight: math.unit(450, "lb"),
  24019. name: "Chow",
  24020. image: {
  24021. source: "./media/characters/tahajin/chow.svg",
  24022. extra: 660 / 640,
  24023. bottom: 0.015
  24024. }
  24025. },
  24026. demiNaga: {
  24027. height: math.unit(6 + 8 / 12, "feet"),
  24028. weight: math.unit(300, "lb"),
  24029. name: "Demi Naga",
  24030. image: {
  24031. source: "./media/characters/tahajin/demi-naga.svg",
  24032. extra: 643 / 615,
  24033. bottom: 0.1
  24034. }
  24035. },
  24036. data: {
  24037. height: math.unit(5, "inches"),
  24038. weight: math.unit(0.1, "lb"),
  24039. name: "Data",
  24040. image: {
  24041. source: "./media/characters/tahajin/data.svg"
  24042. }
  24043. },
  24044. fluu: {
  24045. height: math.unit(5 + 7 / 12, "feet"),
  24046. weight: math.unit(140, "lb"),
  24047. name: "Fluu",
  24048. image: {
  24049. source: "./media/characters/tahajin/fluu.svg",
  24050. extra: 628 / 592,
  24051. bottom: 0.02
  24052. }
  24053. },
  24054. starWarrior: {
  24055. height: math.unit(4 + 5 / 12, "feet"),
  24056. weight: math.unit(50, "lb"),
  24057. name: "Star Warrior",
  24058. image: {
  24059. source: "./media/characters/tahajin/star-warrior.svg"
  24060. }
  24061. },
  24062. },
  24063. [
  24064. {
  24065. name: "Normal",
  24066. height: math.unit(25 + 6 / 12, "feet"),
  24067. default: true
  24068. },
  24069. ]
  24070. ))
  24071. characterMakers.push(() => makeCharacter(
  24072. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  24073. {
  24074. front: {
  24075. height: math.unit(8, "feet"),
  24076. weight: math.unit(350, "lb"),
  24077. name: "Front",
  24078. image: {
  24079. source: "./media/characters/gabira/front.svg",
  24080. extra: 1261/1154,
  24081. bottom: 51/1312
  24082. }
  24083. },
  24084. back: {
  24085. height: math.unit(8, "feet"),
  24086. weight: math.unit(350, "lb"),
  24087. name: "Back",
  24088. image: {
  24089. source: "./media/characters/gabira/back.svg",
  24090. extra: 1265/1163,
  24091. bottom: 46/1311
  24092. }
  24093. },
  24094. head: {
  24095. height: math.unit(2.85, "feet"),
  24096. name: "Head",
  24097. image: {
  24098. source: "./media/characters/gabira/head.svg"
  24099. }
  24100. },
  24101. },
  24102. [
  24103. {
  24104. name: "Normal",
  24105. height: math.unit(8, "feet"),
  24106. default: true
  24107. },
  24108. ]
  24109. ))
  24110. characterMakers.push(() => makeCharacter(
  24111. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  24112. {
  24113. front: {
  24114. height: math.unit(5 + 3 / 12, "feet"),
  24115. weight: math.unit(137, "lb"),
  24116. name: "Front",
  24117. image: {
  24118. source: "./media/characters/sasha-katraine/front.svg",
  24119. extra: 1745/1694,
  24120. bottom: 37/1782
  24121. }
  24122. },
  24123. back: {
  24124. height: math.unit(5 + 3 / 12, "feet"),
  24125. weight: math.unit(137, "lb"),
  24126. name: "Back",
  24127. image: {
  24128. source: "./media/characters/sasha-katraine/back.svg",
  24129. extra: 1776/1699,
  24130. bottom: 26/1802
  24131. }
  24132. },
  24133. },
  24134. [
  24135. {
  24136. name: "Micro",
  24137. height: math.unit(5, "inches")
  24138. },
  24139. {
  24140. name: "Normal",
  24141. height: math.unit(5 + 3 / 12, "feet"),
  24142. default: true
  24143. },
  24144. ]
  24145. ))
  24146. characterMakers.push(() => makeCharacter(
  24147. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  24148. {
  24149. side: {
  24150. height: math.unit(4, "inches"),
  24151. weight: math.unit(200, "grams"),
  24152. name: "Side",
  24153. image: {
  24154. source: "./media/characters/der/side.svg",
  24155. extra: 719 / 400,
  24156. bottom: 30.6 / 749.9187
  24157. }
  24158. },
  24159. },
  24160. [
  24161. {
  24162. name: "Micro",
  24163. height: math.unit(4, "inches"),
  24164. default: true
  24165. },
  24166. ]
  24167. ))
  24168. characterMakers.push(() => makeCharacter(
  24169. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  24170. {
  24171. side: {
  24172. height: math.unit(30, "meters"),
  24173. weight: math.unit(700, "tonnes"),
  24174. name: "Side",
  24175. image: {
  24176. source: "./media/characters/fixerdragon/side.svg",
  24177. extra: (1293.0514 - 116.03) / 1106.86,
  24178. bottom: 116.03 / 1293.0514
  24179. }
  24180. },
  24181. },
  24182. [
  24183. {
  24184. name: "Planck",
  24185. height: math.unit(1.6e-35, "meters")
  24186. },
  24187. {
  24188. name: "Micro",
  24189. height: math.unit(0.4, "meters")
  24190. },
  24191. {
  24192. name: "Normal",
  24193. height: math.unit(30, "meters"),
  24194. default: true
  24195. },
  24196. {
  24197. name: "Megamacro",
  24198. height: math.unit(1.2, "megameters")
  24199. },
  24200. {
  24201. name: "Teramacro",
  24202. height: math.unit(130, "terameters")
  24203. },
  24204. {
  24205. name: "Yottamacro",
  24206. height: math.unit(6200, "yottameters")
  24207. },
  24208. ]
  24209. ));
  24210. characterMakers.push(() => makeCharacter(
  24211. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  24212. {
  24213. front: {
  24214. height: math.unit(8, "feet"),
  24215. weight: math.unit(250, "lb"),
  24216. name: "Front",
  24217. image: {
  24218. source: "./media/characters/kite/front.svg",
  24219. extra: 2796 / 2659,
  24220. bottom: 0.002
  24221. }
  24222. },
  24223. },
  24224. [
  24225. {
  24226. name: "Normal",
  24227. height: math.unit(8, "feet"),
  24228. default: true
  24229. },
  24230. {
  24231. name: "Macro",
  24232. height: math.unit(360, "feet")
  24233. },
  24234. {
  24235. name: "Megamacro",
  24236. height: math.unit(1500, "feet")
  24237. },
  24238. ]
  24239. ))
  24240. characterMakers.push(() => makeCharacter(
  24241. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  24242. {
  24243. anthro_front: {
  24244. height: math.unit(5 + 11/12, "feet"),
  24245. weight: math.unit(170, "lb"),
  24246. name: "Front",
  24247. image: {
  24248. source: "./media/characters/poojawa-vynar/anthro-front.svg",
  24249. extra: 1735/1585,
  24250. bottom: 96/1831
  24251. },
  24252. form: "anthro",
  24253. default: true
  24254. },
  24255. anthro_back: {
  24256. height: math.unit(5 + 11/12, "feet"),
  24257. weight: math.unit(170, "lb"),
  24258. name: "Back",
  24259. image: {
  24260. source: "./media/characters/poojawa-vynar/anthro-back.svg",
  24261. extra: 1749/1607,
  24262. bottom: 28/1777
  24263. },
  24264. form: "anthro"
  24265. },
  24266. anthro_male: {
  24267. height: math.unit(5 + 11/12, "feet"),
  24268. weight: math.unit(170, "lb"),
  24269. name: "Male",
  24270. image: {
  24271. source: "./media/characters/poojawa-vynar/anthro-front-male.svg",
  24272. extra: 1855/1713,
  24273. bottom: 63/1918
  24274. },
  24275. form: "anthro"
  24276. },
  24277. taur_front: {
  24278. height: math.unit(5 + 7/12, "feet"),
  24279. weight: math.unit(170, "lb"),
  24280. name: "Front",
  24281. image: {
  24282. source: "./media/characters/poojawa-vynar/taur-front.svg",
  24283. extra: 1151/1059,
  24284. bottom: 356/1507
  24285. },
  24286. form: "taur",
  24287. default: true
  24288. },
  24289. anthro_frontDressed: {
  24290. height: math.unit(5 + 11/12, "feet"),
  24291. weight: math.unit(170, "lb"),
  24292. name: "Front (Dressed)",
  24293. image: {
  24294. source: "./media/characters/poojawa-vynar/anthro-front-dressed.svg",
  24295. extra: 1735/1585,
  24296. bottom: 96/1831
  24297. },
  24298. form: "anthro"
  24299. },
  24300. anthro_backDressed: {
  24301. height: math.unit(5 + 11/12, "feet"),
  24302. weight: math.unit(170, "lb"),
  24303. name: "Back (Dressed)",
  24304. image: {
  24305. source: "./media/characters/poojawa-vynar/anthro-back-dressed.svg",
  24306. extra: 1749/1607,
  24307. bottom: 28/1777
  24308. },
  24309. form: "anthro"
  24310. },
  24311. anthro_maleDressed: {
  24312. height: math.unit(5 + 11/12, "feet"),
  24313. weight: math.unit(170, "lb"),
  24314. name: "Male (Dressed)",
  24315. image: {
  24316. source: "./media/characters/poojawa-vynar/anthro-front-male-dressed.svg",
  24317. extra: 1855/1713,
  24318. bottom: 63/1918
  24319. },
  24320. form: "anthro"
  24321. },
  24322. taur_frontDressed: {
  24323. height: math.unit(5 + 7/12, "feet"),
  24324. weight: math.unit(170, "lb"),
  24325. name: "Front (Dressed)",
  24326. image: {
  24327. source: "./media/characters/poojawa-vynar/taur-front-dressed.svg",
  24328. extra: 1151/1059,
  24329. bottom: 356/1507
  24330. },
  24331. form: "taur"
  24332. },
  24333. maw: {
  24334. height: math.unit(1.46, "feet"),
  24335. name: "Maw",
  24336. image: {
  24337. source: "./media/characters/poojawa-vynar/maw.svg"
  24338. },
  24339. allForms: true
  24340. },
  24341. head: {
  24342. height: math.unit(2.34, "feet"),
  24343. name: "Head",
  24344. image: {
  24345. source: "./media/characters/poojawa-vynar/head.svg"
  24346. },
  24347. allForms: true
  24348. },
  24349. leftPaw: {
  24350. height: math.unit(1.72, "feet"),
  24351. name: "Left Paw",
  24352. image: {
  24353. source: "./media/characters/poojawa-vynar/paw-left.svg"
  24354. },
  24355. allForms: true
  24356. },
  24357. rightPaw: {
  24358. height: math.unit(1.61, "feet"),
  24359. name: "Right Paw",
  24360. image: {
  24361. source: "./media/characters/poojawa-vynar/paw-right.svg"
  24362. },
  24363. allForms: true
  24364. },
  24365. toering: {
  24366. height: math.unit(2.9, "inches"),
  24367. name: "Toering",
  24368. image: {
  24369. source: "./media/characters/poojawa-vynar/toering.svg"
  24370. },
  24371. allForms: true
  24372. },
  24373. shaft: {
  24374. height: math.unit(0.625, "feet"),
  24375. name: "Shaft",
  24376. image: {
  24377. source: "./media/characters/poojawa-vynar/shaft.svg"
  24378. },
  24379. allForms: true
  24380. },
  24381. spade: {
  24382. height: math.unit(0.42, "feet"),
  24383. name: "Spade",
  24384. image: {
  24385. source: "./media/characters/poojawa-vynar/spade.svg"
  24386. },
  24387. allForms: true
  24388. },
  24389. },
  24390. [
  24391. {
  24392. name: "Shortstack",
  24393. height: math.unit(4, "feet"),
  24394. form: "anthro"
  24395. },
  24396. {
  24397. name: "Normal",
  24398. height: math.unit(5 + 11 / 12, "feet"),
  24399. form: "anthro",
  24400. default: true
  24401. },
  24402. {
  24403. name: "Tauric",
  24404. height: math.unit(4, "meters"),
  24405. form: "taur",
  24406. default: true
  24407. },
  24408. ],
  24409. {
  24410. "anthro": {
  24411. name: "Anthro",
  24412. default: true
  24413. },
  24414. "taur": {
  24415. name: "Taur",
  24416. },
  24417. }
  24418. ))
  24419. characterMakers.push(() => makeCharacter(
  24420. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  24421. {
  24422. front: {
  24423. height: math.unit(293, "meters"),
  24424. weight: math.unit(70400, "tons"),
  24425. name: "Front",
  24426. image: {
  24427. source: "./media/characters/violette/front.svg",
  24428. extra: 1227 / 1180,
  24429. bottom: 0.005
  24430. }
  24431. },
  24432. back: {
  24433. height: math.unit(293, "meters"),
  24434. weight: math.unit(70400, "tons"),
  24435. name: "Back",
  24436. image: {
  24437. source: "./media/characters/violette/back.svg",
  24438. extra: 1227 / 1180,
  24439. bottom: 0.005
  24440. }
  24441. },
  24442. },
  24443. [
  24444. {
  24445. name: "Macro",
  24446. height: math.unit(293, "meters"),
  24447. default: true
  24448. },
  24449. ]
  24450. ))
  24451. characterMakers.push(() => makeCharacter(
  24452. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  24453. {
  24454. front: {
  24455. height: math.unit(1050, "feet"),
  24456. weight: math.unit(200000, "tons"),
  24457. name: "Front",
  24458. image: {
  24459. source: "./media/characters/alessandra/front.svg",
  24460. extra: 960 / 912,
  24461. bottom: 0.06
  24462. }
  24463. },
  24464. },
  24465. [
  24466. {
  24467. name: "Macro",
  24468. height: math.unit(1050, "feet")
  24469. },
  24470. {
  24471. name: "Macro+",
  24472. height: math.unit(900, "meters"),
  24473. default: true
  24474. },
  24475. ]
  24476. ))
  24477. characterMakers.push(() => makeCharacter(
  24478. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  24479. {
  24480. front: {
  24481. height: math.unit(5, "feet"),
  24482. weight: math.unit(187, "lb"),
  24483. name: "Front",
  24484. image: {
  24485. source: "./media/characters/person/front.svg",
  24486. extra: 3087 / 2945,
  24487. bottom: 91 / 3181
  24488. }
  24489. },
  24490. },
  24491. [
  24492. {
  24493. name: "Micro",
  24494. height: math.unit(3, "inches")
  24495. },
  24496. {
  24497. name: "Normal",
  24498. height: math.unit(5, "feet"),
  24499. default: true
  24500. },
  24501. {
  24502. name: "Macro",
  24503. height: math.unit(90, "feet")
  24504. },
  24505. {
  24506. name: "Max Size",
  24507. height: math.unit(280, "feet")
  24508. },
  24509. ]
  24510. ))
  24511. characterMakers.push(() => makeCharacter(
  24512. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  24513. {
  24514. front: {
  24515. height: math.unit(4.5, "meters"),
  24516. weight: math.unit(3200, "lb"),
  24517. name: "Front",
  24518. image: {
  24519. source: "./media/characters/ty/front.svg",
  24520. extra: 1038 / 960,
  24521. bottom: 31.156 / 1068
  24522. }
  24523. },
  24524. back: {
  24525. height: math.unit(4.5, "meters"),
  24526. weight: math.unit(3200, "lb"),
  24527. name: "Back",
  24528. image: {
  24529. source: "./media/characters/ty/back.svg",
  24530. extra: 1044 / 966,
  24531. bottom: 7.48 / 1049
  24532. }
  24533. },
  24534. },
  24535. [
  24536. {
  24537. name: "Normal",
  24538. height: math.unit(4.5, "meters"),
  24539. default: true
  24540. },
  24541. ]
  24542. ))
  24543. characterMakers.push(() => makeCharacter(
  24544. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  24545. {
  24546. front: {
  24547. height: math.unit(5 + 4 / 12, "feet"),
  24548. weight: math.unit(115, "lb"),
  24549. name: "Front",
  24550. image: {
  24551. source: "./media/characters/rocky/front.svg",
  24552. extra: 1012 / 975,
  24553. bottom: 54 / 1066
  24554. }
  24555. },
  24556. },
  24557. [
  24558. {
  24559. name: "Normal",
  24560. height: math.unit(5 + 4 / 12, "feet"),
  24561. default: true
  24562. },
  24563. ]
  24564. ))
  24565. characterMakers.push(() => makeCharacter(
  24566. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  24567. {
  24568. upright: {
  24569. height: math.unit(6, "meters"),
  24570. weight: math.unit(4000, "kg"),
  24571. name: "Upright",
  24572. image: {
  24573. source: "./media/characters/ruin/upright.svg",
  24574. extra: 668 / 661,
  24575. bottom: 42 / 799.8396
  24576. }
  24577. },
  24578. },
  24579. [
  24580. {
  24581. name: "Normal",
  24582. height: math.unit(6, "meters"),
  24583. default: true
  24584. },
  24585. ]
  24586. ))
  24587. characterMakers.push(() => makeCharacter(
  24588. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24589. {
  24590. front: {
  24591. height: math.unit(5, "feet"),
  24592. weight: math.unit(106, "lb"),
  24593. name: "Front",
  24594. image: {
  24595. source: "./media/characters/robin/front.svg",
  24596. extra: 862 / 799,
  24597. bottom: 42.4 / 914.8856
  24598. }
  24599. },
  24600. },
  24601. [
  24602. {
  24603. name: "Normal",
  24604. height: math.unit(5, "feet"),
  24605. default: true
  24606. },
  24607. ]
  24608. ))
  24609. characterMakers.push(() => makeCharacter(
  24610. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24611. {
  24612. side: {
  24613. height: math.unit(3, "feet"),
  24614. weight: math.unit(225, "lb"),
  24615. name: "Side",
  24616. image: {
  24617. source: "./media/characters/saian/side.svg",
  24618. extra: 566 / 356,
  24619. bottom: 79.7 / 643
  24620. }
  24621. },
  24622. maw: {
  24623. height: math.unit(2.85, "feet"),
  24624. name: "Maw",
  24625. image: {
  24626. source: "./media/characters/saian/maw.svg"
  24627. }
  24628. },
  24629. },
  24630. [
  24631. {
  24632. name: "Normal",
  24633. height: math.unit(3, "feet"),
  24634. default: true
  24635. },
  24636. ]
  24637. ))
  24638. characterMakers.push(() => makeCharacter(
  24639. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24640. {
  24641. side: {
  24642. height: math.unit(8, "feet"),
  24643. weight: math.unit(300, "lb"),
  24644. name: "Side",
  24645. image: {
  24646. source: "./media/characters/equus-silvermane/side.svg",
  24647. extra: 2176 / 2050,
  24648. bottom: 65.7 / 2245
  24649. }
  24650. },
  24651. front: {
  24652. height: math.unit(8, "feet"),
  24653. weight: math.unit(300, "lb"),
  24654. name: "Front",
  24655. image: {
  24656. source: "./media/characters/equus-silvermane/front.svg",
  24657. extra: 4633 / 4400,
  24658. bottom: 71.3 / 4706.915
  24659. }
  24660. },
  24661. sideStepping: {
  24662. height: math.unit(8, "feet"),
  24663. weight: math.unit(300, "lb"),
  24664. name: "Side (Stepping)",
  24665. image: {
  24666. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24667. extra: 1968 / 1860,
  24668. bottom: 16.4 / 1989
  24669. }
  24670. },
  24671. },
  24672. [
  24673. {
  24674. name: "Normal",
  24675. height: math.unit(8, "feet")
  24676. },
  24677. {
  24678. name: "Minimacro",
  24679. height: math.unit(75, "feet"),
  24680. default: true
  24681. },
  24682. {
  24683. name: "Macro",
  24684. height: math.unit(150, "feet")
  24685. },
  24686. {
  24687. name: "Macro+",
  24688. height: math.unit(1000, "feet")
  24689. },
  24690. {
  24691. name: "Megamacro",
  24692. height: math.unit(1, "mile")
  24693. },
  24694. ]
  24695. ))
  24696. characterMakers.push(() => makeCharacter(
  24697. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24698. {
  24699. side: {
  24700. height: math.unit(20, "feet"),
  24701. weight: math.unit(30000, "kg"),
  24702. name: "Side",
  24703. image: {
  24704. source: "./media/characters/windar/side.svg",
  24705. extra: 1491 / 1248,
  24706. bottom: 82.56 / 1568
  24707. }
  24708. },
  24709. },
  24710. [
  24711. {
  24712. name: "Normal",
  24713. height: math.unit(20, "feet"),
  24714. default: true
  24715. },
  24716. ]
  24717. ))
  24718. characterMakers.push(() => makeCharacter(
  24719. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24720. {
  24721. side: {
  24722. height: math.unit(15.66, "feet"),
  24723. weight: math.unit(150, "lb"),
  24724. name: "Side",
  24725. image: {
  24726. source: "./media/characters/melody/side.svg",
  24727. extra: 1097 / 944,
  24728. bottom: 11.8 / 1109
  24729. }
  24730. },
  24731. sideOutfit: {
  24732. height: math.unit(15.66, "feet"),
  24733. weight: math.unit(150, "lb"),
  24734. name: "Side (Outfit)",
  24735. image: {
  24736. source: "./media/characters/melody/side-outfit.svg",
  24737. extra: 1097 / 944,
  24738. bottom: 11.8 / 1109
  24739. }
  24740. },
  24741. },
  24742. [
  24743. {
  24744. name: "Normal",
  24745. height: math.unit(15.66, "feet"),
  24746. default: true
  24747. },
  24748. ]
  24749. ))
  24750. characterMakers.push(() => makeCharacter(
  24751. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24752. {
  24753. armoredFront: {
  24754. height: math.unit(8, "feet"),
  24755. weight: math.unit(325, "lb"),
  24756. name: "Front",
  24757. image: {
  24758. source: "./media/characters/windera/armored-front.svg",
  24759. extra: 1830/1598,
  24760. bottom: 151/1981
  24761. },
  24762. form: "armored",
  24763. default: true
  24764. },
  24765. macroFront: {
  24766. height: math.unit(70, "feet"),
  24767. weight: math.unit(315453, "lb"),
  24768. name: "Front",
  24769. image: {
  24770. source: "./media/characters/windera/macro-front.svg",
  24771. extra: 963/883,
  24772. bottom: 23/986
  24773. },
  24774. form: "macro",
  24775. default: true
  24776. },
  24777. },
  24778. [
  24779. {
  24780. name: "Normal",
  24781. height: math.unit(8, "feet"),
  24782. default: true,
  24783. form: "armored"
  24784. },
  24785. {
  24786. name: "Normal",
  24787. height: math.unit(70, "feet"),
  24788. default: true,
  24789. form: "macro"
  24790. },
  24791. ],
  24792. {
  24793. "armored": {
  24794. name: "Armored",
  24795. default: true
  24796. },
  24797. "macro": {
  24798. name: "Macro",
  24799. },
  24800. }
  24801. ))
  24802. characterMakers.push(() => makeCharacter(
  24803. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24804. {
  24805. front: {
  24806. height: math.unit(28.75, "feet"),
  24807. weight: math.unit(2000, "kg"),
  24808. name: "Front",
  24809. image: {
  24810. source: "./media/characters/sonear/front.svg",
  24811. extra: 1041.1 / 964.9,
  24812. bottom: 53.7 / 1096.6
  24813. }
  24814. },
  24815. },
  24816. [
  24817. {
  24818. name: "Normal",
  24819. height: math.unit(28.75, "feet"),
  24820. default: true
  24821. },
  24822. ]
  24823. ))
  24824. characterMakers.push(() => makeCharacter(
  24825. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24826. {
  24827. side: {
  24828. height: math.unit(25.5, "feet"),
  24829. weight: math.unit(23000, "kg"),
  24830. name: "Side",
  24831. image: {
  24832. source: "./media/characters/kanara/side.svg"
  24833. }
  24834. },
  24835. },
  24836. [
  24837. {
  24838. name: "Normal",
  24839. height: math.unit(25.5, "feet"),
  24840. default: true
  24841. },
  24842. ]
  24843. ))
  24844. characterMakers.push(() => makeCharacter(
  24845. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24846. {
  24847. side: {
  24848. height: math.unit(10, "feet"),
  24849. weight: math.unit(1000, "kg"),
  24850. name: "Side",
  24851. image: {
  24852. source: "./media/characters/ereus/side.svg",
  24853. extra: 1157 / 959,
  24854. bottom: 153 / 1312.5
  24855. }
  24856. },
  24857. },
  24858. [
  24859. {
  24860. name: "Normal",
  24861. height: math.unit(10, "feet"),
  24862. default: true
  24863. },
  24864. ]
  24865. ))
  24866. characterMakers.push(() => makeCharacter(
  24867. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24868. {
  24869. side: {
  24870. height: math.unit(4.5, "feet"),
  24871. weight: math.unit(500, "lb"),
  24872. name: "Side",
  24873. image: {
  24874. source: "./media/characters/e-ter/side.svg",
  24875. extra: 1550 / 1248,
  24876. bottom: 146 / 1694
  24877. }
  24878. },
  24879. },
  24880. [
  24881. {
  24882. name: "Normal",
  24883. height: math.unit(4.5, "feet"),
  24884. default: true
  24885. },
  24886. ]
  24887. ))
  24888. characterMakers.push(() => makeCharacter(
  24889. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24890. {
  24891. side: {
  24892. height: math.unit(9.7, "feet"),
  24893. weight: math.unit(4000, "kg"),
  24894. name: "Side",
  24895. image: {
  24896. source: "./media/characters/yamie/side.svg"
  24897. }
  24898. },
  24899. },
  24900. [
  24901. {
  24902. name: "Normal",
  24903. height: math.unit(9.7, "feet"),
  24904. default: true
  24905. },
  24906. ]
  24907. ))
  24908. characterMakers.push(() => makeCharacter(
  24909. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24910. {
  24911. front: {
  24912. height: math.unit(50, "feet"),
  24913. weight: math.unit(50000, "kg"),
  24914. name: "Front",
  24915. image: {
  24916. source: "./media/characters/anders/front.svg",
  24917. extra: 570 / 539,
  24918. bottom: 14.7 / 586.7
  24919. }
  24920. },
  24921. },
  24922. [
  24923. {
  24924. name: "Large",
  24925. height: math.unit(50, "feet")
  24926. },
  24927. {
  24928. name: "Macro",
  24929. height: math.unit(2000, "feet"),
  24930. default: true
  24931. },
  24932. {
  24933. name: "Megamacro",
  24934. height: math.unit(12, "miles")
  24935. },
  24936. ]
  24937. ))
  24938. characterMakers.push(() => makeCharacter(
  24939. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24940. {
  24941. front: {
  24942. height: math.unit(7 + 2 / 12, "feet"),
  24943. weight: math.unit(300, "lb"),
  24944. name: "Front",
  24945. image: {
  24946. source: "./media/characters/reban/front.svg",
  24947. extra: 1287/1212,
  24948. bottom: 148/1435
  24949. }
  24950. },
  24951. head: {
  24952. height: math.unit(1.95, "feet"),
  24953. name: "Head",
  24954. image: {
  24955. source: "./media/characters/reban/head.svg"
  24956. }
  24957. },
  24958. maw: {
  24959. height: math.unit(0.95, "feet"),
  24960. name: "Maw",
  24961. image: {
  24962. source: "./media/characters/reban/maw.svg"
  24963. }
  24964. },
  24965. foot: {
  24966. height: math.unit(1.65, "feet"),
  24967. name: "Foot",
  24968. image: {
  24969. source: "./media/characters/reban/foot.svg"
  24970. }
  24971. },
  24972. dick: {
  24973. height: math.unit(7 / 5, "feet"),
  24974. name: "Dick",
  24975. image: {
  24976. source: "./media/characters/reban/dick.svg"
  24977. }
  24978. },
  24979. },
  24980. [
  24981. {
  24982. name: "Natural Height",
  24983. height: math.unit(7 + 2 / 12, "feet")
  24984. },
  24985. {
  24986. name: "Macro",
  24987. height: math.unit(500, "feet"),
  24988. default: true
  24989. },
  24990. {
  24991. name: "Canon Height",
  24992. height: math.unit(50, "AU")
  24993. },
  24994. ]
  24995. ))
  24996. characterMakers.push(() => makeCharacter(
  24997. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24998. {
  24999. front: {
  25000. height: math.unit(6, "feet"),
  25001. weight: math.unit(150, "lb"),
  25002. name: "Front",
  25003. image: {
  25004. source: "./media/characters/terrance-keayes/front.svg",
  25005. extra: 1.005,
  25006. bottom: 151 / 1615
  25007. }
  25008. },
  25009. side: {
  25010. height: math.unit(6, "feet"),
  25011. weight: math.unit(150, "lb"),
  25012. name: "Side",
  25013. image: {
  25014. source: "./media/characters/terrance-keayes/side.svg",
  25015. extra: 1.005,
  25016. bottom: 129.4 / 1544
  25017. }
  25018. },
  25019. back: {
  25020. height: math.unit(6, "feet"),
  25021. weight: math.unit(150, "lb"),
  25022. name: "Back",
  25023. image: {
  25024. source: "./media/characters/terrance-keayes/back.svg",
  25025. extra: 1.005,
  25026. bottom: 58.4 / 1557.3
  25027. }
  25028. },
  25029. dick: {
  25030. height: math.unit(6 * 0.208, "feet"),
  25031. name: "Dick",
  25032. image: {
  25033. source: "./media/characters/terrance-keayes/dick.svg"
  25034. }
  25035. },
  25036. },
  25037. [
  25038. {
  25039. name: "Canon Height",
  25040. height: math.unit(35, "miles"),
  25041. default: true
  25042. },
  25043. ]
  25044. ))
  25045. characterMakers.push(() => makeCharacter(
  25046. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  25047. {
  25048. front: {
  25049. height: math.unit(6, "feet"),
  25050. weight: math.unit(150, "lb"),
  25051. name: "Front",
  25052. image: {
  25053. source: "./media/characters/ofelia/front.svg",
  25054. extra: 1130/1117,
  25055. bottom: 91/1221
  25056. }
  25057. },
  25058. back: {
  25059. height: math.unit(6, "feet"),
  25060. weight: math.unit(150, "lb"),
  25061. name: "Back",
  25062. image: {
  25063. source: "./media/characters/ofelia/back.svg",
  25064. extra: 1172/1159,
  25065. bottom: 28/1200
  25066. }
  25067. },
  25068. maw: {
  25069. height: math.unit(1, "feet"),
  25070. name: "Maw",
  25071. image: {
  25072. source: "./media/characters/ofelia/maw.svg"
  25073. }
  25074. },
  25075. foot: {
  25076. height: math.unit(1.949, "feet"),
  25077. name: "Foot",
  25078. image: {
  25079. source: "./media/characters/ofelia/foot.svg"
  25080. }
  25081. },
  25082. },
  25083. [
  25084. {
  25085. name: "Canon Height",
  25086. height: math.unit(2000, "miles"),
  25087. default: true
  25088. },
  25089. ]
  25090. ))
  25091. characterMakers.push(() => makeCharacter(
  25092. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  25093. {
  25094. front: {
  25095. height: math.unit(6, "feet"),
  25096. weight: math.unit(150, "lb"),
  25097. name: "Front",
  25098. image: {
  25099. source: "./media/characters/samuel/front.svg",
  25100. extra: 265 / 258,
  25101. bottom: 2 / 266.1566
  25102. }
  25103. },
  25104. },
  25105. [
  25106. {
  25107. name: "Macro",
  25108. height: math.unit(100, "feet"),
  25109. default: true
  25110. },
  25111. {
  25112. name: "Full Size",
  25113. height: math.unit(1000, "miles")
  25114. },
  25115. ]
  25116. ))
  25117. characterMakers.push(() => makeCharacter(
  25118. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  25119. {
  25120. front: {
  25121. height: math.unit(6, "feet"),
  25122. weight: math.unit(300, "lb"),
  25123. name: "Front",
  25124. image: {
  25125. source: "./media/characters/beishir-kiel/front.svg",
  25126. extra: 569 / 547,
  25127. bottom: 41.9 / 609
  25128. }
  25129. },
  25130. maw: {
  25131. height: math.unit(6 * 0.202, "feet"),
  25132. name: "Maw",
  25133. image: {
  25134. source: "./media/characters/beishir-kiel/maw.svg"
  25135. }
  25136. },
  25137. },
  25138. [
  25139. {
  25140. name: "Macro",
  25141. height: math.unit(300, "feet"),
  25142. default: true
  25143. },
  25144. ]
  25145. ))
  25146. characterMakers.push(() => makeCharacter(
  25147. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  25148. {
  25149. front: {
  25150. height: math.unit(5 + 7/12, "feet"),
  25151. weight: math.unit(120, "lb"),
  25152. name: "Front",
  25153. image: {
  25154. source: "./media/characters/logan-grey/front.svg",
  25155. extra: 1836/1738,
  25156. bottom: 108/1944
  25157. }
  25158. },
  25159. back: {
  25160. height: math.unit(5 + 7/12, "feet"),
  25161. weight: math.unit(120, "lb"),
  25162. name: "Back",
  25163. image: {
  25164. source: "./media/characters/logan-grey/back.svg",
  25165. extra: 1880/1794,
  25166. bottom: 24/1904
  25167. }
  25168. },
  25169. frontSfw: {
  25170. height: math.unit(5 + 7/12, "feet"),
  25171. weight: math.unit(120, "lb"),
  25172. name: "Front (SFW)",
  25173. image: {
  25174. source: "./media/characters/logan-grey/front-sfw.svg",
  25175. extra: 1836/1738,
  25176. bottom: 108/1944
  25177. }
  25178. },
  25179. backSfw: {
  25180. height: math.unit(5 + 7/12, "feet"),
  25181. weight: math.unit(120, "lb"),
  25182. name: "Back (SFW)",
  25183. image: {
  25184. source: "./media/characters/logan-grey/back-sfw.svg",
  25185. extra: 1880/1794,
  25186. bottom: 24/1904
  25187. }
  25188. },
  25189. hands: {
  25190. height: math.unit(0.84, "feet"),
  25191. name: "Hands",
  25192. image: {
  25193. source: "./media/characters/logan-grey/hands.svg"
  25194. }
  25195. },
  25196. paws: {
  25197. height: math.unit(0.72, "feet"),
  25198. name: "Paws",
  25199. image: {
  25200. source: "./media/characters/logan-grey/paws.svg"
  25201. }
  25202. },
  25203. cock: {
  25204. height: math.unit(1.45, "feet"),
  25205. name: "Cock",
  25206. image: {
  25207. source: "./media/characters/logan-grey/cock.svg"
  25208. }
  25209. },
  25210. cockAlt: {
  25211. height: math.unit(1.437, "feet"),
  25212. name: "Cock (alt)",
  25213. image: {
  25214. source: "./media/characters/logan-grey/cock-alt.svg"
  25215. }
  25216. },
  25217. },
  25218. [
  25219. {
  25220. name: "Normal",
  25221. height: math.unit(5 + 8 / 12, "feet")
  25222. },
  25223. {
  25224. name: "The 500 Foot Femboy",
  25225. height: math.unit(500, "feet"),
  25226. default: true
  25227. },
  25228. {
  25229. name: "Megmacro",
  25230. height: math.unit(20, "miles")
  25231. },
  25232. ]
  25233. ))
  25234. characterMakers.push(() => makeCharacter(
  25235. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  25236. {
  25237. front: {
  25238. height: math.unit(8 + 2 / 12, "feet"),
  25239. weight: math.unit(275, "lb"),
  25240. name: "Front",
  25241. image: {
  25242. source: "./media/characters/draganta/front.svg",
  25243. extra: 1177 / 1135,
  25244. bottom: 33.46 / 1212.1
  25245. }
  25246. },
  25247. },
  25248. [
  25249. {
  25250. name: "Normal",
  25251. height: math.unit(8 + 6 / 12, "feet"),
  25252. default: true
  25253. },
  25254. {
  25255. name: "Macro",
  25256. height: math.unit(150, "feet")
  25257. },
  25258. {
  25259. name: "Megamacro",
  25260. height: math.unit(1000, "miles")
  25261. },
  25262. ]
  25263. ))
  25264. characterMakers.push(() => makeCharacter(
  25265. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  25266. {
  25267. front: {
  25268. height: math.unit(1.72, "m"),
  25269. weight: math.unit(80, "lb"),
  25270. name: "Front",
  25271. image: {
  25272. source: "./media/characters/voski/front.svg",
  25273. extra: 2076.22 / 2022.4,
  25274. bottom: 102.7 / 2177.3866
  25275. }
  25276. },
  25277. frontFlaccid: {
  25278. height: math.unit(1.72, "m"),
  25279. weight: math.unit(80, "lb"),
  25280. name: "Front (Flaccid)",
  25281. image: {
  25282. source: "./media/characters/voski/front-flaccid.svg",
  25283. extra: 2076.22 / 2022.4,
  25284. bottom: 102.7 / 2177.3866
  25285. }
  25286. },
  25287. frontErect: {
  25288. height: math.unit(1.72, "m"),
  25289. weight: math.unit(80, "lb"),
  25290. name: "Front (Erect)",
  25291. image: {
  25292. source: "./media/characters/voski/front-erect.svg",
  25293. extra: 2076.22 / 2022.4,
  25294. bottom: 102.7 / 2177.3866
  25295. }
  25296. },
  25297. back: {
  25298. height: math.unit(1.72, "m"),
  25299. weight: math.unit(80, "lb"),
  25300. name: "Back",
  25301. image: {
  25302. source: "./media/characters/voski/back.svg",
  25303. extra: 2104 / 2051,
  25304. bottom: 10.45 / 2113.63
  25305. }
  25306. },
  25307. },
  25308. [
  25309. {
  25310. name: "Normal",
  25311. height: math.unit(1.72, "m")
  25312. },
  25313. {
  25314. name: "Macro",
  25315. height: math.unit(55, "m"),
  25316. default: true
  25317. },
  25318. {
  25319. name: "Macro+",
  25320. height: math.unit(300, "m")
  25321. },
  25322. {
  25323. name: "Macro++",
  25324. height: math.unit(700, "m")
  25325. },
  25326. {
  25327. name: "Macro+++",
  25328. height: math.unit(4500, "m")
  25329. },
  25330. {
  25331. name: "Macro++++",
  25332. height: math.unit(45, "km")
  25333. },
  25334. {
  25335. name: "Macro+++++",
  25336. height: math.unit(1220, "km")
  25337. },
  25338. ]
  25339. ))
  25340. characterMakers.push(() => makeCharacter(
  25341. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  25342. {
  25343. front: {
  25344. height: math.unit(2.3, "m"),
  25345. weight: math.unit(304, "kg"),
  25346. name: "Front",
  25347. image: {
  25348. source: "./media/characters/icowom-lee/front.svg",
  25349. extra: 985 / 955,
  25350. bottom: 25.4 / 1012
  25351. }
  25352. },
  25353. fronttentacles: {
  25354. height: math.unit(2.3, "m"),
  25355. weight: math.unit(304, "kg"),
  25356. name: "Front-tentacles",
  25357. image: {
  25358. source: "./media/characters/icowom-lee/front-tentacles.svg",
  25359. extra: 985 / 955,
  25360. bottom: 25.4 / 1012
  25361. }
  25362. },
  25363. back: {
  25364. height: math.unit(2.3, "m"),
  25365. weight: math.unit(304, "kg"),
  25366. name: "Back",
  25367. image: {
  25368. source: "./media/characters/icowom-lee/back.svg",
  25369. extra: 975 / 954,
  25370. bottom: 9.5 / 985
  25371. }
  25372. },
  25373. backtentacles: {
  25374. height: math.unit(2.3, "m"),
  25375. weight: math.unit(304, "kg"),
  25376. name: "Back-tentacles",
  25377. image: {
  25378. source: "./media/characters/icowom-lee/back-tentacles.svg",
  25379. extra: 975 / 954,
  25380. bottom: 9.5 / 985
  25381. }
  25382. },
  25383. frontDressed: {
  25384. height: math.unit(2.3, "m"),
  25385. weight: math.unit(304, "kg"),
  25386. name: "Front (Dressed)",
  25387. image: {
  25388. source: "./media/characters/icowom-lee/front-dressed.svg",
  25389. extra: 3076 / 2933,
  25390. bottom: 51.4 / 3125.1889
  25391. }
  25392. },
  25393. rump: {
  25394. height: math.unit(0.776, "meters"),
  25395. name: "Rump",
  25396. image: {
  25397. source: "./media/characters/icowom-lee/rump.svg"
  25398. }
  25399. },
  25400. genitals: {
  25401. height: math.unit(0.78, "meters"),
  25402. name: "Genitals",
  25403. image: {
  25404. source: "./media/characters/icowom-lee/genitals.svg"
  25405. }
  25406. },
  25407. },
  25408. [
  25409. {
  25410. name: "Normal",
  25411. height: math.unit(2.3, "meters"),
  25412. default: true
  25413. },
  25414. {
  25415. name: "Macro",
  25416. height: math.unit(94, "meters"),
  25417. default: true
  25418. },
  25419. ]
  25420. ))
  25421. characterMakers.push(() => makeCharacter(
  25422. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  25423. {
  25424. front: {
  25425. height: math.unit(22, "meters"),
  25426. weight: math.unit(21000, "kg"),
  25427. name: "Front",
  25428. image: {
  25429. source: "./media/characters/shock-diamond/front.svg",
  25430. extra: 2204 / 2053,
  25431. bottom: 65 / 2239.47
  25432. }
  25433. },
  25434. frontNude: {
  25435. height: math.unit(22, "meters"),
  25436. weight: math.unit(21000, "kg"),
  25437. name: "Front (Nude)",
  25438. image: {
  25439. source: "./media/characters/shock-diamond/front-nude.svg",
  25440. extra: 2514 / 2285,
  25441. bottom: 13 / 2527.56
  25442. }
  25443. },
  25444. },
  25445. [
  25446. {
  25447. name: "Normal",
  25448. height: math.unit(3, "meters")
  25449. },
  25450. {
  25451. name: "Macro",
  25452. height: math.unit(22, "meters"),
  25453. default: true
  25454. },
  25455. ]
  25456. ))
  25457. characterMakers.push(() => makeCharacter(
  25458. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  25459. {
  25460. front: {
  25461. height: math.unit(5 + 4/12, "feet"),
  25462. weight: math.unit(125, "lb"),
  25463. name: "Front",
  25464. image: {
  25465. source: "./media/characters/rory/front.svg",
  25466. extra: 1790/1681,
  25467. bottom: 66/1856
  25468. },
  25469. form: "normal",
  25470. default: true
  25471. },
  25472. back: {
  25473. height: math.unit(5 + 4/12, "feet"),
  25474. weight: math.unit(125, "lb"),
  25475. name: "Back",
  25476. image: {
  25477. source: "./media/characters/rory/back.svg",
  25478. extra: 1805/1690,
  25479. bottom: 56/1861
  25480. },
  25481. form: "normal"
  25482. },
  25483. frontDressed: {
  25484. height: math.unit(5 + 4/12, "feet"),
  25485. weight: math.unit(125, "lb"),
  25486. name: "Front (Dressed)",
  25487. image: {
  25488. source: "./media/characters/rory/front-dressed.svg",
  25489. extra: 1790/1681,
  25490. bottom: 66/1856
  25491. },
  25492. form: "normal"
  25493. },
  25494. backDressed: {
  25495. height: math.unit(5 + 4/12, "feet"),
  25496. weight: math.unit(125, "lb"),
  25497. name: "Back (Dressed)",
  25498. image: {
  25499. source: "./media/characters/rory/back-dressed.svg",
  25500. extra: 1805/1690,
  25501. bottom: 56/1861
  25502. },
  25503. form: "normal"
  25504. },
  25505. frontNsfw: {
  25506. height: math.unit(5 + 4/12, "feet"),
  25507. weight: math.unit(125, "lb"),
  25508. name: "Front (NSFW)",
  25509. image: {
  25510. source: "./media/characters/rory/front-nsfw.svg",
  25511. extra: 1790/1681,
  25512. bottom: 66/1856
  25513. },
  25514. form: "normal"
  25515. },
  25516. backNsfw: {
  25517. height: math.unit(5 + 4/12, "feet"),
  25518. weight: math.unit(125, "lb"),
  25519. name: "Back (NSFW)",
  25520. image: {
  25521. source: "./media/characters/rory/back-nsfw.svg",
  25522. extra: 1805/1690,
  25523. bottom: 56/1861
  25524. },
  25525. form: "normal"
  25526. },
  25527. dick: {
  25528. height: math.unit(0.8, "feet"),
  25529. name: "Dick",
  25530. image: {
  25531. source: "./media/characters/rory/dick.svg"
  25532. },
  25533. form: "normal"
  25534. },
  25535. thicc_front: {
  25536. height: math.unit(5 + 4/12, "feet"),
  25537. weight: math.unit(195, "lb"),
  25538. name: "Front",
  25539. image: {
  25540. source: "./media/characters/rory/thicc-front.svg",
  25541. extra: 1220/1100,
  25542. bottom: 103/1323
  25543. },
  25544. form: "thicc",
  25545. default: true
  25546. },
  25547. thicc_back: {
  25548. height: math.unit(5 + 4/12, "feet"),
  25549. weight: math.unit(195, "lb"),
  25550. name: "Back",
  25551. image: {
  25552. source: "./media/characters/rory/thicc-back.svg",
  25553. extra: 1166/1086,
  25554. bottom: 35/1201
  25555. },
  25556. form: "thicc"
  25557. },
  25558. },
  25559. [
  25560. {
  25561. name: "Micro",
  25562. height: math.unit(3, "inches"),
  25563. allForms: true
  25564. },
  25565. {
  25566. name: "Normal",
  25567. height: math.unit(5 + 4/12, "feet"),
  25568. allForms: true,
  25569. default: true
  25570. },
  25571. {
  25572. name: "Macro",
  25573. height: math.unit(90, "feet"),
  25574. allForms: true
  25575. },
  25576. {
  25577. name: "Supercharged",
  25578. height: math.unit(270, "feet"),
  25579. allForms: true
  25580. },
  25581. ],
  25582. {
  25583. "normal": {
  25584. name: "Normal",
  25585. default: true
  25586. },
  25587. "thicc": {
  25588. name: "Thicc",
  25589. },
  25590. }
  25591. ))
  25592. characterMakers.push(() => makeCharacter(
  25593. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25594. {
  25595. front: {
  25596. height: math.unit(5 + 9 / 12, "feet"),
  25597. weight: math.unit(190, "lb"),
  25598. name: "Front",
  25599. image: {
  25600. source: "./media/characters/sprisk/front.svg",
  25601. extra: 1225 / 1180,
  25602. bottom: 42.7 / 1266.4
  25603. }
  25604. },
  25605. frontNsfw: {
  25606. height: math.unit(5 + 9 / 12, "feet"),
  25607. weight: math.unit(190, "lb"),
  25608. name: "Front (NSFW)",
  25609. image: {
  25610. source: "./media/characters/sprisk/front-nsfw.svg",
  25611. extra: 1225 / 1180,
  25612. bottom: 42.7 / 1266.4
  25613. }
  25614. },
  25615. back: {
  25616. height: math.unit(5 + 9 / 12, "feet"),
  25617. weight: math.unit(190, "lb"),
  25618. name: "Back",
  25619. image: {
  25620. source: "./media/characters/sprisk/back.svg",
  25621. extra: 1247 / 1200,
  25622. bottom: 5.6 / 1253.04
  25623. }
  25624. },
  25625. },
  25626. [
  25627. {
  25628. name: "Tiny",
  25629. height: math.unit(2, "inches")
  25630. },
  25631. {
  25632. name: "Normal",
  25633. height: math.unit(5 + 9 / 12, "feet"),
  25634. default: true
  25635. },
  25636. {
  25637. name: "Mini Macro",
  25638. height: math.unit(18, "feet")
  25639. },
  25640. {
  25641. name: "Macro",
  25642. height: math.unit(100, "feet")
  25643. },
  25644. {
  25645. name: "MACRO",
  25646. height: math.unit(50, "miles")
  25647. },
  25648. {
  25649. name: "M A C R O",
  25650. height: math.unit(300, "miles")
  25651. },
  25652. ]
  25653. ))
  25654. characterMakers.push(() => makeCharacter(
  25655. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25656. {
  25657. side: {
  25658. height: math.unit(15.6, "meters"),
  25659. weight: math.unit(700000, "kg"),
  25660. name: "Side",
  25661. image: {
  25662. source: "./media/characters/bunsen/side.svg",
  25663. extra: 1644 / 358
  25664. }
  25665. },
  25666. foot: {
  25667. height: math.unit(1.611 * 1644 / 358, "meter"),
  25668. name: "Foot",
  25669. image: {
  25670. source: "./media/characters/bunsen/foot.svg"
  25671. }
  25672. },
  25673. },
  25674. [
  25675. {
  25676. name: "Small",
  25677. height: math.unit(10, "feet")
  25678. },
  25679. {
  25680. name: "Normal",
  25681. height: math.unit(15.6, "meters"),
  25682. default: true
  25683. },
  25684. ]
  25685. ))
  25686. characterMakers.push(() => makeCharacter(
  25687. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25688. {
  25689. front: {
  25690. height: math.unit(4 + 11 / 12, "feet"),
  25691. weight: math.unit(140, "lb"),
  25692. name: "Front",
  25693. image: {
  25694. source: "./media/characters/sesh/front.svg",
  25695. extra: 3420 / 3231,
  25696. bottom: 72 / 3949.5
  25697. }
  25698. },
  25699. },
  25700. [
  25701. {
  25702. name: "Normal",
  25703. height: math.unit(4 + 11 / 12, "feet")
  25704. },
  25705. {
  25706. name: "Grown",
  25707. height: math.unit(15, "feet"),
  25708. default: true
  25709. },
  25710. {
  25711. name: "Macro",
  25712. height: math.unit(1500, "feet")
  25713. },
  25714. {
  25715. name: "Megamacro",
  25716. height: math.unit(30, "miles")
  25717. },
  25718. {
  25719. name: "Continental",
  25720. height: math.unit(3000, "miles")
  25721. },
  25722. {
  25723. name: "Gravity Mass",
  25724. height: math.unit(300000, "miles")
  25725. },
  25726. {
  25727. name: "Planet Buster",
  25728. height: math.unit(30000000, "miles")
  25729. },
  25730. {
  25731. name: "Big",
  25732. height: math.unit(3000000000, "miles")
  25733. },
  25734. ]
  25735. ))
  25736. characterMakers.push(() => makeCharacter(
  25737. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25738. {
  25739. front: {
  25740. height: math.unit(9, "feet"),
  25741. weight: math.unit(350, "lb"),
  25742. name: "Front",
  25743. image: {
  25744. source: "./media/characters/pepper/front.svg",
  25745. extra: 1448 / 1312,
  25746. bottom: 9.4 / 1457.88
  25747. }
  25748. },
  25749. back: {
  25750. height: math.unit(9, "feet"),
  25751. weight: math.unit(350, "lb"),
  25752. name: "Back",
  25753. image: {
  25754. source: "./media/characters/pepper/back.svg",
  25755. extra: 1423 / 1300,
  25756. bottom: 4.6 / 1429
  25757. }
  25758. },
  25759. maw: {
  25760. height: math.unit(0.932, "feet"),
  25761. name: "Maw",
  25762. image: {
  25763. source: "./media/characters/pepper/maw.svg"
  25764. }
  25765. },
  25766. },
  25767. [
  25768. {
  25769. name: "Normal",
  25770. height: math.unit(9, "feet"),
  25771. default: true
  25772. },
  25773. ]
  25774. ))
  25775. characterMakers.push(() => makeCharacter(
  25776. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25777. {
  25778. front: {
  25779. height: math.unit(6, "feet"),
  25780. weight: math.unit(150, "lb"),
  25781. name: "Front",
  25782. image: {
  25783. source: "./media/characters/maelstrom/front.svg",
  25784. extra: 2100 / 1883,
  25785. bottom: 94 / 2196.7
  25786. }
  25787. },
  25788. },
  25789. [
  25790. {
  25791. name: "Less Kaiju",
  25792. height: math.unit(200, "feet")
  25793. },
  25794. {
  25795. name: "Kaiju",
  25796. height: math.unit(400, "feet"),
  25797. default: true
  25798. },
  25799. {
  25800. name: "Kaiju-er",
  25801. height: math.unit(600, "feet")
  25802. },
  25803. ]
  25804. ))
  25805. characterMakers.push(() => makeCharacter(
  25806. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25807. {
  25808. front: {
  25809. height: math.unit(6 + 5 / 12, "feet"),
  25810. weight: math.unit(180, "lb"),
  25811. name: "Front",
  25812. image: {
  25813. source: "./media/characters/lexir/front.svg",
  25814. extra: 180 / 172,
  25815. bottom: 12 / 192
  25816. }
  25817. },
  25818. back: {
  25819. height: math.unit(6 + 5 / 12, "feet"),
  25820. weight: math.unit(180, "lb"),
  25821. name: "Back",
  25822. image: {
  25823. source: "./media/characters/lexir/back.svg",
  25824. extra: 1273/1201,
  25825. bottom: 39/1312
  25826. }
  25827. },
  25828. },
  25829. [
  25830. {
  25831. name: "Very Smal",
  25832. height: math.unit(1, "nm")
  25833. },
  25834. {
  25835. name: "Normal",
  25836. height: math.unit(6 + 5 / 12, "feet"),
  25837. default: true
  25838. },
  25839. {
  25840. name: "Macro",
  25841. height: math.unit(1, "mile")
  25842. },
  25843. {
  25844. name: "Megamacro",
  25845. height: math.unit(50, "miles")
  25846. },
  25847. ]
  25848. ))
  25849. characterMakers.push(() => makeCharacter(
  25850. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25851. {
  25852. front: {
  25853. height: math.unit(1.5, "meters"),
  25854. weight: math.unit(100, "lb"),
  25855. name: "Front",
  25856. image: {
  25857. source: "./media/characters/maksio/front.svg",
  25858. extra: 1549 / 1531,
  25859. bottom: 123.7 / 1674.5429
  25860. }
  25861. },
  25862. back: {
  25863. height: math.unit(1.5, "meters"),
  25864. weight: math.unit(100, "lb"),
  25865. name: "Back",
  25866. image: {
  25867. source: "./media/characters/maksio/back.svg",
  25868. extra: 1541 / 1509,
  25869. bottom: 97 / 1639
  25870. }
  25871. },
  25872. hand: {
  25873. height: math.unit(0.621, "feet"),
  25874. name: "Hand",
  25875. image: {
  25876. source: "./media/characters/maksio/hand.svg"
  25877. }
  25878. },
  25879. foot: {
  25880. height: math.unit(1.611, "feet"),
  25881. name: "Foot",
  25882. image: {
  25883. source: "./media/characters/maksio/foot.svg"
  25884. }
  25885. },
  25886. },
  25887. [
  25888. {
  25889. name: "Shrunken",
  25890. height: math.unit(10, "cm")
  25891. },
  25892. {
  25893. name: "Normal",
  25894. height: math.unit(150, "cm"),
  25895. default: true
  25896. },
  25897. ]
  25898. ))
  25899. characterMakers.push(() => makeCharacter(
  25900. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25901. {
  25902. front: {
  25903. height: math.unit(100, "feet"),
  25904. name: "Front",
  25905. image: {
  25906. source: "./media/characters/erza-bear/front.svg",
  25907. extra: 2449 / 2390,
  25908. bottom: 46 / 2494
  25909. }
  25910. },
  25911. back: {
  25912. height: math.unit(100, "feet"),
  25913. name: "Back",
  25914. image: {
  25915. source: "./media/characters/erza-bear/back.svg",
  25916. extra: 2489 / 2430,
  25917. bottom: 85.4 / 2480
  25918. }
  25919. },
  25920. tail: {
  25921. height: math.unit(42, "feet"),
  25922. name: "Tail",
  25923. image: {
  25924. source: "./media/characters/erza-bear/tail.svg"
  25925. }
  25926. },
  25927. tongue: {
  25928. height: math.unit(8, "feet"),
  25929. name: "Tongue",
  25930. image: {
  25931. source: "./media/characters/erza-bear/tongue.svg"
  25932. }
  25933. },
  25934. dick: {
  25935. height: math.unit(10.5, "feet"),
  25936. name: "Dick",
  25937. image: {
  25938. source: "./media/characters/erza-bear/dick.svg"
  25939. }
  25940. },
  25941. dickVertical: {
  25942. height: math.unit(16.9, "feet"),
  25943. name: "Dick (Vertical)",
  25944. image: {
  25945. source: "./media/characters/erza-bear/dick-vertical.svg"
  25946. }
  25947. },
  25948. },
  25949. [
  25950. {
  25951. name: "Macro",
  25952. height: math.unit(100, "feet"),
  25953. default: true
  25954. },
  25955. ]
  25956. ))
  25957. characterMakers.push(() => makeCharacter(
  25958. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25959. {
  25960. front: {
  25961. height: math.unit(172, "cm"),
  25962. weight: math.unit(73, "kg"),
  25963. name: "Front",
  25964. image: {
  25965. source: "./media/characters/violet-flor/front.svg",
  25966. extra: 1474/1379,
  25967. bottom: 113/1587
  25968. }
  25969. },
  25970. back: {
  25971. height: math.unit(180, "cm"),
  25972. weight: math.unit(73, "kg"),
  25973. name: "Back",
  25974. image: {
  25975. source: "./media/characters/violet-flor/back.svg",
  25976. extra: 1660/1567,
  25977. bottom: 49/1709
  25978. }
  25979. },
  25980. },
  25981. [
  25982. {
  25983. name: "Normal",
  25984. height: math.unit(172, "cm"),
  25985. default: true
  25986. },
  25987. ]
  25988. ))
  25989. characterMakers.push(() => makeCharacter(
  25990. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25991. {
  25992. front: {
  25993. height: math.unit(6, "feet"),
  25994. weight: math.unit(220, "lb"),
  25995. name: "Front",
  25996. image: {
  25997. source: "./media/characters/lynn-rhea/front.svg",
  25998. extra: 310 / 273
  25999. }
  26000. },
  26001. back: {
  26002. height: math.unit(6, "feet"),
  26003. weight: math.unit(220, "lb"),
  26004. name: "Back",
  26005. image: {
  26006. source: "./media/characters/lynn-rhea/back.svg",
  26007. extra: 310 / 273
  26008. }
  26009. },
  26010. dicks: {
  26011. height: math.unit(0.9, "feet"),
  26012. name: "Dicks",
  26013. image: {
  26014. source: "./media/characters/lynn-rhea/dicks.svg"
  26015. }
  26016. },
  26017. slit: {
  26018. height: math.unit(0.4, "feet"),
  26019. name: "Slit",
  26020. image: {
  26021. source: "./media/characters/lynn-rhea/slit.svg"
  26022. }
  26023. },
  26024. },
  26025. [
  26026. {
  26027. name: "Micro",
  26028. height: math.unit(1, "inch")
  26029. },
  26030. {
  26031. name: "Macro",
  26032. height: math.unit(60, "feet"),
  26033. default: true
  26034. },
  26035. {
  26036. name: "Megamacro",
  26037. height: math.unit(2, "miles")
  26038. },
  26039. {
  26040. name: "Gigamacro",
  26041. height: math.unit(3, "earths")
  26042. },
  26043. {
  26044. name: "Galactic",
  26045. height: math.unit(0.8, "galaxies")
  26046. },
  26047. ]
  26048. ))
  26049. characterMakers.push(() => makeCharacter(
  26050. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  26051. {
  26052. front: {
  26053. height: math.unit(1600, "feet"),
  26054. weight: math.unit(85758785169, "kg"),
  26055. name: "Front",
  26056. image: {
  26057. source: "./media/characters/valathos/front.svg",
  26058. extra: 1451 / 1339
  26059. }
  26060. },
  26061. },
  26062. [
  26063. {
  26064. name: "Macro",
  26065. height: math.unit(1600, "feet"),
  26066. default: true
  26067. },
  26068. ]
  26069. ))
  26070. characterMakers.push(() => makeCharacter(
  26071. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  26072. {
  26073. front: {
  26074. height: math.unit(7 + 5 / 12, "feet"),
  26075. weight: math.unit(300, "lb"),
  26076. name: "Front",
  26077. image: {
  26078. source: "./media/characters/azula/front.svg",
  26079. extra: 3208 / 2880,
  26080. bottom: 80.2 / 3277
  26081. }
  26082. },
  26083. back: {
  26084. height: math.unit(7 + 5 / 12, "feet"),
  26085. weight: math.unit(300, "lb"),
  26086. name: "Back",
  26087. image: {
  26088. source: "./media/characters/azula/back.svg",
  26089. extra: 3169 / 2822,
  26090. bottom: 150.6 / 3321
  26091. }
  26092. },
  26093. },
  26094. [
  26095. {
  26096. name: "Normal",
  26097. height: math.unit(7 + 5 / 12, "feet"),
  26098. default: true
  26099. },
  26100. {
  26101. name: "Big",
  26102. height: math.unit(20, "feet")
  26103. },
  26104. ]
  26105. ))
  26106. characterMakers.push(() => makeCharacter(
  26107. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  26108. {
  26109. front: {
  26110. height: math.unit(5 + 1 / 12, "feet"),
  26111. weight: math.unit(110, "lb"),
  26112. name: "Front",
  26113. image: {
  26114. source: "./media/characters/rupert/front.svg",
  26115. extra: 1549 / 1495,
  26116. bottom: 54.2 / 1604.4
  26117. }
  26118. },
  26119. },
  26120. [
  26121. {
  26122. name: "Normal",
  26123. height: math.unit(5 + 1 / 12, "feet"),
  26124. default: true
  26125. },
  26126. ]
  26127. ))
  26128. characterMakers.push(() => makeCharacter(
  26129. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  26130. {
  26131. front: {
  26132. height: math.unit(8 + 4 / 12, "feet"),
  26133. weight: math.unit(350, "lb"),
  26134. name: "Front",
  26135. image: {
  26136. source: "./media/characters/sheera-castellar/front.svg",
  26137. extra: 1957 / 1894,
  26138. bottom: 26.97 / 1975.017
  26139. }
  26140. },
  26141. side: {
  26142. height: math.unit(8 + 4 / 12, "feet"),
  26143. weight: math.unit(350, "lb"),
  26144. name: "Side",
  26145. image: {
  26146. source: "./media/characters/sheera-castellar/side.svg",
  26147. extra: 1957 / 1894
  26148. }
  26149. },
  26150. back: {
  26151. height: math.unit(8 + 4 / 12, "feet"),
  26152. weight: math.unit(350, "lb"),
  26153. name: "Back",
  26154. image: {
  26155. source: "./media/characters/sheera-castellar/back.svg",
  26156. extra: 1957 / 1894
  26157. }
  26158. },
  26159. angled: {
  26160. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  26161. weight: math.unit(350, "lb"),
  26162. name: "Angled",
  26163. image: {
  26164. source: "./media/characters/sheera-castellar/angled.svg",
  26165. extra: 1807 / 1707,
  26166. bottom: 68 / 1875
  26167. }
  26168. },
  26169. genitals: {
  26170. height: math.unit(2.2, "feet"),
  26171. name: "Genitals",
  26172. image: {
  26173. source: "./media/characters/sheera-castellar/genitals.svg"
  26174. }
  26175. },
  26176. taur: {
  26177. height: math.unit(10 + 6/12, "feet"),
  26178. name: "Taur",
  26179. image: {
  26180. source: "./media/characters/sheera-castellar/taur.svg",
  26181. extra: 2017/1909,
  26182. bottom: 185/2202
  26183. }
  26184. },
  26185. },
  26186. [
  26187. {
  26188. name: "Normal",
  26189. height: math.unit(8 + 4 / 12, "feet")
  26190. },
  26191. {
  26192. name: "Macro",
  26193. height: math.unit(150, "feet"),
  26194. default: true
  26195. },
  26196. {
  26197. name: "Macro+",
  26198. height: math.unit(800, "feet")
  26199. },
  26200. ]
  26201. ))
  26202. characterMakers.push(() => makeCharacter(
  26203. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  26204. {
  26205. front: {
  26206. height: math.unit(6, "feet"),
  26207. weight: math.unit(150, "lb"),
  26208. name: "Front",
  26209. image: {
  26210. source: "./media/characters/jaipur/front.svg",
  26211. extra: 3860 / 3731,
  26212. bottom: 287 / 4140
  26213. }
  26214. },
  26215. back: {
  26216. height: math.unit(6, "feet"),
  26217. weight: math.unit(150, "lb"),
  26218. name: "Back",
  26219. image: {
  26220. source: "./media/characters/jaipur/back.svg",
  26221. extra: 1637/1561,
  26222. bottom: 154/1791
  26223. }
  26224. },
  26225. },
  26226. [
  26227. {
  26228. name: "Normal",
  26229. height: math.unit(1.85, "meters"),
  26230. default: true
  26231. },
  26232. {
  26233. name: "Macro",
  26234. height: math.unit(150, "meters")
  26235. },
  26236. {
  26237. name: "Macro+",
  26238. height: math.unit(0.5, "miles")
  26239. },
  26240. {
  26241. name: "Macro++",
  26242. height: math.unit(2.5, "miles")
  26243. },
  26244. {
  26245. name: "Macro+++",
  26246. height: math.unit(12, "miles")
  26247. },
  26248. {
  26249. name: "Macro++++",
  26250. height: math.unit(120, "miles")
  26251. },
  26252. {
  26253. name: "Macro+++++",
  26254. height: math.unit(1200, "miles")
  26255. },
  26256. ]
  26257. ))
  26258. characterMakers.push(() => makeCharacter(
  26259. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  26260. {
  26261. front: {
  26262. height: math.unit(6, "feet"),
  26263. weight: math.unit(150, "lb"),
  26264. name: "Front",
  26265. image: {
  26266. source: "./media/characters/sheila-wolf/front.svg",
  26267. extra: 1931 / 1808,
  26268. bottom: 29.5 / 1960
  26269. }
  26270. },
  26271. dick: {
  26272. height: math.unit(1.464, "feet"),
  26273. name: "Dick",
  26274. image: {
  26275. source: "./media/characters/sheila-wolf/dick.svg"
  26276. }
  26277. },
  26278. muzzle: {
  26279. height: math.unit(0.513, "feet"),
  26280. name: "Muzzle",
  26281. image: {
  26282. source: "./media/characters/sheila-wolf/muzzle.svg"
  26283. }
  26284. },
  26285. },
  26286. [
  26287. {
  26288. name: "Macro",
  26289. height: math.unit(70, "feet"),
  26290. default: true
  26291. },
  26292. ]
  26293. ))
  26294. characterMakers.push(() => makeCharacter(
  26295. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  26296. {
  26297. front: {
  26298. height: math.unit(32, "meters"),
  26299. weight: math.unit(300000, "kg"),
  26300. name: "Front",
  26301. image: {
  26302. source: "./media/characters/almor/front.svg",
  26303. extra: 1408 / 1322,
  26304. bottom: 94.6 / 1506.5
  26305. }
  26306. },
  26307. },
  26308. [
  26309. {
  26310. name: "Macro",
  26311. height: math.unit(32, "meters"),
  26312. default: true
  26313. },
  26314. ]
  26315. ))
  26316. characterMakers.push(() => makeCharacter(
  26317. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  26318. {
  26319. front: {
  26320. height: math.unit(7, "feet"),
  26321. weight: math.unit(200, "lb"),
  26322. name: "Front",
  26323. image: {
  26324. source: "./media/characters/silver/front.svg",
  26325. extra: 472.1 / 450.5,
  26326. bottom: 26.5 / 499.424
  26327. }
  26328. },
  26329. },
  26330. [
  26331. {
  26332. name: "Normal",
  26333. height: math.unit(7, "feet"),
  26334. default: true
  26335. },
  26336. {
  26337. name: "Macro",
  26338. height: math.unit(800, "feet")
  26339. },
  26340. {
  26341. name: "Megamacro",
  26342. height: math.unit(250, "miles")
  26343. },
  26344. ]
  26345. ))
  26346. characterMakers.push(() => makeCharacter(
  26347. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  26348. {
  26349. front: {
  26350. height: math.unit(6, "feet"),
  26351. weight: math.unit(150, "lb"),
  26352. name: "Front",
  26353. image: {
  26354. source: "./media/characters/pliskin/front.svg",
  26355. extra: 1469 / 1359,
  26356. bottom: 70 / 1540
  26357. }
  26358. },
  26359. },
  26360. [
  26361. {
  26362. name: "Micro",
  26363. height: math.unit(3, "inches")
  26364. },
  26365. {
  26366. name: "Normal",
  26367. height: math.unit(5 + 11 / 12, "feet"),
  26368. default: true
  26369. },
  26370. {
  26371. name: "Macro",
  26372. height: math.unit(120, "feet")
  26373. },
  26374. ]
  26375. ))
  26376. characterMakers.push(() => makeCharacter(
  26377. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  26378. {
  26379. front: {
  26380. height: math.unit(6, "feet"),
  26381. weight: math.unit(150, "lb"),
  26382. name: "Front",
  26383. image: {
  26384. source: "./media/characters/sammy/front.svg",
  26385. extra: 1193 / 1089,
  26386. bottom: 30.5 / 1226
  26387. }
  26388. },
  26389. },
  26390. [
  26391. {
  26392. name: "Macro",
  26393. height: math.unit(1700, "feet"),
  26394. default: true
  26395. },
  26396. {
  26397. name: "Examacro",
  26398. height: math.unit(2.5e9, "lightyears")
  26399. },
  26400. ]
  26401. ))
  26402. characterMakers.push(() => makeCharacter(
  26403. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  26404. {
  26405. front: {
  26406. height: math.unit(21, "meters"),
  26407. weight: math.unit(12, "tonnes"),
  26408. name: "Front",
  26409. image: {
  26410. source: "./media/characters/kuru/front.svg",
  26411. extra: 4301 / 3785,
  26412. bottom: 371.3 / 4691
  26413. }
  26414. },
  26415. },
  26416. [
  26417. {
  26418. name: "Macro",
  26419. height: math.unit(21, "meters"),
  26420. default: true
  26421. },
  26422. ]
  26423. ))
  26424. characterMakers.push(() => makeCharacter(
  26425. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  26426. {
  26427. front: {
  26428. height: math.unit(23, "meters"),
  26429. weight: math.unit(12.2, "tonnes"),
  26430. name: "Front",
  26431. image: {
  26432. source: "./media/characters/rakka/front.svg",
  26433. extra: 4670 / 4169,
  26434. bottom: 301 / 4968.7
  26435. }
  26436. },
  26437. },
  26438. [
  26439. {
  26440. name: "Macro",
  26441. height: math.unit(23, "meters"),
  26442. default: true
  26443. },
  26444. ]
  26445. ))
  26446. characterMakers.push(() => makeCharacter(
  26447. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  26448. {
  26449. front: {
  26450. height: math.unit(6, "feet"),
  26451. weight: math.unit(150, "lb"),
  26452. name: "Front",
  26453. image: {
  26454. source: "./media/characters/rhys-feline/front.svg",
  26455. extra: 2488 / 2308,
  26456. bottom: 35.67 / 2519.19
  26457. }
  26458. },
  26459. },
  26460. [
  26461. {
  26462. name: "Really Small",
  26463. height: math.unit(1, "nm")
  26464. },
  26465. {
  26466. name: "Micro",
  26467. height: math.unit(4, "inches")
  26468. },
  26469. {
  26470. name: "Normal",
  26471. height: math.unit(4 + 10 / 12, "feet"),
  26472. default: true
  26473. },
  26474. {
  26475. name: "Macro",
  26476. height: math.unit(100, "feet")
  26477. },
  26478. {
  26479. name: "Megamacto",
  26480. height: math.unit(50, "miles")
  26481. },
  26482. ]
  26483. ))
  26484. characterMakers.push(() => makeCharacter(
  26485. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  26486. {
  26487. side: {
  26488. height: math.unit(30, "feet"),
  26489. weight: math.unit(35000, "kg"),
  26490. name: "Side",
  26491. image: {
  26492. source: "./media/characters/alydar/side.svg",
  26493. extra: 234 / 222,
  26494. bottom: 6.5 / 241
  26495. }
  26496. },
  26497. front: {
  26498. height: math.unit(30, "feet"),
  26499. weight: math.unit(35000, "kg"),
  26500. name: "Front",
  26501. image: {
  26502. source: "./media/characters/alydar/front.svg",
  26503. extra: 223.37 / 210.2,
  26504. bottom: 22.3 / 246.76
  26505. }
  26506. },
  26507. top: {
  26508. height: math.unit(64.54, "feet"),
  26509. weight: math.unit(35000, "kg"),
  26510. name: "Top",
  26511. image: {
  26512. source: "./media/characters/alydar/top.svg"
  26513. }
  26514. },
  26515. anthro: {
  26516. height: math.unit(30, "feet"),
  26517. weight: math.unit(9000, "kg"),
  26518. name: "Anthro",
  26519. image: {
  26520. source: "./media/characters/alydar/anthro.svg",
  26521. extra: 432 / 421,
  26522. bottom: 7.18 / 440
  26523. }
  26524. },
  26525. maw: {
  26526. height: math.unit(11.693, "feet"),
  26527. name: "Maw",
  26528. image: {
  26529. source: "./media/characters/alydar/maw.svg"
  26530. }
  26531. },
  26532. head: {
  26533. height: math.unit(11.693, "feet"),
  26534. name: "Head",
  26535. image: {
  26536. source: "./media/characters/alydar/head.svg"
  26537. }
  26538. },
  26539. headAlt: {
  26540. height: math.unit(12.861, "feet"),
  26541. name: "Head (Alt)",
  26542. image: {
  26543. source: "./media/characters/alydar/head-alt.svg"
  26544. }
  26545. },
  26546. wing: {
  26547. height: math.unit(20.712, "feet"),
  26548. name: "Wing",
  26549. image: {
  26550. source: "./media/characters/alydar/wing.svg"
  26551. }
  26552. },
  26553. wingFeather: {
  26554. height: math.unit(9.662, "feet"),
  26555. name: "Wing Feather",
  26556. image: {
  26557. source: "./media/characters/alydar/wing-feather.svg"
  26558. }
  26559. },
  26560. countourFeather: {
  26561. height: math.unit(4.154, "feet"),
  26562. name: "Contour Feather",
  26563. image: {
  26564. source: "./media/characters/alydar/contour-feather.svg"
  26565. }
  26566. },
  26567. },
  26568. [
  26569. {
  26570. name: "Diplomatic",
  26571. height: math.unit(13, "feet"),
  26572. default: true
  26573. },
  26574. {
  26575. name: "Small",
  26576. height: math.unit(30, "feet")
  26577. },
  26578. {
  26579. name: "Normal",
  26580. height: math.unit(95, "feet"),
  26581. default: true
  26582. },
  26583. {
  26584. name: "Large",
  26585. height: math.unit(285, "feet")
  26586. },
  26587. {
  26588. name: "Incomprehensible",
  26589. height: math.unit(450, "megameters")
  26590. },
  26591. ]
  26592. ))
  26593. characterMakers.push(() => makeCharacter(
  26594. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26595. {
  26596. side: {
  26597. height: math.unit(11, "feet"),
  26598. weight: math.unit(1750, "kg"),
  26599. name: "Side",
  26600. image: {
  26601. source: "./media/characters/selicia/side.svg",
  26602. extra: 440 / 396,
  26603. bottom: 24.8 / 465.979
  26604. }
  26605. },
  26606. maw: {
  26607. height: math.unit(4.665, "feet"),
  26608. name: "Maw",
  26609. image: {
  26610. source: "./media/characters/selicia/maw.svg"
  26611. }
  26612. },
  26613. },
  26614. [
  26615. {
  26616. name: "Normal",
  26617. height: math.unit(11, "feet"),
  26618. default: true
  26619. },
  26620. ]
  26621. ))
  26622. characterMakers.push(() => makeCharacter(
  26623. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26624. {
  26625. side: {
  26626. height: math.unit(2 + 6 / 12, "feet"),
  26627. weight: math.unit(30, "lb"),
  26628. name: "Side",
  26629. image: {
  26630. source: "./media/characters/layla/side.svg",
  26631. extra: 244 / 188,
  26632. bottom: 18.2 / 262.1
  26633. }
  26634. },
  26635. back: {
  26636. height: math.unit(2 + 6 / 12, "feet"),
  26637. weight: math.unit(30, "lb"),
  26638. name: "Back",
  26639. image: {
  26640. source: "./media/characters/layla/back.svg",
  26641. extra: 308 / 241.5,
  26642. bottom: 8.9 / 316.8
  26643. }
  26644. },
  26645. cumming: {
  26646. height: math.unit(2 + 6 / 12, "feet"),
  26647. weight: math.unit(30, "lb"),
  26648. name: "Cumming",
  26649. image: {
  26650. source: "./media/characters/layla/cumming.svg",
  26651. extra: 342 / 279,
  26652. bottom: 595 / 938
  26653. }
  26654. },
  26655. dickFlaccid: {
  26656. height: math.unit(2.595, "feet"),
  26657. name: "Flaccid Genitals",
  26658. image: {
  26659. source: "./media/characters/layla/dick-flaccid.svg"
  26660. }
  26661. },
  26662. dickErect: {
  26663. height: math.unit(2.359, "feet"),
  26664. name: "Erect Genitals",
  26665. image: {
  26666. source: "./media/characters/layla/dick-erect.svg"
  26667. }
  26668. },
  26669. dragon: {
  26670. height: math.unit(40, "feet"),
  26671. name: "Dragon",
  26672. image: {
  26673. source: "./media/characters/layla/dragon.svg",
  26674. extra: 610/535,
  26675. bottom: 367/977
  26676. }
  26677. },
  26678. taur: {
  26679. height: math.unit(30, "feet"),
  26680. name: "Taur",
  26681. image: {
  26682. source: "./media/characters/layla/taur.svg",
  26683. extra: 1268/1199,
  26684. bottom: 112/1380
  26685. }
  26686. },
  26687. },
  26688. [
  26689. {
  26690. name: "Micro",
  26691. height: math.unit(1, "inch")
  26692. },
  26693. {
  26694. name: "Small",
  26695. height: math.unit(1, "foot")
  26696. },
  26697. {
  26698. name: "Normal",
  26699. height: math.unit(2 + 6 / 12, "feet"),
  26700. default: true
  26701. },
  26702. {
  26703. name: "Macro",
  26704. height: math.unit(200, "feet")
  26705. },
  26706. {
  26707. name: "Megamacro",
  26708. height: math.unit(1000, "miles")
  26709. },
  26710. {
  26711. name: "Planetary",
  26712. height: math.unit(8000, "miles")
  26713. },
  26714. {
  26715. name: "True Layla",
  26716. height: math.unit(200000 * 7, "multiverses")
  26717. },
  26718. ]
  26719. ))
  26720. characterMakers.push(() => makeCharacter(
  26721. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26722. {
  26723. back: {
  26724. height: math.unit(10.5, "feet"),
  26725. weight: math.unit(800, "lb"),
  26726. name: "Back",
  26727. image: {
  26728. source: "./media/characters/knox/back.svg",
  26729. extra: 1486 / 1089,
  26730. bottom: 107 / 1601.4
  26731. }
  26732. },
  26733. side: {
  26734. height: math.unit(10.5, "feet"),
  26735. weight: math.unit(800, "lb"),
  26736. name: "Side",
  26737. image: {
  26738. source: "./media/characters/knox/side.svg",
  26739. extra: 244 / 218,
  26740. bottom: 14 / 260
  26741. }
  26742. },
  26743. },
  26744. [
  26745. {
  26746. name: "Compact",
  26747. height: math.unit(10.5, "feet"),
  26748. default: true
  26749. },
  26750. {
  26751. name: "Dynamax",
  26752. height: math.unit(210, "feet")
  26753. },
  26754. {
  26755. name: "Full Macro",
  26756. height: math.unit(850, "feet")
  26757. },
  26758. ]
  26759. ))
  26760. characterMakers.push(() => makeCharacter(
  26761. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26762. {
  26763. front: {
  26764. height: math.unit(28, "feet"),
  26765. weight: math.unit(10500, "lb"),
  26766. name: "Front",
  26767. image: {
  26768. source: "./media/characters/kayda/front.svg",
  26769. extra: 1536 / 1428,
  26770. bottom: 68.7 / 1603
  26771. }
  26772. },
  26773. back: {
  26774. height: math.unit(28, "feet"),
  26775. weight: math.unit(10500, "lb"),
  26776. name: "Back",
  26777. image: {
  26778. source: "./media/characters/kayda/back.svg",
  26779. extra: 1557 / 1464,
  26780. bottom: 39.5 / 1597.49
  26781. }
  26782. },
  26783. dick: {
  26784. height: math.unit(3.858, "feet"),
  26785. name: "Dick",
  26786. image: {
  26787. source: "./media/characters/kayda/dick.svg"
  26788. }
  26789. },
  26790. },
  26791. [
  26792. {
  26793. name: "Macro",
  26794. height: math.unit(28, "feet"),
  26795. default: true
  26796. },
  26797. ]
  26798. ))
  26799. characterMakers.push(() => makeCharacter(
  26800. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26801. {
  26802. front: {
  26803. height: math.unit(10 + 11 / 12, "feet"),
  26804. weight: math.unit(1400, "lb"),
  26805. name: "Front",
  26806. image: {
  26807. source: "./media/characters/brian/front.svg",
  26808. extra: 737 / 692,
  26809. bottom: 55.4 / 785
  26810. }
  26811. },
  26812. },
  26813. [
  26814. {
  26815. name: "Normal",
  26816. height: math.unit(10 + 11 / 12, "feet"),
  26817. default: true
  26818. },
  26819. ]
  26820. ))
  26821. characterMakers.push(() => makeCharacter(
  26822. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26823. {
  26824. front: {
  26825. height: math.unit(5 + 8 / 12, "feet"),
  26826. weight: math.unit(140, "lb"),
  26827. name: "Front",
  26828. image: {
  26829. source: "./media/characters/khemri/front.svg",
  26830. extra: 4780 / 4059,
  26831. bottom: 80.1 / 4859.25
  26832. }
  26833. },
  26834. },
  26835. [
  26836. {
  26837. name: "Micro",
  26838. height: math.unit(6, "inches")
  26839. },
  26840. {
  26841. name: "Normal",
  26842. height: math.unit(5 + 8 / 12, "feet"),
  26843. default: true
  26844. },
  26845. ]
  26846. ))
  26847. characterMakers.push(() => makeCharacter(
  26848. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26849. {
  26850. front: {
  26851. height: math.unit(13, "feet"),
  26852. weight: math.unit(1700, "lb"),
  26853. name: "Front",
  26854. image: {
  26855. source: "./media/characters/felix-braveheart/front.svg",
  26856. extra: 1222 / 1157,
  26857. bottom: 53.2 / 1280
  26858. }
  26859. },
  26860. back: {
  26861. height: math.unit(13, "feet"),
  26862. weight: math.unit(1700, "lb"),
  26863. name: "Back",
  26864. image: {
  26865. source: "./media/characters/felix-braveheart/back.svg",
  26866. extra: 1277 / 1203,
  26867. bottom: 50.2 / 1327
  26868. }
  26869. },
  26870. feral: {
  26871. height: math.unit(6, "feet"),
  26872. weight: math.unit(400, "lb"),
  26873. name: "Feral",
  26874. image: {
  26875. source: "./media/characters/felix-braveheart/feral.svg",
  26876. extra: 682 / 625,
  26877. bottom: 6.9 / 688
  26878. }
  26879. },
  26880. },
  26881. [
  26882. {
  26883. name: "Normal",
  26884. height: math.unit(13, "feet"),
  26885. default: true
  26886. },
  26887. ]
  26888. ))
  26889. characterMakers.push(() => makeCharacter(
  26890. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26891. {
  26892. side: {
  26893. height: math.unit(5 + 11 / 12, "feet"),
  26894. weight: math.unit(1400, "lb"),
  26895. name: "Side",
  26896. image: {
  26897. source: "./media/characters/shadow-blade/side.svg",
  26898. extra: 1726 / 1267,
  26899. bottom: 58.4 / 1785
  26900. }
  26901. },
  26902. },
  26903. [
  26904. {
  26905. name: "Normal",
  26906. height: math.unit(5 + 11 / 12, "feet"),
  26907. default: true
  26908. },
  26909. ]
  26910. ))
  26911. characterMakers.push(() => makeCharacter(
  26912. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26913. {
  26914. front: {
  26915. height: math.unit(1 + 6 / 12, "feet"),
  26916. weight: math.unit(25, "lb"),
  26917. name: "Front",
  26918. image: {
  26919. source: "./media/characters/karla-halldor/front.svg",
  26920. extra: 1459 / 1383,
  26921. bottom: 12 / 1472
  26922. }
  26923. },
  26924. },
  26925. [
  26926. {
  26927. name: "Normal",
  26928. height: math.unit(1 + 6 / 12, "feet"),
  26929. default: true
  26930. },
  26931. ]
  26932. ))
  26933. characterMakers.push(() => makeCharacter(
  26934. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26935. {
  26936. front: {
  26937. height: math.unit(6 + 2 / 12, "feet"),
  26938. weight: math.unit(160, "lb"),
  26939. name: "Front",
  26940. image: {
  26941. source: "./media/characters/ariam/front.svg",
  26942. extra: 1073/976,
  26943. bottom: 52/1125
  26944. }
  26945. },
  26946. back: {
  26947. height: math.unit(6 + 2/12, "feet"),
  26948. weight: math.unit(160, "lb"),
  26949. name: "Back",
  26950. image: {
  26951. source: "./media/characters/ariam/back.svg",
  26952. extra: 1103/1023,
  26953. bottom: 9/1112
  26954. }
  26955. },
  26956. dressed: {
  26957. height: math.unit(6 + 2/12, "feet"),
  26958. weight: math.unit(160, "lb"),
  26959. name: "Dressed",
  26960. image: {
  26961. source: "./media/characters/ariam/dressed.svg",
  26962. extra: 1099/1009,
  26963. bottom: 25/1124
  26964. }
  26965. },
  26966. squatting: {
  26967. height: math.unit(4.1, "feet"),
  26968. weight: math.unit(160, "lb"),
  26969. name: "Squatting",
  26970. image: {
  26971. source: "./media/characters/ariam/squatting.svg",
  26972. extra: 2617 / 2112,
  26973. bottom: 61.2 / 2681,
  26974. }
  26975. },
  26976. },
  26977. [
  26978. {
  26979. name: "Normal",
  26980. height: math.unit(6 + 2 / 12, "feet"),
  26981. default: true
  26982. },
  26983. {
  26984. name: "Normal+",
  26985. height: math.unit(4, "meters")
  26986. },
  26987. {
  26988. name: "Macro",
  26989. height: math.unit(50, "meters")
  26990. },
  26991. {
  26992. name: "Macro+",
  26993. height: math.unit(100, "meters")
  26994. },
  26995. {
  26996. name: "Megamacro",
  26997. height: math.unit(20, "km")
  26998. },
  26999. {
  27000. name: "Caretaker",
  27001. height: math.unit(444, "megameters")
  27002. },
  27003. ]
  27004. ))
  27005. characterMakers.push(() => makeCharacter(
  27006. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  27007. {
  27008. front: {
  27009. height: math.unit(1.67, "meters"),
  27010. weight: math.unit(140, "lb"),
  27011. name: "Front",
  27012. image: {
  27013. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  27014. extra: 438 / 410,
  27015. bottom: 0.75 / 439
  27016. }
  27017. },
  27018. },
  27019. [
  27020. {
  27021. name: "Shrunken",
  27022. height: math.unit(7.6, "cm")
  27023. },
  27024. {
  27025. name: "Human Scale",
  27026. height: math.unit(1.67, "meters")
  27027. },
  27028. {
  27029. name: "Wolxi Scale",
  27030. height: math.unit(36.7, "meters"),
  27031. default: true
  27032. },
  27033. ]
  27034. ))
  27035. characterMakers.push(() => makeCharacter(
  27036. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  27037. {
  27038. front: {
  27039. height: math.unit(1.73, "meters"),
  27040. weight: math.unit(240, "lb"),
  27041. name: "Front",
  27042. image: {
  27043. source: "./media/characters/izue-two-mothers/front.svg",
  27044. extra: 469 / 437,
  27045. bottom: 1.24 / 470.6
  27046. }
  27047. },
  27048. },
  27049. [
  27050. {
  27051. name: "Shrunken",
  27052. height: math.unit(7.86, "cm")
  27053. },
  27054. {
  27055. name: "Human Scale",
  27056. height: math.unit(1.73, "meters")
  27057. },
  27058. {
  27059. name: "Wolxi Scale",
  27060. height: math.unit(38, "meters"),
  27061. default: true
  27062. },
  27063. ]
  27064. ))
  27065. characterMakers.push(() => makeCharacter(
  27066. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  27067. {
  27068. front: {
  27069. height: math.unit(1.55, "meters"),
  27070. weight: math.unit(120, "lb"),
  27071. name: "Front",
  27072. image: {
  27073. source: "./media/characters/teeku-love-shack/front.svg",
  27074. extra: 387 / 362,
  27075. bottom: 1.51 / 388
  27076. }
  27077. },
  27078. },
  27079. [
  27080. {
  27081. name: "Shrunken",
  27082. height: math.unit(7, "cm")
  27083. },
  27084. {
  27085. name: "Human Scale",
  27086. height: math.unit(1.55, "meters")
  27087. },
  27088. {
  27089. name: "Wolxi Scale",
  27090. height: math.unit(34.1, "meters"),
  27091. default: true
  27092. },
  27093. ]
  27094. ))
  27095. characterMakers.push(() => makeCharacter(
  27096. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  27097. {
  27098. front: {
  27099. height: math.unit(1.83, "meters"),
  27100. weight: math.unit(135, "lb"),
  27101. name: "Front",
  27102. image: {
  27103. source: "./media/characters/dejma-the-red/front.svg",
  27104. extra: 480 / 458,
  27105. bottom: 1.8 / 482
  27106. }
  27107. },
  27108. },
  27109. [
  27110. {
  27111. name: "Shrunken",
  27112. height: math.unit(8.3, "cm")
  27113. },
  27114. {
  27115. name: "Human Scale",
  27116. height: math.unit(1.83, "meters")
  27117. },
  27118. {
  27119. name: "Wolxi Scale",
  27120. height: math.unit(40, "meters"),
  27121. default: true
  27122. },
  27123. ]
  27124. ))
  27125. characterMakers.push(() => makeCharacter(
  27126. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  27127. {
  27128. front: {
  27129. height: math.unit(1.78, "meters"),
  27130. weight: math.unit(65, "kg"),
  27131. name: "Front",
  27132. image: {
  27133. source: "./media/characters/aki/front.svg",
  27134. extra: 452 / 415
  27135. }
  27136. },
  27137. frontNsfw: {
  27138. height: math.unit(1.78, "meters"),
  27139. weight: math.unit(65, "kg"),
  27140. name: "Front (NSFW)",
  27141. image: {
  27142. source: "./media/characters/aki/front-nsfw.svg",
  27143. extra: 452 / 415
  27144. }
  27145. },
  27146. back: {
  27147. height: math.unit(1.78, "meters"),
  27148. weight: math.unit(65, "kg"),
  27149. name: "Back",
  27150. image: {
  27151. source: "./media/characters/aki/back.svg",
  27152. extra: 452 / 415
  27153. }
  27154. },
  27155. rump: {
  27156. height: math.unit(2.05, "feet"),
  27157. name: "Rump",
  27158. image: {
  27159. source: "./media/characters/aki/rump.svg"
  27160. }
  27161. },
  27162. dick: {
  27163. height: math.unit(0.95, "feet"),
  27164. name: "Dick",
  27165. image: {
  27166. source: "./media/characters/aki/dick.svg"
  27167. }
  27168. },
  27169. },
  27170. [
  27171. {
  27172. name: "Micro",
  27173. height: math.unit(15, "cm")
  27174. },
  27175. {
  27176. name: "Normal",
  27177. height: math.unit(178, "cm"),
  27178. default: true
  27179. },
  27180. {
  27181. name: "Macro",
  27182. height: math.unit(214, "m")
  27183. },
  27184. {
  27185. name: "Macro+",
  27186. height: math.unit(534, "m")
  27187. },
  27188. ]
  27189. ))
  27190. characterMakers.push(() => makeCharacter(
  27191. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  27192. {
  27193. front: {
  27194. height: math.unit(5 + 5 / 12, "feet"),
  27195. weight: math.unit(120, "lb"),
  27196. name: "Front",
  27197. image: {
  27198. source: "./media/characters/ari/front.svg",
  27199. extra: 1550/1471,
  27200. bottom: 39/1589
  27201. }
  27202. },
  27203. },
  27204. [
  27205. {
  27206. name: "Normal",
  27207. height: math.unit(5 + 5 / 12, "feet")
  27208. },
  27209. {
  27210. name: "Macro",
  27211. height: math.unit(100, "feet"),
  27212. default: true
  27213. },
  27214. {
  27215. name: "Megamacro",
  27216. height: math.unit(100, "miles")
  27217. },
  27218. {
  27219. name: "Gigamacro",
  27220. height: math.unit(80000, "miles")
  27221. },
  27222. ]
  27223. ))
  27224. characterMakers.push(() => makeCharacter(
  27225. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  27226. {
  27227. side: {
  27228. height: math.unit(9, "feet"),
  27229. weight: math.unit(400, "kg"),
  27230. name: "Side",
  27231. image: {
  27232. source: "./media/characters/bolt/side.svg",
  27233. extra: 1126 / 896,
  27234. bottom: 60 / 1187.3,
  27235. }
  27236. },
  27237. },
  27238. [
  27239. {
  27240. name: "Micro",
  27241. height: math.unit(5, "inches")
  27242. },
  27243. {
  27244. name: "Normal",
  27245. height: math.unit(9, "feet"),
  27246. default: true
  27247. },
  27248. {
  27249. name: "Macro",
  27250. height: math.unit(700, "feet")
  27251. },
  27252. {
  27253. name: "Max Size",
  27254. height: math.unit(1.52e22, "yottameters")
  27255. },
  27256. ]
  27257. ))
  27258. characterMakers.push(() => makeCharacter(
  27259. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  27260. {
  27261. front: {
  27262. height: math.unit(4.3, "meters"),
  27263. weight: math.unit(3, "tons"),
  27264. name: "Front",
  27265. image: {
  27266. source: "./media/characters/draekon-sylviar/front.svg",
  27267. extra: 2072/1512,
  27268. bottom: 74/2146
  27269. }
  27270. },
  27271. back: {
  27272. height: math.unit(4.3, "meters"),
  27273. weight: math.unit(3, "tons"),
  27274. name: "Back",
  27275. image: {
  27276. source: "./media/characters/draekon-sylviar/back.svg",
  27277. extra: 1639/1483,
  27278. bottom: 41/1680
  27279. }
  27280. },
  27281. feral: {
  27282. height: math.unit(1.15, "meters"),
  27283. weight: math.unit(3, "tons"),
  27284. name: "Feral",
  27285. image: {
  27286. source: "./media/characters/draekon-sylviar/feral.svg",
  27287. extra: 1033/395,
  27288. bottom: 130/1163
  27289. }
  27290. },
  27291. maw: {
  27292. height: math.unit(1.3, "meters"),
  27293. name: "Maw",
  27294. image: {
  27295. source: "./media/characters/draekon-sylviar/maw.svg"
  27296. }
  27297. },
  27298. mawSeparated: {
  27299. height: math.unit(1.53, "meters"),
  27300. name: "Separated Maw",
  27301. image: {
  27302. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  27303. }
  27304. },
  27305. tail: {
  27306. height: math.unit(1.15, "meters"),
  27307. name: "Tail",
  27308. image: {
  27309. source: "./media/characters/draekon-sylviar/tail.svg"
  27310. }
  27311. },
  27312. tailDick: {
  27313. height: math.unit(1.15, "meters"),
  27314. name: "Tail (Dick)",
  27315. image: {
  27316. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  27317. }
  27318. },
  27319. tailDickSeparated: {
  27320. height: math.unit(1.19, "meters"),
  27321. name: "Tail (Separated Dick)",
  27322. image: {
  27323. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  27324. }
  27325. },
  27326. slit: {
  27327. height: math.unit(1, "meters"),
  27328. name: "Slit",
  27329. image: {
  27330. source: "./media/characters/draekon-sylviar/slit.svg"
  27331. }
  27332. },
  27333. dick: {
  27334. height: math.unit(1.15, "meters"),
  27335. name: "Dick",
  27336. image: {
  27337. source: "./media/characters/draekon-sylviar/dick.svg"
  27338. }
  27339. },
  27340. dickSeparated: {
  27341. height: math.unit(1.1, "meters"),
  27342. name: "Separated Dick",
  27343. image: {
  27344. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  27345. }
  27346. },
  27347. sheath: {
  27348. height: math.unit(1.15, "meters"),
  27349. name: "Sheath",
  27350. image: {
  27351. source: "./media/characters/draekon-sylviar/sheath.svg"
  27352. }
  27353. },
  27354. },
  27355. [
  27356. {
  27357. name: "Small",
  27358. height: math.unit(4.53 / 2, "meters"),
  27359. default: true
  27360. },
  27361. {
  27362. name: "Normal",
  27363. height: math.unit(4.53, "meters"),
  27364. default: true
  27365. },
  27366. {
  27367. name: "Large",
  27368. height: math.unit(4.53 * 2, "meters"),
  27369. },
  27370. ]
  27371. ))
  27372. characterMakers.push(() => makeCharacter(
  27373. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  27374. {
  27375. front: {
  27376. height: math.unit(6 + 2 / 12, "feet"),
  27377. weight: math.unit(180, "lb"),
  27378. name: "Front",
  27379. image: {
  27380. source: "./media/characters/brawler/front.svg",
  27381. extra: 3301 / 3027,
  27382. bottom: 138 / 3439
  27383. }
  27384. },
  27385. },
  27386. [
  27387. {
  27388. name: "Normal",
  27389. height: math.unit(6 + 2 / 12, "feet"),
  27390. default: true
  27391. },
  27392. ]
  27393. ))
  27394. characterMakers.push(() => makeCharacter(
  27395. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  27396. {
  27397. front: {
  27398. height: math.unit(11, "feet"),
  27399. weight: math.unit(1000, "lb"),
  27400. name: "Front",
  27401. image: {
  27402. source: "./media/characters/alex/front.svg",
  27403. bottom: 44.5 / 620
  27404. }
  27405. },
  27406. },
  27407. [
  27408. {
  27409. name: "Micro",
  27410. height: math.unit(5, "inches")
  27411. },
  27412. {
  27413. name: "Normal",
  27414. height: math.unit(11, "feet"),
  27415. default: true
  27416. },
  27417. {
  27418. name: "Macro",
  27419. height: math.unit(9.5e9, "feet")
  27420. },
  27421. {
  27422. name: "Max Size",
  27423. height: math.unit(1.4e283, "yottameters")
  27424. },
  27425. ]
  27426. ))
  27427. characterMakers.push(() => makeCharacter(
  27428. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  27429. {
  27430. female: {
  27431. height: math.unit(29.9, "m"),
  27432. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  27433. name: "Female",
  27434. image: {
  27435. source: "./media/characters/zenari/female.svg",
  27436. extra: 3281.6 / 3217,
  27437. bottom: 72.2 / 3353
  27438. }
  27439. },
  27440. male: {
  27441. height: math.unit(27.7, "m"),
  27442. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  27443. name: "Male",
  27444. image: {
  27445. source: "./media/characters/zenari/male.svg",
  27446. extra: 3008 / 2991,
  27447. bottom: 54.6 / 3069
  27448. }
  27449. },
  27450. },
  27451. [
  27452. {
  27453. name: "Macro",
  27454. height: math.unit(29.7, "meters"),
  27455. default: true
  27456. },
  27457. ]
  27458. ))
  27459. characterMakers.push(() => makeCharacter(
  27460. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  27461. {
  27462. female: {
  27463. height: math.unit(23.8, "m"),
  27464. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27465. name: "Female",
  27466. image: {
  27467. source: "./media/characters/mactarian/female.svg",
  27468. extra: 2662 / 2569,
  27469. bottom: 73 / 2736
  27470. }
  27471. },
  27472. male: {
  27473. height: math.unit(23.8, "m"),
  27474. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27475. name: "Male",
  27476. image: {
  27477. source: "./media/characters/mactarian/male.svg",
  27478. extra: 2673 / 2600,
  27479. bottom: 76 / 2750
  27480. }
  27481. },
  27482. },
  27483. [
  27484. {
  27485. name: "Macro",
  27486. height: math.unit(23.8, "meters"),
  27487. default: true
  27488. },
  27489. ]
  27490. ))
  27491. characterMakers.push(() => makeCharacter(
  27492. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  27493. {
  27494. female: {
  27495. height: math.unit(19.3, "m"),
  27496. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  27497. name: "Female",
  27498. image: {
  27499. source: "./media/characters/umok/female.svg",
  27500. extra: 2186 / 2078,
  27501. bottom: 87 / 2277
  27502. }
  27503. },
  27504. male: {
  27505. height: math.unit(19.5, "m"),
  27506. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  27507. name: "Male",
  27508. image: {
  27509. source: "./media/characters/umok/male.svg",
  27510. extra: 2233 / 2140,
  27511. bottom: 24.4 / 2258
  27512. }
  27513. },
  27514. },
  27515. [
  27516. {
  27517. name: "Macro",
  27518. height: math.unit(19.3, "meters"),
  27519. default: true
  27520. },
  27521. ]
  27522. ))
  27523. characterMakers.push(() => makeCharacter(
  27524. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  27525. {
  27526. female: {
  27527. height: math.unit(26.15, "m"),
  27528. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  27529. name: "Female",
  27530. image: {
  27531. source: "./media/characters/joraxian/female.svg",
  27532. extra: 2912 / 2824,
  27533. bottom: 36 / 2956
  27534. }
  27535. },
  27536. male: {
  27537. height: math.unit(25.4, "m"),
  27538. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  27539. name: "Male",
  27540. image: {
  27541. source: "./media/characters/joraxian/male.svg",
  27542. extra: 2877 / 2721,
  27543. bottom: 82 / 2967
  27544. }
  27545. },
  27546. },
  27547. [
  27548. {
  27549. name: "Macro",
  27550. height: math.unit(26.15, "meters"),
  27551. default: true
  27552. },
  27553. ]
  27554. ))
  27555. characterMakers.push(() => makeCharacter(
  27556. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  27557. {
  27558. female: {
  27559. height: math.unit(21.6, "m"),
  27560. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  27561. name: "Female",
  27562. image: {
  27563. source: "./media/characters/sthara/female.svg",
  27564. extra: 2516 / 2347,
  27565. bottom: 21.5 / 2537
  27566. }
  27567. },
  27568. male: {
  27569. height: math.unit(24, "m"),
  27570. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  27571. name: "Male",
  27572. image: {
  27573. source: "./media/characters/sthara/male.svg",
  27574. extra: 2732 / 2607,
  27575. bottom: 23 / 2732
  27576. }
  27577. },
  27578. },
  27579. [
  27580. {
  27581. name: "Macro",
  27582. height: math.unit(21.6, "meters"),
  27583. default: true
  27584. },
  27585. ]
  27586. ))
  27587. characterMakers.push(() => makeCharacter(
  27588. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27589. {
  27590. front: {
  27591. height: math.unit(6 + 4 / 12, "feet"),
  27592. weight: math.unit(175, "lb"),
  27593. name: "Front",
  27594. image: {
  27595. source: "./media/characters/luka-bryzant/front.svg",
  27596. extra: 311 / 289,
  27597. bottom: 4 / 315
  27598. }
  27599. },
  27600. back: {
  27601. height: math.unit(6 + 4 / 12, "feet"),
  27602. weight: math.unit(175, "lb"),
  27603. name: "Back",
  27604. image: {
  27605. source: "./media/characters/luka-bryzant/back.svg",
  27606. extra: 311 / 289,
  27607. bottom: 3.8 / 313.7
  27608. }
  27609. },
  27610. },
  27611. [
  27612. {
  27613. name: "Micro",
  27614. height: math.unit(10, "inches")
  27615. },
  27616. {
  27617. name: "Normal",
  27618. height: math.unit(6 + 4 / 12, "feet"),
  27619. default: true
  27620. },
  27621. {
  27622. name: "Large",
  27623. height: math.unit(12, "feet")
  27624. },
  27625. ]
  27626. ))
  27627. characterMakers.push(() => makeCharacter(
  27628. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27629. {
  27630. front: {
  27631. height: math.unit(5 + 7 / 12, "feet"),
  27632. weight: math.unit(185, "lb"),
  27633. name: "Front",
  27634. image: {
  27635. source: "./media/characters/aman-aquila/front.svg",
  27636. extra: 1013 / 976,
  27637. bottom: 45.6 / 1057
  27638. }
  27639. },
  27640. side: {
  27641. height: math.unit(5 + 7 / 12, "feet"),
  27642. weight: math.unit(185, "lb"),
  27643. name: "Side",
  27644. image: {
  27645. source: "./media/characters/aman-aquila/side.svg",
  27646. extra: 1054 / 1011,
  27647. bottom: 15 / 1070
  27648. }
  27649. },
  27650. back: {
  27651. height: math.unit(5 + 7 / 12, "feet"),
  27652. weight: math.unit(185, "lb"),
  27653. name: "Back",
  27654. image: {
  27655. source: "./media/characters/aman-aquila/back.svg",
  27656. extra: 1026 / 970,
  27657. bottom: 12 / 1039
  27658. }
  27659. },
  27660. head: {
  27661. height: math.unit(1.211, "feet"),
  27662. name: "Head",
  27663. image: {
  27664. source: "./media/characters/aman-aquila/head.svg",
  27665. }
  27666. },
  27667. },
  27668. [
  27669. {
  27670. name: "Minimicro",
  27671. height: math.unit(0.057, "inches")
  27672. },
  27673. {
  27674. name: "Micro",
  27675. height: math.unit(7, "inches")
  27676. },
  27677. {
  27678. name: "Mini",
  27679. height: math.unit(3 + 7 / 12, "feet")
  27680. },
  27681. {
  27682. name: "Normal",
  27683. height: math.unit(5 + 7 / 12, "feet"),
  27684. default: true
  27685. },
  27686. {
  27687. name: "Macro",
  27688. height: math.unit(157 + 7 / 12, "feet")
  27689. },
  27690. {
  27691. name: "Megamacro",
  27692. height: math.unit(1557 + 7 / 12, "feet")
  27693. },
  27694. {
  27695. name: "Gigamacro",
  27696. height: math.unit(15557 + 7 / 12, "feet")
  27697. },
  27698. ]
  27699. ))
  27700. characterMakers.push(() => makeCharacter(
  27701. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27702. {
  27703. front: {
  27704. height: math.unit(3 + 2 / 12, "inches"),
  27705. weight: math.unit(0.3, "ounces"),
  27706. name: "Front",
  27707. image: {
  27708. source: "./media/characters/hiphae/front.svg",
  27709. extra: 1931 / 1683,
  27710. bottom: 24 / 1955
  27711. }
  27712. },
  27713. },
  27714. [
  27715. {
  27716. name: "Normal",
  27717. height: math.unit(3 + 1 / 2, "inches"),
  27718. default: true
  27719. },
  27720. ]
  27721. ))
  27722. characterMakers.push(() => makeCharacter(
  27723. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27724. {
  27725. front: {
  27726. height: math.unit(5 + 10 / 12, "feet"),
  27727. weight: math.unit(165, "lb"),
  27728. name: "Front",
  27729. image: {
  27730. source: "./media/characters/nicky/front.svg",
  27731. extra: 3144 / 2886,
  27732. bottom: 45.6 / 3192
  27733. }
  27734. },
  27735. back: {
  27736. height: math.unit(5 + 10 / 12, "feet"),
  27737. weight: math.unit(165, "lb"),
  27738. name: "Back",
  27739. image: {
  27740. source: "./media/characters/nicky/back.svg",
  27741. extra: 3055 / 2804,
  27742. bottom: 28.4 / 3087
  27743. }
  27744. },
  27745. frontclothed: {
  27746. height: math.unit(5 + 10 / 12, "feet"),
  27747. weight: math.unit(165, "lb"),
  27748. name: "Front-clothed",
  27749. image: {
  27750. source: "./media/characters/nicky/front-clothed.svg",
  27751. extra: 3184.9 / 2926.9,
  27752. bottom: 86.5 / 3239.9
  27753. }
  27754. },
  27755. foot: {
  27756. height: math.unit(1.16, "feet"),
  27757. name: "Foot",
  27758. image: {
  27759. source: "./media/characters/nicky/foot.svg"
  27760. }
  27761. },
  27762. feet: {
  27763. height: math.unit(1.34, "feet"),
  27764. name: "Feet",
  27765. image: {
  27766. source: "./media/characters/nicky/feet.svg"
  27767. }
  27768. },
  27769. maw: {
  27770. height: math.unit(0.9, "feet"),
  27771. name: "Maw",
  27772. image: {
  27773. source: "./media/characters/nicky/maw.svg"
  27774. }
  27775. },
  27776. },
  27777. [
  27778. {
  27779. name: "Normal",
  27780. height: math.unit(5 + 10 / 12, "feet"),
  27781. default: true
  27782. },
  27783. {
  27784. name: "Macro",
  27785. height: math.unit(60, "feet")
  27786. },
  27787. {
  27788. name: "Megamacro",
  27789. height: math.unit(1, "mile")
  27790. },
  27791. ]
  27792. ))
  27793. characterMakers.push(() => makeCharacter(
  27794. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27795. {
  27796. side: {
  27797. height: math.unit(10, "feet"),
  27798. weight: math.unit(600, "lb"),
  27799. name: "Side",
  27800. image: {
  27801. source: "./media/characters/blair/side.svg",
  27802. bottom: 16.6 / 475,
  27803. extra: 458 / 431
  27804. }
  27805. },
  27806. },
  27807. [
  27808. {
  27809. name: "Micro",
  27810. height: math.unit(8, "inches")
  27811. },
  27812. {
  27813. name: "Normal",
  27814. height: math.unit(10, "feet"),
  27815. default: true
  27816. },
  27817. {
  27818. name: "Macro",
  27819. height: math.unit(180, "feet")
  27820. },
  27821. ]
  27822. ))
  27823. characterMakers.push(() => makeCharacter(
  27824. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27825. {
  27826. front: {
  27827. height: math.unit(5 + 4 / 12, "feet"),
  27828. weight: math.unit(125, "lb"),
  27829. name: "Front",
  27830. image: {
  27831. source: "./media/characters/fisher/front.svg",
  27832. extra: 444 / 390,
  27833. bottom: 2 / 444.8
  27834. }
  27835. },
  27836. },
  27837. [
  27838. {
  27839. name: "Micro",
  27840. height: math.unit(4, "inches")
  27841. },
  27842. {
  27843. name: "Normal",
  27844. height: math.unit(5 + 4 / 12, "feet"),
  27845. default: true
  27846. },
  27847. {
  27848. name: "Macro",
  27849. height: math.unit(100, "feet")
  27850. },
  27851. ]
  27852. ))
  27853. characterMakers.push(() => makeCharacter(
  27854. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27855. {
  27856. front: {
  27857. height: math.unit(6.71, "feet"),
  27858. weight: math.unit(200, "lb"),
  27859. preyCapacity: math.unit(1000000, "people"),
  27860. name: "Front",
  27861. image: {
  27862. source: "./media/characters/gliss/front.svg",
  27863. extra: 2347 / 2231,
  27864. bottom: 113 / 2462
  27865. }
  27866. },
  27867. hammerspaceSize: {
  27868. height: math.unit(6.71 * 717, "feet"),
  27869. weight: math.unit(200, "lb"),
  27870. preyCapacity: math.unit(1000000, "people"),
  27871. name: "Hammerspace Size",
  27872. image: {
  27873. source: "./media/characters/gliss/front.svg",
  27874. extra: 2347 / 2231,
  27875. bottom: 113 / 2462
  27876. }
  27877. },
  27878. },
  27879. [
  27880. {
  27881. name: "Normal",
  27882. height: math.unit(6.71, "feet"),
  27883. default: true
  27884. },
  27885. ]
  27886. ))
  27887. characterMakers.push(() => makeCharacter(
  27888. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27889. {
  27890. side: {
  27891. height: math.unit(1.44, "m"),
  27892. weight: math.unit(80, "kg"),
  27893. name: "Side",
  27894. image: {
  27895. source: "./media/characters/dune-anderson/side.svg",
  27896. bottom: 49 / 1426
  27897. }
  27898. },
  27899. },
  27900. [
  27901. {
  27902. name: "Wolf-sized",
  27903. height: math.unit(1.44, "meters")
  27904. },
  27905. {
  27906. name: "Normal",
  27907. height: math.unit(5.05, "meters"),
  27908. default: true
  27909. },
  27910. {
  27911. name: "Big",
  27912. height: math.unit(14.4, "meters")
  27913. },
  27914. {
  27915. name: "Huge",
  27916. height: math.unit(144, "meters")
  27917. },
  27918. ]
  27919. ))
  27920. characterMakers.push(() => makeCharacter(
  27921. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27922. {
  27923. front: {
  27924. height: math.unit(6, "feet"),
  27925. weight: math.unit(220, "lb"),
  27926. name: "Front",
  27927. image: {
  27928. source: "./media/characters/hind/front.svg",
  27929. extra: 1912/1787,
  27930. bottom: 52/1964
  27931. }
  27932. },
  27933. back: {
  27934. height: math.unit(6, "feet"),
  27935. weight: math.unit(220, "lb"),
  27936. name: "Back",
  27937. image: {
  27938. source: "./media/characters/hind/back.svg",
  27939. extra: 1901/1794,
  27940. bottom: 26/1927
  27941. }
  27942. },
  27943. },
  27944. [
  27945. {
  27946. name: "Normal",
  27947. height: math.unit(6, "feet"),
  27948. default: true
  27949. },
  27950. ]
  27951. ))
  27952. characterMakers.push(() => makeCharacter(
  27953. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27954. {
  27955. front: {
  27956. height: math.unit(2.1, "meters"),
  27957. weight: math.unit(150, "lb"),
  27958. name: "Front",
  27959. image: {
  27960. source: "./media/characters/tharquench-sizestealer/front.svg",
  27961. extra: 1605/1470,
  27962. bottom: 36/1641
  27963. }
  27964. },
  27965. frontAlt: {
  27966. height: math.unit(2.1, "meters"),
  27967. weight: math.unit(150, "lb"),
  27968. name: "Front (Alt)",
  27969. image: {
  27970. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27971. extra: 2318 / 2063,
  27972. bottom: 93.4 / 2410
  27973. }
  27974. },
  27975. },
  27976. [
  27977. {
  27978. name: "Nano",
  27979. height: math.unit(1, "mm")
  27980. },
  27981. {
  27982. name: "Micro",
  27983. height: math.unit(1, "cm")
  27984. },
  27985. {
  27986. name: "Normal",
  27987. height: math.unit(2.1, "meters"),
  27988. default: true
  27989. },
  27990. ]
  27991. ))
  27992. characterMakers.push(() => makeCharacter(
  27993. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27994. {
  27995. front: {
  27996. height: math.unit(7 + 5 / 12, "feet"),
  27997. weight: math.unit(357, "lb"),
  27998. name: "Front",
  27999. image: {
  28000. source: "./media/characters/solex-draconov/front.svg",
  28001. extra: 1993 / 1865,
  28002. bottom: 117 / 2111
  28003. }
  28004. },
  28005. },
  28006. [
  28007. {
  28008. name: "Natural Height",
  28009. height: math.unit(7 + 5 / 12, "feet"),
  28010. default: true
  28011. },
  28012. {
  28013. name: "Macro",
  28014. height: math.unit(350, "feet")
  28015. },
  28016. {
  28017. name: "Macro+",
  28018. height: math.unit(1000, "feet")
  28019. },
  28020. {
  28021. name: "Megamacro",
  28022. height: math.unit(20, "km")
  28023. },
  28024. {
  28025. name: "Megamacro+",
  28026. height: math.unit(1000, "km")
  28027. },
  28028. {
  28029. name: "Gigamacro",
  28030. height: math.unit(2.5, "Gm")
  28031. },
  28032. {
  28033. name: "Teramacro",
  28034. height: math.unit(15, "Tm")
  28035. },
  28036. {
  28037. name: "Galactic",
  28038. height: math.unit(30, "Zm")
  28039. },
  28040. {
  28041. name: "Universal",
  28042. height: math.unit(21000, "Ym")
  28043. },
  28044. {
  28045. name: "Omniversal",
  28046. height: math.unit(9.861e50, "Ym")
  28047. },
  28048. {
  28049. name: "Existential",
  28050. height: math.unit(1e300, "meters")
  28051. },
  28052. ]
  28053. ))
  28054. characterMakers.push(() => makeCharacter(
  28055. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  28056. {
  28057. side: {
  28058. height: math.unit(25, "feet"),
  28059. weight: math.unit(90000, "lb"),
  28060. name: "Side",
  28061. image: {
  28062. source: "./media/characters/mandarax/side.svg",
  28063. extra: 614 / 332,
  28064. bottom: 55 / 630
  28065. }
  28066. },
  28067. lounging: {
  28068. height: math.unit(15.4, "feet"),
  28069. weight: math.unit(90000, "lb"),
  28070. name: "Lounging",
  28071. image: {
  28072. source: "./media/characters/mandarax/lounging.svg",
  28073. extra: 817/609,
  28074. bottom: 685/1502
  28075. }
  28076. },
  28077. head: {
  28078. height: math.unit(11.4, "feet"),
  28079. name: "Head",
  28080. image: {
  28081. source: "./media/characters/mandarax/head.svg"
  28082. }
  28083. },
  28084. belly: {
  28085. height: math.unit(33, "feet"),
  28086. name: "Belly",
  28087. preyCapacity: math.unit(500, "people"),
  28088. image: {
  28089. source: "./media/characters/mandarax/belly.svg"
  28090. }
  28091. },
  28092. dick: {
  28093. height: math.unit(8.46, "feet"),
  28094. name: "Dick",
  28095. image: {
  28096. source: "./media/characters/mandarax/dick.svg"
  28097. }
  28098. },
  28099. top: {
  28100. height: math.unit(28, "meters"),
  28101. name: "Top",
  28102. image: {
  28103. source: "./media/characters/mandarax/top.svg"
  28104. }
  28105. },
  28106. },
  28107. [
  28108. {
  28109. name: "Normal",
  28110. height: math.unit(25, "feet"),
  28111. default: true
  28112. },
  28113. ]
  28114. ))
  28115. characterMakers.push(() => makeCharacter(
  28116. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  28117. {
  28118. front: {
  28119. height: math.unit(5, "feet"),
  28120. weight: math.unit(90, "lb"),
  28121. name: "Front",
  28122. image: {
  28123. source: "./media/characters/pixil/front.svg",
  28124. extra: 2000 / 1618,
  28125. bottom: 12.3 / 2011
  28126. }
  28127. },
  28128. },
  28129. [
  28130. {
  28131. name: "Normal",
  28132. height: math.unit(5, "feet"),
  28133. default: true
  28134. },
  28135. {
  28136. name: "Megamacro",
  28137. height: math.unit(10, "miles"),
  28138. },
  28139. ]
  28140. ))
  28141. characterMakers.push(() => makeCharacter(
  28142. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  28143. {
  28144. front: {
  28145. height: math.unit(7 + 2 / 12, "feet"),
  28146. weight: math.unit(200, "lb"),
  28147. name: "Front",
  28148. image: {
  28149. source: "./media/characters/angel/front.svg",
  28150. extra: 1946/1840,
  28151. bottom: 30/1976
  28152. }
  28153. },
  28154. },
  28155. [
  28156. {
  28157. name: "Normal",
  28158. height: math.unit(7 + 2 / 12, "feet"),
  28159. default: true
  28160. },
  28161. {
  28162. name: "Macro",
  28163. height: math.unit(1000, "feet")
  28164. },
  28165. {
  28166. name: "Megamacro",
  28167. height: math.unit(2, "miles")
  28168. },
  28169. {
  28170. name: "Gigamacro",
  28171. height: math.unit(20, "earths")
  28172. },
  28173. ]
  28174. ))
  28175. characterMakers.push(() => makeCharacter(
  28176. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  28177. {
  28178. front: {
  28179. height: math.unit(5, "feet"),
  28180. weight: math.unit(180, "lb"),
  28181. name: "Front",
  28182. image: {
  28183. source: "./media/characters/mekana/front.svg",
  28184. extra: 1671 / 1605,
  28185. bottom: 3.5 / 1691
  28186. }
  28187. },
  28188. side: {
  28189. height: math.unit(5, "feet"),
  28190. weight: math.unit(180, "lb"),
  28191. name: "Side",
  28192. image: {
  28193. source: "./media/characters/mekana/side.svg",
  28194. extra: 1671 / 1605,
  28195. bottom: 3.5 / 1691
  28196. }
  28197. },
  28198. back: {
  28199. height: math.unit(5, "feet"),
  28200. weight: math.unit(180, "lb"),
  28201. name: "Back",
  28202. image: {
  28203. source: "./media/characters/mekana/back.svg",
  28204. extra: 1671 / 1605,
  28205. bottom: 3.5 / 1691
  28206. }
  28207. },
  28208. },
  28209. [
  28210. {
  28211. name: "Normal",
  28212. height: math.unit(5, "feet"),
  28213. default: true
  28214. },
  28215. ]
  28216. ))
  28217. characterMakers.push(() => makeCharacter(
  28218. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  28219. {
  28220. front: {
  28221. height: math.unit(4 + 6 / 12, "feet"),
  28222. weight: math.unit(80, "lb"),
  28223. name: "Front",
  28224. image: {
  28225. source: "./media/characters/pixie/front.svg",
  28226. extra: 1924 / 1825,
  28227. bottom: 22.4 / 1946
  28228. }
  28229. },
  28230. },
  28231. [
  28232. {
  28233. name: "Normal",
  28234. height: math.unit(4 + 6 / 12, "feet"),
  28235. default: true
  28236. },
  28237. {
  28238. name: "Macro",
  28239. height: math.unit(40, "feet")
  28240. },
  28241. ]
  28242. ))
  28243. characterMakers.push(() => makeCharacter(
  28244. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  28245. {
  28246. front: {
  28247. height: math.unit(2.1, "meters"),
  28248. weight: math.unit(200, "lb"),
  28249. name: "Front",
  28250. image: {
  28251. source: "./media/characters/the-lascivious/front.svg",
  28252. extra: 1 / 0.893,
  28253. bottom: 3.5 / 573.7
  28254. }
  28255. },
  28256. },
  28257. [
  28258. {
  28259. name: "Human Scale",
  28260. height: math.unit(2.1, "meters")
  28261. },
  28262. {
  28263. name: "Wolxi Scale",
  28264. height: math.unit(46.2, "m"),
  28265. default: true
  28266. },
  28267. {
  28268. name: "Boinker of Buildings",
  28269. height: math.unit(10, "km")
  28270. },
  28271. {
  28272. name: "Shagger of Skyscrapers",
  28273. height: math.unit(40, "km")
  28274. },
  28275. {
  28276. name: "Banger of Boroughs",
  28277. height: math.unit(4000, "km")
  28278. },
  28279. {
  28280. name: "Screwer of States",
  28281. height: math.unit(100000, "km")
  28282. },
  28283. {
  28284. name: "Pounder of Planets",
  28285. height: math.unit(2000000, "km")
  28286. },
  28287. ]
  28288. ))
  28289. characterMakers.push(() => makeCharacter(
  28290. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  28291. {
  28292. front: {
  28293. height: math.unit(6, "feet"),
  28294. weight: math.unit(150, "lb"),
  28295. name: "Front",
  28296. image: {
  28297. source: "./media/characters/aj/front.svg",
  28298. extra: 2039 / 1562,
  28299. bottom: 40 / 2079
  28300. }
  28301. },
  28302. },
  28303. [
  28304. {
  28305. name: "Normal",
  28306. height: math.unit(11 + 6 / 12, "feet"),
  28307. default: true
  28308. },
  28309. {
  28310. name: "Megamacro",
  28311. height: math.unit(60, "megameters")
  28312. },
  28313. ]
  28314. ))
  28315. characterMakers.push(() => makeCharacter(
  28316. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  28317. {
  28318. side: {
  28319. height: math.unit(31 + 8 / 12, "feet"),
  28320. weight: math.unit(75000, "kg"),
  28321. name: "Side",
  28322. image: {
  28323. source: "./media/characters/koros/side.svg",
  28324. extra: 1442 / 1297,
  28325. bottom: 122.7 / 1562
  28326. }
  28327. },
  28328. dicksKingsCrown: {
  28329. height: math.unit(6, "feet"),
  28330. name: "Dicks (King's Crown)",
  28331. image: {
  28332. source: "./media/characters/koros/dicks-kings-crown.svg"
  28333. }
  28334. },
  28335. dicksTailSet: {
  28336. height: math.unit(3, "feet"),
  28337. name: "Dicks (Tail Set)",
  28338. image: {
  28339. source: "./media/characters/koros/dicks-tail-set.svg"
  28340. }
  28341. },
  28342. dickCumming: {
  28343. height: math.unit(7.98, "feet"),
  28344. name: "Dick (Cumming)",
  28345. image: {
  28346. source: "./media/characters/koros/dick-cumming.svg"
  28347. }
  28348. },
  28349. dicksBack: {
  28350. height: math.unit(5.9, "feet"),
  28351. name: "Dicks (Back)",
  28352. image: {
  28353. source: "./media/characters/koros/dicks-back.svg"
  28354. }
  28355. },
  28356. dicksFront: {
  28357. height: math.unit(3.72, "feet"),
  28358. name: "Dicks (Front)",
  28359. image: {
  28360. source: "./media/characters/koros/dicks-front.svg"
  28361. }
  28362. },
  28363. dicksPeeking: {
  28364. height: math.unit(3.0, "feet"),
  28365. name: "Dicks (Peeking)",
  28366. image: {
  28367. source: "./media/characters/koros/dicks-peeking.svg"
  28368. }
  28369. },
  28370. eye: {
  28371. height: math.unit(1.7, "feet"),
  28372. name: "Eye",
  28373. image: {
  28374. source: "./media/characters/koros/eye.svg"
  28375. }
  28376. },
  28377. headFront: {
  28378. height: math.unit(11.69, "feet"),
  28379. name: "Head (Front)",
  28380. image: {
  28381. source: "./media/characters/koros/head-front.svg"
  28382. }
  28383. },
  28384. headSide: {
  28385. height: math.unit(14, "feet"),
  28386. name: "Head (Side)",
  28387. image: {
  28388. source: "./media/characters/koros/head-side.svg"
  28389. }
  28390. },
  28391. leg: {
  28392. height: math.unit(17, "feet"),
  28393. name: "Leg",
  28394. image: {
  28395. source: "./media/characters/koros/leg.svg"
  28396. }
  28397. },
  28398. mawSide: {
  28399. height: math.unit(12.8, "feet"),
  28400. name: "Maw (Side)",
  28401. image: {
  28402. source: "./media/characters/koros/maw-side.svg"
  28403. }
  28404. },
  28405. mawSpitting: {
  28406. height: math.unit(17, "feet"),
  28407. name: "Maw (Spitting)",
  28408. image: {
  28409. source: "./media/characters/koros/maw-spitting.svg"
  28410. }
  28411. },
  28412. slit: {
  28413. height: math.unit(2.8, "feet"),
  28414. name: "Slit",
  28415. image: {
  28416. source: "./media/characters/koros/slit.svg"
  28417. }
  28418. },
  28419. stomach: {
  28420. height: math.unit(6.8, "feet"),
  28421. preyCapacity: math.unit(20, "people"),
  28422. name: "Stomach",
  28423. image: {
  28424. source: "./media/characters/koros/stomach.svg"
  28425. }
  28426. },
  28427. wingspanBottom: {
  28428. height: math.unit(114, "feet"),
  28429. name: "Wingspan (Bottom)",
  28430. image: {
  28431. source: "./media/characters/koros/wingspan-bottom.svg"
  28432. }
  28433. },
  28434. wingspanTop: {
  28435. height: math.unit(104, "feet"),
  28436. name: "Wingspan (Top)",
  28437. image: {
  28438. source: "./media/characters/koros/wingspan-top.svg"
  28439. }
  28440. },
  28441. },
  28442. [
  28443. {
  28444. name: "Normal",
  28445. height: math.unit(31 + 8 / 12, "feet"),
  28446. default: true
  28447. },
  28448. ]
  28449. ))
  28450. characterMakers.push(() => makeCharacter(
  28451. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  28452. {
  28453. front: {
  28454. height: math.unit(18 + 5 / 12, "feet"),
  28455. weight: math.unit(3750, "kg"),
  28456. name: "Front",
  28457. image: {
  28458. source: "./media/characters/vexx/front.svg",
  28459. extra: 426 / 396,
  28460. bottom: 31.5 / 458
  28461. }
  28462. },
  28463. maw: {
  28464. height: math.unit(6, "feet"),
  28465. name: "Maw",
  28466. image: {
  28467. source: "./media/characters/vexx/maw.svg"
  28468. }
  28469. },
  28470. },
  28471. [
  28472. {
  28473. name: "Normal",
  28474. height: math.unit(18 + 5 / 12, "feet"),
  28475. default: true
  28476. },
  28477. ]
  28478. ))
  28479. characterMakers.push(() => makeCharacter(
  28480. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  28481. {
  28482. front: {
  28483. height: math.unit(17 + 6 / 12, "feet"),
  28484. weight: math.unit(150, "lb"),
  28485. name: "Front",
  28486. image: {
  28487. source: "./media/characters/baadra/front.svg",
  28488. extra: 1694/1553,
  28489. bottom: 179/1873
  28490. }
  28491. },
  28492. frontAlt: {
  28493. height: math.unit(17 + 6 / 12, "feet"),
  28494. weight: math.unit(150, "lb"),
  28495. name: "Front (Alt)",
  28496. image: {
  28497. source: "./media/characters/baadra/front-alt.svg",
  28498. extra: 3137 / 2890,
  28499. bottom: 168.4 / 3305
  28500. }
  28501. },
  28502. back: {
  28503. height: math.unit(17 + 6 / 12, "feet"),
  28504. weight: math.unit(150, "lb"),
  28505. name: "Back",
  28506. image: {
  28507. source: "./media/characters/baadra/back.svg",
  28508. extra: 3142 / 2890,
  28509. bottom: 220 / 3371
  28510. }
  28511. },
  28512. head: {
  28513. height: math.unit(5.45, "feet"),
  28514. name: "Head",
  28515. image: {
  28516. source: "./media/characters/baadra/head.svg"
  28517. }
  28518. },
  28519. headAngry: {
  28520. height: math.unit(4.95, "feet"),
  28521. name: "Head (Angry)",
  28522. image: {
  28523. source: "./media/characters/baadra/head-angry.svg"
  28524. }
  28525. },
  28526. headOpen: {
  28527. height: math.unit(6, "feet"),
  28528. name: "Head (Open)",
  28529. image: {
  28530. source: "./media/characters/baadra/head-open.svg"
  28531. }
  28532. },
  28533. },
  28534. [
  28535. {
  28536. name: "Normal",
  28537. height: math.unit(17 + 6 / 12, "feet"),
  28538. default: true
  28539. },
  28540. ]
  28541. ))
  28542. characterMakers.push(() => makeCharacter(
  28543. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  28544. {
  28545. front: {
  28546. height: math.unit(7 + 3 / 12, "feet"),
  28547. weight: math.unit(180, "lb"),
  28548. name: "Front",
  28549. image: {
  28550. source: "./media/characters/juri/front.svg",
  28551. extra: 1401 / 1237,
  28552. bottom: 18.5 / 1418
  28553. }
  28554. },
  28555. side: {
  28556. height: math.unit(7 + 3 / 12, "feet"),
  28557. weight: math.unit(180, "lb"),
  28558. name: "Side",
  28559. image: {
  28560. source: "./media/characters/juri/side.svg",
  28561. extra: 1424 / 1242,
  28562. bottom: 18.5 / 1447
  28563. }
  28564. },
  28565. sitting: {
  28566. height: math.unit(6, "feet"),
  28567. weight: math.unit(180, "lb"),
  28568. name: "Sitting",
  28569. image: {
  28570. source: "./media/characters/juri/sitting.svg",
  28571. extra: 1270 / 1143,
  28572. bottom: 100 / 1343
  28573. }
  28574. },
  28575. back: {
  28576. height: math.unit(7 + 3 / 12, "feet"),
  28577. weight: math.unit(180, "lb"),
  28578. name: "Back",
  28579. image: {
  28580. source: "./media/characters/juri/back.svg",
  28581. extra: 1377 / 1240,
  28582. bottom: 23.7 / 1405
  28583. }
  28584. },
  28585. maw: {
  28586. height: math.unit(2.8, "feet"),
  28587. name: "Maw",
  28588. image: {
  28589. source: "./media/characters/juri/maw.svg"
  28590. }
  28591. },
  28592. stomach: {
  28593. height: math.unit(0.89, "feet"),
  28594. preyCapacity: math.unit(4, "liters"),
  28595. name: "Stomach",
  28596. image: {
  28597. source: "./media/characters/juri/stomach.svg"
  28598. }
  28599. },
  28600. },
  28601. [
  28602. {
  28603. name: "Normal",
  28604. height: math.unit(7 + 3 / 12, "feet"),
  28605. default: true
  28606. },
  28607. ]
  28608. ))
  28609. characterMakers.push(() => makeCharacter(
  28610. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28611. {
  28612. fox: {
  28613. height: math.unit(5 + 6 / 12, "feet"),
  28614. weight: math.unit(140, "lb"),
  28615. name: "Fox",
  28616. image: {
  28617. source: "./media/characters/maxene-sita/fox.svg",
  28618. extra: 146 / 138,
  28619. bottom: 2.1 / 148.19
  28620. }
  28621. },
  28622. foxLaying: {
  28623. height: math.unit(1.70, "feet"),
  28624. weight: math.unit(140, "lb"),
  28625. name: "Fox (Laying)",
  28626. image: {
  28627. source: "./media/characters/maxene-sita/fox-laying.svg",
  28628. extra: 910 / 572,
  28629. bottom: 71 / 981
  28630. }
  28631. },
  28632. kitsune: {
  28633. height: math.unit(10, "feet"),
  28634. weight: math.unit(800, "lb"),
  28635. name: "Kitsune",
  28636. image: {
  28637. source: "./media/characters/maxene-sita/kitsune.svg",
  28638. extra: 185 / 176,
  28639. bottom: 4.7 / 189.9
  28640. }
  28641. },
  28642. hellhound: {
  28643. height: math.unit(10, "feet"),
  28644. weight: math.unit(700, "lb"),
  28645. name: "Hellhound",
  28646. image: {
  28647. source: "./media/characters/maxene-sita/hellhound.svg",
  28648. extra: 1600 / 1545,
  28649. bottom: 81 / 1681
  28650. }
  28651. },
  28652. },
  28653. [
  28654. {
  28655. name: "Normal",
  28656. height: math.unit(5 + 6 / 12, "feet"),
  28657. default: true
  28658. },
  28659. ]
  28660. ))
  28661. characterMakers.push(() => makeCharacter(
  28662. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28663. {
  28664. front: {
  28665. height: math.unit(3 + 4 / 12, "feet"),
  28666. weight: math.unit(70, "lb"),
  28667. name: "Front",
  28668. image: {
  28669. source: "./media/characters/maia/front.svg",
  28670. extra: 227 / 219.5,
  28671. bottom: 40 / 267
  28672. }
  28673. },
  28674. back: {
  28675. height: math.unit(3 + 4 / 12, "feet"),
  28676. weight: math.unit(70, "lb"),
  28677. name: "Back",
  28678. image: {
  28679. source: "./media/characters/maia/back.svg",
  28680. extra: 237 / 225
  28681. }
  28682. },
  28683. },
  28684. [
  28685. {
  28686. name: "Normal",
  28687. height: math.unit(3 + 4 / 12, "feet"),
  28688. default: true
  28689. },
  28690. ]
  28691. ))
  28692. characterMakers.push(() => makeCharacter(
  28693. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28694. {
  28695. front: {
  28696. height: math.unit(5 + 10 / 12, "feet"),
  28697. weight: math.unit(197, "lb"),
  28698. name: "Front",
  28699. image: {
  28700. source: "./media/characters/jabaro/front.svg",
  28701. extra: 225 / 216,
  28702. bottom: 5.06 / 230
  28703. }
  28704. },
  28705. back: {
  28706. height: math.unit(5 + 10 / 12, "feet"),
  28707. weight: math.unit(197, "lb"),
  28708. name: "Back",
  28709. image: {
  28710. source: "./media/characters/jabaro/back.svg",
  28711. extra: 225 / 219,
  28712. bottom: 1.9 / 227
  28713. }
  28714. },
  28715. },
  28716. [
  28717. {
  28718. name: "Normal",
  28719. height: math.unit(5 + 10 / 12, "feet"),
  28720. default: true
  28721. },
  28722. ]
  28723. ))
  28724. characterMakers.push(() => makeCharacter(
  28725. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28726. {
  28727. front: {
  28728. height: math.unit(5 + 8 / 12, "feet"),
  28729. weight: math.unit(139, "lb"),
  28730. name: "Front",
  28731. image: {
  28732. source: "./media/characters/risa/front.svg",
  28733. extra: 270 / 260,
  28734. bottom: 11.2 / 282
  28735. }
  28736. },
  28737. back: {
  28738. height: math.unit(5 + 8 / 12, "feet"),
  28739. weight: math.unit(139, "lb"),
  28740. name: "Back",
  28741. image: {
  28742. source: "./media/characters/risa/back.svg",
  28743. extra: 264 / 255,
  28744. bottom: 4 / 268
  28745. }
  28746. },
  28747. },
  28748. [
  28749. {
  28750. name: "Normal",
  28751. height: math.unit(5 + 8 / 12, "feet"),
  28752. default: true
  28753. },
  28754. ]
  28755. ))
  28756. characterMakers.push(() => makeCharacter(
  28757. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28758. {
  28759. front: {
  28760. height: math.unit(2 + 11 / 12, "feet"),
  28761. weight: math.unit(30, "lb"),
  28762. name: "Front",
  28763. image: {
  28764. source: "./media/characters/weatley/front.svg",
  28765. bottom: 10.7 / 414,
  28766. extra: 403.5 / 362
  28767. }
  28768. },
  28769. back: {
  28770. height: math.unit(2 + 11 / 12, "feet"),
  28771. weight: math.unit(30, "lb"),
  28772. name: "Back",
  28773. image: {
  28774. source: "./media/characters/weatley/back.svg",
  28775. bottom: 10.7 / 414,
  28776. extra: 403.5 / 362
  28777. }
  28778. },
  28779. },
  28780. [
  28781. {
  28782. name: "Normal",
  28783. height: math.unit(2 + 11 / 12, "feet"),
  28784. default: true
  28785. },
  28786. ]
  28787. ))
  28788. characterMakers.push(() => makeCharacter(
  28789. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28790. {
  28791. front: {
  28792. height: math.unit(5 + 2 / 12, "feet"),
  28793. weight: math.unit(50, "kg"),
  28794. name: "Front",
  28795. image: {
  28796. source: "./media/characters/mercury-crescent/front.svg",
  28797. extra: 1088 / 1033,
  28798. bottom: 18.9 / 1109
  28799. }
  28800. },
  28801. },
  28802. [
  28803. {
  28804. name: "Normal",
  28805. height: math.unit(5 + 2 / 12, "feet"),
  28806. default: true
  28807. },
  28808. ]
  28809. ))
  28810. characterMakers.push(() => makeCharacter(
  28811. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28812. {
  28813. front: {
  28814. height: math.unit(2, "feet"),
  28815. weight: math.unit(15, "kg"),
  28816. name: "Front",
  28817. image: {
  28818. source: "./media/characters/diamond-jones/front.svg",
  28819. extra: 727/723,
  28820. bottom: 46/773
  28821. }
  28822. },
  28823. },
  28824. [
  28825. {
  28826. name: "Normal",
  28827. height: math.unit(2, "feet"),
  28828. default: true
  28829. },
  28830. ]
  28831. ))
  28832. characterMakers.push(() => makeCharacter(
  28833. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28834. {
  28835. front: {
  28836. height: math.unit(3, "feet"),
  28837. weight: math.unit(30, "kg"),
  28838. name: "Front",
  28839. image: {
  28840. source: "./media/characters/sweet-bit/front.svg",
  28841. extra: 675 / 567,
  28842. bottom: 27.7 / 703
  28843. }
  28844. },
  28845. },
  28846. [
  28847. {
  28848. name: "Normal",
  28849. height: math.unit(3, "feet"),
  28850. default: true
  28851. },
  28852. ]
  28853. ))
  28854. characterMakers.push(() => makeCharacter(
  28855. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28856. {
  28857. side: {
  28858. height: math.unit(9.178, "feet"),
  28859. weight: math.unit(500, "lb"),
  28860. name: "Side",
  28861. image: {
  28862. source: "./media/characters/umbrazen/side.svg",
  28863. extra: 1730 / 1473,
  28864. bottom: 34.6 / 1765
  28865. }
  28866. },
  28867. },
  28868. [
  28869. {
  28870. name: "Normal",
  28871. height: math.unit(9.178, "feet"),
  28872. default: true
  28873. },
  28874. ]
  28875. ))
  28876. characterMakers.push(() => makeCharacter(
  28877. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28878. {
  28879. front: {
  28880. height: math.unit(10, "feet"),
  28881. weight: math.unit(750, "lb"),
  28882. name: "Front",
  28883. image: {
  28884. source: "./media/characters/arlist/front.svg",
  28885. extra: 961 / 778,
  28886. bottom: 6.2 / 986
  28887. }
  28888. },
  28889. },
  28890. [
  28891. {
  28892. name: "Normal",
  28893. height: math.unit(10, "feet"),
  28894. default: true
  28895. },
  28896. ]
  28897. ))
  28898. characterMakers.push(() => makeCharacter(
  28899. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28900. {
  28901. front: {
  28902. height: math.unit(5 + 1 / 12, "feet"),
  28903. weight: math.unit(110, "lb"),
  28904. name: "Front",
  28905. image: {
  28906. source: "./media/characters/aradel/front.svg",
  28907. extra: 324 / 303,
  28908. bottom: 3.6 / 329.4
  28909. }
  28910. },
  28911. },
  28912. [
  28913. {
  28914. name: "Normal",
  28915. height: math.unit(5 + 1 / 12, "feet"),
  28916. default: true
  28917. },
  28918. ]
  28919. ))
  28920. characterMakers.push(() => makeCharacter(
  28921. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28922. {
  28923. dressed: {
  28924. height: math.unit(3 + 8 / 12, "feet"),
  28925. weight: math.unit(50, "lb"),
  28926. name: "Dressed",
  28927. image: {
  28928. source: "./media/characters/serryn/dressed.svg",
  28929. extra: 1792 / 1656,
  28930. bottom: 43.5 / 1840
  28931. }
  28932. },
  28933. nude: {
  28934. height: math.unit(3 + 8 / 12, "feet"),
  28935. weight: math.unit(50, "lb"),
  28936. name: "Nude",
  28937. image: {
  28938. source: "./media/characters/serryn/nude.svg",
  28939. extra: 1792 / 1656,
  28940. bottom: 43.5 / 1840
  28941. }
  28942. },
  28943. },
  28944. [
  28945. {
  28946. name: "Normal",
  28947. height: math.unit(3 + 8 / 12, "feet"),
  28948. default: true
  28949. },
  28950. ]
  28951. ))
  28952. characterMakers.push(() => makeCharacter(
  28953. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28954. {
  28955. front: {
  28956. height: math.unit(7 + 10 / 12, "feet"),
  28957. weight: math.unit(255, "lb"),
  28958. name: "Front",
  28959. image: {
  28960. source: "./media/characters/xavier-thyme/front.svg",
  28961. extra: 3733 / 3642,
  28962. bottom: 131 / 3869
  28963. }
  28964. },
  28965. frontRaven: {
  28966. height: math.unit(7 + 10 / 12, "feet"),
  28967. weight: math.unit(255, "lb"),
  28968. name: "Front (Raven)",
  28969. image: {
  28970. source: "./media/characters/xavier-thyme/front-raven.svg",
  28971. extra: 4385 / 3642,
  28972. bottom: 131 / 4517
  28973. }
  28974. },
  28975. },
  28976. [
  28977. {
  28978. name: "Normal",
  28979. height: math.unit(7 + 10 / 12, "feet"),
  28980. default: true
  28981. },
  28982. ]
  28983. ))
  28984. characterMakers.push(() => makeCharacter(
  28985. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28986. {
  28987. front: {
  28988. height: math.unit(1.6, "m"),
  28989. weight: math.unit(50, "kg"),
  28990. name: "Front",
  28991. image: {
  28992. source: "./media/characters/kiki/front.svg",
  28993. extra: 4682 / 3610,
  28994. bottom: 115 / 4777
  28995. }
  28996. },
  28997. },
  28998. [
  28999. {
  29000. name: "Normal",
  29001. height: math.unit(1.6, "meters"),
  29002. default: true
  29003. },
  29004. ]
  29005. ))
  29006. characterMakers.push(() => makeCharacter(
  29007. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  29008. {
  29009. front: {
  29010. height: math.unit(50, "m"),
  29011. weight: math.unit(500, "tonnes"),
  29012. name: "Front",
  29013. image: {
  29014. source: "./media/characters/ryoko/front.svg",
  29015. extra: 4632 / 3926,
  29016. bottom: 193 / 4823
  29017. }
  29018. },
  29019. },
  29020. [
  29021. {
  29022. name: "Normal",
  29023. height: math.unit(50, "meters"),
  29024. default: true
  29025. },
  29026. ]
  29027. ))
  29028. characterMakers.push(() => makeCharacter(
  29029. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  29030. {
  29031. front: {
  29032. height: math.unit(30, "m"),
  29033. weight: math.unit(22, "tonnes"),
  29034. name: "Front",
  29035. image: {
  29036. source: "./media/characters/elio/front.svg",
  29037. extra: 4582 / 3720,
  29038. bottom: 236 / 4828
  29039. }
  29040. },
  29041. },
  29042. [
  29043. {
  29044. name: "Normal",
  29045. height: math.unit(30, "meters"),
  29046. default: true
  29047. },
  29048. ]
  29049. ))
  29050. characterMakers.push(() => makeCharacter(
  29051. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  29052. {
  29053. front: {
  29054. height: math.unit(6 + 3 / 12, "feet"),
  29055. weight: math.unit(120, "lb"),
  29056. name: "Front",
  29057. image: {
  29058. source: "./media/characters/azura/front.svg",
  29059. extra: 1149 / 1135,
  29060. bottom: 45 / 1194
  29061. }
  29062. },
  29063. frontClothed: {
  29064. height: math.unit(6 + 3 / 12, "feet"),
  29065. weight: math.unit(120, "lb"),
  29066. name: "Front (Clothed)",
  29067. image: {
  29068. source: "./media/characters/azura/front-clothed.svg",
  29069. extra: 1149 / 1135,
  29070. bottom: 45 / 1194
  29071. }
  29072. },
  29073. },
  29074. [
  29075. {
  29076. name: "Normal",
  29077. height: math.unit(6 + 3 / 12, "feet"),
  29078. default: true
  29079. },
  29080. {
  29081. name: "Macro",
  29082. height: math.unit(20 + 6 / 12, "feet")
  29083. },
  29084. {
  29085. name: "Megamacro",
  29086. height: math.unit(12, "miles")
  29087. },
  29088. {
  29089. name: "Gigamacro",
  29090. height: math.unit(10000, "miles")
  29091. },
  29092. {
  29093. name: "Teramacro",
  29094. height: math.unit(900000, "miles")
  29095. },
  29096. ]
  29097. ))
  29098. characterMakers.push(() => makeCharacter(
  29099. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  29100. {
  29101. front: {
  29102. height: math.unit(12, "feet"),
  29103. weight: math.unit(1, "ton"),
  29104. capacity: math.unit(660000, "gallons"),
  29105. name: "Front",
  29106. image: {
  29107. source: "./media/characters/zeus/front.svg",
  29108. extra: 5005 / 4717,
  29109. bottom: 363 / 5388
  29110. }
  29111. },
  29112. },
  29113. [
  29114. {
  29115. name: "Normal",
  29116. height: math.unit(12, "feet")
  29117. },
  29118. {
  29119. name: "Preferred Size",
  29120. height: math.unit(0.5, "miles"),
  29121. default: true
  29122. },
  29123. {
  29124. name: "Giga Horse",
  29125. height: math.unit(300, "miles")
  29126. },
  29127. {
  29128. name: "Riding Planets",
  29129. height: math.unit(30, "megameters")
  29130. },
  29131. {
  29132. name: "Cosmic Giant",
  29133. height: math.unit(3, "zettameters")
  29134. },
  29135. {
  29136. name: "Breeding God",
  29137. height: math.unit(9.92e22, "yottameters")
  29138. },
  29139. ]
  29140. ))
  29141. characterMakers.push(() => makeCharacter(
  29142. { name: "Fang", species: ["monster"], tags: ["feral"] },
  29143. {
  29144. side: {
  29145. height: math.unit(9, "feet"),
  29146. weight: math.unit(1500, "kg"),
  29147. name: "Side",
  29148. image: {
  29149. source: "./media/characters/fang/side.svg",
  29150. extra: 924 / 866,
  29151. bottom: 47.5 / 972.3
  29152. }
  29153. },
  29154. },
  29155. [
  29156. {
  29157. name: "Normal",
  29158. height: math.unit(9, "feet"),
  29159. default: true
  29160. },
  29161. {
  29162. name: "Macro",
  29163. height: math.unit(75 + 6 / 12, "feet")
  29164. },
  29165. {
  29166. name: "Teramacro",
  29167. height: math.unit(50000, "miles")
  29168. },
  29169. ]
  29170. ))
  29171. characterMakers.push(() => makeCharacter(
  29172. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  29173. {
  29174. front: {
  29175. height: math.unit(10, "feet"),
  29176. weight: math.unit(2, "tons"),
  29177. name: "Front",
  29178. image: {
  29179. source: "./media/characters/rekhit/front.svg",
  29180. extra: 2796 / 2590,
  29181. bottom: 225 / 3022
  29182. }
  29183. },
  29184. },
  29185. [
  29186. {
  29187. name: "Normal",
  29188. height: math.unit(10, "feet"),
  29189. default: true
  29190. },
  29191. {
  29192. name: "Macro",
  29193. height: math.unit(500, "feet")
  29194. },
  29195. ]
  29196. ))
  29197. characterMakers.push(() => makeCharacter(
  29198. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  29199. {
  29200. front: {
  29201. height: math.unit(7 + 6.451 / 12, "feet"),
  29202. weight: math.unit(310, "lb"),
  29203. name: "Front",
  29204. image: {
  29205. source: "./media/characters/dahlia-verrick/front.svg",
  29206. extra: 1488 / 1365,
  29207. bottom: 6.2 / 1495
  29208. }
  29209. },
  29210. back: {
  29211. height: math.unit(7 + 6.451 / 12, "feet"),
  29212. weight: math.unit(310, "lb"),
  29213. name: "Back",
  29214. image: {
  29215. source: "./media/characters/dahlia-verrick/back.svg",
  29216. extra: 1472 / 1351,
  29217. bottom: 5.28 / 1477
  29218. }
  29219. },
  29220. frontBusiness: {
  29221. height: math.unit(7 + 6.451 / 12, "feet"),
  29222. weight: math.unit(200, "lb"),
  29223. name: "Front (Business)",
  29224. image: {
  29225. source: "./media/characters/dahlia-verrick/front-business.svg",
  29226. extra: 1478 / 1381,
  29227. bottom: 5.5 / 1484
  29228. }
  29229. },
  29230. frontCasual: {
  29231. height: math.unit(7 + 6.451 / 12, "feet"),
  29232. weight: math.unit(200, "lb"),
  29233. name: "Front (Casual)",
  29234. image: {
  29235. source: "./media/characters/dahlia-verrick/front-casual.svg",
  29236. extra: 1478 / 1381,
  29237. bottom: 5.5 / 1484
  29238. }
  29239. },
  29240. },
  29241. [
  29242. {
  29243. name: "Travel-Sized",
  29244. height: math.unit(7.45, "inches")
  29245. },
  29246. {
  29247. name: "Normal",
  29248. height: math.unit(7 + 6.451 / 12, "feet"),
  29249. default: true
  29250. },
  29251. {
  29252. name: "Hitting the Town",
  29253. height: math.unit(37 + 8 / 12, "feet")
  29254. },
  29255. {
  29256. name: "Stomp in the Suburbs",
  29257. height: math.unit(964 + 9.728 / 12, "feet")
  29258. },
  29259. {
  29260. name: "Sit on the City",
  29261. height: math.unit(61747 + 10.592 / 12, "feet")
  29262. },
  29263. {
  29264. name: "Glomp the Globe",
  29265. height: math.unit(252919327 + 4.832 / 12, "feet")
  29266. },
  29267. ]
  29268. ))
  29269. characterMakers.push(() => makeCharacter(
  29270. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  29271. {
  29272. front: {
  29273. height: math.unit(6 + 4 / 12, "feet"),
  29274. weight: math.unit(320, "lb"),
  29275. name: "Front",
  29276. image: {
  29277. source: "./media/characters/balina-mahigan/front.svg",
  29278. extra: 447 / 428,
  29279. bottom: 18 / 466
  29280. }
  29281. },
  29282. back: {
  29283. height: math.unit(6 + 4 / 12, "feet"),
  29284. weight: math.unit(320, "lb"),
  29285. name: "Back",
  29286. image: {
  29287. source: "./media/characters/balina-mahigan/back.svg",
  29288. extra: 445 / 428,
  29289. bottom: 4.07 / 448
  29290. }
  29291. },
  29292. arm: {
  29293. height: math.unit(1.88, "feet"),
  29294. name: "Arm",
  29295. image: {
  29296. source: "./media/characters/balina-mahigan/arm.svg"
  29297. }
  29298. },
  29299. backPort: {
  29300. height: math.unit(0.685, "feet"),
  29301. name: "Back Port",
  29302. image: {
  29303. source: "./media/characters/balina-mahigan/back-port.svg"
  29304. }
  29305. },
  29306. hoofpaw: {
  29307. height: math.unit(1.41, "feet"),
  29308. name: "Hoofpaw",
  29309. image: {
  29310. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  29311. }
  29312. },
  29313. leftHandBack: {
  29314. height: math.unit(0.938, "feet"),
  29315. name: "Left Hand (Back)",
  29316. image: {
  29317. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  29318. }
  29319. },
  29320. leftHandFront: {
  29321. height: math.unit(0.938, "feet"),
  29322. name: "Left Hand (Front)",
  29323. image: {
  29324. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  29325. }
  29326. },
  29327. rightHandBack: {
  29328. height: math.unit(0.95, "feet"),
  29329. name: "Right Hand (Back)",
  29330. image: {
  29331. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  29332. }
  29333. },
  29334. rightHandFront: {
  29335. height: math.unit(0.95, "feet"),
  29336. name: "Right Hand (Front)",
  29337. image: {
  29338. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  29339. }
  29340. },
  29341. },
  29342. [
  29343. {
  29344. name: "Normal",
  29345. height: math.unit(6 + 4 / 12, "feet"),
  29346. default: true
  29347. },
  29348. ]
  29349. ))
  29350. characterMakers.push(() => makeCharacter(
  29351. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  29352. {
  29353. front: {
  29354. height: math.unit(6, "feet"),
  29355. weight: math.unit(320, "lb"),
  29356. name: "Front",
  29357. image: {
  29358. source: "./media/characters/balina-mejeri/front.svg",
  29359. extra: 517 / 488,
  29360. bottom: 44.2 / 561
  29361. }
  29362. },
  29363. },
  29364. [
  29365. {
  29366. name: "Normal",
  29367. height: math.unit(6 + 4 / 12, "feet")
  29368. },
  29369. {
  29370. name: "Business",
  29371. height: math.unit(155, "feet"),
  29372. default: true
  29373. },
  29374. ]
  29375. ))
  29376. characterMakers.push(() => makeCharacter(
  29377. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  29378. {
  29379. kneeling: {
  29380. height: math.unit(6 + 4 / 12, "feet"),
  29381. weight: math.unit(300 * 20, "lb"),
  29382. name: "Kneeling",
  29383. image: {
  29384. source: "./media/characters/balbarian/kneeling.svg",
  29385. extra: 922 / 862,
  29386. bottom: 42.4 / 965
  29387. }
  29388. },
  29389. },
  29390. [
  29391. {
  29392. name: "Normal",
  29393. height: math.unit(6 + 4 / 12, "feet")
  29394. },
  29395. {
  29396. name: "Treasured",
  29397. height: math.unit(18 + 9 / 12, "feet"),
  29398. default: true
  29399. },
  29400. {
  29401. name: "Macro",
  29402. height: math.unit(900, "feet")
  29403. },
  29404. ]
  29405. ))
  29406. characterMakers.push(() => makeCharacter(
  29407. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  29408. {
  29409. front: {
  29410. height: math.unit(6 + 4 / 12, "feet"),
  29411. weight: math.unit(325, "lb"),
  29412. name: "Front",
  29413. image: {
  29414. source: "./media/characters/balina-amarini/front.svg",
  29415. extra: 415 / 403,
  29416. bottom: 19 / 433.4
  29417. }
  29418. },
  29419. back: {
  29420. height: math.unit(6 + 4 / 12, "feet"),
  29421. weight: math.unit(325, "lb"),
  29422. name: "Back",
  29423. image: {
  29424. source: "./media/characters/balina-amarini/back.svg",
  29425. extra: 415 / 403,
  29426. bottom: 13.5 / 432
  29427. }
  29428. },
  29429. overdrive: {
  29430. height: math.unit(6 + 4 / 12, "feet"),
  29431. weight: math.unit(400, "lb"),
  29432. name: "Overdrive",
  29433. image: {
  29434. source: "./media/characters/balina-amarini/overdrive.svg",
  29435. extra: 269 / 259,
  29436. bottom: 12 / 282
  29437. }
  29438. },
  29439. },
  29440. [
  29441. {
  29442. name: "Boom",
  29443. height: math.unit(9 + 10 / 12, "feet"),
  29444. default: true
  29445. },
  29446. {
  29447. name: "Macro",
  29448. height: math.unit(280, "feet")
  29449. },
  29450. ]
  29451. ))
  29452. characterMakers.push(() => makeCharacter(
  29453. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  29454. {
  29455. goddess: {
  29456. height: math.unit(600, "feet"),
  29457. weight: math.unit(2000000, "tons"),
  29458. name: "Goddess",
  29459. image: {
  29460. source: "./media/characters/lady-kubwa/goddess.svg",
  29461. extra: 1240.5 / 1223,
  29462. bottom: 22 / 1263
  29463. }
  29464. },
  29465. goddesser: {
  29466. height: math.unit(900, "feet"),
  29467. weight: math.unit(20000000, "lb"),
  29468. name: "Goddess-er",
  29469. image: {
  29470. source: "./media/characters/lady-kubwa/goddess-er.svg",
  29471. extra: 899 / 888,
  29472. bottom: 12.6 / 912
  29473. }
  29474. },
  29475. },
  29476. [
  29477. {
  29478. name: "Macro",
  29479. height: math.unit(600, "feet"),
  29480. default: true
  29481. },
  29482. {
  29483. name: "Megamacro",
  29484. height: math.unit(250, "miles")
  29485. },
  29486. ]
  29487. ))
  29488. characterMakers.push(() => makeCharacter(
  29489. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  29490. {
  29491. front: {
  29492. height: math.unit(7 + 7 / 12, "feet"),
  29493. weight: math.unit(250, "lb"),
  29494. name: "Front",
  29495. image: {
  29496. source: "./media/characters/tala-grovehorn/front.svg",
  29497. extra: 2636 / 2525,
  29498. bottom: 147 / 2781
  29499. }
  29500. },
  29501. back: {
  29502. height: math.unit(7 + 7 / 12, "feet"),
  29503. weight: math.unit(250, "lb"),
  29504. name: "Back",
  29505. image: {
  29506. source: "./media/characters/tala-grovehorn/back.svg",
  29507. extra: 2635 / 2539,
  29508. bottom: 100 / 2732.8
  29509. }
  29510. },
  29511. mouth: {
  29512. height: math.unit(1.15, "feet"),
  29513. name: "Mouth",
  29514. image: {
  29515. source: "./media/characters/tala-grovehorn/mouth.svg"
  29516. }
  29517. },
  29518. dick: {
  29519. height: math.unit(2.36, "feet"),
  29520. name: "Dick",
  29521. image: {
  29522. source: "./media/characters/tala-grovehorn/dick.svg"
  29523. }
  29524. },
  29525. slit: {
  29526. height: math.unit(0.61, "feet"),
  29527. name: "Slit",
  29528. image: {
  29529. source: "./media/characters/tala-grovehorn/slit.svg"
  29530. }
  29531. },
  29532. },
  29533. [
  29534. ]
  29535. ))
  29536. characterMakers.push(() => makeCharacter(
  29537. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  29538. {
  29539. front: {
  29540. height: math.unit(7 + 7 / 12, "feet"),
  29541. weight: math.unit(225, "lb"),
  29542. name: "Front",
  29543. image: {
  29544. source: "./media/characters/epona/front.svg",
  29545. extra: 2445 / 2290,
  29546. bottom: 251 / 2696
  29547. }
  29548. },
  29549. back: {
  29550. height: math.unit(7 + 7 / 12, "feet"),
  29551. weight: math.unit(225, "lb"),
  29552. name: "Back",
  29553. image: {
  29554. source: "./media/characters/epona/back.svg",
  29555. extra: 2546 / 2408,
  29556. bottom: 44 / 2589
  29557. }
  29558. },
  29559. genitals: {
  29560. height: math.unit(1.5, "feet"),
  29561. name: "Genitals",
  29562. image: {
  29563. source: "./media/characters/epona/genitals.svg"
  29564. }
  29565. },
  29566. },
  29567. [
  29568. {
  29569. name: "Normal",
  29570. height: math.unit(7 + 7 / 12, "feet"),
  29571. default: true
  29572. },
  29573. ]
  29574. ))
  29575. characterMakers.push(() => makeCharacter(
  29576. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29577. {
  29578. front: {
  29579. height: math.unit(7, "feet"),
  29580. weight: math.unit(518, "lb"),
  29581. name: "Front",
  29582. image: {
  29583. source: "./media/characters/avia-bloodbourn/front.svg",
  29584. extra: 1466 / 1350,
  29585. bottom: 65 / 1527
  29586. }
  29587. },
  29588. },
  29589. [
  29590. ]
  29591. ))
  29592. characterMakers.push(() => makeCharacter(
  29593. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29594. {
  29595. front: {
  29596. height: math.unit(9.35, "feet"),
  29597. weight: math.unit(600, "lb"),
  29598. name: "Front",
  29599. image: {
  29600. source: "./media/characters/amera/front.svg",
  29601. extra: 891 / 818,
  29602. bottom: 30 / 922.7
  29603. }
  29604. },
  29605. back: {
  29606. height: math.unit(9.35, "feet"),
  29607. weight: math.unit(600, "lb"),
  29608. name: "Back",
  29609. image: {
  29610. source: "./media/characters/amera/back.svg",
  29611. extra: 876 / 824,
  29612. bottom: 6.8 / 884
  29613. }
  29614. },
  29615. dick: {
  29616. height: math.unit(2.14, "feet"),
  29617. name: "Dick",
  29618. image: {
  29619. source: "./media/characters/amera/dick.svg"
  29620. }
  29621. },
  29622. },
  29623. [
  29624. {
  29625. name: "Normal",
  29626. height: math.unit(9.35, "feet"),
  29627. default: true
  29628. },
  29629. ]
  29630. ))
  29631. characterMakers.push(() => makeCharacter(
  29632. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29633. {
  29634. kneeling: {
  29635. height: math.unit(3 + 4 / 12, "feet"),
  29636. weight: math.unit(90, "lb"),
  29637. name: "Kneeling",
  29638. image: {
  29639. source: "./media/characters/rosewen/kneeling.svg",
  29640. extra: 1835 / 1571,
  29641. bottom: 27.7 / 1862
  29642. }
  29643. },
  29644. },
  29645. [
  29646. {
  29647. name: "Normal",
  29648. height: math.unit(3 + 4 / 12, "feet"),
  29649. default: true
  29650. },
  29651. ]
  29652. ))
  29653. characterMakers.push(() => makeCharacter(
  29654. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29655. {
  29656. front: {
  29657. height: math.unit(5 + 10 / 12, "feet"),
  29658. weight: math.unit(200, "lb"),
  29659. name: "Front",
  29660. image: {
  29661. source: "./media/characters/sabah/front.svg",
  29662. extra: 849 / 763,
  29663. bottom: 33.9 / 881
  29664. }
  29665. },
  29666. },
  29667. [
  29668. {
  29669. name: "Normal",
  29670. height: math.unit(5 + 10 / 12, "feet"),
  29671. default: true
  29672. },
  29673. ]
  29674. ))
  29675. characterMakers.push(() => makeCharacter(
  29676. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29677. {
  29678. front: {
  29679. height: math.unit(3 + 5 / 12, "feet"),
  29680. weight: math.unit(40, "kg"),
  29681. name: "Front",
  29682. image: {
  29683. source: "./media/characters/purple-flame/front.svg",
  29684. extra: 1577 / 1412,
  29685. bottom: 97 / 1694
  29686. }
  29687. },
  29688. frontDressed: {
  29689. height: math.unit(3 + 5 / 12, "feet"),
  29690. weight: math.unit(40, "kg"),
  29691. name: "Front (Dressed)",
  29692. image: {
  29693. source: "./media/characters/purple-flame/front-dressed.svg",
  29694. extra: 1577 / 1412,
  29695. bottom: 97 / 1694
  29696. }
  29697. },
  29698. headphones: {
  29699. height: math.unit(0.85, "feet"),
  29700. name: "Headphones",
  29701. image: {
  29702. source: "./media/characters/purple-flame/headphones.svg"
  29703. }
  29704. },
  29705. },
  29706. [
  29707. {
  29708. name: "Really Small",
  29709. height: math.unit(5, "cm")
  29710. },
  29711. {
  29712. name: "Micro",
  29713. height: math.unit(1 + 5 / 12, "feet")
  29714. },
  29715. {
  29716. name: "Normal",
  29717. height: math.unit(3 + 5 / 12, "feet"),
  29718. default: true
  29719. },
  29720. {
  29721. name: "Minimacro",
  29722. height: math.unit(125, "feet")
  29723. },
  29724. {
  29725. name: "Macro",
  29726. height: math.unit(0.5, "miles")
  29727. },
  29728. {
  29729. name: "Megamacro",
  29730. height: math.unit(50, "miles")
  29731. },
  29732. {
  29733. name: "Gigantic",
  29734. height: math.unit(750, "miles")
  29735. },
  29736. {
  29737. name: "Planetary",
  29738. height: math.unit(15000, "miles")
  29739. },
  29740. ]
  29741. ))
  29742. characterMakers.push(() => makeCharacter(
  29743. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29744. {
  29745. front: {
  29746. height: math.unit(14, "feet"),
  29747. weight: math.unit(959, "lb"),
  29748. name: "Front",
  29749. image: {
  29750. source: "./media/characters/arsenal/front.svg",
  29751. extra: 2357 / 2157,
  29752. bottom: 93 / 2458
  29753. }
  29754. },
  29755. },
  29756. [
  29757. {
  29758. name: "Normal",
  29759. height: math.unit(14, "feet"),
  29760. default: true
  29761. },
  29762. ]
  29763. ))
  29764. characterMakers.push(() => makeCharacter(
  29765. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29766. {
  29767. front: {
  29768. height: math.unit(6, "feet"),
  29769. weight: math.unit(150, "lb"),
  29770. name: "Front",
  29771. image: {
  29772. source: "./media/characters/adira/front.svg",
  29773. extra: 2121/2013,
  29774. bottom: 206/2327
  29775. }
  29776. },
  29777. },
  29778. [
  29779. {
  29780. name: "Micro",
  29781. height: math.unit(4, "inches"),
  29782. default: true
  29783. },
  29784. {
  29785. name: "Macro",
  29786. height: math.unit(50, "feet")
  29787. },
  29788. ]
  29789. ))
  29790. characterMakers.push(() => makeCharacter(
  29791. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29792. {
  29793. front: {
  29794. height: math.unit(16, "feet"),
  29795. weight: math.unit(1000, "lb"),
  29796. name: "Front",
  29797. image: {
  29798. source: "./media/characters/grim/front.svg",
  29799. extra: 622 / 614,
  29800. bottom: 18.1 / 642
  29801. }
  29802. },
  29803. back: {
  29804. height: math.unit(16, "feet"),
  29805. weight: math.unit(1000, "lb"),
  29806. name: "Back",
  29807. image: {
  29808. source: "./media/characters/grim/back.svg",
  29809. extra: 610.6 / 602,
  29810. bottom: 40.8 / 652
  29811. }
  29812. },
  29813. hunched: {
  29814. height: math.unit(9.75, "feet"),
  29815. weight: math.unit(1000, "lb"),
  29816. name: "Hunched",
  29817. image: {
  29818. source: "./media/characters/grim/hunched.svg",
  29819. extra: 304 / 297,
  29820. bottom: 35.4 / 394
  29821. }
  29822. },
  29823. },
  29824. [
  29825. {
  29826. name: "Normal",
  29827. height: math.unit(16, "feet"),
  29828. default: true
  29829. },
  29830. ]
  29831. ))
  29832. characterMakers.push(() => makeCharacter(
  29833. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29834. {
  29835. front: {
  29836. height: math.unit(2.3, "meters"),
  29837. weight: math.unit(300, "lb"),
  29838. name: "Front",
  29839. image: {
  29840. source: "./media/characters/sinja/front-sfw.svg",
  29841. extra: 1393 / 1294,
  29842. bottom: 70 / 1463
  29843. }
  29844. },
  29845. frontNsfw: {
  29846. height: math.unit(2.3, "meters"),
  29847. weight: math.unit(300, "lb"),
  29848. name: "Front (NSFW)",
  29849. image: {
  29850. source: "./media/characters/sinja/front-nsfw.svg",
  29851. extra: 1393 / 1294,
  29852. bottom: 70 / 1463
  29853. }
  29854. },
  29855. back: {
  29856. height: math.unit(2.3, "meters"),
  29857. weight: math.unit(300, "lb"),
  29858. name: "Back",
  29859. image: {
  29860. source: "./media/characters/sinja/back.svg",
  29861. extra: 1393 / 1294,
  29862. bottom: 70 / 1463
  29863. }
  29864. },
  29865. head: {
  29866. height: math.unit(1.771, "feet"),
  29867. name: "Head",
  29868. image: {
  29869. source: "./media/characters/sinja/head.svg"
  29870. }
  29871. },
  29872. slit: {
  29873. height: math.unit(0.8, "feet"),
  29874. name: "Slit",
  29875. image: {
  29876. source: "./media/characters/sinja/slit.svg"
  29877. }
  29878. },
  29879. },
  29880. [
  29881. {
  29882. name: "Normal",
  29883. height: math.unit(2.3, "meters")
  29884. },
  29885. {
  29886. name: "Macro",
  29887. height: math.unit(91, "meters"),
  29888. default: true
  29889. },
  29890. {
  29891. name: "Megamacro",
  29892. height: math.unit(91440, "meters")
  29893. },
  29894. {
  29895. name: "Gigamacro",
  29896. height: math.unit(60960000, "meters")
  29897. },
  29898. {
  29899. name: "Teramacro",
  29900. height: math.unit(9144000000, "meters")
  29901. },
  29902. ]
  29903. ))
  29904. characterMakers.push(() => makeCharacter(
  29905. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29906. {
  29907. front: {
  29908. height: math.unit(1.7, "meters"),
  29909. weight: math.unit(130, "lb"),
  29910. name: "Front",
  29911. image: {
  29912. source: "./media/characters/kyu/front.svg",
  29913. extra: 415 / 395,
  29914. bottom: 5 / 420
  29915. }
  29916. },
  29917. head: {
  29918. height: math.unit(1.75, "feet"),
  29919. name: "Head",
  29920. image: {
  29921. source: "./media/characters/kyu/head.svg"
  29922. }
  29923. },
  29924. foot: {
  29925. height: math.unit(0.81, "feet"),
  29926. name: "Foot",
  29927. image: {
  29928. source: "./media/characters/kyu/foot.svg"
  29929. }
  29930. },
  29931. },
  29932. [
  29933. {
  29934. name: "Normal",
  29935. height: math.unit(1.7, "meters")
  29936. },
  29937. {
  29938. name: "Macro",
  29939. height: math.unit(131, "feet"),
  29940. default: true
  29941. },
  29942. {
  29943. name: "Megamacro",
  29944. height: math.unit(91440, "meters")
  29945. },
  29946. {
  29947. name: "Gigamacro",
  29948. height: math.unit(60960000, "meters")
  29949. },
  29950. {
  29951. name: "Teramacro",
  29952. height: math.unit(9144000000, "meters")
  29953. },
  29954. ]
  29955. ))
  29956. characterMakers.push(() => makeCharacter(
  29957. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29958. {
  29959. front: {
  29960. height: math.unit(7 + 1 / 12, "feet"),
  29961. weight: math.unit(250, "lb"),
  29962. name: "Front",
  29963. image: {
  29964. source: "./media/characters/joey/front.svg",
  29965. extra: 1791 / 1537,
  29966. bottom: 28 / 1816
  29967. }
  29968. },
  29969. },
  29970. [
  29971. {
  29972. name: "Micro",
  29973. height: math.unit(3, "inches")
  29974. },
  29975. {
  29976. name: "Normal",
  29977. height: math.unit(7 + 1 / 12, "feet"),
  29978. default: true
  29979. },
  29980. ]
  29981. ))
  29982. characterMakers.push(() => makeCharacter(
  29983. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29984. {
  29985. front: {
  29986. height: math.unit(165, "cm"),
  29987. weight: math.unit(140, "lb"),
  29988. name: "Front",
  29989. image: {
  29990. source: "./media/characters/sam-evans/front.svg",
  29991. extra: 3417 / 3230,
  29992. bottom: 41.3 / 3417
  29993. }
  29994. },
  29995. frontSixTails: {
  29996. height: math.unit(165, "cm"),
  29997. weight: math.unit(140, "lb"),
  29998. name: "Front-six-tails",
  29999. image: {
  30000. source: "./media/characters/sam-evans/front-six-tails.svg",
  30001. extra: 3417 / 3230,
  30002. bottom: 41.3 / 3417
  30003. }
  30004. },
  30005. back: {
  30006. height: math.unit(165, "cm"),
  30007. weight: math.unit(140, "lb"),
  30008. name: "Back",
  30009. image: {
  30010. source: "./media/characters/sam-evans/back.svg",
  30011. extra: 3227 / 3032,
  30012. bottom: 6.8 / 3234
  30013. }
  30014. },
  30015. face: {
  30016. height: math.unit(0.68, "feet"),
  30017. name: "Face",
  30018. image: {
  30019. source: "./media/characters/sam-evans/face.svg"
  30020. }
  30021. },
  30022. },
  30023. [
  30024. {
  30025. name: "Normal",
  30026. height: math.unit(165, "cm"),
  30027. default: true
  30028. },
  30029. {
  30030. name: "Macro",
  30031. height: math.unit(100, "meters")
  30032. },
  30033. {
  30034. name: "Macro+",
  30035. height: math.unit(800, "meters")
  30036. },
  30037. {
  30038. name: "Macro++",
  30039. height: math.unit(3, "km")
  30040. },
  30041. {
  30042. name: "Macro+++",
  30043. height: math.unit(30, "km")
  30044. },
  30045. ]
  30046. ))
  30047. characterMakers.push(() => makeCharacter(
  30048. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  30049. {
  30050. front: {
  30051. height: math.unit(10, "feet"),
  30052. weight: math.unit(750, "lb"),
  30053. name: "Front",
  30054. image: {
  30055. source: "./media/characters/juliet-a/front.svg",
  30056. extra: 1766 / 1720,
  30057. bottom: 43 / 1809
  30058. }
  30059. },
  30060. back: {
  30061. height: math.unit(10, "feet"),
  30062. weight: math.unit(750, "lb"),
  30063. name: "Back",
  30064. image: {
  30065. source: "./media/characters/juliet-a/back.svg",
  30066. extra: 1781 / 1734,
  30067. bottom: 35 / 1810,
  30068. }
  30069. },
  30070. },
  30071. [
  30072. {
  30073. name: "Normal",
  30074. height: math.unit(10, "feet"),
  30075. default: true
  30076. },
  30077. {
  30078. name: "Dragon Form",
  30079. height: math.unit(250, "feet")
  30080. },
  30081. {
  30082. name: "Macro",
  30083. height: math.unit(1000, "feet")
  30084. },
  30085. {
  30086. name: "Megamacro",
  30087. height: math.unit(10000, "feet")
  30088. }
  30089. ]
  30090. ))
  30091. characterMakers.push(() => makeCharacter(
  30092. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  30093. {
  30094. regular: {
  30095. height: math.unit(7 + 3 / 12, "feet"),
  30096. weight: math.unit(260, "lb"),
  30097. name: "Regular",
  30098. image: {
  30099. source: "./media/characters/wild/regular.svg",
  30100. extra: 97.45 / 92,
  30101. bottom: 6.8 / 104.3
  30102. }
  30103. },
  30104. biggums: {
  30105. height: math.unit(8 + 6 / 12, "feet"),
  30106. weight: math.unit(425, "lb"),
  30107. name: "Biggums",
  30108. image: {
  30109. source: "./media/characters/wild/biggums.svg",
  30110. extra: 97.45 / 92,
  30111. bottom: 7.5 / 132.34
  30112. }
  30113. },
  30114. mawRegular: {
  30115. height: math.unit(1.24, "feet"),
  30116. name: "Maw (Regular)",
  30117. image: {
  30118. source: "./media/characters/wild/maw.svg"
  30119. }
  30120. },
  30121. mawBiggums: {
  30122. height: math.unit(1.47, "feet"),
  30123. name: "Maw (Biggums)",
  30124. image: {
  30125. source: "./media/characters/wild/maw.svg"
  30126. }
  30127. },
  30128. },
  30129. [
  30130. {
  30131. name: "Normal",
  30132. height: math.unit(7 + 3 / 12, "feet"),
  30133. default: true
  30134. },
  30135. ]
  30136. ))
  30137. characterMakers.push(() => makeCharacter(
  30138. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  30139. {
  30140. front: {
  30141. height: math.unit(2.5, "meters"),
  30142. weight: math.unit(200, "kg"),
  30143. name: "Front",
  30144. image: {
  30145. source: "./media/characters/vidar/front.svg",
  30146. extra: 2994 / 2795,
  30147. bottom: 56 / 3061
  30148. }
  30149. },
  30150. back: {
  30151. height: math.unit(2.5, "meters"),
  30152. weight: math.unit(200, "kg"),
  30153. name: "Back",
  30154. image: {
  30155. source: "./media/characters/vidar/back.svg",
  30156. extra: 3131 / 2928,
  30157. bottom: 13.5 / 3141.5
  30158. }
  30159. },
  30160. feral: {
  30161. height: math.unit(2.5, "meters"),
  30162. weight: math.unit(2000, "kg"),
  30163. name: "Feral",
  30164. image: {
  30165. source: "./media/characters/vidar/feral.svg",
  30166. extra: 2790 / 1765,
  30167. bottom: 6 / 2796
  30168. }
  30169. },
  30170. },
  30171. [
  30172. {
  30173. name: "Normal",
  30174. height: math.unit(2.5, "meters"),
  30175. default: true
  30176. },
  30177. {
  30178. name: "Macro",
  30179. height: math.unit(100, "meters")
  30180. },
  30181. ]
  30182. ))
  30183. characterMakers.push(() => makeCharacter(
  30184. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  30185. {
  30186. front: {
  30187. height: math.unit(5 + 9 / 12, "feet"),
  30188. weight: math.unit(120, "lb"),
  30189. name: "Front",
  30190. image: {
  30191. source: "./media/characters/ash/front.svg",
  30192. extra: 2189 / 1961,
  30193. bottom: 5.2 / 2194
  30194. }
  30195. },
  30196. },
  30197. [
  30198. {
  30199. name: "Normal",
  30200. height: math.unit(5 + 9 / 12, "feet"),
  30201. default: true
  30202. },
  30203. ]
  30204. ))
  30205. characterMakers.push(() => makeCharacter(
  30206. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  30207. {
  30208. front: {
  30209. height: math.unit(9, "feet"),
  30210. weight: math.unit(10000, "lb"),
  30211. name: "Front",
  30212. image: {
  30213. source: "./media/characters/gygabite/front.svg",
  30214. bottom: 31.7 / 537.8,
  30215. extra: 505 / 370
  30216. }
  30217. },
  30218. },
  30219. [
  30220. {
  30221. name: "Normal",
  30222. height: math.unit(9, "feet"),
  30223. default: true
  30224. },
  30225. ]
  30226. ))
  30227. characterMakers.push(() => makeCharacter(
  30228. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  30229. {
  30230. front: {
  30231. height: math.unit(12, "feet"),
  30232. weight: math.unit(4000, "lb"),
  30233. name: "Front",
  30234. image: {
  30235. source: "./media/characters/p0tat0/front.svg",
  30236. extra: 1065 / 921,
  30237. bottom: 55.7 / 1121.25
  30238. }
  30239. },
  30240. },
  30241. [
  30242. {
  30243. name: "Normal",
  30244. height: math.unit(12, "feet"),
  30245. default: true
  30246. },
  30247. ]
  30248. ))
  30249. characterMakers.push(() => makeCharacter(
  30250. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  30251. {
  30252. side: {
  30253. height: math.unit(6.5, "feet"),
  30254. weight: math.unit(800, "lb"),
  30255. name: "Side",
  30256. image: {
  30257. source: "./media/characters/dusk/side.svg",
  30258. extra: 615 / 373,
  30259. bottom: 53 / 664
  30260. }
  30261. },
  30262. sitting: {
  30263. height: math.unit(7, "feet"),
  30264. weight: math.unit(800, "lb"),
  30265. name: "Sitting",
  30266. image: {
  30267. source: "./media/characters/dusk/sitting.svg",
  30268. extra: 753 / 425,
  30269. bottom: 33 / 774
  30270. }
  30271. },
  30272. head: {
  30273. height: math.unit(6.1, "feet"),
  30274. name: "Head",
  30275. image: {
  30276. source: "./media/characters/dusk/head.svg"
  30277. }
  30278. },
  30279. },
  30280. [
  30281. {
  30282. name: "Normal",
  30283. height: math.unit(7, "feet"),
  30284. default: true
  30285. },
  30286. ]
  30287. ))
  30288. characterMakers.push(() => makeCharacter(
  30289. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  30290. {
  30291. front: {
  30292. height: math.unit(15, "feet"),
  30293. weight: math.unit(7000, "lb"),
  30294. name: "Front",
  30295. image: {
  30296. source: "./media/characters/jay-direwolf/front.svg",
  30297. extra: 1810 / 1732,
  30298. bottom: 66 / 1892
  30299. }
  30300. },
  30301. },
  30302. [
  30303. {
  30304. name: "Normal",
  30305. height: math.unit(15, "feet"),
  30306. default: true
  30307. },
  30308. ]
  30309. ))
  30310. characterMakers.push(() => makeCharacter(
  30311. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  30312. {
  30313. front: {
  30314. height: math.unit(4 + 9 / 12, "feet"),
  30315. weight: math.unit(130, "lb"),
  30316. name: "Front",
  30317. image: {
  30318. source: "./media/characters/anchovie/front.svg",
  30319. extra: 382 / 350,
  30320. bottom: 25 / 409
  30321. }
  30322. },
  30323. back: {
  30324. height: math.unit(4 + 9 / 12, "feet"),
  30325. weight: math.unit(130, "lb"),
  30326. name: "Back",
  30327. image: {
  30328. source: "./media/characters/anchovie/back.svg",
  30329. extra: 385 / 352,
  30330. bottom: 16.6 / 402
  30331. }
  30332. },
  30333. frontDressed: {
  30334. height: math.unit(4 + 9 / 12, "feet"),
  30335. weight: math.unit(130, "lb"),
  30336. name: "Front (Dressed)",
  30337. image: {
  30338. source: "./media/characters/anchovie/front-dressed.svg",
  30339. extra: 382 / 350,
  30340. bottom: 25 / 409
  30341. }
  30342. },
  30343. backDressed: {
  30344. height: math.unit(4 + 9 / 12, "feet"),
  30345. weight: math.unit(130, "lb"),
  30346. name: "Back (Dressed)",
  30347. image: {
  30348. source: "./media/characters/anchovie/back-dressed.svg",
  30349. extra: 385 / 352,
  30350. bottom: 16.6 / 402
  30351. }
  30352. },
  30353. },
  30354. [
  30355. {
  30356. name: "Micro",
  30357. height: math.unit(6.4, "inches")
  30358. },
  30359. {
  30360. name: "Normal",
  30361. height: math.unit(4 + 9 / 12, "feet"),
  30362. default: true
  30363. },
  30364. ]
  30365. ))
  30366. characterMakers.push(() => makeCharacter(
  30367. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  30368. {
  30369. front: {
  30370. height: math.unit(2, "meters"),
  30371. weight: math.unit(180, "lb"),
  30372. name: "Front",
  30373. image: {
  30374. source: "./media/characters/acidrenamon/front.svg",
  30375. extra: 987 / 890,
  30376. bottom: 22.8 / 1009
  30377. }
  30378. },
  30379. back: {
  30380. height: math.unit(2, "meters"),
  30381. weight: math.unit(180, "lb"),
  30382. name: "Back",
  30383. image: {
  30384. source: "./media/characters/acidrenamon/back.svg",
  30385. extra: 983 / 891,
  30386. bottom: 8.4 / 992
  30387. }
  30388. },
  30389. head: {
  30390. height: math.unit(1.92, "feet"),
  30391. name: "Head",
  30392. image: {
  30393. source: "./media/characters/acidrenamon/head.svg"
  30394. }
  30395. },
  30396. rump: {
  30397. height: math.unit(1.72, "feet"),
  30398. name: "Rump",
  30399. image: {
  30400. source: "./media/characters/acidrenamon/rump.svg"
  30401. }
  30402. },
  30403. tail: {
  30404. height: math.unit(4.2, "feet"),
  30405. name: "Tail",
  30406. image: {
  30407. source: "./media/characters/acidrenamon/tail.svg"
  30408. }
  30409. },
  30410. },
  30411. [
  30412. {
  30413. name: "Normal",
  30414. height: math.unit(2, "meters"),
  30415. default: true
  30416. },
  30417. {
  30418. name: "Minimacro",
  30419. height: math.unit(7, "meters")
  30420. },
  30421. {
  30422. name: "Macro",
  30423. height: math.unit(200, "meters")
  30424. },
  30425. {
  30426. name: "Gigamacro",
  30427. height: math.unit(0.2, "earths")
  30428. },
  30429. ]
  30430. ))
  30431. characterMakers.push(() => makeCharacter(
  30432. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  30433. {
  30434. front: {
  30435. height: math.unit(152, "feet"),
  30436. name: "Front",
  30437. image: {
  30438. source: "./media/characters/kenzie-lee/front.svg",
  30439. extra: 1869/1774,
  30440. bottom: 128/1997
  30441. }
  30442. },
  30443. side: {
  30444. height: math.unit(86, "feet"),
  30445. name: "Side",
  30446. image: {
  30447. source: "./media/characters/kenzie-lee/side.svg",
  30448. extra: 930/815,
  30449. bottom: 177/1107
  30450. }
  30451. },
  30452. paw: {
  30453. height: math.unit(15, "feet"),
  30454. name: "Paw",
  30455. image: {
  30456. source: "./media/characters/kenzie-lee/paw.svg"
  30457. }
  30458. },
  30459. },
  30460. [
  30461. {
  30462. name: "Kenzie Flea",
  30463. height: math.unit(2, "mm"),
  30464. default: true
  30465. },
  30466. {
  30467. name: "Micro",
  30468. height: math.unit(2, "inches")
  30469. },
  30470. {
  30471. name: "Normal",
  30472. height: math.unit(152, "feet")
  30473. },
  30474. {
  30475. name: "Megamacro",
  30476. height: math.unit(7, "miles")
  30477. },
  30478. {
  30479. name: "Gigamacro",
  30480. height: math.unit(8000, "miles")
  30481. },
  30482. ]
  30483. ))
  30484. characterMakers.push(() => makeCharacter(
  30485. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  30486. {
  30487. front: {
  30488. height: math.unit(6, "feet"),
  30489. name: "Front",
  30490. image: {
  30491. source: "./media/characters/withers/front.svg",
  30492. extra: 1935/1760,
  30493. bottom: 72/2007
  30494. }
  30495. },
  30496. back: {
  30497. height: math.unit(6, "feet"),
  30498. name: "Back",
  30499. image: {
  30500. source: "./media/characters/withers/back.svg",
  30501. extra: 1944/1792,
  30502. bottom: 12/1956
  30503. }
  30504. },
  30505. dressed: {
  30506. height: math.unit(6, "feet"),
  30507. name: "Dressed",
  30508. image: {
  30509. source: "./media/characters/withers/dressed.svg",
  30510. extra: 1937/1765,
  30511. bottom: 73/2010
  30512. }
  30513. },
  30514. phase1: {
  30515. height: math.unit(1.1, "feet"),
  30516. name: "Phase 1",
  30517. image: {
  30518. source: "./media/characters/withers/phase-1.svg",
  30519. extra: 1885/1232,
  30520. bottom: 0/1885
  30521. }
  30522. },
  30523. phase2: {
  30524. height: math.unit(1.05, "feet"),
  30525. name: "Phase 2",
  30526. image: {
  30527. source: "./media/characters/withers/phase-2.svg",
  30528. extra: 1792/1090,
  30529. bottom: 0/1792
  30530. }
  30531. },
  30532. partyWipe: {
  30533. height: math.unit(1.1, "feet"),
  30534. name: "Party Wipe",
  30535. image: {
  30536. source: "./media/characters/withers/party-wipe.svg",
  30537. extra: 1864/1207,
  30538. bottom: 0/1864
  30539. }
  30540. },
  30541. },
  30542. [
  30543. {
  30544. name: "Macro",
  30545. height: math.unit(167, "feet"),
  30546. default: true
  30547. },
  30548. {
  30549. name: "Megamacro",
  30550. height: math.unit(15, "miles")
  30551. }
  30552. ]
  30553. ))
  30554. characterMakers.push(() => makeCharacter(
  30555. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  30556. {
  30557. front: {
  30558. height: math.unit(6 + 7 / 12, "feet"),
  30559. weight: math.unit(250, "lb"),
  30560. name: "Front",
  30561. image: {
  30562. source: "./media/characters/nemoskii/front.svg",
  30563. extra: 2270 / 1734,
  30564. bottom: 86 / 2354
  30565. }
  30566. },
  30567. back: {
  30568. height: math.unit(6 + 7 / 12, "feet"),
  30569. weight: math.unit(250, "lb"),
  30570. name: "Back",
  30571. image: {
  30572. source: "./media/characters/nemoskii/back.svg",
  30573. extra: 1845 / 1788,
  30574. bottom: 10.5 / 1852
  30575. }
  30576. },
  30577. head: {
  30578. height: math.unit(1.31, "feet"),
  30579. name: "Head",
  30580. image: {
  30581. source: "./media/characters/nemoskii/head.svg"
  30582. }
  30583. },
  30584. },
  30585. [
  30586. {
  30587. name: "Micro",
  30588. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30589. },
  30590. {
  30591. name: "Normal",
  30592. height: math.unit(6 + 7 / 12, "feet"),
  30593. default: true
  30594. },
  30595. {
  30596. name: "Macro",
  30597. height: math.unit((6 + 7 / 12) * 150, "feet")
  30598. },
  30599. {
  30600. name: "Macro+",
  30601. height: math.unit((6 + 7 / 12) * 500, "feet")
  30602. },
  30603. {
  30604. name: "Megamacro",
  30605. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30606. },
  30607. ]
  30608. ))
  30609. characterMakers.push(() => makeCharacter(
  30610. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30611. {
  30612. front: {
  30613. height: math.unit(1, "mile"),
  30614. weight: math.unit(265261.9, "lb"),
  30615. name: "Front",
  30616. image: {
  30617. source: "./media/characters/shui/front.svg",
  30618. extra: 1633 / 1564,
  30619. bottom: 91.5 / 1726
  30620. }
  30621. },
  30622. },
  30623. [
  30624. {
  30625. name: "Macro",
  30626. height: math.unit(1, "mile"),
  30627. default: true
  30628. },
  30629. ]
  30630. ))
  30631. characterMakers.push(() => makeCharacter(
  30632. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30633. {
  30634. front: {
  30635. height: math.unit(12 + 6 / 12, "feet"),
  30636. weight: math.unit(1342, "lb"),
  30637. name: "Front",
  30638. image: {
  30639. source: "./media/characters/arokh-takakura/front.svg",
  30640. extra: 1089 / 1043,
  30641. bottom: 77.4 / 1176.7
  30642. }
  30643. },
  30644. back: {
  30645. height: math.unit(12 + 6 / 12, "feet"),
  30646. weight: math.unit(1342, "lb"),
  30647. name: "Back",
  30648. image: {
  30649. source: "./media/characters/arokh-takakura/back.svg",
  30650. extra: 1046 / 1019,
  30651. bottom: 102 / 1150
  30652. }
  30653. },
  30654. },
  30655. [
  30656. {
  30657. name: "Big",
  30658. height: math.unit(12 + 6 / 12, "feet"),
  30659. default: true
  30660. },
  30661. ]
  30662. ))
  30663. characterMakers.push(() => makeCharacter(
  30664. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30665. {
  30666. front: {
  30667. height: math.unit(5 + 6 / 12, "feet"),
  30668. weight: math.unit(150, "lb"),
  30669. name: "Front",
  30670. image: {
  30671. source: "./media/characters/theo/front.svg",
  30672. extra: 1184 / 1131,
  30673. bottom: 7.4 / 1191
  30674. }
  30675. },
  30676. },
  30677. [
  30678. {
  30679. name: "Micro",
  30680. height: math.unit(5, "inches")
  30681. },
  30682. {
  30683. name: "Normal",
  30684. height: math.unit(5 + 6 / 12, "feet"),
  30685. default: true
  30686. },
  30687. ]
  30688. ))
  30689. characterMakers.push(() => makeCharacter(
  30690. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30691. {
  30692. front: {
  30693. height: math.unit(5 + 9 / 12, "feet"),
  30694. weight: math.unit(130, "lb"),
  30695. name: "Front",
  30696. image: {
  30697. source: "./media/characters/cecelia-swift/front.svg",
  30698. extra: 502 / 484,
  30699. bottom: 23 / 523
  30700. }
  30701. },
  30702. back: {
  30703. height: math.unit(5 + 9 / 12, "feet"),
  30704. weight: math.unit(130, "lb"),
  30705. name: "Back",
  30706. image: {
  30707. source: "./media/characters/cecelia-swift/back.svg",
  30708. extra: 499 / 485,
  30709. bottom: 12 / 511
  30710. }
  30711. },
  30712. head: {
  30713. height: math.unit(0.90, "feet"),
  30714. name: "Head",
  30715. image: {
  30716. source: "./media/characters/cecelia-swift/head.svg"
  30717. }
  30718. },
  30719. rump: {
  30720. height: math.unit(1.75, "feet"),
  30721. name: "Rump",
  30722. image: {
  30723. source: "./media/characters/cecelia-swift/rump.svg"
  30724. }
  30725. },
  30726. },
  30727. [
  30728. {
  30729. name: "Normal",
  30730. height: math.unit(5 + 9 / 12, "feet"),
  30731. default: true
  30732. },
  30733. {
  30734. name: "Big",
  30735. height: math.unit(50, "feet")
  30736. },
  30737. {
  30738. name: "Macro",
  30739. height: math.unit(100, "feet")
  30740. },
  30741. {
  30742. name: "Macro+",
  30743. height: math.unit(500, "feet")
  30744. },
  30745. {
  30746. name: "Macro++",
  30747. height: math.unit(1000, "feet")
  30748. },
  30749. ]
  30750. ))
  30751. characterMakers.push(() => makeCharacter(
  30752. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30753. {
  30754. front: {
  30755. height: math.unit(6, "feet"),
  30756. weight: math.unit(150, "lb"),
  30757. name: "Front",
  30758. image: {
  30759. source: "./media/characters/kaunan/front.svg",
  30760. extra: 2890 / 2523,
  30761. bottom: 49 / 2939
  30762. }
  30763. },
  30764. },
  30765. [
  30766. {
  30767. name: "Macro",
  30768. height: math.unit(150, "feet"),
  30769. default: true
  30770. },
  30771. ]
  30772. ))
  30773. characterMakers.push(() => makeCharacter(
  30774. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30775. {
  30776. dressed: {
  30777. height: math.unit(175, "cm"),
  30778. weight: math.unit(60, "kg"),
  30779. name: "Dressed",
  30780. image: {
  30781. source: "./media/characters/fei/dressed.svg",
  30782. extra: 1402/1278,
  30783. bottom: 27/1429
  30784. }
  30785. },
  30786. nude: {
  30787. height: math.unit(175, "cm"),
  30788. weight: math.unit(60, "kg"),
  30789. name: "Nude",
  30790. image: {
  30791. source: "./media/characters/fei/nude.svg",
  30792. extra: 1402/1278,
  30793. bottom: 27/1429
  30794. }
  30795. },
  30796. heels: {
  30797. height: math.unit(0.466, "feet"),
  30798. name: "Heels",
  30799. image: {
  30800. source: "./media/characters/fei/heels.svg",
  30801. extra: 156/152,
  30802. bottom: 28/184
  30803. }
  30804. },
  30805. },
  30806. [
  30807. {
  30808. name: "Mortal",
  30809. height: math.unit(175, "cm")
  30810. },
  30811. {
  30812. name: "Normal",
  30813. height: math.unit(3500, "m")
  30814. },
  30815. {
  30816. name: "Stroll",
  30817. height: math.unit(18.4, "km"),
  30818. default: true
  30819. },
  30820. {
  30821. name: "Showoff",
  30822. height: math.unit(175, "km")
  30823. },
  30824. ]
  30825. ))
  30826. characterMakers.push(() => makeCharacter(
  30827. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30828. {
  30829. front: {
  30830. height: math.unit(7, "feet"),
  30831. weight: math.unit(1000, "kg"),
  30832. name: "Front",
  30833. image: {
  30834. source: "./media/characters/edrax/front.svg",
  30835. extra: 2838 / 2550,
  30836. bottom: 130 / 2968
  30837. }
  30838. },
  30839. },
  30840. [
  30841. {
  30842. name: "Small",
  30843. height: math.unit(7, "feet")
  30844. },
  30845. {
  30846. name: "Normal",
  30847. height: math.unit(1500, "meters")
  30848. },
  30849. {
  30850. name: "Mega",
  30851. height: math.unit(12000000, "km"),
  30852. default: true
  30853. },
  30854. {
  30855. name: "Megamacro",
  30856. height: math.unit(10600000, "lightyears")
  30857. },
  30858. {
  30859. name: "Hypermacro",
  30860. height: math.unit(256, "yottameters")
  30861. },
  30862. ]
  30863. ))
  30864. characterMakers.push(() => makeCharacter(
  30865. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30866. {
  30867. front: {
  30868. height: math.unit(10, "feet"),
  30869. weight: math.unit(750, "lb"),
  30870. name: "Front",
  30871. image: {
  30872. source: "./media/characters/clove/front.svg",
  30873. extra: 1918/1751,
  30874. bottom: 52/1970
  30875. }
  30876. },
  30877. back: {
  30878. height: math.unit(10, "feet"),
  30879. weight: math.unit(750, "lb"),
  30880. name: "Back",
  30881. image: {
  30882. source: "./media/characters/clove/back.svg",
  30883. extra: 1912/1747,
  30884. bottom: 50/1962
  30885. }
  30886. },
  30887. },
  30888. [
  30889. {
  30890. name: "Normal",
  30891. height: math.unit(10, "feet"),
  30892. default: true
  30893. },
  30894. ]
  30895. ))
  30896. characterMakers.push(() => makeCharacter(
  30897. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30898. {
  30899. front: {
  30900. height: math.unit(4, "feet"),
  30901. weight: math.unit(50, "lb"),
  30902. name: "Front",
  30903. image: {
  30904. source: "./media/characters/alex-rabbit/front.svg",
  30905. extra: 507 / 458,
  30906. bottom: 18.5 / 527
  30907. }
  30908. },
  30909. back: {
  30910. height: math.unit(4, "feet"),
  30911. weight: math.unit(50, "lb"),
  30912. name: "Back",
  30913. image: {
  30914. source: "./media/characters/alex-rabbit/back.svg",
  30915. extra: 502 / 460,
  30916. bottom: 18.9 / 521
  30917. }
  30918. },
  30919. },
  30920. [
  30921. {
  30922. name: "Normal",
  30923. height: math.unit(4, "feet"),
  30924. default: true
  30925. },
  30926. ]
  30927. ))
  30928. characterMakers.push(() => makeCharacter(
  30929. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30930. {
  30931. front: {
  30932. height: math.unit(1 + 3 / 12, "feet"),
  30933. weight: math.unit(80, "lb"),
  30934. name: "Front",
  30935. image: {
  30936. source: "./media/characters/zander-rose/front.svg",
  30937. extra: 916 / 797,
  30938. bottom: 17 / 933
  30939. }
  30940. },
  30941. back: {
  30942. height: math.unit(1 + 3 / 12, "feet"),
  30943. weight: math.unit(80, "lb"),
  30944. name: "Back",
  30945. image: {
  30946. source: "./media/characters/zander-rose/back.svg",
  30947. extra: 903 / 779,
  30948. bottom: 31 / 934
  30949. }
  30950. },
  30951. },
  30952. [
  30953. {
  30954. name: "Normal",
  30955. height: math.unit(1 + 3 / 12, "feet"),
  30956. default: true
  30957. },
  30958. ]
  30959. ))
  30960. characterMakers.push(() => makeCharacter(
  30961. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30962. {
  30963. anthro: {
  30964. height: math.unit(6, "feet"),
  30965. weight: math.unit(150, "lb"),
  30966. name: "Anthro",
  30967. image: {
  30968. source: "./media/characters/razz/anthro.svg",
  30969. extra: 1437 / 1343,
  30970. bottom: 48 / 1485
  30971. }
  30972. },
  30973. feral: {
  30974. height: math.unit(6, "feet"),
  30975. weight: math.unit(150, "lb"),
  30976. name: "Feral",
  30977. image: {
  30978. source: "./media/characters/razz/feral.svg",
  30979. extra: 2569 / 1385,
  30980. bottom: 95 / 2664
  30981. }
  30982. },
  30983. },
  30984. [
  30985. {
  30986. name: "Normal",
  30987. height: math.unit(6, "feet"),
  30988. default: true
  30989. },
  30990. ]
  30991. ))
  30992. characterMakers.push(() => makeCharacter(
  30993. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30994. {
  30995. front: {
  30996. height: math.unit(9 + 4 / 12, "feet"),
  30997. weight: math.unit(500, "lb"),
  30998. name: "Front",
  30999. image: {
  31000. source: "./media/characters/morrigan/front.svg",
  31001. extra: 2707 / 2579,
  31002. bottom: 156 / 2863
  31003. }
  31004. },
  31005. },
  31006. [
  31007. {
  31008. name: "Normal",
  31009. height: math.unit(9 + 4 / 12, "feet"),
  31010. default: true
  31011. },
  31012. ]
  31013. ))
  31014. characterMakers.push(() => makeCharacter(
  31015. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  31016. {
  31017. front: {
  31018. height: math.unit(5, "stories"),
  31019. weight: math.unit(4000, "lb"),
  31020. name: "Front",
  31021. image: {
  31022. source: "./media/characters/jenene/front.svg",
  31023. extra: 1780 / 1710,
  31024. bottom: 57 / 1837
  31025. }
  31026. },
  31027. },
  31028. [
  31029. {
  31030. name: "Normal",
  31031. height: math.unit(5, "stories"),
  31032. default: true
  31033. },
  31034. ]
  31035. ))
  31036. characterMakers.push(() => makeCharacter(
  31037. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  31038. {
  31039. taurSfw: {
  31040. height: math.unit(10, "meters"),
  31041. weight: math.unit(17500, "kg"),
  31042. name: "Taur",
  31043. image: {
  31044. source: "./media/characters/faey/taur-sfw.svg",
  31045. extra: 1200 / 968,
  31046. bottom: 41 / 1241
  31047. }
  31048. },
  31049. chestmaw: {
  31050. height: math.unit(2.01, "meters"),
  31051. name: "Chestmaw",
  31052. image: {
  31053. source: "./media/characters/faey/chestmaw.svg"
  31054. }
  31055. },
  31056. foot: {
  31057. height: math.unit(2.43, "meters"),
  31058. name: "Foot",
  31059. image: {
  31060. source: "./media/characters/faey/foot.svg"
  31061. }
  31062. },
  31063. jaws: {
  31064. height: math.unit(1.66, "meters"),
  31065. name: "Jaws",
  31066. image: {
  31067. source: "./media/characters/faey/jaws.svg"
  31068. }
  31069. },
  31070. tongues: {
  31071. height: math.unit(2.01, "meters"),
  31072. name: "Tongues",
  31073. image: {
  31074. source: "./media/characters/faey/tongues.svg"
  31075. }
  31076. },
  31077. },
  31078. [
  31079. {
  31080. name: "Small",
  31081. height: math.unit(10, "meters"),
  31082. default: true
  31083. },
  31084. {
  31085. name: "Big",
  31086. height: math.unit(500000, "km")
  31087. },
  31088. ]
  31089. ))
  31090. characterMakers.push(() => makeCharacter(
  31091. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  31092. {
  31093. front: {
  31094. height: math.unit(7, "feet"),
  31095. weight: math.unit(275, "lb"),
  31096. name: "Front",
  31097. image: {
  31098. source: "./media/characters/roku/front.svg",
  31099. extra: 903 / 878,
  31100. bottom: 37 / 940
  31101. }
  31102. },
  31103. },
  31104. [
  31105. {
  31106. name: "Normal",
  31107. height: math.unit(7, "feet"),
  31108. default: true
  31109. },
  31110. {
  31111. name: "Macro",
  31112. height: math.unit(500, "feet")
  31113. },
  31114. {
  31115. name: "Megamacro",
  31116. height: math.unit(200, "miles")
  31117. },
  31118. ]
  31119. ))
  31120. characterMakers.push(() => makeCharacter(
  31121. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  31122. {
  31123. front: {
  31124. height: math.unit(6 + 2 / 12, "feet"),
  31125. weight: math.unit(150, "lb"),
  31126. name: "Front",
  31127. image: {
  31128. source: "./media/characters/lira/front.svg",
  31129. extra: 1727 / 1605,
  31130. bottom: 26 / 1753
  31131. }
  31132. },
  31133. back: {
  31134. height: math.unit(6 + 2 / 12, "feet"),
  31135. weight: math.unit(150, "lb"),
  31136. name: "Back",
  31137. image: {
  31138. source: "./media/characters/lira/back.svg",
  31139. extra: 1713/1621,
  31140. bottom: 20/1733
  31141. }
  31142. },
  31143. hand: {
  31144. height: math.unit(0.75, "feet"),
  31145. name: "Hand",
  31146. image: {
  31147. source: "./media/characters/lira/hand.svg"
  31148. }
  31149. },
  31150. maw: {
  31151. height: math.unit(0.65, "feet"),
  31152. name: "Maw",
  31153. image: {
  31154. source: "./media/characters/lira/maw.svg"
  31155. }
  31156. },
  31157. pawDigi: {
  31158. height: math.unit(1.6, "feet"),
  31159. name: "Paw Digi",
  31160. image: {
  31161. source: "./media/characters/lira/paw-digi.svg"
  31162. }
  31163. },
  31164. pawPlanti: {
  31165. height: math.unit(1.4, "feet"),
  31166. name: "Paw Planti",
  31167. image: {
  31168. source: "./media/characters/lira/paw-planti.svg"
  31169. }
  31170. },
  31171. },
  31172. [
  31173. {
  31174. name: "Normal",
  31175. height: math.unit(6 + 2 / 12, "feet"),
  31176. default: true
  31177. },
  31178. {
  31179. name: "Macro",
  31180. height: math.unit(100, "feet")
  31181. },
  31182. {
  31183. name: "Macro²",
  31184. height: math.unit(1600, "feet")
  31185. },
  31186. {
  31187. name: "Planetary",
  31188. height: math.unit(20, "earths")
  31189. },
  31190. ]
  31191. ))
  31192. characterMakers.push(() => makeCharacter(
  31193. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  31194. {
  31195. front: {
  31196. height: math.unit(6, "feet"),
  31197. weight: math.unit(150, "lb"),
  31198. name: "Front",
  31199. image: {
  31200. source: "./media/characters/hadjet/front.svg",
  31201. extra: 1480 / 1346,
  31202. bottom: 26 / 1506
  31203. }
  31204. },
  31205. frontNsfw: {
  31206. height: math.unit(6, "feet"),
  31207. weight: math.unit(150, "lb"),
  31208. name: "Front (NSFW)",
  31209. image: {
  31210. source: "./media/characters/hadjet/front-nsfw.svg",
  31211. extra: 1440 / 1358,
  31212. bottom: 52 / 1492
  31213. }
  31214. },
  31215. },
  31216. [
  31217. {
  31218. name: "Macro",
  31219. height: math.unit(10, "stories"),
  31220. default: true
  31221. },
  31222. {
  31223. name: "Megamacro",
  31224. height: math.unit(1.5, "miles")
  31225. },
  31226. {
  31227. name: "Megamacro+",
  31228. height: math.unit(5, "miles")
  31229. },
  31230. ]
  31231. ))
  31232. characterMakers.push(() => makeCharacter(
  31233. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  31234. {
  31235. side: {
  31236. height: math.unit(106, "feet"),
  31237. weight: math.unit(500, "tonnes"),
  31238. name: "Side",
  31239. image: {
  31240. source: "./media/characters/kodran/side.svg",
  31241. extra: 553 / 480,
  31242. bottom: 33 / 586
  31243. }
  31244. },
  31245. front: {
  31246. height: math.unit(132, "feet"),
  31247. weight: math.unit(500, "tonnes"),
  31248. name: "Front",
  31249. image: {
  31250. source: "./media/characters/kodran/front.svg",
  31251. extra: 667 / 643,
  31252. bottom: 42 / 709
  31253. }
  31254. },
  31255. flying: {
  31256. height: math.unit(350, "feet"),
  31257. weight: math.unit(500, "tonnes"),
  31258. name: "Flying",
  31259. image: {
  31260. source: "./media/characters/kodran/flying.svg"
  31261. }
  31262. },
  31263. foot: {
  31264. height: math.unit(33, "feet"),
  31265. name: "Foot",
  31266. image: {
  31267. source: "./media/characters/kodran/foot.svg"
  31268. }
  31269. },
  31270. footFront: {
  31271. height: math.unit(19, "feet"),
  31272. name: "Foot (Front)",
  31273. image: {
  31274. source: "./media/characters/kodran/foot-front.svg",
  31275. extra: 261 / 261,
  31276. bottom: 91 / 352
  31277. }
  31278. },
  31279. headFront: {
  31280. height: math.unit(53, "feet"),
  31281. name: "Head (Front)",
  31282. image: {
  31283. source: "./media/characters/kodran/head-front.svg"
  31284. }
  31285. },
  31286. headSide: {
  31287. height: math.unit(65, "feet"),
  31288. name: "Head (Side)",
  31289. image: {
  31290. source: "./media/characters/kodran/head-side.svg"
  31291. }
  31292. },
  31293. throat: {
  31294. height: math.unit(79, "feet"),
  31295. name: "Throat",
  31296. image: {
  31297. source: "./media/characters/kodran/throat.svg"
  31298. }
  31299. },
  31300. },
  31301. [
  31302. {
  31303. name: "Large",
  31304. height: math.unit(106, "feet"),
  31305. default: true
  31306. },
  31307. ]
  31308. ))
  31309. characterMakers.push(() => makeCharacter(
  31310. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  31311. {
  31312. side: {
  31313. height: math.unit(11, "feet"),
  31314. weight: math.unit(150, "lb"),
  31315. name: "Side",
  31316. image: {
  31317. source: "./media/characters/pyxaron/side.svg",
  31318. extra: 305 / 195,
  31319. bottom: 17 / 322
  31320. }
  31321. },
  31322. },
  31323. [
  31324. {
  31325. name: "Normal",
  31326. height: math.unit(11, "feet"),
  31327. default: true
  31328. },
  31329. ]
  31330. ))
  31331. characterMakers.push(() => makeCharacter(
  31332. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  31333. {
  31334. front: {
  31335. height: math.unit(6, "feet"),
  31336. weight: math.unit(150, "lb"),
  31337. name: "Front",
  31338. image: {
  31339. source: "./media/characters/meep/front.svg",
  31340. extra: 88 / 80,
  31341. bottom: 6 / 94
  31342. }
  31343. },
  31344. },
  31345. [
  31346. {
  31347. name: "Fun Sized",
  31348. height: math.unit(2, "inches"),
  31349. default: true
  31350. },
  31351. {
  31352. name: "Friend Sized",
  31353. height: math.unit(8, "inches")
  31354. },
  31355. ]
  31356. ))
  31357. characterMakers.push(() => makeCharacter(
  31358. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  31359. {
  31360. front: {
  31361. height: math.unit(15, "feet"),
  31362. weight: math.unit(2500, "lb"),
  31363. name: "Front",
  31364. image: {
  31365. source: "./media/characters/holly-rabbit/front.svg",
  31366. extra: 1433 / 1233,
  31367. bottom: 125 / 1558
  31368. }
  31369. },
  31370. dick: {
  31371. height: math.unit(4.6, "feet"),
  31372. name: "Dick",
  31373. image: {
  31374. source: "./media/characters/holly-rabbit/dick.svg"
  31375. }
  31376. },
  31377. },
  31378. [
  31379. {
  31380. name: "Normal",
  31381. height: math.unit(15, "feet"),
  31382. default: true
  31383. },
  31384. {
  31385. name: "Macro",
  31386. height: math.unit(250, "feet")
  31387. },
  31388. {
  31389. name: "Macro+",
  31390. height: math.unit(2500, "feet")
  31391. },
  31392. ]
  31393. ))
  31394. characterMakers.push(() => makeCharacter(
  31395. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  31396. {
  31397. front: {
  31398. height: math.unit(3.02, "meters"),
  31399. weight: math.unit(500, "kg"),
  31400. name: "Front",
  31401. image: {
  31402. source: "./media/characters/drena/front.svg",
  31403. extra: 282 / 243,
  31404. bottom: 8 / 290
  31405. }
  31406. },
  31407. side: {
  31408. height: math.unit(3.02, "meters"),
  31409. weight: math.unit(500, "kg"),
  31410. name: "Side",
  31411. image: {
  31412. source: "./media/characters/drena/side.svg",
  31413. extra: 280 / 245,
  31414. bottom: 10 / 290
  31415. }
  31416. },
  31417. back: {
  31418. height: math.unit(3.02, "meters"),
  31419. weight: math.unit(500, "kg"),
  31420. name: "Back",
  31421. image: {
  31422. source: "./media/characters/drena/back.svg",
  31423. extra: 278 / 243,
  31424. bottom: 2 / 280
  31425. }
  31426. },
  31427. foot: {
  31428. height: math.unit(0.75, "meters"),
  31429. name: "Foot",
  31430. image: {
  31431. source: "./media/characters/drena/foot.svg"
  31432. }
  31433. },
  31434. maw: {
  31435. height: math.unit(0.82, "meters"),
  31436. name: "Maw",
  31437. image: {
  31438. source: "./media/characters/drena/maw.svg"
  31439. }
  31440. },
  31441. eating: {
  31442. height: math.unit(0.75, "meters"),
  31443. name: "Eating",
  31444. image: {
  31445. source: "./media/characters/drena/eating.svg"
  31446. }
  31447. },
  31448. rump: {
  31449. height: math.unit(0.93, "meters"),
  31450. name: "Rump",
  31451. image: {
  31452. source: "./media/characters/drena/rump.svg"
  31453. }
  31454. },
  31455. },
  31456. [
  31457. {
  31458. name: "Normal",
  31459. height: math.unit(3.02, "meters"),
  31460. default: true
  31461. },
  31462. ]
  31463. ))
  31464. characterMakers.push(() => makeCharacter(
  31465. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  31466. {
  31467. front: {
  31468. height: math.unit(6 + 4 / 12, "feet"),
  31469. weight: math.unit(250, "lb"),
  31470. name: "Front",
  31471. image: {
  31472. source: "./media/characters/remmyzilla/front.svg",
  31473. extra: 4033 / 3588,
  31474. bottom: 123 / 4156
  31475. }
  31476. },
  31477. back: {
  31478. height: math.unit(6 + 4 / 12, "feet"),
  31479. weight: math.unit(250, "lb"),
  31480. name: "Back",
  31481. image: {
  31482. source: "./media/characters/remmyzilla/back.svg",
  31483. extra: 1696/1602,
  31484. bottom: 63/1759
  31485. }
  31486. },
  31487. paw: {
  31488. height: math.unit(1.73, "feet"),
  31489. name: "Paw",
  31490. image: {
  31491. source: "./media/characters/remmyzilla/paw.svg"
  31492. },
  31493. extraAttributes: {
  31494. "toeSize": {
  31495. name: "Toe Size",
  31496. power: 2,
  31497. type: "area",
  31498. base: math.unit(0.0035, "m^2")
  31499. },
  31500. "padSize": {
  31501. name: "Pad Size",
  31502. power: 2,
  31503. type: "area",
  31504. base: math.unit(0.015, "m^2")
  31505. },
  31506. "pawsize": {
  31507. name: "Paw Size",
  31508. power: 2,
  31509. type: "area",
  31510. base: math.unit(0.072, "m^2")
  31511. },
  31512. }
  31513. },
  31514. maw: {
  31515. height: math.unit(1.73, "feet"),
  31516. name: "Maw",
  31517. image: {
  31518. source: "./media/characters/remmyzilla/maw.svg"
  31519. }
  31520. },
  31521. },
  31522. [
  31523. {
  31524. name: "Normal",
  31525. height: math.unit(6 + 4 / 12, "feet")
  31526. },
  31527. {
  31528. name: "Minimacro",
  31529. height: math.unit(12 + 8 / 12, "feet")
  31530. },
  31531. {
  31532. name: "Normal",
  31533. height: math.unit(640, "feet"),
  31534. default: true
  31535. },
  31536. {
  31537. name: "Megamacro",
  31538. height: math.unit(6400, "feet")
  31539. },
  31540. {
  31541. name: "Gigamacro",
  31542. height: math.unit(64000, "miles")
  31543. },
  31544. ]
  31545. ))
  31546. characterMakers.push(() => makeCharacter(
  31547. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  31548. {
  31549. front: {
  31550. height: math.unit(2.5, "meters"),
  31551. weight: math.unit(300, "lb"),
  31552. name: "Front",
  31553. image: {
  31554. source: "./media/characters/lawrence/front.svg",
  31555. extra: 357 / 335,
  31556. bottom: 30 / 387
  31557. }
  31558. },
  31559. back: {
  31560. height: math.unit(2.5, "meters"),
  31561. weight: math.unit(300, "lb"),
  31562. name: "Back",
  31563. image: {
  31564. source: "./media/characters/lawrence/back.svg",
  31565. extra: 357 / 338,
  31566. bottom: 16 / 373
  31567. }
  31568. },
  31569. head: {
  31570. height: math.unit(0.9, "meter"),
  31571. name: "Head",
  31572. image: {
  31573. source: "./media/characters/lawrence/head.svg"
  31574. }
  31575. },
  31576. maw: {
  31577. height: math.unit(0.7, "meter"),
  31578. name: "Maw",
  31579. image: {
  31580. source: "./media/characters/lawrence/maw.svg"
  31581. }
  31582. },
  31583. footBottom: {
  31584. height: math.unit(0.5, "meter"),
  31585. name: "Foot (Bottom)",
  31586. image: {
  31587. source: "./media/characters/lawrence/foot-bottom.svg"
  31588. }
  31589. },
  31590. footTop: {
  31591. height: math.unit(0.5, "meter"),
  31592. name: "Foot (Top)",
  31593. image: {
  31594. source: "./media/characters/lawrence/foot-top.svg"
  31595. }
  31596. },
  31597. },
  31598. [
  31599. {
  31600. name: "Normal",
  31601. height: math.unit(2.5, "meters"),
  31602. default: true
  31603. },
  31604. {
  31605. name: "Macro",
  31606. height: math.unit(95, "meters")
  31607. },
  31608. {
  31609. name: "Megamacro",
  31610. height: math.unit(150, "km")
  31611. },
  31612. ]
  31613. ))
  31614. characterMakers.push(() => makeCharacter(
  31615. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31616. {
  31617. front: {
  31618. height: math.unit(4.2, "meters"),
  31619. preyCapacity: math.unit(50, "m^3"),
  31620. weight: math.unit(30, "tonnes"),
  31621. name: "Front",
  31622. image: {
  31623. source: "./media/characters/sydney/front.svg",
  31624. extra: 1177/1129,
  31625. bottom: 197/1374
  31626. },
  31627. extraAttributes: {
  31628. "length": {
  31629. name: "Length",
  31630. power: 1,
  31631. type: "length",
  31632. base: math.unit(21, "meters")
  31633. },
  31634. }
  31635. },
  31636. },
  31637. [
  31638. {
  31639. name: "Normal",
  31640. height: math.unit(4.2, "meters"),
  31641. default: true
  31642. },
  31643. ]
  31644. ))
  31645. characterMakers.push(() => makeCharacter(
  31646. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31647. {
  31648. back: {
  31649. height: math.unit(201, "feet"),
  31650. name: "Back",
  31651. image: {
  31652. source: "./media/characters/jessica/back.svg",
  31653. extra: 273 / 259,
  31654. bottom: 7 / 280
  31655. }
  31656. },
  31657. },
  31658. [
  31659. {
  31660. name: "Normal",
  31661. height: math.unit(201, "feet"),
  31662. default: true
  31663. },
  31664. {
  31665. name: "Megamacro",
  31666. height: math.unit(8, "miles")
  31667. },
  31668. ]
  31669. ))
  31670. characterMakers.push(() => makeCharacter(
  31671. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31672. {
  31673. side: {
  31674. height: math.unit(5.6, "m"),
  31675. weight: math.unit(8000, "kg"),
  31676. name: "Side",
  31677. image: {
  31678. source: "./media/characters/victoria/side.svg",
  31679. extra: 1542/1229,
  31680. bottom: 124/1666
  31681. }
  31682. },
  31683. maw: {
  31684. height: math.unit(7.14, "feet"),
  31685. name: "Maw",
  31686. image: {
  31687. source: "./media/characters/victoria/maw.svg"
  31688. }
  31689. },
  31690. },
  31691. [
  31692. {
  31693. name: "Normal",
  31694. height: math.unit(5.6, "m"),
  31695. default: true
  31696. },
  31697. ]
  31698. ))
  31699. characterMakers.push(() => makeCharacter(
  31700. { name: "Cat", species: ["cat", "nickit", "lucario", "riolu", "lopunny", "dog", "pikachu"], tags: ["anthro", "feral", "taur"] },
  31701. {
  31702. front: {
  31703. height: math.unit(5 + 6 / 12, "feet"),
  31704. name: "Front",
  31705. image: {
  31706. source: "./media/characters/cat/cat-front.svg",
  31707. extra: 1422/1262,
  31708. bottom: 61/1483
  31709. },
  31710. form: "cat",
  31711. default: true
  31712. },
  31713. back: {
  31714. height: math.unit(5 + 6 / 12, "feet"),
  31715. name: "Back",
  31716. image: {
  31717. source: "./media/characters/cat/cat-back.svg",
  31718. extra: 1466/1301,
  31719. bottom: 19/1485
  31720. },
  31721. form: "cat"
  31722. },
  31723. taur: {
  31724. height: math.unit(7, "feet"),
  31725. name: "Side",
  31726. image: {
  31727. source: "./media/characters/cat/taur-side.svg",
  31728. extra: 1389/1233,
  31729. bottom: 83/1472
  31730. },
  31731. form: "taur",
  31732. default: true
  31733. },
  31734. lucarioFront: {
  31735. height: math.unit(4, "feet"),
  31736. name: "Front",
  31737. image: {
  31738. source: "./media/characters/cat/lucario-front.svg",
  31739. extra: 1149/1019,
  31740. bottom: 84/1233
  31741. },
  31742. form: "lucario",
  31743. default: true
  31744. },
  31745. lucarioBack: {
  31746. height: math.unit(4, "feet"),
  31747. name: "Back",
  31748. image: {
  31749. source: "./media/characters/cat/lucario-back.svg",
  31750. extra: 1190/1059,
  31751. bottom: 33/1223
  31752. },
  31753. form: "lucario"
  31754. },
  31755. riolu_front: {
  31756. height: math.unit(2 + 4/12, "feet"),
  31757. name: "Front",
  31758. image: {
  31759. source: "./media/characters/cat/riolu-front.svg",
  31760. extra: 1104/956,
  31761. bottom: 70/1174
  31762. },
  31763. form: "riolu",
  31764. default: true
  31765. },
  31766. nickit: {
  31767. height: math.unit(2, "feet"),
  31768. name: "Side",
  31769. image: {
  31770. source: "./media/characters/cat/nickit-side.svg",
  31771. extra: 1087/852,
  31772. bottom: 67/1154
  31773. },
  31774. form: "nickit",
  31775. default: true
  31776. },
  31777. lopunnyFront: {
  31778. height: math.unit(5, "feet"),
  31779. name: "Front",
  31780. image: {
  31781. source: "./media/characters/cat/lopunny-front.svg",
  31782. extra: 1217/1078,
  31783. bottom: 23/1240
  31784. },
  31785. form: "lopunny",
  31786. default: true
  31787. },
  31788. lopunnyBack: {
  31789. height: math.unit(5, "feet"),
  31790. name: "Back",
  31791. image: {
  31792. source: "./media/characters/cat/lopunny-back.svg",
  31793. extra: 1205/1057,
  31794. bottom: 33/1238
  31795. },
  31796. form: "lopunny"
  31797. },
  31798. dog_front: {
  31799. height: math.unit(5 + 9/12, "feet"),
  31800. name: "Front",
  31801. image: {
  31802. source: "./media/characters/cat/dog-front.svg",
  31803. extra: 1403/1309,
  31804. bottom: 31/1434
  31805. },
  31806. form: "dog",
  31807. default: true
  31808. },
  31809. dog_back: {
  31810. height: math.unit(5 + 9/12, "feet"),
  31811. name: "Back",
  31812. image: {
  31813. source: "./media/characters/cat/dog-back.svg",
  31814. extra: 1393/1297,
  31815. bottom: 38/1431
  31816. },
  31817. form: "dog",
  31818. },
  31819. pikachu_front: {
  31820. height: math.unit(2.64, "feet"),
  31821. name: "Front",
  31822. image: {
  31823. source: "./media/characters/cat/pikachu-front.svg",
  31824. extra: 1224/958,
  31825. bottom: 34/1258
  31826. },
  31827. form: "pikachu",
  31828. default: true
  31829. },
  31830. pikachu_back: {
  31831. height: math.unit(2.64, "feet"),
  31832. name: "Back",
  31833. image: {
  31834. source: "./media/characters/cat/pikachu-back.svg",
  31835. extra: 1228/958,
  31836. bottom: 16/1244
  31837. },
  31838. form: "pikachu",
  31839. },
  31840. gigachuFront: {
  31841. height: math.unit(75, "feet"),
  31842. name: "Front",
  31843. image: {
  31844. source: "./media/characters/cat/gigachu-front.svg",
  31845. extra: 1239/1027,
  31846. bottom: 32/1271
  31847. },
  31848. form: "gigachu",
  31849. default: true
  31850. },
  31851. gigachuBack: {
  31852. height: math.unit(75, "feet"),
  31853. name: "Back",
  31854. image: {
  31855. source: "./media/characters/cat/gigachu-back.svg",
  31856. extra: 1229/1030,
  31857. bottom: 9/1238
  31858. },
  31859. form: "gigachu"
  31860. },
  31861. },
  31862. [
  31863. {
  31864. name: "Really small",
  31865. height: math.unit(1, "nm"),
  31866. allForms: true
  31867. },
  31868. {
  31869. name: "Micro",
  31870. height: math.unit(5, "inches"),
  31871. allForms: true
  31872. },
  31873. {
  31874. name: "Normal",
  31875. height: math.unit(5 + 6 / 12, "feet"),
  31876. default: true,
  31877. form: "cat"
  31878. },
  31879. {
  31880. name: "Normal",
  31881. height: math.unit(7, "feet"),
  31882. default: true,
  31883. form: "taur"
  31884. },
  31885. {
  31886. name: "Normal",
  31887. height: math.unit(4, "feet"),
  31888. default: true,
  31889. form: "lucario"
  31890. },
  31891. {
  31892. name: "Normal",
  31893. height: math.unit(2, "feet"),
  31894. default: true,
  31895. form: "nickit"
  31896. },
  31897. {
  31898. name: "Normal",
  31899. height: math.unit(5, "feet"),
  31900. default: true,
  31901. form: "lopunny"
  31902. },
  31903. {
  31904. name: "Normal",
  31905. height: math.unit(2 + 4/12, "feet"),
  31906. default: true,
  31907. form: "riolu"
  31908. },
  31909. {
  31910. name: "Normal",
  31911. height: math.unit(5 + 6 / 12, "feet"),
  31912. default: true,
  31913. form: "dog"
  31914. },
  31915. {
  31916. name: "Macro",
  31917. height: math.unit(50, "feet"),
  31918. allForms: true
  31919. },
  31920. {
  31921. name: "Normal",
  31922. height: math.unit(2.64, "feet"),
  31923. default: true,
  31924. form: "pikachu"
  31925. },
  31926. {
  31927. name: "Dynamax",
  31928. height: math.unit(75, "feet"),
  31929. form: "gigachu",
  31930. default: true
  31931. },
  31932. {
  31933. name: "Macro+",
  31934. height: math.unit(150, "feet"),
  31935. allForms: true
  31936. },
  31937. {
  31938. name: "Megamacro",
  31939. height: math.unit(100, "miles"),
  31940. allForms: true
  31941. },
  31942. ],
  31943. {
  31944. "cat": {
  31945. name: "Cat",
  31946. default: true
  31947. },
  31948. "taur": {
  31949. name: "Taur",
  31950. },
  31951. "lucario": {
  31952. name: "Lucario",
  31953. },
  31954. "riolu": {
  31955. name: "Riolu",
  31956. },
  31957. "nickit": {
  31958. name: "Nickit",
  31959. },
  31960. "lopunny": {
  31961. name: "Lopunny",
  31962. },
  31963. "dog": {
  31964. name: "Dog",
  31965. },
  31966. "pikachu": {
  31967. name: "Pikachu",
  31968. },
  31969. "gigachu": {
  31970. name: "Gigachu",
  31971. ignoreAllFormSizes: true
  31972. }
  31973. }
  31974. ))
  31975. characterMakers.push(() => makeCharacter(
  31976. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31977. {
  31978. front: {
  31979. height: math.unit(63.4, "meters"),
  31980. weight: math.unit(3.28349e+6, "kilograms"),
  31981. name: "Front",
  31982. image: {
  31983. source: "./media/characters/kirina-violet/front.svg",
  31984. extra: 2812 / 2725,
  31985. bottom: 0 / 2812
  31986. }
  31987. },
  31988. back: {
  31989. height: math.unit(63.4, "meters"),
  31990. weight: math.unit(3.28349e+6, "kilograms"),
  31991. name: "Back",
  31992. image: {
  31993. source: "./media/characters/kirina-violet/back.svg",
  31994. extra: 2812 / 2725,
  31995. bottom: 0 / 2812
  31996. }
  31997. },
  31998. mouth: {
  31999. height: math.unit(4.35, "meters"),
  32000. name: "Mouth",
  32001. image: {
  32002. source: "./media/characters/kirina-violet/mouth.svg"
  32003. }
  32004. },
  32005. paw: {
  32006. height: math.unit(5.6, "meters"),
  32007. name: "Paw",
  32008. image: {
  32009. source: "./media/characters/kirina-violet/paw.svg"
  32010. }
  32011. },
  32012. tail: {
  32013. height: math.unit(18, "meters"),
  32014. name: "Tail",
  32015. image: {
  32016. source: "./media/characters/kirina-violet/tail.svg"
  32017. }
  32018. },
  32019. },
  32020. [
  32021. {
  32022. name: "Macro",
  32023. height: math.unit(63.4, "meters"),
  32024. default: true
  32025. },
  32026. ]
  32027. ))
  32028. characterMakers.push(() => makeCharacter(
  32029. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  32030. {
  32031. front: {
  32032. height: math.unit(6, "feet"),
  32033. weight: math.unit(150, "lb"),
  32034. name: "Front",
  32035. image: {
  32036. source: "./media/characters/sfaiyan/front.svg",
  32037. extra: 999 / 978,
  32038. bottom: 5 / 1004
  32039. }
  32040. },
  32041. },
  32042. [
  32043. {
  32044. name: "Normal",
  32045. height: math.unit(1.82, "meters")
  32046. },
  32047. {
  32048. name: "Giant",
  32049. height: math.unit(2.27, "km"),
  32050. default: true
  32051. },
  32052. ]
  32053. ))
  32054. characterMakers.push(() => makeCharacter(
  32055. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  32056. {
  32057. front: {
  32058. height: math.unit(179, "cm"),
  32059. weight: math.unit(100, "kg"),
  32060. name: "Front",
  32061. image: {
  32062. source: "./media/characters/raunehkeli/front.svg",
  32063. extra: 1934 / 1926,
  32064. bottom: 0 / 1934
  32065. }
  32066. },
  32067. },
  32068. [
  32069. {
  32070. name: "Normal",
  32071. height: math.unit(179, "cm")
  32072. },
  32073. {
  32074. name: "Maximum",
  32075. height: math.unit(575, "meters"),
  32076. default: true
  32077. },
  32078. ]
  32079. ))
  32080. characterMakers.push(() => makeCharacter(
  32081. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  32082. {
  32083. front: {
  32084. height: math.unit(6, "feet"),
  32085. weight: math.unit(150, "lb"),
  32086. name: "Front",
  32087. image: {
  32088. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  32089. extra: 2625 / 2518,
  32090. bottom: 60 / 2685
  32091. }
  32092. },
  32093. },
  32094. [
  32095. {
  32096. name: "Normal",
  32097. height: math.unit(6 + 2 / 12, "feet")
  32098. },
  32099. {
  32100. name: "Macro",
  32101. height: math.unit(1180, "feet"),
  32102. default: true
  32103. },
  32104. ]
  32105. ))
  32106. characterMakers.push(() => makeCharacter(
  32107. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  32108. {
  32109. front: {
  32110. height: math.unit(5 + 6 / 12, "feet"),
  32111. weight: math.unit(108, "lb"),
  32112. name: "Front",
  32113. image: {
  32114. source: "./media/characters/lilith-zott/front.svg",
  32115. extra: 2415/2133,
  32116. bottom: 193/2608
  32117. }
  32118. },
  32119. },
  32120. [
  32121. {
  32122. name: "Base Height",
  32123. height: math.unit(5 + 6 / 12, "feet")
  32124. },
  32125. {
  32126. name: "Preferred Height",
  32127. height: math.unit(200, "feet")
  32128. },
  32129. {
  32130. name: "Max Height",
  32131. height: math.unit(1030, "feet"),
  32132. default: true
  32133. },
  32134. ]
  32135. ))
  32136. characterMakers.push(() => makeCharacter(
  32137. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  32138. {
  32139. front: {
  32140. height: math.unit(6, "feet"),
  32141. weight: math.unit(150, "lb"),
  32142. name: "Front",
  32143. image: {
  32144. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  32145. extra: 2567 / 2435,
  32146. bottom: 39 / 2606
  32147. }
  32148. },
  32149. frontSuper: {
  32150. height: math.unit(6, "feet"),
  32151. name: "Front (Super)",
  32152. image: {
  32153. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  32154. extra: 2567 / 2435,
  32155. bottom: 39 / 2606
  32156. }
  32157. },
  32158. },
  32159. [
  32160. {
  32161. name: "Normal",
  32162. height: math.unit(5 + 10 / 12, "feet")
  32163. },
  32164. {
  32165. name: "Macro",
  32166. height: math.unit(1100, "feet"),
  32167. default: true
  32168. },
  32169. ]
  32170. ))
  32171. characterMakers.push(() => makeCharacter(
  32172. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  32173. {
  32174. front: {
  32175. height: math.unit(100, "miles"),
  32176. name: "Front",
  32177. image: {
  32178. source: "./media/characters/sona/front.svg",
  32179. extra: 2433 / 2201,
  32180. bottom: 53 / 2486
  32181. }
  32182. },
  32183. foot: {
  32184. height: math.unit(16.1, "miles"),
  32185. name: "Foot",
  32186. image: {
  32187. source: "./media/characters/sona/foot.svg"
  32188. }
  32189. },
  32190. },
  32191. [
  32192. {
  32193. name: "Macro",
  32194. height: math.unit(100, "miles"),
  32195. default: true
  32196. },
  32197. ]
  32198. ))
  32199. characterMakers.push(() => makeCharacter(
  32200. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  32201. {
  32202. front: {
  32203. height: math.unit(6, "feet"),
  32204. weight: math.unit(150, "lb"),
  32205. name: "Front",
  32206. image: {
  32207. source: "./media/characters/bailey/front.svg",
  32208. extra: 1778 / 1724,
  32209. bottom: 30 / 1808
  32210. }
  32211. },
  32212. },
  32213. [
  32214. {
  32215. name: "Micro",
  32216. height: math.unit(4, "inches")
  32217. },
  32218. {
  32219. name: "Normal",
  32220. height: math.unit(5 + 5 / 12, "feet"),
  32221. default: true
  32222. },
  32223. {
  32224. name: "Macro",
  32225. height: math.unit(250, "feet")
  32226. },
  32227. {
  32228. name: "Megamacro",
  32229. height: math.unit(100, "miles")
  32230. },
  32231. ]
  32232. ))
  32233. characterMakers.push(() => makeCharacter(
  32234. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  32235. {
  32236. front: {
  32237. height: math.unit(5 + 2 / 12, "feet"),
  32238. weight: math.unit(120, "lb"),
  32239. name: "Front",
  32240. image: {
  32241. source: "./media/characters/snaps/front.svg",
  32242. extra: 2370 / 2177,
  32243. bottom: 48 / 2418
  32244. }
  32245. },
  32246. back: {
  32247. height: math.unit(5 + 2 / 12, "feet"),
  32248. weight: math.unit(120, "lb"),
  32249. name: "Back",
  32250. image: {
  32251. source: "./media/characters/snaps/back.svg",
  32252. extra: 2408 / 2258,
  32253. bottom: 15 / 2423
  32254. }
  32255. },
  32256. },
  32257. [
  32258. {
  32259. name: "Micro",
  32260. height: math.unit(9, "inches")
  32261. },
  32262. {
  32263. name: "Normal",
  32264. height: math.unit(5 + 2 / 12, "feet"),
  32265. default: true
  32266. },
  32267. {
  32268. name: "Mini Macro",
  32269. height: math.unit(10, "feet")
  32270. },
  32271. ]
  32272. ))
  32273. characterMakers.push(() => makeCharacter(
  32274. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  32275. {
  32276. front: {
  32277. height: math.unit(1.8, "meters"),
  32278. weight: math.unit(85, "kg"),
  32279. name: "Front",
  32280. image: {
  32281. source: "./media/characters/azteck/front.svg",
  32282. extra: 2815 / 2625,
  32283. bottom: 89 / 2904
  32284. }
  32285. },
  32286. back: {
  32287. height: math.unit(1.8, "meters"),
  32288. weight: math.unit(85, "kg"),
  32289. name: "Back",
  32290. image: {
  32291. source: "./media/characters/azteck/back.svg",
  32292. extra: 2856 / 2648,
  32293. bottom: 85 / 2941
  32294. }
  32295. },
  32296. frontDressed: {
  32297. height: math.unit(1.8, "meters"),
  32298. weight: math.unit(85, "kg"),
  32299. name: "Front (Dressed)",
  32300. image: {
  32301. source: "./media/characters/azteck/front-dressed.svg",
  32302. extra: 2147 / 2003,
  32303. bottom: 68 / 2215
  32304. }
  32305. },
  32306. head: {
  32307. height: math.unit(0.47, "meters"),
  32308. weight: math.unit(85, "kg"),
  32309. name: "Head",
  32310. image: {
  32311. source: "./media/characters/azteck/head.svg"
  32312. }
  32313. },
  32314. },
  32315. [
  32316. {
  32317. name: "Bite sized",
  32318. height: math.unit(16, "cm")
  32319. },
  32320. {
  32321. name: "Normal",
  32322. height: math.unit(1.8, "meters"),
  32323. default: true
  32324. },
  32325. ]
  32326. ))
  32327. characterMakers.push(() => makeCharacter(
  32328. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  32329. {
  32330. front: {
  32331. height: math.unit(6, "feet"),
  32332. weight: math.unit(150, "lb"),
  32333. name: "Front",
  32334. image: {
  32335. source: "./media/characters/pidge/front.svg",
  32336. extra: 1936/1820,
  32337. bottom: 0/1936
  32338. }
  32339. },
  32340. back: {
  32341. height: math.unit(6, "feet"),
  32342. weight: math.unit(150, "lb"),
  32343. name: "Back",
  32344. image: {
  32345. source: "./media/characters/pidge/back.svg",
  32346. extra: 1938/1843,
  32347. bottom: 0/1938
  32348. }
  32349. },
  32350. casual: {
  32351. height: math.unit(6, "feet"),
  32352. weight: math.unit(150, "lb"),
  32353. name: "Casual",
  32354. image: {
  32355. source: "./media/characters/pidge/casual.svg",
  32356. extra: 1936/1820,
  32357. bottom: 0/1936
  32358. }
  32359. },
  32360. tech: {
  32361. height: math.unit(6, "feet"),
  32362. weight: math.unit(150, "lb"),
  32363. name: "Tech",
  32364. image: {
  32365. source: "./media/characters/pidge/tech.svg",
  32366. extra: 1802/1682,
  32367. bottom: 0/1802
  32368. }
  32369. },
  32370. head: {
  32371. height: math.unit(1.61, "feet"),
  32372. name: "Head",
  32373. image: {
  32374. source: "./media/characters/pidge/head.svg"
  32375. }
  32376. },
  32377. collar: {
  32378. height: math.unit(0.82, "feet"),
  32379. name: "Collar",
  32380. image: {
  32381. source: "./media/characters/pidge/collar.svg"
  32382. }
  32383. },
  32384. },
  32385. [
  32386. {
  32387. name: "Macro",
  32388. height: math.unit(2, "mile"),
  32389. default: true
  32390. },
  32391. {
  32392. name: "PUPPY",
  32393. height: math.unit(20, "miles")
  32394. },
  32395. ]
  32396. ))
  32397. characterMakers.push(() => makeCharacter(
  32398. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  32399. {
  32400. front: {
  32401. height: math.unit(6, "feet"),
  32402. weight: math.unit(150, "lb"),
  32403. name: "Front",
  32404. image: {
  32405. source: "./media/characters/en/front.svg",
  32406. extra: 1697 / 1563,
  32407. bottom: 103 / 1800
  32408. }
  32409. },
  32410. back: {
  32411. height: math.unit(6, "feet"),
  32412. weight: math.unit(150, "lb"),
  32413. name: "Back",
  32414. image: {
  32415. source: "./media/characters/en/back.svg",
  32416. extra: 1700 / 1570,
  32417. bottom: 51 / 1751
  32418. }
  32419. },
  32420. frontDressed: {
  32421. height: math.unit(6, "feet"),
  32422. weight: math.unit(150, "lb"),
  32423. name: "Front (Dressed)",
  32424. image: {
  32425. source: "./media/characters/en/front-dressed.svg",
  32426. extra: 1697 / 1563,
  32427. bottom: 103 / 1800
  32428. }
  32429. },
  32430. backDressed: {
  32431. height: math.unit(6, "feet"),
  32432. weight: math.unit(150, "lb"),
  32433. name: "Back (Dressed)",
  32434. image: {
  32435. source: "./media/characters/en/back-dressed.svg",
  32436. extra: 1700 / 1570,
  32437. bottom: 51 / 1751
  32438. }
  32439. },
  32440. },
  32441. [
  32442. {
  32443. name: "Macro",
  32444. height: math.unit(210, "feet"),
  32445. default: true
  32446. },
  32447. ]
  32448. ))
  32449. characterMakers.push(() => makeCharacter(
  32450. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  32451. {
  32452. front: {
  32453. height: math.unit(6, "feet"),
  32454. weight: math.unit(150, "lb"),
  32455. name: "Front",
  32456. image: {
  32457. source: "./media/characters/haze-orris/front.svg",
  32458. extra: 3975 / 3525,
  32459. bottom: 137 / 4112
  32460. }
  32461. },
  32462. },
  32463. [
  32464. {
  32465. name: "Micro",
  32466. height: math.unit(150, "mm"),
  32467. default: true
  32468. },
  32469. ]
  32470. ))
  32471. characterMakers.push(() => makeCharacter(
  32472. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  32473. {
  32474. front: {
  32475. height: math.unit(6, "feet"),
  32476. weight: math.unit(150, "lb"),
  32477. name: "Front",
  32478. image: {
  32479. source: "./media/characters/casselene-yaro/front.svg",
  32480. extra: 4721 / 4541,
  32481. bottom: 82 / 4803
  32482. }
  32483. },
  32484. back: {
  32485. height: math.unit(6, "feet"),
  32486. weight: math.unit(150, "lb"),
  32487. name: "Back",
  32488. image: {
  32489. source: "./media/characters/casselene-yaro/back.svg",
  32490. extra: 4569 / 4377,
  32491. bottom: 69 / 4638
  32492. }
  32493. },
  32494. dressed: {
  32495. height: math.unit(6, "feet"),
  32496. weight: math.unit(150, "lb"),
  32497. name: "Dressed",
  32498. image: {
  32499. source: "./media/characters/casselene-yaro/dressed.svg",
  32500. extra: 4721 / 4541,
  32501. bottom: 82 / 4803
  32502. }
  32503. },
  32504. maw: {
  32505. height: math.unit(1, "feet"),
  32506. name: "Maw",
  32507. image: {
  32508. source: "./media/characters/casselene-yaro/maw.svg"
  32509. }
  32510. },
  32511. },
  32512. [
  32513. {
  32514. name: "Macro",
  32515. height: math.unit(190, "feet"),
  32516. default: true
  32517. },
  32518. ]
  32519. ))
  32520. characterMakers.push(() => makeCharacter(
  32521. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  32522. {
  32523. front: {
  32524. height: math.unit(10, "feet"),
  32525. weight: math.unit(15015, "lb"),
  32526. name: "Front",
  32527. image: {
  32528. source: "./media/characters/platine/front.svg",
  32529. extra: 1741/1650,
  32530. bottom: 84/1825
  32531. }
  32532. },
  32533. side: {
  32534. height: math.unit(10, "feet"),
  32535. weight: math.unit(15015, "lb"),
  32536. name: "Side",
  32537. image: {
  32538. source: "./media/characters/platine/side.svg",
  32539. extra: 1790/1705,
  32540. bottom: 29/1819
  32541. }
  32542. },
  32543. },
  32544. [
  32545. {
  32546. name: "Normal",
  32547. height: math.unit(10, "feet"),
  32548. default: true
  32549. },
  32550. {
  32551. name: "Macro",
  32552. height: math.unit(100, "feet")
  32553. },
  32554. {
  32555. name: "Megamacro",
  32556. height: math.unit(1000, "feet")
  32557. },
  32558. ]
  32559. ))
  32560. characterMakers.push(() => makeCharacter(
  32561. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  32562. {
  32563. front: {
  32564. height: math.unit(15 + 5 / 12, "feet"),
  32565. weight: math.unit(4600, "lb"),
  32566. name: "Front",
  32567. image: {
  32568. source: "./media/characters/neapolitan-ananassa/front.svg",
  32569. extra: 2903 / 2736,
  32570. bottom: 0 / 2903
  32571. }
  32572. },
  32573. side: {
  32574. height: math.unit(15 + 5 / 12, "feet"),
  32575. weight: math.unit(4600, "lb"),
  32576. name: "Side",
  32577. image: {
  32578. source: "./media/characters/neapolitan-ananassa/side.svg",
  32579. extra: 2925 / 2719,
  32580. bottom: 0 / 2925
  32581. }
  32582. },
  32583. back: {
  32584. height: math.unit(15 + 5 / 12, "feet"),
  32585. weight: math.unit(4600, "lb"),
  32586. name: "Back",
  32587. image: {
  32588. source: "./media/characters/neapolitan-ananassa/back.svg",
  32589. extra: 2903 / 2736,
  32590. bottom: 0 / 2903
  32591. }
  32592. },
  32593. },
  32594. [
  32595. {
  32596. name: "Normal",
  32597. height: math.unit(15 + 5 / 12, "feet"),
  32598. default: true
  32599. },
  32600. {
  32601. name: "Post-Millenium",
  32602. height: math.unit(35 + 5 / 12, "feet")
  32603. },
  32604. {
  32605. name: "Post-Era",
  32606. height: math.unit(450 + 5 / 12, "feet")
  32607. },
  32608. ]
  32609. ))
  32610. characterMakers.push(() => makeCharacter(
  32611. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  32612. {
  32613. front: {
  32614. height: math.unit(300, "meters"),
  32615. weight: math.unit(125000, "tonnes"),
  32616. name: "Front",
  32617. image: {
  32618. source: "./media/characters/pazuzu/front.svg",
  32619. extra: 877 / 794,
  32620. bottom: 47 / 924
  32621. }
  32622. },
  32623. },
  32624. [
  32625. {
  32626. name: "Macro",
  32627. height: math.unit(300, "meters"),
  32628. default: true
  32629. },
  32630. ]
  32631. ))
  32632. characterMakers.push(() => makeCharacter(
  32633. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  32634. {
  32635. side: {
  32636. height: math.unit(10 + 7 / 12, "feet"),
  32637. weight: math.unit(2.5, "tons"),
  32638. name: "Side",
  32639. image: {
  32640. source: "./media/characters/aasha/side.svg",
  32641. extra: 1345 / 1245,
  32642. bottom: 111 / 1456
  32643. }
  32644. },
  32645. back: {
  32646. height: math.unit(10 + 7 / 12, "feet"),
  32647. weight: math.unit(2.5, "tons"),
  32648. name: "Back",
  32649. image: {
  32650. source: "./media/characters/aasha/back.svg",
  32651. extra: 1133 / 1057,
  32652. bottom: 257 / 1390
  32653. }
  32654. },
  32655. },
  32656. [
  32657. {
  32658. name: "Normal",
  32659. height: math.unit(10 + 7 / 12, "feet"),
  32660. default: true
  32661. },
  32662. ]
  32663. ))
  32664. characterMakers.push(() => makeCharacter(
  32665. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  32666. {
  32667. front: {
  32668. height: math.unit(6 + 3 / 12, "feet"),
  32669. name: "Front",
  32670. image: {
  32671. source: "./media/characters/nevan/front.svg",
  32672. extra: 704 / 704,
  32673. bottom: 28 / 732
  32674. }
  32675. },
  32676. back: {
  32677. height: math.unit(6 + 3 / 12, "feet"),
  32678. name: "Back",
  32679. image: {
  32680. source: "./media/characters/nevan/back.svg",
  32681. extra: 714 / 714,
  32682. bottom: 21 / 735
  32683. }
  32684. },
  32685. frontFlaccid: {
  32686. height: math.unit(6 + 3 / 12, "feet"),
  32687. name: "Front (Flaccid)",
  32688. image: {
  32689. source: "./media/characters/nevan/front-flaccid.svg",
  32690. extra: 704 / 704,
  32691. bottom: 28 / 732
  32692. }
  32693. },
  32694. frontErect: {
  32695. height: math.unit(6 + 3 / 12, "feet"),
  32696. name: "Front (Erect)",
  32697. image: {
  32698. source: "./media/characters/nevan/front-erect.svg",
  32699. extra: 704 / 704,
  32700. bottom: 28 / 732
  32701. }
  32702. },
  32703. backFlaccid: {
  32704. height: math.unit(6 + 3 / 12, "feet"),
  32705. name: "Back (Flaccid)",
  32706. image: {
  32707. source: "./media/characters/nevan/back-flaccid.svg",
  32708. extra: 714 / 714,
  32709. bottom: 21 / 735
  32710. }
  32711. },
  32712. },
  32713. [
  32714. {
  32715. name: "Normal",
  32716. height: math.unit(6 + 3 / 12, "feet"),
  32717. default: true
  32718. },
  32719. ]
  32720. ))
  32721. characterMakers.push(() => makeCharacter(
  32722. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32723. {
  32724. front: {
  32725. height: math.unit(4, "feet"),
  32726. name: "Front",
  32727. image: {
  32728. source: "./media/characters/arhan/front.svg",
  32729. extra: 3368 / 3133,
  32730. bottom: 0 / 3368
  32731. }
  32732. },
  32733. side: {
  32734. height: math.unit(4, "feet"),
  32735. name: "Side",
  32736. image: {
  32737. source: "./media/characters/arhan/side.svg",
  32738. extra: 3347 / 3105,
  32739. bottom: 0 / 3347
  32740. }
  32741. },
  32742. tongue: {
  32743. height: math.unit(1.42, "feet"),
  32744. name: "Tongue",
  32745. image: {
  32746. source: "./media/characters/arhan/tongue.svg"
  32747. }
  32748. },
  32749. head: {
  32750. height: math.unit(0.85, "feet"),
  32751. name: "Head",
  32752. image: {
  32753. source: "./media/characters/arhan/head.svg"
  32754. }
  32755. },
  32756. },
  32757. [
  32758. {
  32759. name: "Normal",
  32760. height: math.unit(4, "feet"),
  32761. default: true
  32762. },
  32763. ]
  32764. ))
  32765. characterMakers.push(() => makeCharacter(
  32766. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32767. {
  32768. front: {
  32769. height: math.unit(5 + 7.5 / 12, "feet"),
  32770. weight: math.unit(120, "lb"),
  32771. name: "Front",
  32772. image: {
  32773. source: "./media/characters/digi-duncan/front.svg",
  32774. extra: 330 / 326,
  32775. bottom: 16 / 346
  32776. }
  32777. },
  32778. side: {
  32779. height: math.unit(5 + 7.5 / 12, "feet"),
  32780. weight: math.unit(120, "lb"),
  32781. name: "Side",
  32782. image: {
  32783. source: "./media/characters/digi-duncan/side.svg",
  32784. extra: 341 / 337,
  32785. bottom: 1 / 342
  32786. }
  32787. },
  32788. back: {
  32789. height: math.unit(5 + 7.5 / 12, "feet"),
  32790. weight: math.unit(120, "lb"),
  32791. name: "Back",
  32792. image: {
  32793. source: "./media/characters/digi-duncan/back.svg",
  32794. extra: 330 / 326,
  32795. bottom: 12 / 342
  32796. }
  32797. },
  32798. },
  32799. [
  32800. {
  32801. name: "Speck",
  32802. height: math.unit(0.25, "mm")
  32803. },
  32804. {
  32805. name: "Micro",
  32806. height: math.unit(5, "mm")
  32807. },
  32808. {
  32809. name: "Tiny",
  32810. height: math.unit(0.5, "inches"),
  32811. default: true
  32812. },
  32813. {
  32814. name: "Human",
  32815. height: math.unit(5 + 7.5 / 12, "feet")
  32816. },
  32817. {
  32818. name: "Minigiant",
  32819. height: math.unit(8 + 5.25, "feet")
  32820. },
  32821. {
  32822. name: "Giant",
  32823. height: math.unit(2000, "feet")
  32824. },
  32825. {
  32826. name: "Mega",
  32827. height: math.unit(371.1, "miles")
  32828. },
  32829. ]
  32830. ))
  32831. characterMakers.push(() => makeCharacter(
  32832. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32833. {
  32834. front: {
  32835. height: math.unit(2, "meters"),
  32836. weight: math.unit(350, "kg"),
  32837. name: "Front",
  32838. image: {
  32839. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32840. extra: 898 / 838,
  32841. bottom: 9 / 907
  32842. }
  32843. },
  32844. },
  32845. [
  32846. {
  32847. name: "Micro",
  32848. height: math.unit(8, "meters")
  32849. },
  32850. {
  32851. name: "Normal",
  32852. height: math.unit(50, "meters"),
  32853. default: true
  32854. },
  32855. {
  32856. name: "Macro",
  32857. height: math.unit(500, "meters")
  32858. },
  32859. ]
  32860. ))
  32861. characterMakers.push(() => makeCharacter(
  32862. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32863. {
  32864. front: {
  32865. height: math.unit(6 + 6 / 12, "feet"),
  32866. name: "Front",
  32867. image: {
  32868. source: "./media/characters/khardesh/front.svg",
  32869. extra: 1788/1596,
  32870. bottom: 66/1854
  32871. }
  32872. },
  32873. back: {
  32874. height: math.unit(6 + 6 / 12, "feet"),
  32875. name: "Back",
  32876. image: {
  32877. source: "./media/characters/khardesh/back.svg",
  32878. extra: 1781/1584,
  32879. bottom: 68/1849
  32880. }
  32881. },
  32882. },
  32883. [
  32884. {
  32885. name: "Normal",
  32886. height: math.unit(6 + 6 / 12, "feet"),
  32887. default: true
  32888. },
  32889. {
  32890. name: "Normal+",
  32891. height: math.unit(4, "meters")
  32892. },
  32893. {
  32894. name: "Macro",
  32895. height: math.unit(50, "meters")
  32896. },
  32897. {
  32898. name: "Macro+",
  32899. height: math.unit(100, "meters")
  32900. },
  32901. {
  32902. name: "Megamacro",
  32903. height: math.unit(20, "km")
  32904. },
  32905. ]
  32906. ))
  32907. characterMakers.push(() => makeCharacter(
  32908. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32909. {
  32910. front: {
  32911. height: math.unit(6, "feet"),
  32912. weight: math.unit(150, "lb"),
  32913. name: "Front",
  32914. image: {
  32915. source: "./media/characters/kosho/front.svg",
  32916. extra: 1847 / 1847,
  32917. bottom: 86 / 1933
  32918. }
  32919. },
  32920. },
  32921. [
  32922. {
  32923. name: "Second-stage micro",
  32924. height: math.unit(0.5, "inches")
  32925. },
  32926. {
  32927. name: "First-stage micro",
  32928. height: math.unit(6, "inches")
  32929. },
  32930. {
  32931. name: "Normal",
  32932. height: math.unit(6, "feet"),
  32933. default: true
  32934. },
  32935. {
  32936. name: "First-stage macro",
  32937. height: math.unit(72, "feet")
  32938. },
  32939. {
  32940. name: "Second-stage macro",
  32941. height: math.unit(864, "feet")
  32942. },
  32943. ]
  32944. ))
  32945. characterMakers.push(() => makeCharacter(
  32946. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32947. {
  32948. normal: {
  32949. height: math.unit(4 + 6 / 12, "feet"),
  32950. name: "Normal",
  32951. image: {
  32952. source: "./media/characters/hydra/normal.svg",
  32953. extra: 2833 / 2634,
  32954. bottom: 68 / 2901
  32955. }
  32956. },
  32957. smol: {
  32958. height: math.unit(0.705, "inches"),
  32959. name: "Smol",
  32960. image: {
  32961. source: "./media/characters/hydra/smol.svg",
  32962. extra: 2715 / 2540,
  32963. bottom: 0 / 2715
  32964. }
  32965. },
  32966. },
  32967. [
  32968. {
  32969. name: "Normal",
  32970. height: math.unit(4 + 6 / 12, "feet"),
  32971. default: true
  32972. }
  32973. ]
  32974. ))
  32975. characterMakers.push(() => makeCharacter(
  32976. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32977. {
  32978. front: {
  32979. height: math.unit(0.6, "cm"),
  32980. name: "Front",
  32981. image: {
  32982. source: "./media/characters/daz/front.svg",
  32983. extra: 1682 / 1164,
  32984. bottom: 42 / 1724
  32985. }
  32986. },
  32987. },
  32988. [
  32989. {
  32990. name: "Normal",
  32991. height: math.unit(0.6, "cm"),
  32992. default: true
  32993. },
  32994. ]
  32995. ))
  32996. characterMakers.push(() => makeCharacter(
  32997. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32998. {
  32999. front: {
  33000. height: math.unit(6, "feet"),
  33001. weight: math.unit(235, "lb"),
  33002. name: "Front",
  33003. image: {
  33004. source: "./media/characters/theo-pangolin/front.svg",
  33005. extra: 1996 / 1969,
  33006. bottom: 115 / 2111
  33007. }
  33008. },
  33009. back: {
  33010. height: math.unit(6, "feet"),
  33011. weight: math.unit(235, "lb"),
  33012. name: "Back",
  33013. image: {
  33014. source: "./media/characters/theo-pangolin/back.svg",
  33015. extra: 1979 / 1979,
  33016. bottom: 40 / 2019
  33017. }
  33018. },
  33019. feral: {
  33020. height: math.unit(2, "feet"),
  33021. weight: math.unit(30, "lb"),
  33022. name: "Feral",
  33023. image: {
  33024. source: "./media/characters/theo-pangolin/feral.svg",
  33025. extra: 803 / 791,
  33026. bottom: 181 / 984
  33027. }
  33028. },
  33029. footFive: {
  33030. height: math.unit(1.43, "feet"),
  33031. name: "Foot (Five Toes)",
  33032. image: {
  33033. source: "./media/characters/theo-pangolin/foot-five.svg"
  33034. }
  33035. },
  33036. footFour: {
  33037. height: math.unit(1.43, "feet"),
  33038. name: "Foot (Four Toes)",
  33039. image: {
  33040. source: "./media/characters/theo-pangolin/foot-four.svg"
  33041. }
  33042. },
  33043. handFour: {
  33044. height: math.unit(0.81, "feet"),
  33045. name: "Hand (Four Fingers)",
  33046. image: {
  33047. source: "./media/characters/theo-pangolin/hand-four.svg"
  33048. }
  33049. },
  33050. handThree: {
  33051. height: math.unit(0.81, "feet"),
  33052. name: "Hand (Three Fingers)",
  33053. image: {
  33054. source: "./media/characters/theo-pangolin/hand-three.svg"
  33055. }
  33056. },
  33057. headFront: {
  33058. height: math.unit(1.37, "feet"),
  33059. name: "Head (Front)",
  33060. image: {
  33061. source: "./media/characters/theo-pangolin/head-front.svg"
  33062. }
  33063. },
  33064. headSide: {
  33065. height: math.unit(1.43, "feet"),
  33066. name: "Head (Side)",
  33067. image: {
  33068. source: "./media/characters/theo-pangolin/head-side.svg"
  33069. }
  33070. },
  33071. tongue: {
  33072. height: math.unit(2.29, "feet"),
  33073. name: "Tongue",
  33074. image: {
  33075. source: "./media/characters/theo-pangolin/tongue.svg"
  33076. }
  33077. },
  33078. },
  33079. [
  33080. {
  33081. name: "Normal",
  33082. height: math.unit(6, "feet")
  33083. },
  33084. {
  33085. name: "Macro",
  33086. height: math.unit(400, "feet"),
  33087. default: true
  33088. },
  33089. ]
  33090. ))
  33091. characterMakers.push(() => makeCharacter(
  33092. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  33093. {
  33094. front: {
  33095. height: math.unit(6, "inches"),
  33096. weight: math.unit(0.036, "kg"),
  33097. name: "Front",
  33098. image: {
  33099. source: "./media/characters/renée/front.svg",
  33100. extra: 900 / 886,
  33101. bottom: 8 / 908
  33102. }
  33103. },
  33104. },
  33105. [
  33106. {
  33107. name: "Nano",
  33108. height: math.unit(1, "nm")
  33109. },
  33110. {
  33111. name: "Micro",
  33112. height: math.unit(1, "mm")
  33113. },
  33114. {
  33115. name: "Normal",
  33116. height: math.unit(6, "inches")
  33117. },
  33118. {
  33119. name: "Macro",
  33120. height: math.unit(2000, "feet"),
  33121. default: true
  33122. },
  33123. {
  33124. name: "Megamacro",
  33125. height: math.unit(2, "km")
  33126. },
  33127. {
  33128. name: "Gigamacro",
  33129. height: math.unit(2000, "km")
  33130. },
  33131. {
  33132. name: "Teramacro",
  33133. height: math.unit(250000, "km")
  33134. },
  33135. ]
  33136. ))
  33137. characterMakers.push(() => makeCharacter(
  33138. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  33139. {
  33140. front: {
  33141. height: math.unit(4, "meters"),
  33142. weight: math.unit(150, "kg"),
  33143. name: "Front",
  33144. image: {
  33145. source: "./media/characters/caledvwlch/front.svg",
  33146. extra: 1757/1537,
  33147. bottom: 31/1788
  33148. }
  33149. },
  33150. side: {
  33151. height: math.unit(4, "meters"),
  33152. weight: math.unit(150, "kg"),
  33153. name: "Side",
  33154. image: {
  33155. source: "./media/characters/caledvwlch/side.svg",
  33156. extra: 1605 / 1536,
  33157. bottom: 31 / 1636
  33158. }
  33159. },
  33160. back: {
  33161. height: math.unit(4, "meters"),
  33162. weight: math.unit(150, "kg"),
  33163. name: "Back",
  33164. image: {
  33165. source: "./media/characters/caledvwlch/back.svg",
  33166. extra: 1635 / 1565,
  33167. bottom: 27 / 1662
  33168. }
  33169. },
  33170. },
  33171. [
  33172. {
  33173. name: "\"Incognito\"",
  33174. height: math.unit(4, "meters")
  33175. },
  33176. {
  33177. name: "Small rampage",
  33178. height: math.unit(600, "meters")
  33179. },
  33180. {
  33181. name: "Mega",
  33182. height: math.unit(30, "km")
  33183. },
  33184. {
  33185. name: "Home-size",
  33186. height: math.unit(50, "km"),
  33187. default: true
  33188. },
  33189. {
  33190. name: "Giga",
  33191. height: math.unit(300, "km")
  33192. },
  33193. {
  33194. name: "Lounging",
  33195. height: math.unit(11000, "km")
  33196. },
  33197. {
  33198. name: "Planet snacking",
  33199. height: math.unit(2000000, "km")
  33200. },
  33201. ]
  33202. ))
  33203. characterMakers.push(() => makeCharacter(
  33204. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  33205. {
  33206. front: {
  33207. height: math.unit(6, "feet"),
  33208. weight: math.unit(215, "lb"),
  33209. name: "Front",
  33210. image: {
  33211. source: "./media/characters/sapphire-svell/front.svg",
  33212. extra: 495 / 455,
  33213. bottom: 20 / 515
  33214. }
  33215. },
  33216. back: {
  33217. height: math.unit(6, "feet"),
  33218. weight: math.unit(216, "lb"),
  33219. name: "Back",
  33220. image: {
  33221. source: "./media/characters/sapphire-svell/back.svg",
  33222. extra: 497 / 477,
  33223. bottom: 7 / 504
  33224. }
  33225. },
  33226. maw: {
  33227. height: math.unit(1.57, "feet"),
  33228. name: "Maw",
  33229. image: {
  33230. source: "./media/characters/sapphire-svell/maw.svg"
  33231. }
  33232. },
  33233. foot: {
  33234. height: math.unit(1.07, "feet"),
  33235. name: "Foot",
  33236. image: {
  33237. source: "./media/characters/sapphire-svell/foot.svg"
  33238. }
  33239. },
  33240. toering: {
  33241. height: math.unit(1.7, "inch"),
  33242. name: "Toering",
  33243. image: {
  33244. source: "./media/characters/sapphire-svell/toering.svg"
  33245. }
  33246. },
  33247. },
  33248. [
  33249. {
  33250. name: "Normal",
  33251. height: math.unit(300, "feet"),
  33252. default: true
  33253. },
  33254. {
  33255. name: "Augmented",
  33256. height: math.unit(1250, "feet")
  33257. },
  33258. {
  33259. name: "Unleashed",
  33260. height: math.unit(3000, "feet")
  33261. },
  33262. ]
  33263. ))
  33264. characterMakers.push(() => makeCharacter(
  33265. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  33266. {
  33267. side: {
  33268. height: math.unit(2 + 3 / 12, "feet"),
  33269. weight: math.unit(110, "lb"),
  33270. name: "Side",
  33271. image: {
  33272. source: "./media/characters/glitch-flux/side.svg",
  33273. extra: 997 / 805,
  33274. bottom: 20 / 1017
  33275. }
  33276. },
  33277. },
  33278. [
  33279. {
  33280. name: "Normal",
  33281. height: math.unit(2 + 3 / 12, "feet"),
  33282. default: true
  33283. },
  33284. ]
  33285. ))
  33286. characterMakers.push(() => makeCharacter(
  33287. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  33288. {
  33289. front: {
  33290. height: math.unit(4, "meters"),
  33291. name: "Front",
  33292. image: {
  33293. source: "./media/characters/mid/front.svg",
  33294. extra: 507 / 476,
  33295. bottom: 17 / 524
  33296. }
  33297. },
  33298. back: {
  33299. height: math.unit(4, "meters"),
  33300. name: "Back",
  33301. image: {
  33302. source: "./media/characters/mid/back.svg",
  33303. extra: 519 / 487,
  33304. bottom: 7 / 526
  33305. }
  33306. },
  33307. stuck: {
  33308. height: math.unit(2.2, "meters"),
  33309. name: "Stuck",
  33310. image: {
  33311. source: "./media/characters/mid/stuck.svg",
  33312. extra: 1951 / 1869,
  33313. bottom: 88 / 2039
  33314. }
  33315. }
  33316. },
  33317. [
  33318. {
  33319. name: "Normal",
  33320. height: math.unit(4, "meters"),
  33321. default: true
  33322. },
  33323. {
  33324. name: "Big",
  33325. height: math.unit(10, "meters")
  33326. },
  33327. {
  33328. name: "Macro",
  33329. height: math.unit(800, "meters")
  33330. },
  33331. {
  33332. name: "Megamacro",
  33333. height: math.unit(100, "km")
  33334. },
  33335. {
  33336. name: "Overgrown",
  33337. height: math.unit(1, "parsec")
  33338. },
  33339. ]
  33340. ))
  33341. characterMakers.push(() => makeCharacter(
  33342. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  33343. {
  33344. front: {
  33345. height: math.unit(2.5, "meters"),
  33346. weight: math.unit(225, "kg"),
  33347. name: "Front",
  33348. image: {
  33349. source: "./media/characters/iris/front.svg",
  33350. extra: 3348 / 3251,
  33351. bottom: 205 / 3553
  33352. }
  33353. },
  33354. maw: {
  33355. height: math.unit(0.56, "meter"),
  33356. name: "Maw",
  33357. image: {
  33358. source: "./media/characters/iris/maw.svg"
  33359. }
  33360. },
  33361. },
  33362. [
  33363. {
  33364. name: "Mewter cat",
  33365. height: math.unit(1.2, "meters")
  33366. },
  33367. {
  33368. name: "Normal",
  33369. height: math.unit(2.5, "meters"),
  33370. default: true
  33371. },
  33372. {
  33373. name: "Minimacro",
  33374. height: math.unit(18, "feet")
  33375. },
  33376. {
  33377. name: "Macro",
  33378. height: math.unit(140, "feet")
  33379. },
  33380. {
  33381. name: "Macro+",
  33382. height: math.unit(180, "meters")
  33383. },
  33384. {
  33385. name: "Megamacro",
  33386. height: math.unit(2746, "meters")
  33387. },
  33388. ]
  33389. ))
  33390. characterMakers.push(() => makeCharacter(
  33391. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  33392. {
  33393. front: {
  33394. height: math.unit(6, "feet"),
  33395. weight: math.unit(135, "lb"),
  33396. name: "Front",
  33397. image: {
  33398. source: "./media/characters/axel/front.svg",
  33399. extra: 908 / 908,
  33400. bottom: 58 / 966
  33401. }
  33402. },
  33403. side: {
  33404. height: math.unit(6, "feet"),
  33405. weight: math.unit(135, "lb"),
  33406. name: "Side",
  33407. image: {
  33408. source: "./media/characters/axel/side.svg",
  33409. extra: 958 / 958,
  33410. bottom: 11 / 969
  33411. }
  33412. },
  33413. back: {
  33414. height: math.unit(6, "feet"),
  33415. weight: math.unit(135, "lb"),
  33416. name: "Back",
  33417. image: {
  33418. source: "./media/characters/axel/back.svg",
  33419. extra: 887 / 887,
  33420. bottom: 34 / 921
  33421. }
  33422. },
  33423. head: {
  33424. height: math.unit(1.07, "feet"),
  33425. name: "Head",
  33426. image: {
  33427. source: "./media/characters/axel/head.svg"
  33428. }
  33429. },
  33430. beak: {
  33431. height: math.unit(1.4, "feet"),
  33432. name: "Beak",
  33433. image: {
  33434. source: "./media/characters/axel/beak.svg"
  33435. }
  33436. },
  33437. beakSide: {
  33438. height: math.unit(1.4, "feet"),
  33439. name: "Beak Side",
  33440. image: {
  33441. source: "./media/characters/axel/beak-side.svg"
  33442. }
  33443. },
  33444. sheath: {
  33445. height: math.unit(0.5, "feet"),
  33446. name: "Sheath",
  33447. image: {
  33448. source: "./media/characters/axel/sheath.svg"
  33449. }
  33450. },
  33451. dick: {
  33452. height: math.unit(0.98, "feet"),
  33453. name: "Dick",
  33454. image: {
  33455. source: "./media/characters/axel/dick.svg"
  33456. }
  33457. },
  33458. },
  33459. [
  33460. {
  33461. name: "Macro",
  33462. height: math.unit(68, "meters"),
  33463. default: true
  33464. },
  33465. ]
  33466. ))
  33467. characterMakers.push(() => makeCharacter(
  33468. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  33469. {
  33470. front: {
  33471. height: math.unit(3.5, "meters"),
  33472. weight: math.unit(1200, "kg"),
  33473. name: "Front",
  33474. image: {
  33475. source: "./media/characters/joanna/front.svg",
  33476. extra: 1596 / 1488,
  33477. bottom: 29 / 1625
  33478. }
  33479. },
  33480. back: {
  33481. height: math.unit(3.5, "meters"),
  33482. weight: math.unit(1200, "kg"),
  33483. name: "Back",
  33484. image: {
  33485. source: "./media/characters/joanna/back.svg",
  33486. extra: 1594 / 1495,
  33487. bottom: 26 / 1620
  33488. }
  33489. },
  33490. frontShorts: {
  33491. height: math.unit(3.5, "meters"),
  33492. weight: math.unit(1200, "kg"),
  33493. name: "Front (Shorts)",
  33494. image: {
  33495. source: "./media/characters/joanna/front-shorts.svg",
  33496. extra: 1596 / 1488,
  33497. bottom: 29 / 1625
  33498. }
  33499. },
  33500. frontBiker: {
  33501. height: math.unit(3.5, "meters"),
  33502. weight: math.unit(1200, "kg"),
  33503. name: "Front (Biker)",
  33504. image: {
  33505. source: "./media/characters/joanna/front-biker.svg",
  33506. extra: 1596 / 1488,
  33507. bottom: 29 / 1625
  33508. }
  33509. },
  33510. backBiker: {
  33511. height: math.unit(3.5, "meters"),
  33512. weight: math.unit(1200, "kg"),
  33513. name: "Back (Biker)",
  33514. image: {
  33515. source: "./media/characters/joanna/back-biker.svg",
  33516. extra: 1594 / 1495,
  33517. bottom: 88 / 1682
  33518. }
  33519. },
  33520. bikeLeft: {
  33521. height: math.unit(2.4, "meters"),
  33522. weight: math.unit(1600, "kg"),
  33523. name: "Bike (Left)",
  33524. image: {
  33525. source: "./media/characters/joanna/bike-left.svg",
  33526. extra: 720 / 720,
  33527. bottom: 8 / 728
  33528. }
  33529. },
  33530. bikeRight: {
  33531. height: math.unit(2.4, "meters"),
  33532. weight: math.unit(1600, "kg"),
  33533. name: "Bike (Right)",
  33534. image: {
  33535. source: "./media/characters/joanna/bike-right.svg",
  33536. extra: 720 / 720,
  33537. bottom: 8 / 728
  33538. }
  33539. },
  33540. },
  33541. [
  33542. {
  33543. name: "Incognito",
  33544. height: math.unit(3.5, "meters")
  33545. },
  33546. {
  33547. name: "Casual Big",
  33548. height: math.unit(200, "meters")
  33549. },
  33550. {
  33551. name: "Macro",
  33552. height: math.unit(600, "meters")
  33553. },
  33554. {
  33555. name: "Original",
  33556. height: math.unit(20, "km"),
  33557. default: true
  33558. },
  33559. {
  33560. name: "Giga",
  33561. height: math.unit(400, "km")
  33562. },
  33563. {
  33564. name: "Lounging",
  33565. height: math.unit(1500, "km")
  33566. },
  33567. {
  33568. name: "Planetary",
  33569. height: math.unit(200000, "km")
  33570. },
  33571. ]
  33572. ))
  33573. characterMakers.push(() => makeCharacter(
  33574. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  33575. {
  33576. front: {
  33577. height: math.unit(6, "feet"),
  33578. weight: math.unit(150, "lb"),
  33579. name: "Front",
  33580. image: {
  33581. source: "./media/characters/hugo-sigil/front.svg",
  33582. extra: 522 / 500,
  33583. bottom: 2 / 524
  33584. }
  33585. },
  33586. back: {
  33587. height: math.unit(6, "feet"),
  33588. weight: math.unit(150, "lb"),
  33589. name: "Back",
  33590. image: {
  33591. source: "./media/characters/hugo-sigil/back.svg",
  33592. extra: 519 / 495,
  33593. bottom: 5 / 524
  33594. }
  33595. },
  33596. maw: {
  33597. height: math.unit(1.4, "feet"),
  33598. weight: math.unit(150, "lb"),
  33599. name: "Maw",
  33600. image: {
  33601. source: "./media/characters/hugo-sigil/maw.svg"
  33602. }
  33603. },
  33604. feet: {
  33605. height: math.unit(1.56, "feet"),
  33606. weight: math.unit(150, "lb"),
  33607. name: "Feet",
  33608. image: {
  33609. source: "./media/characters/hugo-sigil/feet.svg",
  33610. extra: 177 / 177,
  33611. bottom: 12 / 189
  33612. }
  33613. },
  33614. },
  33615. [
  33616. {
  33617. name: "Normal",
  33618. height: math.unit(6, "feet")
  33619. },
  33620. {
  33621. name: "Macro",
  33622. height: math.unit(200, "feet"),
  33623. default: true
  33624. },
  33625. ]
  33626. ))
  33627. characterMakers.push(() => makeCharacter(
  33628. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  33629. {
  33630. front: {
  33631. height: math.unit(6, "feet"),
  33632. weight: math.unit(150, "lb"),
  33633. name: "Front",
  33634. image: {
  33635. source: "./media/characters/peri/front.svg",
  33636. extra: 2354 / 2233,
  33637. bottom: 49 / 2403
  33638. }
  33639. },
  33640. },
  33641. [
  33642. {
  33643. name: "Really Small",
  33644. height: math.unit(1, "nm")
  33645. },
  33646. {
  33647. name: "Micro",
  33648. height: math.unit(4, "inches")
  33649. },
  33650. {
  33651. name: "Normal",
  33652. height: math.unit(7, "inches"),
  33653. default: true
  33654. },
  33655. {
  33656. name: "Macro",
  33657. height: math.unit(400, "feet")
  33658. },
  33659. {
  33660. name: "Megamacro",
  33661. height: math.unit(100, "miles")
  33662. },
  33663. ]
  33664. ))
  33665. characterMakers.push(() => makeCharacter(
  33666. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  33667. {
  33668. frontSlim: {
  33669. height: math.unit(7, "feet"),
  33670. name: "Front (Slim)",
  33671. image: {
  33672. source: "./media/characters/issilora/front-slim.svg",
  33673. extra: 529 / 449,
  33674. bottom: 53 / 582
  33675. }
  33676. },
  33677. sideSlim: {
  33678. height: math.unit(7, "feet"),
  33679. name: "Side (Slim)",
  33680. image: {
  33681. source: "./media/characters/issilora/side-slim.svg",
  33682. extra: 570 / 480,
  33683. bottom: 30 / 600
  33684. }
  33685. },
  33686. backSlim: {
  33687. height: math.unit(7, "feet"),
  33688. name: "Back (Slim)",
  33689. image: {
  33690. source: "./media/characters/issilora/back-slim.svg",
  33691. extra: 537 / 455,
  33692. bottom: 46 / 583
  33693. }
  33694. },
  33695. frontBuff: {
  33696. height: math.unit(7, "feet"),
  33697. name: "Front (Buff)",
  33698. image: {
  33699. source: "./media/characters/issilora/front-buff.svg",
  33700. extra: 2310 / 2035,
  33701. bottom: 335 / 2645
  33702. }
  33703. },
  33704. head: {
  33705. height: math.unit(1.94, "feet"),
  33706. name: "Head",
  33707. image: {
  33708. source: "./media/characters/issilora/head.svg"
  33709. }
  33710. },
  33711. },
  33712. [
  33713. {
  33714. name: "Minimum",
  33715. height: math.unit(7, "feet")
  33716. },
  33717. {
  33718. name: "Comfortable",
  33719. height: math.unit(17, "feet")
  33720. },
  33721. {
  33722. name: "Fun Size",
  33723. height: math.unit(47, "feet")
  33724. },
  33725. {
  33726. name: "Natural Macro",
  33727. height: math.unit(137, "feet"),
  33728. default: true
  33729. },
  33730. {
  33731. name: "Maximum Kaiju",
  33732. height: math.unit(397, "feet")
  33733. },
  33734. ]
  33735. ))
  33736. characterMakers.push(() => makeCharacter(
  33737. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33738. {
  33739. front: {
  33740. height: math.unit(50 + 9/12, "feet"),
  33741. weight: math.unit(32.8, "tons"),
  33742. name: "Front",
  33743. image: {
  33744. source: "./media/characters/irb'iiritaahn/front.svg",
  33745. extra: 1878/1826,
  33746. bottom: 326/2204
  33747. }
  33748. },
  33749. back: {
  33750. height: math.unit(50 + 9/12, "feet"),
  33751. weight: math.unit(32.8, "tons"),
  33752. name: "Back",
  33753. image: {
  33754. source: "./media/characters/irb'iiritaahn/back.svg",
  33755. extra: 2052/2018,
  33756. bottom: 152/2204
  33757. }
  33758. },
  33759. head: {
  33760. height: math.unit(12.86, "feet"),
  33761. name: "Head",
  33762. image: {
  33763. source: "./media/characters/irb'iiritaahn/head.svg"
  33764. }
  33765. },
  33766. maw: {
  33767. height: math.unit(9.66, "feet"),
  33768. name: "Maw",
  33769. image: {
  33770. source: "./media/characters/irb'iiritaahn/maw.svg"
  33771. }
  33772. },
  33773. frontDick: {
  33774. height: math.unit(8.78461, "feet"),
  33775. name: "Front Dick",
  33776. image: {
  33777. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33778. }
  33779. },
  33780. rearDick: {
  33781. height: math.unit(8.78461, "feet"),
  33782. name: "Rear Dick",
  33783. image: {
  33784. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33785. }
  33786. },
  33787. rearDickUnfolded: {
  33788. height: math.unit(8.78, "feet"),
  33789. name: "Rear Dick (Unfolded)",
  33790. image: {
  33791. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33792. }
  33793. },
  33794. wings: {
  33795. height: math.unit(43, "feet"),
  33796. name: "Wings",
  33797. image: {
  33798. source: "./media/characters/irb'iiritaahn/wings.svg"
  33799. }
  33800. },
  33801. },
  33802. [
  33803. {
  33804. name: "Macro",
  33805. height: math.unit(50 + 9/12, "feet"),
  33806. default: true
  33807. },
  33808. ]
  33809. ))
  33810. characterMakers.push(() => makeCharacter(
  33811. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33812. {
  33813. front: {
  33814. height: math.unit(205, "cm"),
  33815. weight: math.unit(102, "kg"),
  33816. name: "Front",
  33817. image: {
  33818. source: "./media/characters/irbisgreif/front.svg",
  33819. extra: 785/706,
  33820. bottom: 13/798
  33821. }
  33822. },
  33823. back: {
  33824. height: math.unit(205, "cm"),
  33825. weight: math.unit(102, "kg"),
  33826. name: "Back",
  33827. image: {
  33828. source: "./media/characters/irbisgreif/back.svg",
  33829. extra: 713/701,
  33830. bottom: 26/739
  33831. }
  33832. },
  33833. frontDressed: {
  33834. height: math.unit(216, "cm"),
  33835. weight: math.unit(102, "kg"),
  33836. name: "Front-dressed",
  33837. image: {
  33838. source: "./media/characters/irbisgreif/front-dressed.svg",
  33839. extra: 902/776,
  33840. bottom: 14/916
  33841. }
  33842. },
  33843. sideDressed: {
  33844. height: math.unit(195, "cm"),
  33845. weight: math.unit(102, "kg"),
  33846. name: "Side-dressed",
  33847. image: {
  33848. source: "./media/characters/irbisgreif/side-dressed.svg",
  33849. extra: 788/688,
  33850. bottom: 21/809
  33851. }
  33852. },
  33853. backDressed: {
  33854. height: math.unit(216, "cm"),
  33855. weight: math.unit(102, "kg"),
  33856. name: "Back-dressed",
  33857. image: {
  33858. source: "./media/characters/irbisgreif/back-dressed.svg",
  33859. extra: 901/783,
  33860. bottom: 10/911
  33861. }
  33862. },
  33863. dick: {
  33864. height: math.unit(0.49, "feet"),
  33865. name: "Dick",
  33866. image: {
  33867. source: "./media/characters/irbisgreif/dick.svg"
  33868. }
  33869. },
  33870. wingTop: {
  33871. height: math.unit(1.93 , "feet"),
  33872. name: "Wing-top",
  33873. image: {
  33874. source: "./media/characters/irbisgreif/wing-top.svg"
  33875. }
  33876. },
  33877. wingBottom: {
  33878. height: math.unit(1.93 , "feet"),
  33879. name: "Wing-bottom",
  33880. image: {
  33881. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33882. }
  33883. },
  33884. },
  33885. [
  33886. {
  33887. name: "Normal",
  33888. height: math.unit(216, "cm"),
  33889. default: true
  33890. },
  33891. ]
  33892. ))
  33893. characterMakers.push(() => makeCharacter(
  33894. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33895. {
  33896. front: {
  33897. height: math.unit(6, "feet"),
  33898. weight: math.unit(150, "lb"),
  33899. name: "Front",
  33900. image: {
  33901. source: "./media/characters/pride/front.svg",
  33902. extra: 1299/1230,
  33903. bottom: 18/1317
  33904. }
  33905. },
  33906. },
  33907. [
  33908. {
  33909. name: "Normal",
  33910. height: math.unit(7, "feet")
  33911. },
  33912. {
  33913. name: "Mini-macro",
  33914. height: math.unit(11, "feet")
  33915. },
  33916. {
  33917. name: "Macro",
  33918. height: math.unit(15, "meters"),
  33919. default: true
  33920. },
  33921. {
  33922. name: "Macro+",
  33923. height: math.unit(40, "meters")
  33924. },
  33925. ]
  33926. ))
  33927. characterMakers.push(() => makeCharacter(
  33928. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33929. {
  33930. front: {
  33931. height: math.unit(4 + 2 / 12, "feet"),
  33932. weight: math.unit(95, "lb"),
  33933. name: "Front",
  33934. image: {
  33935. source: "./media/characters/vaelophis-nyx/front.svg",
  33936. extra: 2532/2330,
  33937. bottom: 0/2532
  33938. }
  33939. },
  33940. back: {
  33941. height: math.unit(4 + 2 / 12, "feet"),
  33942. weight: math.unit(95, "lb"),
  33943. name: "Back",
  33944. image: {
  33945. source: "./media/characters/vaelophis-nyx/back.svg",
  33946. extra: 2484/2361,
  33947. bottom: 0/2484
  33948. }
  33949. },
  33950. feralSide: {
  33951. height: math.unit(2 + 1/12, "feet"),
  33952. weight: math.unit(20, "lb"),
  33953. name: "Feral (Side)",
  33954. image: {
  33955. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33956. extra: 1721/1581,
  33957. bottom: 70/1791
  33958. }
  33959. },
  33960. feralLazing: {
  33961. height: math.unit(1.08, "feet"),
  33962. weight: math.unit(20, "lb"),
  33963. name: "Feral (Lazing)",
  33964. image: {
  33965. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33966. extra: 822/822,
  33967. bottom: 248/1070
  33968. }
  33969. },
  33970. ear: {
  33971. height: math.unit(0.416, "feet"),
  33972. name: "Ear",
  33973. image: {
  33974. source: "./media/characters/vaelophis-nyx/ear.svg"
  33975. }
  33976. },
  33977. eye: {
  33978. height: math.unit(0.0748, "feet"),
  33979. name: "Eye",
  33980. image: {
  33981. source: "./media/characters/vaelophis-nyx/eye.svg"
  33982. }
  33983. },
  33984. mouth: {
  33985. height: math.unit(0.378, "feet"),
  33986. name: "Mouth",
  33987. image: {
  33988. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33989. }
  33990. },
  33991. spade: {
  33992. height: math.unit(0.55, "feet"),
  33993. name: "Spade",
  33994. image: {
  33995. source: "./media/characters/vaelophis-nyx/spade.svg"
  33996. }
  33997. },
  33998. },
  33999. [
  34000. {
  34001. name: "Normal",
  34002. height: math.unit(4 + 2/12, "feet"),
  34003. default: true
  34004. },
  34005. ]
  34006. ))
  34007. characterMakers.push(() => makeCharacter(
  34008. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  34009. {
  34010. front: {
  34011. height: math.unit(7, "feet"),
  34012. weight: math.unit(231, "lb"),
  34013. name: "Front",
  34014. image: {
  34015. source: "./media/characters/flux/front.svg",
  34016. extra: 919/871,
  34017. bottom: 0/919
  34018. }
  34019. },
  34020. back: {
  34021. height: math.unit(7, "feet"),
  34022. weight: math.unit(231, "lb"),
  34023. name: "Back",
  34024. image: {
  34025. source: "./media/characters/flux/back.svg",
  34026. extra: 1040/992,
  34027. bottom: 0/1040
  34028. }
  34029. },
  34030. frontDressed: {
  34031. height: math.unit(7, "feet"),
  34032. weight: math.unit(231, "lb"),
  34033. name: "Front (Dressed)",
  34034. image: {
  34035. source: "./media/characters/flux/front-dressed.svg",
  34036. extra: 919/871,
  34037. bottom: 0/919
  34038. }
  34039. },
  34040. feralSide: {
  34041. height: math.unit(5, "feet"),
  34042. weight: math.unit(150, "lb"),
  34043. name: "Feral (Side)",
  34044. image: {
  34045. source: "./media/characters/flux/feral-side.svg",
  34046. extra: 598/528,
  34047. bottom: 28/626
  34048. }
  34049. },
  34050. head: {
  34051. height: math.unit(1.585, "feet"),
  34052. name: "Head",
  34053. image: {
  34054. source: "./media/characters/flux/head.svg"
  34055. }
  34056. },
  34057. headSide: {
  34058. height: math.unit(1.74, "feet"),
  34059. name: "Head (Side)",
  34060. image: {
  34061. source: "./media/characters/flux/head-side.svg"
  34062. }
  34063. },
  34064. headSideFire: {
  34065. height: math.unit(1.76, "feet"),
  34066. name: "Head (Side, Fire)",
  34067. image: {
  34068. source: "./media/characters/flux/head-side-fire.svg"
  34069. }
  34070. },
  34071. },
  34072. [
  34073. {
  34074. name: "Normal",
  34075. height: math.unit(7, "feet"),
  34076. default: true
  34077. },
  34078. ]
  34079. ))
  34080. characterMakers.push(() => makeCharacter(
  34081. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  34082. {
  34083. front: {
  34084. height: math.unit(9, "feet"),
  34085. weight: math.unit(1012, "lb"),
  34086. name: "Front",
  34087. image: {
  34088. source: "./media/characters/ulfra-lupae/front.svg",
  34089. extra: 1083/1011,
  34090. bottom: 67/1150
  34091. }
  34092. },
  34093. },
  34094. [
  34095. {
  34096. name: "Micro",
  34097. height: math.unit(6, "inches")
  34098. },
  34099. {
  34100. name: "Socializing",
  34101. height: math.unit(6 + 5/12, "feet")
  34102. },
  34103. {
  34104. name: "Normal",
  34105. height: math.unit(9, "feet"),
  34106. default: true
  34107. },
  34108. {
  34109. name: "Macro",
  34110. height: math.unit(150, "feet")
  34111. },
  34112. ]
  34113. ))
  34114. characterMakers.push(() => makeCharacter(
  34115. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  34116. {
  34117. front: {
  34118. height: math.unit(5 + 2/12, "feet"),
  34119. weight: math.unit(120, "lb"),
  34120. name: "Front",
  34121. image: {
  34122. source: "./media/characters/timber/front.svg",
  34123. extra: 2814/2705,
  34124. bottom: 181/2995
  34125. }
  34126. },
  34127. },
  34128. [
  34129. {
  34130. name: "Normal",
  34131. height: math.unit(5 + 2/12, "feet"),
  34132. default: true
  34133. },
  34134. ]
  34135. ))
  34136. characterMakers.push(() => makeCharacter(
  34137. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  34138. {
  34139. front: {
  34140. height: math.unit(9, "feet"),
  34141. name: "Front",
  34142. image: {
  34143. source: "./media/characters/nicki/front.svg",
  34144. extra: 1240/990,
  34145. bottom: 45/1285
  34146. },
  34147. form: "anthro",
  34148. default: true
  34149. },
  34150. side: {
  34151. height: math.unit(9, "feet"),
  34152. name: "Side",
  34153. image: {
  34154. source: "./media/characters/nicki/side.svg",
  34155. extra: 1047/973,
  34156. bottom: 61/1108
  34157. },
  34158. form: "anthro"
  34159. },
  34160. back: {
  34161. height: math.unit(9, "feet"),
  34162. name: "Back",
  34163. image: {
  34164. source: "./media/characters/nicki/back.svg",
  34165. extra: 1006/965,
  34166. bottom: 39/1045
  34167. },
  34168. form: "anthro"
  34169. },
  34170. taur: {
  34171. height: math.unit(15, "feet"),
  34172. name: "Taur",
  34173. image: {
  34174. source: "./media/characters/nicki/taur.svg",
  34175. extra: 1592/1347,
  34176. bottom: 0/1592
  34177. },
  34178. form: "taur",
  34179. default: true
  34180. },
  34181. },
  34182. [
  34183. {
  34184. name: "Normal",
  34185. height: math.unit(9, "feet"),
  34186. form: "anthro",
  34187. default: true
  34188. },
  34189. {
  34190. name: "Normal",
  34191. height: math.unit(15, "feet"),
  34192. form: "taur",
  34193. default: true
  34194. }
  34195. ],
  34196. {
  34197. "anthro": {
  34198. name: "Anthro",
  34199. default: true
  34200. },
  34201. "taur": {
  34202. name: "Taur"
  34203. }
  34204. }
  34205. ))
  34206. characterMakers.push(() => makeCharacter(
  34207. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  34208. {
  34209. front: {
  34210. height: math.unit(7 + 10/12, "feet"),
  34211. weight: math.unit(3.5, "tons"),
  34212. name: "Front",
  34213. image: {
  34214. source: "./media/characters/lee/front.svg",
  34215. extra: 1773/1615,
  34216. bottom: 86/1859
  34217. }
  34218. },
  34219. hand: {
  34220. height: math.unit(1.78, "feet"),
  34221. name: "Hand",
  34222. image: {
  34223. source: "./media/characters/lee/hand.svg"
  34224. }
  34225. },
  34226. maw: {
  34227. height: math.unit(1.18, "feet"),
  34228. name: "Maw",
  34229. image: {
  34230. source: "./media/characters/lee/maw.svg"
  34231. }
  34232. },
  34233. },
  34234. [
  34235. {
  34236. name: "Normal",
  34237. height: math.unit(7 + 10/12, "feet"),
  34238. default: true
  34239. },
  34240. ]
  34241. ))
  34242. characterMakers.push(() => makeCharacter(
  34243. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  34244. {
  34245. front: {
  34246. height: math.unit(9, "feet"),
  34247. name: "Front",
  34248. image: {
  34249. source: "./media/characters/guti/front.svg",
  34250. extra: 4551/4355,
  34251. bottom: 123/4674
  34252. }
  34253. },
  34254. tongue: {
  34255. height: math.unit(1, "feet"),
  34256. name: "Tongue",
  34257. image: {
  34258. source: "./media/characters/guti/tongue.svg"
  34259. }
  34260. },
  34261. paw: {
  34262. height: math.unit(1.18, "feet"),
  34263. name: "Paw",
  34264. image: {
  34265. source: "./media/characters/guti/paw.svg"
  34266. }
  34267. },
  34268. },
  34269. [
  34270. {
  34271. name: "Normal",
  34272. height: math.unit(9, "feet"),
  34273. default: true
  34274. },
  34275. ]
  34276. ))
  34277. characterMakers.push(() => makeCharacter(
  34278. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  34279. {
  34280. side: {
  34281. height: math.unit(5, "meters"),
  34282. name: "Side",
  34283. image: {
  34284. source: "./media/characters/vesper/side.svg",
  34285. extra: 1605/1518,
  34286. bottom: 0/1605
  34287. }
  34288. },
  34289. },
  34290. [
  34291. {
  34292. name: "Small",
  34293. height: math.unit(5, "meters")
  34294. },
  34295. {
  34296. name: "Sage",
  34297. height: math.unit(100, "meters"),
  34298. default: true
  34299. },
  34300. {
  34301. name: "Fun Size",
  34302. height: math.unit(600, "meters")
  34303. },
  34304. {
  34305. name: "Goddess",
  34306. height: math.unit(20000, "km")
  34307. },
  34308. {
  34309. name: "Maximum",
  34310. height: math.unit(5, "galaxies")
  34311. },
  34312. ]
  34313. ))
  34314. characterMakers.push(() => makeCharacter(
  34315. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  34316. {
  34317. front: {
  34318. height: math.unit(6 + 3/12, "feet"),
  34319. weight: math.unit(190, "lb"),
  34320. name: "Front",
  34321. image: {
  34322. source: "./media/characters/gawain/front.svg",
  34323. extra: 2222/2139,
  34324. bottom: 90/2312
  34325. }
  34326. },
  34327. back: {
  34328. height: math.unit(6 + 3/12, "feet"),
  34329. weight: math.unit(190, "lb"),
  34330. name: "Back",
  34331. image: {
  34332. source: "./media/characters/gawain/back.svg",
  34333. extra: 2199/2111,
  34334. bottom: 73/2272
  34335. }
  34336. },
  34337. },
  34338. [
  34339. {
  34340. name: "Normal",
  34341. height: math.unit(6 + 3/12, "feet"),
  34342. default: true
  34343. },
  34344. ]
  34345. ))
  34346. characterMakers.push(() => makeCharacter(
  34347. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  34348. {
  34349. side: {
  34350. height: math.unit(3.5, "meters"),
  34351. weight: math.unit(16000, "lb"),
  34352. name: "Side",
  34353. image: {
  34354. source: "./media/characters/dascalti/side.svg",
  34355. extra: 392/273,
  34356. bottom: 47/439
  34357. }
  34358. },
  34359. breath: {
  34360. height: math.unit(7.4, "feet"),
  34361. name: "Breath",
  34362. image: {
  34363. source: "./media/characters/dascalti/breath.svg"
  34364. }
  34365. },
  34366. fed: {
  34367. height: math.unit(3.6, "meters"),
  34368. weight: math.unit(16000, "lb"),
  34369. name: "Fed",
  34370. image: {
  34371. source: "./media/characters/dascalti/fed.svg",
  34372. extra: 1419/820,
  34373. bottom: 95/1514
  34374. }
  34375. },
  34376. },
  34377. [
  34378. {
  34379. name: "Normal",
  34380. height: math.unit(3.5, "meters"),
  34381. default: true
  34382. },
  34383. ]
  34384. ))
  34385. characterMakers.push(() => makeCharacter(
  34386. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  34387. {
  34388. front: {
  34389. height: math.unit(3 + 5/12, "feet"),
  34390. name: "Front",
  34391. image: {
  34392. source: "./media/characters/mauve/front.svg",
  34393. extra: 1126/1033,
  34394. bottom: 65/1191
  34395. }
  34396. },
  34397. side: {
  34398. height: math.unit(3 + 5/12, "feet"),
  34399. name: "Side",
  34400. image: {
  34401. source: "./media/characters/mauve/side.svg",
  34402. extra: 1089/1001,
  34403. bottom: 29/1118
  34404. }
  34405. },
  34406. back: {
  34407. height: math.unit(3 + 5/12, "feet"),
  34408. name: "Back",
  34409. image: {
  34410. source: "./media/characters/mauve/back.svg",
  34411. extra: 1173/1053,
  34412. bottom: 109/1282
  34413. }
  34414. },
  34415. },
  34416. [
  34417. {
  34418. name: "Normal",
  34419. height: math.unit(3 + 5/12, "feet"),
  34420. default: true
  34421. },
  34422. ]
  34423. ))
  34424. characterMakers.push(() => makeCharacter(
  34425. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  34426. {
  34427. front: {
  34428. height: math.unit(6 + 3/12, "feet"),
  34429. weight: math.unit(430, "lb"),
  34430. name: "Front",
  34431. image: {
  34432. source: "./media/characters/carlos/front.svg",
  34433. extra: 1964/1913,
  34434. bottom: 70/2034
  34435. }
  34436. },
  34437. },
  34438. [
  34439. {
  34440. name: "Normal",
  34441. height: math.unit(6 + 3/12, "feet"),
  34442. default: true
  34443. },
  34444. ]
  34445. ))
  34446. characterMakers.push(() => makeCharacter(
  34447. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  34448. {
  34449. back: {
  34450. height: math.unit(5 + 10/12, "feet"),
  34451. weight: math.unit(200, "lb"),
  34452. name: "Back",
  34453. image: {
  34454. source: "./media/characters/jax/back.svg",
  34455. extra: 764/739,
  34456. bottom: 25/789
  34457. }
  34458. },
  34459. },
  34460. [
  34461. {
  34462. name: "Normal",
  34463. height: math.unit(5 + 10/12, "feet"),
  34464. default: true
  34465. },
  34466. ]
  34467. ))
  34468. characterMakers.push(() => makeCharacter(
  34469. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  34470. {
  34471. front: {
  34472. height: math.unit(8, "feet"),
  34473. weight: math.unit(250, "lb"),
  34474. name: "Front",
  34475. image: {
  34476. source: "./media/characters/eikthynir/front.svg",
  34477. extra: 1332/1166,
  34478. bottom: 82/1414
  34479. }
  34480. },
  34481. back: {
  34482. height: math.unit(8, "feet"),
  34483. weight: math.unit(250, "lb"),
  34484. name: "Back",
  34485. image: {
  34486. source: "./media/characters/eikthynir/back.svg",
  34487. extra: 1342/1190,
  34488. bottom: 19/1361
  34489. }
  34490. },
  34491. dick: {
  34492. height: math.unit(2.35, "feet"),
  34493. name: "Dick",
  34494. image: {
  34495. source: "./media/characters/eikthynir/dick.svg"
  34496. }
  34497. },
  34498. },
  34499. [
  34500. {
  34501. name: "Normal",
  34502. height: math.unit(8, "feet"),
  34503. default: true
  34504. },
  34505. ]
  34506. ))
  34507. characterMakers.push(() => makeCharacter(
  34508. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  34509. {
  34510. front: {
  34511. height: math.unit(99, "meters"),
  34512. weight: math.unit(13000, "tons"),
  34513. name: "Front",
  34514. image: {
  34515. source: "./media/characters/zlmos/front.svg",
  34516. extra: 2202/1992,
  34517. bottom: 315/2517
  34518. }
  34519. },
  34520. },
  34521. [
  34522. {
  34523. name: "Macro",
  34524. height: math.unit(99, "meters"),
  34525. default: true
  34526. },
  34527. ]
  34528. ))
  34529. characterMakers.push(() => makeCharacter(
  34530. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  34531. {
  34532. front: {
  34533. height: math.unit(6 + 5/12, "feet"),
  34534. name: "Front",
  34535. image: {
  34536. source: "./media/characters/purri/front.svg",
  34537. extra: 1698/1610,
  34538. bottom: 32/1730
  34539. }
  34540. },
  34541. frontAlt: {
  34542. height: math.unit(6 + 5/12, "feet"),
  34543. name: "Front (Alt)",
  34544. image: {
  34545. source: "./media/characters/purri/front-alt.svg",
  34546. extra: 450/420,
  34547. bottom: 26/476
  34548. }
  34549. },
  34550. boots: {
  34551. height: math.unit(5.5, "feet"),
  34552. name: "Boots",
  34553. image: {
  34554. source: "./media/characters/purri/boots.svg",
  34555. extra: 905/853,
  34556. bottom: 18/923
  34557. },
  34558. extraAttributes: {
  34559. "shoeSize": {
  34560. name: "Shoe Size",
  34561. power: 1,
  34562. type: "length",
  34563. base: math.unit(12, "ShoeSizeMensUS")
  34564. },
  34565. "platformHeight": {
  34566. name: "Platform Height",
  34567. power: 1,
  34568. type: "length",
  34569. base: math.unit(2, "inches")
  34570. },
  34571. }
  34572. },
  34573. lying: {
  34574. height: math.unit(2, "feet"),
  34575. name: "Lying",
  34576. image: {
  34577. source: "./media/characters/purri/lying.svg",
  34578. extra: 940/843,
  34579. bottom: 146/1086
  34580. }
  34581. },
  34582. devious: {
  34583. height: math.unit(1.77, "feet"),
  34584. name: "Devious",
  34585. image: {
  34586. source: "./media/characters/purri/devious.svg",
  34587. extra: 1440/1155,
  34588. bottom: 147/1587
  34589. }
  34590. },
  34591. bean: {
  34592. height: math.unit(1.94, "feet"),
  34593. name: "Bean",
  34594. image: {
  34595. source: "./media/characters/purri/bean.svg"
  34596. }
  34597. },
  34598. },
  34599. [
  34600. {
  34601. name: "Micro",
  34602. height: math.unit(1, "mm")
  34603. },
  34604. {
  34605. name: "Normal",
  34606. height: math.unit(6 + 5/12, "feet"),
  34607. default: true
  34608. },
  34609. {
  34610. name: "Macro :3c",
  34611. height: math.unit(2, "miles")
  34612. },
  34613. ]
  34614. ))
  34615. characterMakers.push(() => makeCharacter(
  34616. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  34617. {
  34618. front: {
  34619. height: math.unit(6 + 2/12, "feet"),
  34620. weight: math.unit(250, "lb"),
  34621. name: "Front",
  34622. image: {
  34623. source: "./media/characters/moonlight/front.svg",
  34624. extra: 1044/908,
  34625. bottom: 56/1100
  34626. }
  34627. },
  34628. feral: {
  34629. height: math.unit(3 + 1/12, "feet"),
  34630. weight: math.unit(50, "kg"),
  34631. name: "Feral",
  34632. image: {
  34633. source: "./media/characters/moonlight/feral.svg",
  34634. extra: 3705/2791,
  34635. bottom: 145/3850
  34636. }
  34637. },
  34638. paw: {
  34639. height: math.unit(1, "feet"),
  34640. name: "Paw",
  34641. image: {
  34642. source: "./media/characters/moonlight/paw.svg"
  34643. }
  34644. },
  34645. paws: {
  34646. height: math.unit(0.98, "feet"),
  34647. name: "Paws",
  34648. image: {
  34649. source: "./media/characters/moonlight/paws.svg",
  34650. extra: 939/939,
  34651. bottom: 50/989
  34652. }
  34653. },
  34654. mouth: {
  34655. height: math.unit(0.48, "feet"),
  34656. name: "Mouth",
  34657. image: {
  34658. source: "./media/characters/moonlight/mouth.svg"
  34659. }
  34660. },
  34661. dick: {
  34662. height: math.unit(1.46, "feet"),
  34663. name: "Dick",
  34664. image: {
  34665. source: "./media/characters/moonlight/dick.svg"
  34666. }
  34667. },
  34668. },
  34669. [
  34670. {
  34671. name: "Normal",
  34672. height: math.unit(6 + 2/12, "feet"),
  34673. default: true
  34674. },
  34675. {
  34676. name: "Macro",
  34677. height: math.unit(300, "feet")
  34678. },
  34679. {
  34680. name: "Macro+",
  34681. height: math.unit(1, "mile")
  34682. },
  34683. {
  34684. name: "Mt. Moon",
  34685. height: math.unit(5, "miles")
  34686. },
  34687. {
  34688. name: "Megamacro",
  34689. height: math.unit(15, "miles")
  34690. },
  34691. ]
  34692. ))
  34693. characterMakers.push(() => makeCharacter(
  34694. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  34695. {
  34696. back: {
  34697. height: math.unit(6, "feet"),
  34698. weight: math.unit(150, "lb"),
  34699. name: "Back",
  34700. image: {
  34701. source: "./media/characters/sylen/back.svg",
  34702. extra: 1335/1273,
  34703. bottom: 107/1442
  34704. }
  34705. },
  34706. },
  34707. [
  34708. {
  34709. name: "Normal",
  34710. height: math.unit(5 + 5/12, "feet")
  34711. },
  34712. {
  34713. name: "Megamacro",
  34714. height: math.unit(3, "miles"),
  34715. default: true
  34716. },
  34717. ]
  34718. ))
  34719. characterMakers.push(() => makeCharacter(
  34720. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  34721. {
  34722. front: {
  34723. height: math.unit(6, "feet"),
  34724. weight: math.unit(190, "lb"),
  34725. name: "Front",
  34726. image: {
  34727. source: "./media/characters/huttser/front.svg",
  34728. extra: 1152/1058,
  34729. bottom: 23/1175
  34730. }
  34731. },
  34732. side: {
  34733. height: math.unit(6, "feet"),
  34734. weight: math.unit(190, "lb"),
  34735. name: "Side",
  34736. image: {
  34737. source: "./media/characters/huttser/side.svg",
  34738. extra: 1174/1065,
  34739. bottom: 18/1192
  34740. }
  34741. },
  34742. back: {
  34743. height: math.unit(6, "feet"),
  34744. weight: math.unit(190, "lb"),
  34745. name: "Back",
  34746. image: {
  34747. source: "./media/characters/huttser/back.svg",
  34748. extra: 1158/1056,
  34749. bottom: 12/1170
  34750. }
  34751. },
  34752. },
  34753. [
  34754. ]
  34755. ))
  34756. characterMakers.push(() => makeCharacter(
  34757. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34758. {
  34759. side: {
  34760. height: math.unit(12 + 9/12, "feet"),
  34761. weight: math.unit(15000, "lb"),
  34762. name: "Side",
  34763. image: {
  34764. source: "./media/characters/faan/side.svg",
  34765. extra: 2747/2697,
  34766. bottom: 0/2747
  34767. }
  34768. },
  34769. front: {
  34770. height: math.unit(12 + 9/12, "feet"),
  34771. weight: math.unit(15000, "lb"),
  34772. name: "Front",
  34773. image: {
  34774. source: "./media/characters/faan/front.svg",
  34775. extra: 607/571,
  34776. bottom: 24/631
  34777. }
  34778. },
  34779. head: {
  34780. height: math.unit(2.85, "feet"),
  34781. name: "Head",
  34782. image: {
  34783. source: "./media/characters/faan/head.svg"
  34784. }
  34785. },
  34786. headAlt: {
  34787. height: math.unit(3.13, "feet"),
  34788. name: "Head-alt",
  34789. image: {
  34790. source: "./media/characters/faan/head-alt.svg"
  34791. }
  34792. },
  34793. },
  34794. [
  34795. {
  34796. name: "Normal",
  34797. height: math.unit(12 + 9/12, "feet"),
  34798. default: true
  34799. },
  34800. ]
  34801. ))
  34802. characterMakers.push(() => makeCharacter(
  34803. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34804. {
  34805. front: {
  34806. height: math.unit(6, "feet"),
  34807. weight: math.unit(300, "lb"),
  34808. name: "Front",
  34809. image: {
  34810. source: "./media/characters/tanio/front.svg",
  34811. extra: 711/673,
  34812. bottom: 25/736
  34813. }
  34814. },
  34815. },
  34816. [
  34817. {
  34818. name: "Normal",
  34819. height: math.unit(6, "feet"),
  34820. default: true
  34821. },
  34822. ]
  34823. ))
  34824. characterMakers.push(() => makeCharacter(
  34825. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34826. {
  34827. front: {
  34828. height: math.unit(3, "inches"),
  34829. name: "Front",
  34830. image: {
  34831. source: "./media/characters/noboru/front.svg",
  34832. extra: 1039/932,
  34833. bottom: 18/1057
  34834. }
  34835. },
  34836. },
  34837. [
  34838. {
  34839. name: "Micro",
  34840. height: math.unit(3, "inches"),
  34841. default: true
  34842. },
  34843. ]
  34844. ))
  34845. characterMakers.push(() => makeCharacter(
  34846. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34847. {
  34848. front: {
  34849. height: math.unit(1.85, "meters"),
  34850. weight: math.unit(80, "kg"),
  34851. name: "Front",
  34852. image: {
  34853. source: "./media/characters/daniel-barrett/front.svg",
  34854. extra: 355/337,
  34855. bottom: 9/364
  34856. }
  34857. },
  34858. },
  34859. [
  34860. {
  34861. name: "Pico",
  34862. height: math.unit(0.0433, "mm")
  34863. },
  34864. {
  34865. name: "Nano",
  34866. height: math.unit(1.5, "mm")
  34867. },
  34868. {
  34869. name: "Micro",
  34870. height: math.unit(5.3, "cm"),
  34871. default: true
  34872. },
  34873. {
  34874. name: "Normal",
  34875. height: math.unit(1.85, "meters")
  34876. },
  34877. {
  34878. name: "Macro",
  34879. height: math.unit(64.7, "meters")
  34880. },
  34881. {
  34882. name: "Megamacro",
  34883. height: math.unit(2.26, "km")
  34884. },
  34885. {
  34886. name: "Gigamacro",
  34887. height: math.unit(79, "km")
  34888. },
  34889. {
  34890. name: "Teramacro",
  34891. height: math.unit(2765, "km")
  34892. },
  34893. {
  34894. name: "Petamacro",
  34895. height: math.unit(96678, "km")
  34896. },
  34897. ]
  34898. ))
  34899. characterMakers.push(() => makeCharacter(
  34900. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34901. {
  34902. front: {
  34903. height: math.unit(30, "meters"),
  34904. weight: math.unit(400, "tons"),
  34905. name: "Front",
  34906. image: {
  34907. source: "./media/characters/zeel/front.svg",
  34908. extra: 2599/2599,
  34909. bottom: 226/2825
  34910. }
  34911. },
  34912. },
  34913. [
  34914. {
  34915. name: "Macro",
  34916. height: math.unit(30, "meters"),
  34917. default: true
  34918. },
  34919. ]
  34920. ))
  34921. characterMakers.push(() => makeCharacter(
  34922. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34923. {
  34924. front: {
  34925. height: math.unit(6 + 7/12, "feet"),
  34926. weight: math.unit(210, "lb"),
  34927. name: "Front",
  34928. image: {
  34929. source: "./media/characters/tarn/front.svg",
  34930. extra: 3517/3220,
  34931. bottom: 91/3608
  34932. }
  34933. },
  34934. back: {
  34935. height: math.unit(6 + 7/12, "feet"),
  34936. weight: math.unit(210, "lb"),
  34937. name: "Back",
  34938. image: {
  34939. source: "./media/characters/tarn/back.svg",
  34940. extra: 3566/3241,
  34941. bottom: 34/3600
  34942. }
  34943. },
  34944. dick: {
  34945. height: math.unit(1.65, "feet"),
  34946. name: "Dick",
  34947. image: {
  34948. source: "./media/characters/tarn/dick.svg"
  34949. }
  34950. },
  34951. paw: {
  34952. height: math.unit(1.80, "feet"),
  34953. name: "Paw",
  34954. image: {
  34955. source: "./media/characters/tarn/paw.svg"
  34956. }
  34957. },
  34958. tongue: {
  34959. height: math.unit(0.97, "feet"),
  34960. name: "Tongue",
  34961. image: {
  34962. source: "./media/characters/tarn/tongue.svg"
  34963. }
  34964. },
  34965. },
  34966. [
  34967. {
  34968. name: "Micro",
  34969. height: math.unit(4, "inches")
  34970. },
  34971. {
  34972. name: "Normal",
  34973. height: math.unit(6 + 7/12, "feet"),
  34974. default: true
  34975. },
  34976. {
  34977. name: "Macro",
  34978. height: math.unit(300, "feet")
  34979. },
  34980. ]
  34981. ))
  34982. characterMakers.push(() => makeCharacter(
  34983. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34984. {
  34985. front: {
  34986. height: math.unit(5 + 7/12, "feet"),
  34987. weight: math.unit(80, "kg"),
  34988. name: "Front",
  34989. image: {
  34990. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34991. extra: 3023/2865,
  34992. bottom: 33/3056
  34993. }
  34994. },
  34995. back: {
  34996. height: math.unit(5 + 7/12, "feet"),
  34997. weight: math.unit(80, "kg"),
  34998. name: "Back",
  34999. image: {
  35000. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  35001. extra: 3020/2886,
  35002. bottom: 30/3050
  35003. }
  35004. },
  35005. dick: {
  35006. height: math.unit(0.98, "feet"),
  35007. name: "Dick",
  35008. image: {
  35009. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  35010. }
  35011. },
  35012. anatomy: {
  35013. height: math.unit(2.86, "feet"),
  35014. name: "Anatomy",
  35015. image: {
  35016. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  35017. }
  35018. },
  35019. },
  35020. [
  35021. {
  35022. name: "Really Small",
  35023. height: math.unit(2, "inches")
  35024. },
  35025. {
  35026. name: "Micro",
  35027. height: math.unit(5.583, "inches")
  35028. },
  35029. {
  35030. name: "Normal",
  35031. height: math.unit(5 + 7/12, "feet"),
  35032. default: true
  35033. },
  35034. {
  35035. name: "Macro",
  35036. height: math.unit(67, "feet")
  35037. },
  35038. {
  35039. name: "Megamacro",
  35040. height: math.unit(134, "feet")
  35041. },
  35042. ]
  35043. ))
  35044. characterMakers.push(() => makeCharacter(
  35045. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  35046. {
  35047. front: {
  35048. height: math.unit(9, "feet"),
  35049. weight: math.unit(120, "lb"),
  35050. name: "Front",
  35051. image: {
  35052. source: "./media/characters/sally/front.svg",
  35053. extra: 1506/1349,
  35054. bottom: 66/1572
  35055. }
  35056. },
  35057. },
  35058. [
  35059. {
  35060. name: "Normal",
  35061. height: math.unit(9, "feet"),
  35062. default: true
  35063. },
  35064. ]
  35065. ))
  35066. characterMakers.push(() => makeCharacter(
  35067. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  35068. {
  35069. front: {
  35070. height: math.unit(8, "feet"),
  35071. weight: math.unit(900, "lb"),
  35072. name: "Front",
  35073. image: {
  35074. source: "./media/characters/owen/front.svg",
  35075. extra: 1761/1657,
  35076. bottom: 74/1835
  35077. }
  35078. },
  35079. side: {
  35080. height: math.unit(8, "feet"),
  35081. weight: math.unit(900, "lb"),
  35082. name: "Side",
  35083. image: {
  35084. source: "./media/characters/owen/side.svg",
  35085. extra: 1797/1734,
  35086. bottom: 30/1827
  35087. }
  35088. },
  35089. back: {
  35090. height: math.unit(8, "feet"),
  35091. weight: math.unit(900, "lb"),
  35092. name: "Back",
  35093. image: {
  35094. source: "./media/characters/owen/back.svg",
  35095. extra: 1796/1706,
  35096. bottom: 59/1855
  35097. }
  35098. },
  35099. maw: {
  35100. height: math.unit(1.76, "feet"),
  35101. name: "Maw",
  35102. image: {
  35103. source: "./media/characters/owen/maw.svg"
  35104. }
  35105. },
  35106. },
  35107. [
  35108. {
  35109. name: "Normal",
  35110. height: math.unit(8, "feet"),
  35111. default: true
  35112. },
  35113. ]
  35114. ))
  35115. characterMakers.push(() => makeCharacter(
  35116. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  35117. {
  35118. front: {
  35119. height: math.unit(4, "feet"),
  35120. weight: math.unit(400, "lb"),
  35121. name: "Front",
  35122. image: {
  35123. source: "./media/characters/ryth/front.svg",
  35124. extra: 1920/1748,
  35125. bottom: 42/1962
  35126. }
  35127. },
  35128. back: {
  35129. height: math.unit(4, "feet"),
  35130. weight: math.unit(400, "lb"),
  35131. name: "Back",
  35132. image: {
  35133. source: "./media/characters/ryth/back.svg",
  35134. extra: 1897/1690,
  35135. bottom: 89/1986
  35136. }
  35137. },
  35138. mouth: {
  35139. height: math.unit(1.39, "feet"),
  35140. name: "Mouth",
  35141. image: {
  35142. source: "./media/characters/ryth/mouth.svg"
  35143. }
  35144. },
  35145. tailmaw: {
  35146. height: math.unit(1.23, "feet"),
  35147. name: "Tailmaw",
  35148. image: {
  35149. source: "./media/characters/ryth/tailmaw.svg"
  35150. }
  35151. },
  35152. goia: {
  35153. height: math.unit(4, "meters"),
  35154. weight: math.unit(10800, "lb"),
  35155. name: "Goia",
  35156. image: {
  35157. source: "./media/characters/ryth/goia.svg",
  35158. extra: 745/640,
  35159. bottom: 107/852
  35160. }
  35161. },
  35162. goiaFront: {
  35163. height: math.unit(4, "meters"),
  35164. weight: math.unit(10800, "lb"),
  35165. name: "Goia (Front)",
  35166. image: {
  35167. source: "./media/characters/ryth/goia-front.svg",
  35168. extra: 750/586,
  35169. bottom: 114/864
  35170. }
  35171. },
  35172. goiaMaw: {
  35173. height: math.unit(5.55, "feet"),
  35174. name: "Goia Maw",
  35175. image: {
  35176. source: "./media/characters/ryth/goia-maw.svg"
  35177. }
  35178. },
  35179. goiaForepaw: {
  35180. height: math.unit(3.5, "feet"),
  35181. name: "Goia Forepaw",
  35182. image: {
  35183. source: "./media/characters/ryth/goia-forepaw.svg"
  35184. }
  35185. },
  35186. goiaHindpaw: {
  35187. height: math.unit(5.55, "feet"),
  35188. name: "Goia Hindpaw",
  35189. image: {
  35190. source: "./media/characters/ryth/goia-hindpaw.svg"
  35191. }
  35192. },
  35193. },
  35194. [
  35195. {
  35196. name: "Normal",
  35197. height: math.unit(4, "feet"),
  35198. default: true
  35199. },
  35200. ]
  35201. ))
  35202. characterMakers.push(() => makeCharacter(
  35203. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  35204. {
  35205. front: {
  35206. height: math.unit(7, "feet"),
  35207. weight: math.unit(180, "lb"),
  35208. name: "Front",
  35209. image: {
  35210. source: "./media/characters/necrolance/front.svg",
  35211. extra: 1062/947,
  35212. bottom: 41/1103
  35213. }
  35214. },
  35215. back: {
  35216. height: math.unit(7, "feet"),
  35217. weight: math.unit(180, "lb"),
  35218. name: "Back",
  35219. image: {
  35220. source: "./media/characters/necrolance/back.svg",
  35221. extra: 1045/984,
  35222. bottom: 14/1059
  35223. }
  35224. },
  35225. wing: {
  35226. height: math.unit(2.67, "feet"),
  35227. name: "Wing",
  35228. image: {
  35229. source: "./media/characters/necrolance/wing.svg"
  35230. }
  35231. },
  35232. },
  35233. [
  35234. {
  35235. name: "Normal",
  35236. height: math.unit(7, "feet"),
  35237. default: true
  35238. },
  35239. ]
  35240. ))
  35241. characterMakers.push(() => makeCharacter(
  35242. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  35243. {
  35244. front: {
  35245. height: math.unit(76, "meters"),
  35246. weight: math.unit(30000, "tons"),
  35247. name: "Front",
  35248. image: {
  35249. source: "./media/characters/tyler/front.svg",
  35250. extra: 1640/1640,
  35251. bottom: 114/1754
  35252. }
  35253. },
  35254. },
  35255. [
  35256. {
  35257. name: "Macro",
  35258. height: math.unit(76, "meters"),
  35259. default: true
  35260. },
  35261. ]
  35262. ))
  35263. characterMakers.push(() => makeCharacter(
  35264. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  35265. {
  35266. front: {
  35267. height: math.unit(4 + 11/12, "feet"),
  35268. weight: math.unit(132, "lb"),
  35269. name: "Front",
  35270. image: {
  35271. source: "./media/characters/icey/front.svg",
  35272. extra: 2750/2550,
  35273. bottom: 33/2783
  35274. }
  35275. },
  35276. back: {
  35277. height: math.unit(4 + 11/12, "feet"),
  35278. weight: math.unit(132, "lb"),
  35279. name: "Back",
  35280. image: {
  35281. source: "./media/characters/icey/back.svg",
  35282. extra: 2624/2481,
  35283. bottom: 35/2659
  35284. }
  35285. },
  35286. },
  35287. [
  35288. {
  35289. name: "Normal",
  35290. height: math.unit(4 + 11/12, "feet"),
  35291. default: true
  35292. },
  35293. ]
  35294. ))
  35295. characterMakers.push(() => makeCharacter(
  35296. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  35297. {
  35298. front: {
  35299. height: math.unit(100, "feet"),
  35300. weight: math.unit(0, "lb"),
  35301. name: "Front",
  35302. image: {
  35303. source: "./media/characters/smile/front.svg",
  35304. extra: 2983/2912,
  35305. bottom: 162/3145
  35306. }
  35307. },
  35308. back: {
  35309. height: math.unit(100, "feet"),
  35310. weight: math.unit(0, "lb"),
  35311. name: "Back",
  35312. image: {
  35313. source: "./media/characters/smile/back.svg",
  35314. extra: 3143/3031,
  35315. bottom: 91/3234
  35316. }
  35317. },
  35318. head: {
  35319. height: math.unit(26.3, "feet"),
  35320. weight: math.unit(0, "lb"),
  35321. name: "Head",
  35322. image: {
  35323. source: "./media/characters/smile/head.svg"
  35324. }
  35325. },
  35326. collar: {
  35327. height: math.unit(5.3, "feet"),
  35328. weight: math.unit(0, "lb"),
  35329. name: "Collar",
  35330. image: {
  35331. source: "./media/characters/smile/collar.svg"
  35332. }
  35333. },
  35334. },
  35335. [
  35336. {
  35337. name: "Macro",
  35338. height: math.unit(100, "feet"),
  35339. default: true
  35340. },
  35341. ]
  35342. ))
  35343. characterMakers.push(() => makeCharacter(
  35344. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  35345. {
  35346. dragon: {
  35347. height: math.unit(26, "feet"),
  35348. weight: math.unit(36, "tons"),
  35349. name: "Dragon",
  35350. image: {
  35351. source: "./media/characters/arimphae/dragon.svg",
  35352. extra: 1574/983,
  35353. bottom: 357/1931
  35354. }
  35355. },
  35356. drake: {
  35357. height: math.unit(9, "feet"),
  35358. weight: math.unit(1.5, "tons"),
  35359. name: "Drake",
  35360. image: {
  35361. source: "./media/characters/arimphae/drake.svg",
  35362. extra: 1120/925,
  35363. bottom: 435/1555
  35364. }
  35365. },
  35366. },
  35367. [
  35368. {
  35369. name: "Small",
  35370. height: math.unit(26*5/9, "feet")
  35371. },
  35372. {
  35373. name: "Normal",
  35374. height: math.unit(26, "feet"),
  35375. default: true
  35376. },
  35377. ]
  35378. ))
  35379. characterMakers.push(() => makeCharacter(
  35380. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  35381. {
  35382. front: {
  35383. height: math.unit(8 + 9/12, "feet"),
  35384. name: "Front",
  35385. image: {
  35386. source: "./media/characters/xander/front.svg",
  35387. extra: 1237/974,
  35388. bottom: 94/1331
  35389. }
  35390. },
  35391. },
  35392. [
  35393. {
  35394. name: "Normal",
  35395. height: math.unit(8 + 9/12, "feet"),
  35396. default: true
  35397. },
  35398. {
  35399. name: "Gaze Grabber",
  35400. height: math.unit(13 + 8/12, "feet")
  35401. },
  35402. {
  35403. name: "Jaw Dropper",
  35404. height: math.unit(27, "feet")
  35405. },
  35406. {
  35407. name: "Show Stopper",
  35408. height: math.unit(136, "feet")
  35409. },
  35410. {
  35411. name: "Superstar",
  35412. height: math.unit(1.9e6, "miles")
  35413. },
  35414. ]
  35415. ))
  35416. characterMakers.push(() => makeCharacter(
  35417. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  35418. {
  35419. side: {
  35420. height: math.unit(2100, "feet"),
  35421. name: "Side",
  35422. image: {
  35423. source: "./media/characters/osiris/side.svg",
  35424. extra: 1105/939,
  35425. bottom: 167/1272
  35426. }
  35427. },
  35428. },
  35429. [
  35430. {
  35431. name: "Macro",
  35432. height: math.unit(2100, "feet"),
  35433. default: true
  35434. },
  35435. ]
  35436. ))
  35437. characterMakers.push(() => makeCharacter(
  35438. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  35439. {
  35440. front: {
  35441. height: math.unit(6 + 8/12, "feet"),
  35442. weight: math.unit(225, "lb"),
  35443. name: "Front",
  35444. image: {
  35445. source: "./media/characters/rhys-londe/front.svg",
  35446. extra: 2258/2141,
  35447. bottom: 188/2446
  35448. }
  35449. },
  35450. back: {
  35451. height: math.unit(6 + 8/12, "feet"),
  35452. weight: math.unit(225, "lb"),
  35453. name: "Back",
  35454. image: {
  35455. source: "./media/characters/rhys-londe/back.svg",
  35456. extra: 2237/2137,
  35457. bottom: 63/2300
  35458. }
  35459. },
  35460. frontNsfw: {
  35461. height: math.unit(6 + 8/12, "feet"),
  35462. weight: math.unit(225, "lb"),
  35463. name: "Front (NSFW)",
  35464. image: {
  35465. source: "./media/characters/rhys-londe/front-nsfw.svg",
  35466. extra: 2258/2141,
  35467. bottom: 188/2446
  35468. }
  35469. },
  35470. backNsfw: {
  35471. height: math.unit(6 + 8/12, "feet"),
  35472. weight: math.unit(225, "lb"),
  35473. name: "Back (NSFW)",
  35474. image: {
  35475. source: "./media/characters/rhys-londe/back-nsfw.svg",
  35476. extra: 2237/2137,
  35477. bottom: 63/2300
  35478. }
  35479. },
  35480. dick: {
  35481. height: math.unit(30, "inches"),
  35482. name: "Dick",
  35483. image: {
  35484. source: "./media/characters/rhys-londe/dick.svg"
  35485. }
  35486. },
  35487. maw: {
  35488. height: math.unit(1.6, "feet"),
  35489. name: "Maw",
  35490. image: {
  35491. source: "./media/characters/rhys-londe/maw.svg"
  35492. }
  35493. },
  35494. },
  35495. [
  35496. {
  35497. name: "Normal",
  35498. height: math.unit(6 + 8/12, "feet"),
  35499. default: true
  35500. },
  35501. ]
  35502. ))
  35503. characterMakers.push(() => makeCharacter(
  35504. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  35505. {
  35506. front: {
  35507. height: math.unit(3 + 10/12, "feet"),
  35508. weight: math.unit(90, "lb"),
  35509. name: "Front",
  35510. image: {
  35511. source: "./media/characters/taivas-ensim/front.svg",
  35512. extra: 1327/1216,
  35513. bottom: 96/1423
  35514. }
  35515. },
  35516. back: {
  35517. height: math.unit(3 + 10/12, "feet"),
  35518. weight: math.unit(90, "lb"),
  35519. name: "Back",
  35520. image: {
  35521. source: "./media/characters/taivas-ensim/back.svg",
  35522. extra: 1355/1247,
  35523. bottom: 11/1366
  35524. }
  35525. },
  35526. frontNsfw: {
  35527. height: math.unit(3 + 10/12, "feet"),
  35528. weight: math.unit(90, "lb"),
  35529. name: "Front (NSFW)",
  35530. image: {
  35531. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  35532. extra: 1327/1216,
  35533. bottom: 96/1423
  35534. }
  35535. },
  35536. backNsfw: {
  35537. height: math.unit(3 + 10/12, "feet"),
  35538. weight: math.unit(90, "lb"),
  35539. name: "Back (NSFW)",
  35540. image: {
  35541. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  35542. extra: 1355/1247,
  35543. bottom: 11/1366
  35544. }
  35545. },
  35546. },
  35547. [
  35548. {
  35549. name: "Normal",
  35550. height: math.unit(3 + 10/12, "feet"),
  35551. default: true
  35552. },
  35553. ]
  35554. ))
  35555. characterMakers.push(() => makeCharacter(
  35556. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  35557. {
  35558. front: {
  35559. height: math.unit(9 + 6/12, "feet"),
  35560. weight: math.unit(940, "lb"),
  35561. name: "Front",
  35562. image: {
  35563. source: "./media/characters/byliss/front.svg",
  35564. extra: 1327/1290,
  35565. bottom: 82/1409
  35566. }
  35567. },
  35568. back: {
  35569. height: math.unit(9 + 6/12, "feet"),
  35570. weight: math.unit(940, "lb"),
  35571. name: "Back",
  35572. image: {
  35573. source: "./media/characters/byliss/back.svg",
  35574. extra: 1376/1349,
  35575. bottom: 9/1385
  35576. }
  35577. },
  35578. frontNsfw: {
  35579. height: math.unit(9 + 6/12, "feet"),
  35580. weight: math.unit(940, "lb"),
  35581. name: "Front (NSFW)",
  35582. image: {
  35583. source: "./media/characters/byliss/front-nsfw.svg",
  35584. extra: 1327/1290,
  35585. bottom: 82/1409
  35586. }
  35587. },
  35588. backNsfw: {
  35589. height: math.unit(9 + 6/12, "feet"),
  35590. weight: math.unit(940, "lb"),
  35591. name: "Back (NSFW)",
  35592. image: {
  35593. source: "./media/characters/byliss/back-nsfw.svg",
  35594. extra: 1376/1349,
  35595. bottom: 9/1385
  35596. }
  35597. },
  35598. },
  35599. [
  35600. {
  35601. name: "Normal",
  35602. height: math.unit(9 + 6/12, "feet"),
  35603. default: true
  35604. },
  35605. ]
  35606. ))
  35607. characterMakers.push(() => makeCharacter(
  35608. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  35609. {
  35610. front: {
  35611. height: math.unit(5 + 2/12, "feet"),
  35612. weight: math.unit(200, "lb"),
  35613. name: "Front",
  35614. image: {
  35615. source: "./media/characters/noraly/front.svg",
  35616. extra: 4985/4773,
  35617. bottom: 150/5135
  35618. }
  35619. },
  35620. full: {
  35621. height: math.unit(5 + 2/12, "feet"),
  35622. weight: math.unit(164, "lb"),
  35623. name: "Full",
  35624. image: {
  35625. source: "./media/characters/noraly/full.svg",
  35626. extra: 1114/1059,
  35627. bottom: 35/1149
  35628. }
  35629. },
  35630. fuller: {
  35631. height: math.unit(5 + 2/12, "feet"),
  35632. weight: math.unit(230, "lb"),
  35633. name: "Fuller",
  35634. image: {
  35635. source: "./media/characters/noraly/fuller.svg",
  35636. extra: 1114/1059,
  35637. bottom: 35/1149
  35638. }
  35639. },
  35640. fullest: {
  35641. height: math.unit(5 + 2/12, "feet"),
  35642. weight: math.unit(300, "lb"),
  35643. name: "Fullest",
  35644. image: {
  35645. source: "./media/characters/noraly/fullest.svg",
  35646. extra: 1114/1059,
  35647. bottom: 35/1149
  35648. }
  35649. },
  35650. },
  35651. [
  35652. {
  35653. name: "Normal",
  35654. height: math.unit(5 + 2/12, "feet"),
  35655. default: true
  35656. },
  35657. ]
  35658. ))
  35659. characterMakers.push(() => makeCharacter(
  35660. { name: "Pera", species: ["snake"], tags: ["naga"] },
  35661. {
  35662. front: {
  35663. height: math.unit(5 + 2/12, "feet"),
  35664. weight: math.unit(210, "lb"),
  35665. name: "Front",
  35666. image: {
  35667. source: "./media/characters/pera/front.svg",
  35668. extra: 1560/1531,
  35669. bottom: 165/1725
  35670. }
  35671. },
  35672. back: {
  35673. height: math.unit(5 + 2/12, "feet"),
  35674. weight: math.unit(210, "lb"),
  35675. name: "Back",
  35676. image: {
  35677. source: "./media/characters/pera/back.svg",
  35678. extra: 1523/1493,
  35679. bottom: 152/1675
  35680. }
  35681. },
  35682. dick: {
  35683. height: math.unit(2.4, "feet"),
  35684. name: "Dick",
  35685. image: {
  35686. source: "./media/characters/pera/dick.svg"
  35687. }
  35688. },
  35689. },
  35690. [
  35691. {
  35692. name: "Normal",
  35693. height: math.unit(5 + 2/12, "feet"),
  35694. default: true
  35695. },
  35696. ]
  35697. ))
  35698. characterMakers.push(() => makeCharacter(
  35699. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  35700. {
  35701. front: {
  35702. height: math.unit(12, "feet"),
  35703. weight: math.unit(3200, "lb"),
  35704. name: "Front",
  35705. image: {
  35706. source: "./media/characters/julian/front.svg",
  35707. extra: 2962/2701,
  35708. bottom: 184/3146
  35709. }
  35710. },
  35711. maw: {
  35712. height: math.unit(5.35, "feet"),
  35713. name: "Maw",
  35714. image: {
  35715. source: "./media/characters/julian/maw.svg"
  35716. }
  35717. },
  35718. paw: {
  35719. height: math.unit(3.07, "feet"),
  35720. name: "Paw",
  35721. image: {
  35722. source: "./media/characters/julian/paw.svg"
  35723. }
  35724. },
  35725. },
  35726. [
  35727. {
  35728. name: "Default",
  35729. height: math.unit(12, "feet"),
  35730. default: true
  35731. },
  35732. {
  35733. name: "Big",
  35734. height: math.unit(50, "feet")
  35735. },
  35736. {
  35737. name: "Really Big",
  35738. height: math.unit(1, "mile")
  35739. },
  35740. {
  35741. name: "Extremely Big",
  35742. height: math.unit(100, "miles")
  35743. },
  35744. {
  35745. name: "Planet Hugger",
  35746. height: math.unit(200, "megameters")
  35747. },
  35748. {
  35749. name: "Unreasonably Big",
  35750. height: math.unit(1e300, "meters")
  35751. },
  35752. ]
  35753. ))
  35754. characterMakers.push(() => makeCharacter(
  35755. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35756. {
  35757. solgooleo: {
  35758. height: math.unit(4, "meters"),
  35759. weight: math.unit(6000*1.5, "kg"),
  35760. volume: math.unit(6000, "liters"),
  35761. name: "Solgooleo",
  35762. image: {
  35763. source: "./media/characters/pi/solgooleo.svg",
  35764. extra: 388/331,
  35765. bottom: 29/417
  35766. }
  35767. },
  35768. },
  35769. [
  35770. {
  35771. name: "Normal",
  35772. height: math.unit(4, "meters"),
  35773. default: true
  35774. },
  35775. ]
  35776. ))
  35777. characterMakers.push(() => makeCharacter(
  35778. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35779. {
  35780. front: {
  35781. height: math.unit(8, "feet"),
  35782. weight: math.unit(4, "tons"),
  35783. name: "Front",
  35784. image: {
  35785. source: "./media/characters/shaun/front.svg",
  35786. extra: 503/495,
  35787. bottom: 20/523
  35788. }
  35789. },
  35790. back: {
  35791. height: math.unit(8, "feet"),
  35792. weight: math.unit(4, "tons"),
  35793. name: "Back",
  35794. image: {
  35795. source: "./media/characters/shaun/back.svg",
  35796. extra: 487/480,
  35797. bottom: 20/507
  35798. }
  35799. },
  35800. },
  35801. [
  35802. {
  35803. name: "Lorg",
  35804. height: math.unit(8, "feet"),
  35805. default: true
  35806. },
  35807. ]
  35808. ))
  35809. characterMakers.push(() => makeCharacter(
  35810. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35811. {
  35812. frontAnthro: {
  35813. height: math.unit(7, "feet"),
  35814. name: "Front",
  35815. image: {
  35816. source: "./media/characters/sini/front-anthro.svg",
  35817. extra: 726/678,
  35818. bottom: 35/761
  35819. },
  35820. form: "anthro",
  35821. default: true
  35822. },
  35823. backAnthro: {
  35824. height: math.unit(7, "feet"),
  35825. name: "Back",
  35826. image: {
  35827. source: "./media/characters/sini/back-anthro.svg",
  35828. extra: 743/701,
  35829. bottom: 12/755
  35830. },
  35831. form: "anthro",
  35832. },
  35833. frontAnthroNsfw: {
  35834. height: math.unit(7, "feet"),
  35835. name: "Front (NSFW)",
  35836. image: {
  35837. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35838. extra: 726/678,
  35839. bottom: 35/761
  35840. },
  35841. form: "anthro"
  35842. },
  35843. backAnthroNsfw: {
  35844. height: math.unit(7, "feet"),
  35845. name: "Back (NSFW)",
  35846. image: {
  35847. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35848. extra: 743/701,
  35849. bottom: 12/755
  35850. },
  35851. form: "anthro",
  35852. },
  35853. mawAnthro: {
  35854. height: math.unit(2.14, "feet"),
  35855. name: "Maw",
  35856. image: {
  35857. source: "./media/characters/sini/maw-anthro.svg"
  35858. },
  35859. form: "anthro"
  35860. },
  35861. dick: {
  35862. height: math.unit(1.45, "feet"),
  35863. name: "Dick",
  35864. image: {
  35865. source: "./media/characters/sini/dick-anthro.svg"
  35866. },
  35867. form: "anthro"
  35868. },
  35869. feral: {
  35870. height: math.unit(16, "feet"),
  35871. name: "Feral",
  35872. image: {
  35873. source: "./media/characters/sini/feral.svg",
  35874. extra: 814/605,
  35875. bottom: 11/825
  35876. },
  35877. form: "feral",
  35878. default: true
  35879. },
  35880. feralNsfw: {
  35881. height: math.unit(16, "feet"),
  35882. name: "Feral (NSFW)",
  35883. image: {
  35884. source: "./media/characters/sini/feral-nsfw.svg",
  35885. extra: 814/605,
  35886. bottom: 11/825
  35887. },
  35888. form: "feral"
  35889. },
  35890. mawFeral: {
  35891. height: math.unit(5.66, "feet"),
  35892. name: "Maw",
  35893. image: {
  35894. source: "./media/characters/sini/maw-feral.svg"
  35895. },
  35896. form: "feral",
  35897. },
  35898. pawFeral: {
  35899. height: math.unit(5.17, "feet"),
  35900. name: "Paw",
  35901. image: {
  35902. source: "./media/characters/sini/paw-feral.svg"
  35903. },
  35904. form: "feral",
  35905. },
  35906. rumpFeral: {
  35907. height: math.unit(13.11, "feet"),
  35908. name: "Rump",
  35909. image: {
  35910. source: "./media/characters/sini/rump-feral.svg"
  35911. },
  35912. form: "feral",
  35913. },
  35914. dickFeral: {
  35915. height: math.unit(1, "feet"),
  35916. name: "Dick",
  35917. image: {
  35918. source: "./media/characters/sini/dick-feral.svg"
  35919. },
  35920. form: "feral",
  35921. },
  35922. eyeFeral: {
  35923. height: math.unit(1.23, "feet"),
  35924. name: "Eye",
  35925. image: {
  35926. source: "./media/characters/sini/eye-feral.svg"
  35927. },
  35928. form: "feral",
  35929. },
  35930. },
  35931. [
  35932. {
  35933. name: "Normal",
  35934. height: math.unit(7, "feet"),
  35935. default: true,
  35936. form: "anthro"
  35937. },
  35938. {
  35939. name: "Normal",
  35940. height: math.unit(16, "feet"),
  35941. default: true,
  35942. form: "feral"
  35943. },
  35944. ],
  35945. {
  35946. "anthro": {
  35947. name: "Anthro",
  35948. default: true
  35949. },
  35950. "feral": {
  35951. name: "Feral",
  35952. }
  35953. }
  35954. ))
  35955. characterMakers.push(() => makeCharacter(
  35956. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35957. {
  35958. side: {
  35959. height: math.unit(47.2, "meters"),
  35960. weight: math.unit(10000, "tons"),
  35961. name: "Side",
  35962. image: {
  35963. source: "./media/characters/raylldo/side.svg",
  35964. extra: 2363/642,
  35965. bottom: 221/2584
  35966. }
  35967. },
  35968. top: {
  35969. height: math.unit(240, "meters"),
  35970. weight: math.unit(10000, "tons"),
  35971. name: "Top",
  35972. image: {
  35973. source: "./media/characters/raylldo/top.svg"
  35974. }
  35975. },
  35976. bottom: {
  35977. height: math.unit(240, "meters"),
  35978. weight: math.unit(10000, "tons"),
  35979. name: "Bottom",
  35980. image: {
  35981. source: "./media/characters/raylldo/bottom.svg"
  35982. }
  35983. },
  35984. head: {
  35985. height: math.unit(38.6, "meters"),
  35986. name: "Head",
  35987. image: {
  35988. source: "./media/characters/raylldo/head.svg",
  35989. extra: 1335/1112,
  35990. bottom: 0/1335
  35991. }
  35992. },
  35993. maw: {
  35994. height: math.unit(16.37, "meters"),
  35995. name: "Maw",
  35996. image: {
  35997. source: "./media/characters/raylldo/maw.svg",
  35998. extra: 883/660,
  35999. bottom: 0/883
  36000. },
  36001. extraAttributes: {
  36002. preyCapacity: {
  36003. name: "Capacity",
  36004. power: 3,
  36005. type: "volume",
  36006. base: math.unit(1000, "people")
  36007. },
  36008. tongueSize: {
  36009. name: "Tongue Size",
  36010. power: 2,
  36011. type: "area",
  36012. base: math.unit(21, "m^2")
  36013. }
  36014. }
  36015. },
  36016. forepaw: {
  36017. height: math.unit(18, "meters"),
  36018. name: "Forepaw",
  36019. image: {
  36020. source: "./media/characters/raylldo/forepaw.svg"
  36021. }
  36022. },
  36023. hindpaw: {
  36024. height: math.unit(23, "meters"),
  36025. name: "Hindpaw",
  36026. image: {
  36027. source: "./media/characters/raylldo/hindpaw.svg"
  36028. }
  36029. },
  36030. genitals: {
  36031. height: math.unit(42, "meters"),
  36032. name: "Genitals",
  36033. image: {
  36034. source: "./media/characters/raylldo/genitals.svg"
  36035. }
  36036. },
  36037. },
  36038. [
  36039. {
  36040. name: "Normal",
  36041. height: math.unit(47.2, "meters"),
  36042. default: true
  36043. },
  36044. ]
  36045. ))
  36046. characterMakers.push(() => makeCharacter(
  36047. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  36048. {
  36049. anthroFront: {
  36050. height: math.unit(9, "feet"),
  36051. weight: math.unit(600, "lb"),
  36052. name: "Anthro (Front)",
  36053. image: {
  36054. source: "./media/characters/glint/anthro-front.svg",
  36055. extra: 1097/1018,
  36056. bottom: 28/1125
  36057. }
  36058. },
  36059. anthroBack: {
  36060. height: math.unit(9, "feet"),
  36061. weight: math.unit(600, "lb"),
  36062. name: "Anthro (Back)",
  36063. image: {
  36064. source: "./media/characters/glint/anthro-back.svg",
  36065. extra: 1154/997,
  36066. bottom: 36/1190
  36067. }
  36068. },
  36069. feral: {
  36070. height: math.unit(11, "feet"),
  36071. weight: math.unit(50000, "lb"),
  36072. name: "Feral",
  36073. image: {
  36074. source: "./media/characters/glint/feral.svg",
  36075. extra: 3035/1585,
  36076. bottom: 1169/4204
  36077. }
  36078. },
  36079. dickAnthro: {
  36080. height: math.unit(0.7, "meters"),
  36081. name: "Dick (Anthro)",
  36082. image: {
  36083. source: "./media/characters/glint/dick-anthro.svg"
  36084. }
  36085. },
  36086. dickFeral: {
  36087. height: math.unit(2.65, "meters"),
  36088. name: "Dick (Feral)",
  36089. image: {
  36090. source: "./media/characters/glint/dick-feral.svg"
  36091. }
  36092. },
  36093. slitHidden: {
  36094. height: math.unit(5.85, "meters"),
  36095. name: "Slit (Hidden)",
  36096. image: {
  36097. source: "./media/characters/glint/slit-hidden.svg"
  36098. }
  36099. },
  36100. slitErect: {
  36101. height: math.unit(5.85, "meters"),
  36102. name: "Slit (Erect)",
  36103. image: {
  36104. source: "./media/characters/glint/slit-erect.svg"
  36105. }
  36106. },
  36107. mawAnthro: {
  36108. height: math.unit(0.63, "meters"),
  36109. name: "Maw (Anthro)",
  36110. image: {
  36111. source: "./media/characters/glint/maw.svg"
  36112. }
  36113. },
  36114. mawFeral: {
  36115. height: math.unit(2.89, "meters"),
  36116. name: "Maw (Feral)",
  36117. image: {
  36118. source: "./media/characters/glint/maw.svg"
  36119. }
  36120. },
  36121. },
  36122. [
  36123. {
  36124. name: "Normal",
  36125. height: math.unit(9, "feet"),
  36126. default: true
  36127. },
  36128. ]
  36129. ))
  36130. characterMakers.push(() => makeCharacter(
  36131. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  36132. {
  36133. side: {
  36134. height: math.unit(15, "feet"),
  36135. weight: math.unit(5000, "kg"),
  36136. name: "Side",
  36137. image: {
  36138. source: "./media/characters/kairne/side.svg",
  36139. extra: 979/811,
  36140. bottom: 13/992
  36141. }
  36142. },
  36143. front: {
  36144. height: math.unit(15, "feet"),
  36145. weight: math.unit(5000, "kg"),
  36146. name: "Front",
  36147. image: {
  36148. source: "./media/characters/kairne/front.svg",
  36149. extra: 908/814,
  36150. bottom: 26/934
  36151. }
  36152. },
  36153. sideNsfw: {
  36154. height: math.unit(15, "feet"),
  36155. weight: math.unit(5000, "kg"),
  36156. name: "Side (NSFW)",
  36157. image: {
  36158. source: "./media/characters/kairne/side-nsfw.svg",
  36159. extra: 979/811,
  36160. bottom: 13/992
  36161. }
  36162. },
  36163. frontNsfw: {
  36164. height: math.unit(15, "feet"),
  36165. weight: math.unit(5000, "kg"),
  36166. name: "Front (NSFW)",
  36167. image: {
  36168. source: "./media/characters/kairne/front-nsfw.svg",
  36169. extra: 908/814,
  36170. bottom: 26/934
  36171. }
  36172. },
  36173. dickCaged: {
  36174. height: math.unit(0.65, "meters"),
  36175. name: "Dick-caged",
  36176. image: {
  36177. source: "./media/characters/kairne/dick-caged.svg"
  36178. }
  36179. },
  36180. dick: {
  36181. height: math.unit(0.79, "meters"),
  36182. name: "Dick",
  36183. image: {
  36184. source: "./media/characters/kairne/dick.svg"
  36185. }
  36186. },
  36187. genitals: {
  36188. height: math.unit(1.29, "meters"),
  36189. name: "Genitals",
  36190. image: {
  36191. source: "./media/characters/kairne/genitals.svg"
  36192. }
  36193. },
  36194. maw: {
  36195. height: math.unit(1.73, "meters"),
  36196. name: "Maw",
  36197. image: {
  36198. source: "./media/characters/kairne/maw.svg"
  36199. }
  36200. },
  36201. },
  36202. [
  36203. {
  36204. name: "Normal",
  36205. height: math.unit(15, "feet"),
  36206. default: true
  36207. },
  36208. ]
  36209. ))
  36210. characterMakers.push(() => makeCharacter(
  36211. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  36212. {
  36213. front: {
  36214. height: math.unit(5 + 8/12, "feet"),
  36215. weight: math.unit(139, "lb"),
  36216. name: "Front",
  36217. image: {
  36218. source: "./media/characters/biscuit-jackal/front.svg",
  36219. extra: 2106/1961,
  36220. bottom: 58/2164
  36221. }
  36222. },
  36223. back: {
  36224. height: math.unit(5 + 8/12, "feet"),
  36225. weight: math.unit(139, "lb"),
  36226. name: "Back",
  36227. image: {
  36228. source: "./media/characters/biscuit-jackal/back.svg",
  36229. extra: 2132/1976,
  36230. bottom: 57/2189
  36231. }
  36232. },
  36233. werejackal: {
  36234. height: math.unit(6 + 3/12, "feet"),
  36235. weight: math.unit(188, "lb"),
  36236. name: "Werejackal",
  36237. image: {
  36238. source: "./media/characters/biscuit-jackal/werejackal.svg",
  36239. extra: 2373/2178,
  36240. bottom: 53/2426
  36241. }
  36242. },
  36243. },
  36244. [
  36245. {
  36246. name: "Normal",
  36247. height: math.unit(5 + 8/12, "feet"),
  36248. default: true
  36249. },
  36250. ]
  36251. ))
  36252. characterMakers.push(() => makeCharacter(
  36253. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  36254. {
  36255. front: {
  36256. height: math.unit(140, "cm"),
  36257. weight: math.unit(45, "kg"),
  36258. name: "Front",
  36259. image: {
  36260. source: "./media/characters/tayra-white/front.svg",
  36261. extra: 2229/2192,
  36262. bottom: 75/2304
  36263. }
  36264. },
  36265. },
  36266. [
  36267. {
  36268. name: "Normal",
  36269. height: math.unit(140, "cm"),
  36270. default: true
  36271. },
  36272. ]
  36273. ))
  36274. characterMakers.push(() => makeCharacter(
  36275. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  36276. {
  36277. front: {
  36278. height: math.unit(4 + 5/12, "feet"),
  36279. name: "Front",
  36280. image: {
  36281. source: "./media/characters/scoop/front.svg",
  36282. extra: 1257/1136,
  36283. bottom: 69/1326
  36284. }
  36285. },
  36286. back: {
  36287. height: math.unit(4 + 5/12, "feet"),
  36288. name: "Back",
  36289. image: {
  36290. source: "./media/characters/scoop/back.svg",
  36291. extra: 1321/1152,
  36292. bottom: 32/1353
  36293. }
  36294. },
  36295. maw: {
  36296. height: math.unit(0.68, "feet"),
  36297. name: "Maw",
  36298. image: {
  36299. source: "./media/characters/scoop/maw.svg"
  36300. }
  36301. },
  36302. },
  36303. [
  36304. {
  36305. name: "Really Small",
  36306. height: math.unit(1, "mm")
  36307. },
  36308. {
  36309. name: "Micro",
  36310. height: math.unit(1, "inch")
  36311. },
  36312. {
  36313. name: "Normal",
  36314. height: math.unit(4 + 5/12, "feet"),
  36315. default: true
  36316. },
  36317. {
  36318. name: "Macro",
  36319. height: math.unit(200, "feet")
  36320. },
  36321. {
  36322. name: "Megamacro",
  36323. height: math.unit(3240, "feet")
  36324. },
  36325. {
  36326. name: "Teramacro",
  36327. height: math.unit(2500, "miles")
  36328. },
  36329. ]
  36330. ))
  36331. characterMakers.push(() => makeCharacter(
  36332. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  36333. {
  36334. front: {
  36335. height: math.unit(15 + 7/12, "feet"),
  36336. weight: math.unit(1150, "tons"),
  36337. name: "Front",
  36338. image: {
  36339. source: "./media/characters/saphinara/front.svg",
  36340. extra: 1837/1643,
  36341. bottom: 84/1921
  36342. },
  36343. form: "normal",
  36344. default: true
  36345. },
  36346. side: {
  36347. height: math.unit(15 + 7/12, "feet"),
  36348. weight: math.unit(1150, "tons"),
  36349. name: "Side",
  36350. image: {
  36351. source: "./media/characters/saphinara/side.svg",
  36352. extra: 605/547,
  36353. bottom: 6/611
  36354. },
  36355. form: "normal"
  36356. },
  36357. back: {
  36358. height: math.unit(15 + 7/12, "feet"),
  36359. weight: math.unit(1150, "tons"),
  36360. name: "Back",
  36361. image: {
  36362. source: "./media/characters/saphinara/back.svg",
  36363. extra: 591/531,
  36364. bottom: 13/604
  36365. },
  36366. form: "normal"
  36367. },
  36368. frontTail: {
  36369. height: math.unit(15 + 7/12, "feet"),
  36370. weight: math.unit(1150, "tons"),
  36371. name: "Front (Full Tail)",
  36372. image: {
  36373. source: "./media/characters/saphinara/front-tail.svg",
  36374. extra: 2256/1630,
  36375. bottom: 261/2517
  36376. },
  36377. form: "normal"
  36378. },
  36379. insides: {
  36380. height: math.unit(11.92, "feet"),
  36381. name: "Insides",
  36382. image: {
  36383. source: "./media/characters/saphinara/insides.svg"
  36384. },
  36385. form: "normal"
  36386. },
  36387. head: {
  36388. height: math.unit(4.17, "feet"),
  36389. name: "Head",
  36390. image: {
  36391. source: "./media/characters/saphinara/head.svg"
  36392. },
  36393. form: "normal"
  36394. },
  36395. tongue: {
  36396. height: math.unit(4.60, "feet"),
  36397. name: "Tongue",
  36398. image: {
  36399. source: "./media/characters/saphinara/tongue.svg"
  36400. },
  36401. form: "normal"
  36402. },
  36403. headEnraged: {
  36404. height: math.unit(5.55, "feet"),
  36405. name: "Head (Enraged)",
  36406. image: {
  36407. source: "./media/characters/saphinara/head-enraged.svg"
  36408. },
  36409. form: "normal"
  36410. },
  36411. wings: {
  36412. height: math.unit(11.95, "feet"),
  36413. name: "Wings",
  36414. image: {
  36415. source: "./media/characters/saphinara/wings.svg"
  36416. },
  36417. form: "normal"
  36418. },
  36419. feathers: {
  36420. height: math.unit(8.92, "feet"),
  36421. name: "Feathers",
  36422. image: {
  36423. source: "./media/characters/saphinara/feathers.svg"
  36424. },
  36425. form: "normal"
  36426. },
  36427. shackles: {
  36428. height: math.unit(2, "feet"),
  36429. name: "Shackles",
  36430. image: {
  36431. source: "./media/characters/saphinara/shackles.svg"
  36432. },
  36433. form: "normal"
  36434. },
  36435. eyes: {
  36436. height: math.unit(1.331, "feet"),
  36437. name: "Eyes",
  36438. image: {
  36439. source: "./media/characters/saphinara/eyes.svg"
  36440. },
  36441. form: "normal"
  36442. },
  36443. eyesEnraged: {
  36444. height: math.unit(1.331, "feet"),
  36445. name: "Eyes (Enraged)",
  36446. image: {
  36447. source: "./media/characters/saphinara/eyes-enraged.svg"
  36448. },
  36449. form: "normal"
  36450. },
  36451. trueFormSide: {
  36452. height: math.unit(200, "feet"),
  36453. weight: math.unit(1e7, "tons"),
  36454. name: "Side",
  36455. image: {
  36456. source: "./media/characters/saphinara/true-form-side.svg",
  36457. extra: 1399/770,
  36458. bottom: 97/1496
  36459. },
  36460. form: "true-form",
  36461. default: true
  36462. },
  36463. trueFormMaw: {
  36464. height: math.unit(71.5, "feet"),
  36465. name: "Maw",
  36466. image: {
  36467. source: "./media/characters/saphinara/true-form-maw.svg",
  36468. extra: 2302/1453,
  36469. bottom: 0/2302
  36470. },
  36471. form: "true-form"
  36472. },
  36473. meowberusSide: {
  36474. height: math.unit(75, "feet"),
  36475. weight: math.unit(180000, "kg"),
  36476. preyCapacity: math.unit(50000, "people"),
  36477. name: "Side",
  36478. image: {
  36479. source: "./media/characters/saphinara/meowberus-side.svg",
  36480. extra: 1400/711,
  36481. bottom: 126/1526
  36482. },
  36483. form: "meowberus",
  36484. extraAttributes: {
  36485. "pawArea": {
  36486. name: "Paw Size",
  36487. power: 2,
  36488. type: "area",
  36489. base: math.unit(35, "m^2")
  36490. }
  36491. }
  36492. },
  36493. },
  36494. [
  36495. {
  36496. name: "Normal",
  36497. height: math.unit(15 + 7/12, "feet"),
  36498. default: true,
  36499. form: "normal"
  36500. },
  36501. {
  36502. name: "Angry",
  36503. height: math.unit(30 + 6/12, "feet"),
  36504. form: "normal"
  36505. },
  36506. {
  36507. name: "Enraged",
  36508. height: math.unit(102 + 1/12, "feet"),
  36509. form: "normal"
  36510. },
  36511. {
  36512. name: "True",
  36513. height: math.unit(200, "feet"),
  36514. default: true,
  36515. form: "true-form"
  36516. },
  36517. {
  36518. name: "Normal",
  36519. height: math.unit(75, "feet"),
  36520. default: true,
  36521. form: "meowberus"
  36522. },
  36523. ],
  36524. {
  36525. "normal": {
  36526. name: "Normal",
  36527. default: true
  36528. },
  36529. "true-form": {
  36530. name: "True Form"
  36531. },
  36532. "meowberus": {
  36533. name: "Meowberus",
  36534. },
  36535. }
  36536. ))
  36537. characterMakers.push(() => makeCharacter(
  36538. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  36539. {
  36540. front: {
  36541. height: math.unit(6 + 8/12, "feet"),
  36542. weight: math.unit(300, "lb"),
  36543. name: "Front",
  36544. image: {
  36545. source: "./media/characters/jrain/front.svg",
  36546. extra: 3039/2865,
  36547. bottom: 399/3438
  36548. }
  36549. },
  36550. back: {
  36551. height: math.unit(6 + 8/12, "feet"),
  36552. weight: math.unit(300, "lb"),
  36553. name: "Back",
  36554. image: {
  36555. source: "./media/characters/jrain/back.svg",
  36556. extra: 3089/2938,
  36557. bottom: 172/3261
  36558. }
  36559. },
  36560. head: {
  36561. height: math.unit(2.14, "feet"),
  36562. name: "Head",
  36563. image: {
  36564. source: "./media/characters/jrain/head.svg"
  36565. }
  36566. },
  36567. maw: {
  36568. height: math.unit(1.77, "feet"),
  36569. name: "Maw",
  36570. image: {
  36571. source: "./media/characters/jrain/maw.svg"
  36572. }
  36573. },
  36574. leftHand: {
  36575. height: math.unit(1.1, "feet"),
  36576. name: "Left Hand",
  36577. image: {
  36578. source: "./media/characters/jrain/left-hand.svg"
  36579. }
  36580. },
  36581. rightHand: {
  36582. height: math.unit(1.1, "feet"),
  36583. name: "Right Hand",
  36584. image: {
  36585. source: "./media/characters/jrain/right-hand.svg"
  36586. }
  36587. },
  36588. eye: {
  36589. height: math.unit(0.35, "feet"),
  36590. name: "Eye",
  36591. image: {
  36592. source: "./media/characters/jrain/eye.svg"
  36593. }
  36594. },
  36595. },
  36596. [
  36597. {
  36598. name: "Normal",
  36599. height: math.unit(6 + 8/12, "feet"),
  36600. default: true
  36601. },
  36602. {
  36603. name: "Casually Large",
  36604. height: math.unit(25, "feet")
  36605. },
  36606. {
  36607. name: "Giant",
  36608. height: math.unit(100, "feet")
  36609. },
  36610. {
  36611. name: "Kaiju",
  36612. height: math.unit(300, "feet")
  36613. },
  36614. ]
  36615. ))
  36616. characterMakers.push(() => makeCharacter(
  36617. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  36618. {
  36619. dragon: {
  36620. height: math.unit(5, "meters"),
  36621. name: "Dragon",
  36622. image: {
  36623. source: "./media/characters/sabrina/dragon.svg",
  36624. extra: 3670 / 2365,
  36625. bottom: 333 / 4003
  36626. }
  36627. },
  36628. gryphon: {
  36629. height: math.unit(3, "meters"),
  36630. name: "Gryphon",
  36631. image: {
  36632. source: "./media/characters/sabrina/gryphon.svg",
  36633. extra: 1576 / 945,
  36634. bottom: 71 / 1647
  36635. }
  36636. },
  36637. snake: {
  36638. height: math.unit(12, "meters"),
  36639. name: "Snake",
  36640. image: {
  36641. source: "./media/characters/sabrina/snake.svg",
  36642. extra: 1758 / 1320,
  36643. bottom: 186 / 1944
  36644. }
  36645. },
  36646. collar: {
  36647. height: math.unit(1.86, "meters"),
  36648. name: "Collar",
  36649. image: {
  36650. source: "./media/characters/sabrina/collar.svg"
  36651. }
  36652. },
  36653. eye: {
  36654. height: math.unit(0.53, "meters"),
  36655. name: "Eye",
  36656. image: {
  36657. source: "./media/characters/sabrina/eye.svg"
  36658. }
  36659. },
  36660. foot: {
  36661. height: math.unit(1.86, "meters"),
  36662. name: "Foot",
  36663. image: {
  36664. source: "./media/characters/sabrina/foot.svg"
  36665. }
  36666. },
  36667. hand: {
  36668. height: math.unit(1.32, "meters"),
  36669. name: "Hand",
  36670. image: {
  36671. source: "./media/characters/sabrina/hand.svg"
  36672. }
  36673. },
  36674. head: {
  36675. height: math.unit(2.44, "meters"),
  36676. name: "Head",
  36677. image: {
  36678. source: "./media/characters/sabrina/head.svg"
  36679. }
  36680. },
  36681. headAngry: {
  36682. height: math.unit(2.44, "meters"),
  36683. name: "Head (Angry))",
  36684. image: {
  36685. source: "./media/characters/sabrina/head-angry.svg"
  36686. }
  36687. },
  36688. maw: {
  36689. height: math.unit(1.65, "meters"),
  36690. name: "Maw",
  36691. image: {
  36692. source: "./media/characters/sabrina/maw.svg"
  36693. }
  36694. },
  36695. spikes: {
  36696. height: math.unit(1.69, "meters"),
  36697. name: "Spikes",
  36698. image: {
  36699. source: "./media/characters/sabrina/spikes.svg"
  36700. }
  36701. },
  36702. stomach: {
  36703. height: math.unit(1.15, "meters"),
  36704. name: "Stomach",
  36705. image: {
  36706. source: "./media/characters/sabrina/stomach.svg"
  36707. }
  36708. },
  36709. tongue: {
  36710. height: math.unit(1.27, "meters"),
  36711. name: "Tongue",
  36712. image: {
  36713. source: "./media/characters/sabrina/tongue.svg"
  36714. }
  36715. },
  36716. wingDorsal: {
  36717. height: math.unit(4.85, "meters"),
  36718. name: "Wing (Dorsal)",
  36719. image: {
  36720. source: "./media/characters/sabrina/wing-dorsal.svg"
  36721. }
  36722. },
  36723. wingVentral: {
  36724. height: math.unit(4.85, "meters"),
  36725. name: "Wing (Ventral)",
  36726. image: {
  36727. source: "./media/characters/sabrina/wing-ventral.svg"
  36728. }
  36729. },
  36730. },
  36731. [
  36732. {
  36733. name: "Normal",
  36734. height: math.unit(5, "meters"),
  36735. default: true
  36736. },
  36737. ]
  36738. ))
  36739. characterMakers.push(() => makeCharacter(
  36740. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  36741. {
  36742. frontMaid: {
  36743. height: math.unit(5 + 5/12, "feet"),
  36744. weight: math.unit(130, "lb"),
  36745. name: "Front (Maid)",
  36746. image: {
  36747. source: "./media/characters/midnight-tales/front-maid.svg",
  36748. extra: 489/454,
  36749. bottom: 61/550
  36750. }
  36751. },
  36752. frontFormal: {
  36753. height: math.unit(5 + 5/12, "feet"),
  36754. weight: math.unit(130, "lb"),
  36755. name: "Front (Formal)",
  36756. image: {
  36757. source: "./media/characters/midnight-tales/front-formal.svg",
  36758. extra: 489/454,
  36759. bottom: 61/550
  36760. }
  36761. },
  36762. back: {
  36763. height: math.unit(5 + 5/12, "feet"),
  36764. weight: math.unit(130, "lb"),
  36765. name: "Back",
  36766. image: {
  36767. source: "./media/characters/midnight-tales/back.svg",
  36768. extra: 498/456,
  36769. bottom: 33/531
  36770. }
  36771. },
  36772. frontBeast: {
  36773. height: math.unit(40, "feet"),
  36774. weight: math.unit(64000, "lb"),
  36775. name: "Front (Beast)",
  36776. image: {
  36777. source: "./media/characters/midnight-tales/front-beast.svg",
  36778. extra: 927/860,
  36779. bottom: 53/980
  36780. }
  36781. },
  36782. backBeast: {
  36783. height: math.unit(40, "feet"),
  36784. weight: math.unit(64000, "lb"),
  36785. name: "Back (Beast)",
  36786. image: {
  36787. source: "./media/characters/midnight-tales/back-beast.svg",
  36788. extra: 929/855,
  36789. bottom: 16/945
  36790. }
  36791. },
  36792. footBeast: {
  36793. height: math.unit(6.7, "feet"),
  36794. name: "Foot (Beast)",
  36795. image: {
  36796. source: "./media/characters/midnight-tales/foot-beast.svg"
  36797. }
  36798. },
  36799. headBeast: {
  36800. height: math.unit(8, "feet"),
  36801. name: "Head (Beast)",
  36802. image: {
  36803. source: "./media/characters/midnight-tales/head-beast.svg"
  36804. }
  36805. },
  36806. },
  36807. [
  36808. {
  36809. name: "Normal",
  36810. height: math.unit(5 + 5 / 12, "feet"),
  36811. default: true
  36812. },
  36813. {
  36814. name: "Macro",
  36815. height: math.unit(25, "feet")
  36816. },
  36817. ]
  36818. ))
  36819. characterMakers.push(() => makeCharacter(
  36820. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36821. {
  36822. front: {
  36823. height: math.unit(5 + 10/12, "feet"),
  36824. name: "Front",
  36825. image: {
  36826. source: "./media/characters/argon/front.svg",
  36827. extra: 2009/1935,
  36828. bottom: 118/2127
  36829. }
  36830. },
  36831. back: {
  36832. height: math.unit(5 + 10/12, "feet"),
  36833. name: "Back",
  36834. image: {
  36835. source: "./media/characters/argon/back.svg",
  36836. extra: 2047/1992,
  36837. bottom: 20/2067
  36838. }
  36839. },
  36840. frontDressed: {
  36841. height: math.unit(5 + 10/12, "feet"),
  36842. name: "Front (Dressed)",
  36843. image: {
  36844. source: "./media/characters/argon/front-dressed.svg",
  36845. extra: 2009/1935,
  36846. bottom: 118/2127
  36847. }
  36848. },
  36849. },
  36850. [
  36851. {
  36852. name: "Normal",
  36853. height: math.unit(5 + 10/12, "feet"),
  36854. default: true
  36855. },
  36856. ]
  36857. ))
  36858. characterMakers.push(() => makeCharacter(
  36859. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  36860. {
  36861. front: {
  36862. height: math.unit(8 + 6/12, "feet"),
  36863. weight: math.unit(1150, "lb"),
  36864. name: "Front",
  36865. image: {
  36866. source: "./media/characters/kichi/front.svg",
  36867. extra: 1267/1164,
  36868. bottom: 61/1328
  36869. }
  36870. },
  36871. back: {
  36872. height: math.unit(8 + 6/12, "feet"),
  36873. weight: math.unit(1150, "lb"),
  36874. name: "Back",
  36875. image: {
  36876. source: "./media/characters/kichi/back.svg",
  36877. extra: 1273/1166,
  36878. bottom: 33/1306
  36879. }
  36880. },
  36881. },
  36882. [
  36883. {
  36884. name: "Normal",
  36885. height: math.unit(8 + 6/12, "feet"),
  36886. default: true
  36887. },
  36888. ]
  36889. ))
  36890. characterMakers.push(() => makeCharacter(
  36891. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36892. {
  36893. front: {
  36894. height: math.unit(6, "feet"),
  36895. weight: math.unit(210, "lb"),
  36896. name: "Front",
  36897. image: {
  36898. source: "./media/characters/manetel-greyscale/front.svg",
  36899. extra: 350/312,
  36900. bottom: 8/358
  36901. }
  36902. },
  36903. },
  36904. [
  36905. {
  36906. name: "Micro",
  36907. height: math.unit(2, "inches")
  36908. },
  36909. {
  36910. name: "Normal",
  36911. height: math.unit(6, "feet"),
  36912. default: true
  36913. },
  36914. {
  36915. name: "Minimacro",
  36916. height: math.unit(17, "feet")
  36917. },
  36918. {
  36919. name: "Macro",
  36920. height: math.unit(117, "feet")
  36921. },
  36922. ]
  36923. ))
  36924. characterMakers.push(() => makeCharacter(
  36925. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36926. {
  36927. side: {
  36928. height: math.unit(5 + 1/12, "feet"),
  36929. weight: math.unit(418, "lb"),
  36930. name: "Side",
  36931. image: {
  36932. source: "./media/characters/softpurr/side.svg",
  36933. extra: 1993/1945,
  36934. bottom: 134/2127
  36935. }
  36936. },
  36937. front: {
  36938. height: math.unit(5 + 1/12, "feet"),
  36939. weight: math.unit(418, "lb"),
  36940. name: "Front",
  36941. image: {
  36942. source: "./media/characters/softpurr/front.svg",
  36943. extra: 1950/1856,
  36944. bottom: 174/2124
  36945. }
  36946. },
  36947. paw: {
  36948. height: math.unit(1, "feet"),
  36949. name: "Paw",
  36950. image: {
  36951. source: "./media/characters/softpurr/paw.svg"
  36952. }
  36953. },
  36954. },
  36955. [
  36956. {
  36957. name: "Normal",
  36958. height: math.unit(5 + 1/12, "feet"),
  36959. default: true
  36960. },
  36961. ]
  36962. ))
  36963. characterMakers.push(() => makeCharacter(
  36964. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36965. {
  36966. front: {
  36967. height: math.unit(260, "meters"),
  36968. name: "Front",
  36969. image: {
  36970. source: "./media/characters/anahita/front.svg",
  36971. extra: 665/635,
  36972. bottom: 89/754
  36973. }
  36974. },
  36975. },
  36976. [
  36977. {
  36978. name: "Macro",
  36979. height: math.unit(260, "meters"),
  36980. default: true
  36981. },
  36982. ]
  36983. ))
  36984. characterMakers.push(() => makeCharacter(
  36985. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36986. {
  36987. front: {
  36988. height: math.unit(4 + 10/12, "feet"),
  36989. weight: math.unit(160, "lb"),
  36990. name: "Front",
  36991. image: {
  36992. source: "./media/characters/chip-mouse/front.svg",
  36993. extra: 3528/3408,
  36994. bottom: 0/3528
  36995. }
  36996. },
  36997. frontNsfw: {
  36998. height: math.unit(4 + 10/12, "feet"),
  36999. weight: math.unit(160, "lb"),
  37000. name: "Front (NSFW)",
  37001. image: {
  37002. source: "./media/characters/chip-mouse/front-nsfw.svg",
  37003. extra: 3528/3408,
  37004. bottom: 0/3528
  37005. }
  37006. },
  37007. },
  37008. [
  37009. {
  37010. name: "Normal",
  37011. height: math.unit(4 + 10/12, "feet"),
  37012. default: true
  37013. },
  37014. ]
  37015. ))
  37016. characterMakers.push(() => makeCharacter(
  37017. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  37018. {
  37019. side: {
  37020. height: math.unit(10, "feet"),
  37021. weight: math.unit(14000, "lb"),
  37022. name: "Side",
  37023. image: {
  37024. source: "./media/characters/kremm/side.svg",
  37025. extra: 1390/1053,
  37026. bottom: 90/1480
  37027. }
  37028. },
  37029. gut: {
  37030. height: math.unit(5.8, "feet"),
  37031. name: "Gut",
  37032. image: {
  37033. source: "./media/characters/kremm/gut.svg"
  37034. }
  37035. },
  37036. ass: {
  37037. height: math.unit(6.1, "feet"),
  37038. name: "Ass",
  37039. image: {
  37040. source: "./media/characters/kremm/ass.svg"
  37041. }
  37042. },
  37043. jaws: {
  37044. height: math.unit(2.2, "feet"),
  37045. name: "Jaws",
  37046. image: {
  37047. source: "./media/characters/kremm/jaws.svg"
  37048. }
  37049. },
  37050. dick: {
  37051. height: math.unit(4.26, "feet"),
  37052. name: "Dick",
  37053. image: {
  37054. source: "./media/characters/kremm/dick.svg"
  37055. }
  37056. },
  37057. },
  37058. [
  37059. {
  37060. name: "Normal",
  37061. height: math.unit(10, "feet"),
  37062. default: true
  37063. },
  37064. ]
  37065. ))
  37066. characterMakers.push(() => makeCharacter(
  37067. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  37068. {
  37069. front: {
  37070. height: math.unit(30, "stories"),
  37071. name: "Front",
  37072. image: {
  37073. source: "./media/characters/kai/front.svg",
  37074. extra: 1892/1718,
  37075. bottom: 162/2054
  37076. }
  37077. },
  37078. },
  37079. [
  37080. {
  37081. name: "Macro",
  37082. height: math.unit(30, "stories"),
  37083. default: true
  37084. },
  37085. ]
  37086. ))
  37087. characterMakers.push(() => makeCharacter(
  37088. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  37089. {
  37090. front: {
  37091. height: math.unit(6 + 4/12, "feet"),
  37092. weight: math.unit(145, "lb"),
  37093. name: "Front",
  37094. image: {
  37095. source: "./media/characters/sykes/front.svg",
  37096. extra: 1321 / 1187,
  37097. bottom: 66 / 1387
  37098. }
  37099. },
  37100. back: {
  37101. height: math.unit(6 + 4/12, "feet"),
  37102. weight: math.unit(145, "lb"),
  37103. name: "Back",
  37104. image: {
  37105. source: "./media/characters/sykes/back.svg",
  37106. extra: 1326/1181,
  37107. bottom: 31/1357
  37108. }
  37109. },
  37110. traditionalOutfit: {
  37111. height: math.unit(6 + 4/12, "feet"),
  37112. weight: math.unit(145, "lb"),
  37113. name: "Traditional Outfit",
  37114. image: {
  37115. source: "./media/characters/sykes/traditional-outfit.svg",
  37116. extra: 1321 / 1187,
  37117. bottom: 66 / 1387
  37118. }
  37119. },
  37120. adventureOutfit: {
  37121. height: math.unit(6 + 4/12, "feet"),
  37122. weight: math.unit(145, "lb"),
  37123. name: "Adventure Outfit",
  37124. image: {
  37125. source: "./media/characters/sykes/adventure-outfit.svg",
  37126. extra: 1321 / 1187,
  37127. bottom: 66 / 1387
  37128. }
  37129. },
  37130. handLeft: {
  37131. height: math.unit(0.9, "feet"),
  37132. name: "Hand (Left)",
  37133. image: {
  37134. source: "./media/characters/sykes/hand-left.svg"
  37135. }
  37136. },
  37137. handRight: {
  37138. height: math.unit(0.839, "feet"),
  37139. name: "Hand (Right)",
  37140. image: {
  37141. source: "./media/characters/sykes/hand-right.svg"
  37142. }
  37143. },
  37144. leftFoot: {
  37145. height: math.unit(1.2, "feet"),
  37146. name: "Foot (Left)",
  37147. image: {
  37148. source: "./media/characters/sykes/foot-left.svg"
  37149. }
  37150. },
  37151. rightFoot: {
  37152. height: math.unit(1.2, "feet"),
  37153. name: "Foot (Right)",
  37154. image: {
  37155. source: "./media/characters/sykes/foot-right.svg"
  37156. }
  37157. },
  37158. maw: {
  37159. height: math.unit(1.93, "feet"),
  37160. name: "Maw",
  37161. image: {
  37162. source: "./media/characters/sykes/maw.svg"
  37163. }
  37164. },
  37165. teeth: {
  37166. height: math.unit(0.51, "feet"),
  37167. name: "Teeth",
  37168. image: {
  37169. source: "./media/characters/sykes/teeth.svg"
  37170. }
  37171. },
  37172. tongue: {
  37173. height: math.unit(2.13, "feet"),
  37174. name: "Tongue",
  37175. image: {
  37176. source: "./media/characters/sykes/tongue.svg"
  37177. }
  37178. },
  37179. uvula: {
  37180. height: math.unit(0.16, "feet"),
  37181. name: "Uvula",
  37182. image: {
  37183. source: "./media/characters/sykes/uvula.svg"
  37184. }
  37185. },
  37186. collar: {
  37187. height: math.unit(0.287, "feet"),
  37188. name: "Collar",
  37189. image: {
  37190. source: "./media/characters/sykes/collar.svg"
  37191. }
  37192. },
  37193. tail: {
  37194. height: math.unit(3.8, "feet"),
  37195. name: "Tail",
  37196. image: {
  37197. source: "./media/characters/sykes/tail.svg"
  37198. }
  37199. },
  37200. },
  37201. [
  37202. {
  37203. name: "Shrunken",
  37204. height: math.unit(5, "inches")
  37205. },
  37206. {
  37207. name: "Normal",
  37208. height: math.unit(6 + 4 / 12, "feet"),
  37209. default: true
  37210. },
  37211. {
  37212. name: "Big",
  37213. height: math.unit(15, "feet")
  37214. },
  37215. ]
  37216. ))
  37217. characterMakers.push(() => makeCharacter(
  37218. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  37219. {
  37220. front: {
  37221. height: math.unit(5 + 8/12, "feet"),
  37222. weight: math.unit(190, "lb"),
  37223. name: "Front",
  37224. image: {
  37225. source: "./media/characters/oven-otter/front.svg",
  37226. extra: 1809/1740,
  37227. bottom: 181/1990
  37228. }
  37229. },
  37230. back: {
  37231. height: math.unit(5 + 8/12, "feet"),
  37232. weight: math.unit(190, "lb"),
  37233. name: "Back",
  37234. image: {
  37235. source: "./media/characters/oven-otter/back.svg",
  37236. extra: 1709/1635,
  37237. bottom: 118/1827
  37238. }
  37239. },
  37240. hand: {
  37241. height: math.unit(1.07, "feet"),
  37242. name: "Hand",
  37243. image: {
  37244. source: "./media/characters/oven-otter/hand.svg"
  37245. }
  37246. },
  37247. beans: {
  37248. height: math.unit(1.74, "feet"),
  37249. name: "Beans",
  37250. image: {
  37251. source: "./media/characters/oven-otter/beans.svg"
  37252. }
  37253. },
  37254. },
  37255. [
  37256. {
  37257. name: "Micro",
  37258. height: math.unit(0.5, "inches")
  37259. },
  37260. {
  37261. name: "Normal",
  37262. height: math.unit(5 + 8/12, "feet"),
  37263. default: true
  37264. },
  37265. {
  37266. name: "Macro",
  37267. height: math.unit(250, "feet")
  37268. },
  37269. {
  37270. name: "Really High",
  37271. height: math.unit(420, "feet")
  37272. },
  37273. ]
  37274. ))
  37275. characterMakers.push(() => makeCharacter(
  37276. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  37277. {
  37278. front: {
  37279. height: math.unit(5, "meters"),
  37280. weight: math.unit(292000000000000, "kg"),
  37281. name: "Front",
  37282. image: {
  37283. source: "./media/characters/devourer/front.svg",
  37284. extra: 1800/1733,
  37285. bottom: 211/2011
  37286. }
  37287. },
  37288. maw: {
  37289. height: math.unit(1.1, "meter"),
  37290. name: "Maw",
  37291. image: {
  37292. source: "./media/characters/devourer/maw.svg"
  37293. }
  37294. },
  37295. },
  37296. [
  37297. {
  37298. name: "Small",
  37299. height: math.unit(3, "meters")
  37300. },
  37301. {
  37302. name: "Large",
  37303. height: math.unit(5, "meters"),
  37304. default: true
  37305. },
  37306. ]
  37307. ))
  37308. characterMakers.push(() => makeCharacter(
  37309. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  37310. {
  37311. front: {
  37312. height: math.unit(6, "feet"),
  37313. weight: math.unit(400, "lb"),
  37314. name: "Front",
  37315. image: {
  37316. source: "./media/characters/ellarby/front.svg",
  37317. extra: 1909/1763,
  37318. bottom: 80/1989
  37319. }
  37320. },
  37321. back: {
  37322. height: math.unit(6, "feet"),
  37323. weight: math.unit(400, "lb"),
  37324. name: "Back",
  37325. image: {
  37326. source: "./media/characters/ellarby/back.svg",
  37327. extra: 1914/1784,
  37328. bottom: 172/2086
  37329. }
  37330. },
  37331. },
  37332. [
  37333. {
  37334. name: "Mischief",
  37335. height: math.unit(18, "inches")
  37336. },
  37337. {
  37338. name: "Trouble",
  37339. height: math.unit(12, "feet")
  37340. },
  37341. {
  37342. name: "Havoc",
  37343. height: math.unit(200, "feet"),
  37344. default: true
  37345. },
  37346. {
  37347. name: "Pandemonium",
  37348. height: math.unit(1, "mile")
  37349. },
  37350. {
  37351. name: "Catastrophe",
  37352. height: math.unit(100, "miles")
  37353. },
  37354. ]
  37355. ))
  37356. characterMakers.push(() => makeCharacter(
  37357. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  37358. {
  37359. front: {
  37360. height: math.unit(4.7, "meters"),
  37361. weight: math.unit(6500, "kg"),
  37362. name: "Front",
  37363. image: {
  37364. source: "./media/characters/vex/front.svg",
  37365. extra: 1288/1140,
  37366. bottom: 100/1388
  37367. }
  37368. },
  37369. },
  37370. [
  37371. {
  37372. name: "Normal",
  37373. height: math.unit(4.7, "meters"),
  37374. default: true
  37375. },
  37376. ]
  37377. ))
  37378. characterMakers.push(() => makeCharacter(
  37379. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  37380. {
  37381. normal: {
  37382. height: math.unit(6, "feet"),
  37383. weight: math.unit(350, "lb"),
  37384. name: "Normal",
  37385. image: {
  37386. source: "./media/characters/teshy/normal.svg",
  37387. extra: 1795/1735,
  37388. bottom: 16/1811
  37389. }
  37390. },
  37391. monsterFront: {
  37392. height: math.unit(12, "feet"),
  37393. weight: math.unit(4700, "lb"),
  37394. name: "Monster (Front)",
  37395. image: {
  37396. source: "./media/characters/teshy/monster-front.svg",
  37397. extra: 2042/2034,
  37398. bottom: 128/2170
  37399. }
  37400. },
  37401. monsterSide: {
  37402. height: math.unit(12, "feet"),
  37403. weight: math.unit(4700, "lb"),
  37404. name: "Monster (Side)",
  37405. image: {
  37406. source: "./media/characters/teshy/monster-side.svg",
  37407. extra: 2067/2056,
  37408. bottom: 70/2137
  37409. }
  37410. },
  37411. monsterBack: {
  37412. height: math.unit(12, "feet"),
  37413. weight: math.unit(4700, "lb"),
  37414. name: "Monster (Back)",
  37415. image: {
  37416. source: "./media/characters/teshy/monster-back.svg",
  37417. extra: 1921/1914,
  37418. bottom: 171/2092
  37419. }
  37420. },
  37421. },
  37422. [
  37423. {
  37424. name: "Normal",
  37425. height: math.unit(6, "feet"),
  37426. default: true
  37427. },
  37428. ]
  37429. ))
  37430. characterMakers.push(() => makeCharacter(
  37431. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  37432. {
  37433. front: {
  37434. height: math.unit(6, "feet"),
  37435. name: "Front",
  37436. image: {
  37437. source: "./media/characters/ramey/front.svg",
  37438. extra: 790/787,
  37439. bottom: 27/817
  37440. }
  37441. },
  37442. },
  37443. [
  37444. {
  37445. name: "Normal",
  37446. height: math.unit(6, "feet"),
  37447. default: true
  37448. },
  37449. ]
  37450. ))
  37451. characterMakers.push(() => makeCharacter(
  37452. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  37453. {
  37454. front: {
  37455. height: math.unit(5 + 5/12, "feet"),
  37456. weight: math.unit(120, "lb"),
  37457. name: "Front",
  37458. image: {
  37459. source: "./media/characters/phirae/front.svg",
  37460. extra: 2491/2436,
  37461. bottom: 38/2529
  37462. }
  37463. },
  37464. },
  37465. [
  37466. {
  37467. name: "Normal",
  37468. height: math.unit(5 + 5/12, "feet"),
  37469. default: true
  37470. },
  37471. ]
  37472. ))
  37473. characterMakers.push(() => makeCharacter(
  37474. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  37475. {
  37476. front: {
  37477. height: math.unit(5 + 3/12, "feet"),
  37478. name: "Front",
  37479. image: {
  37480. source: "./media/characters/stagglas/front.svg",
  37481. extra: 962/882,
  37482. bottom: 53/1015
  37483. }
  37484. },
  37485. feral: {
  37486. height: math.unit(335, "cm"),
  37487. name: "Feral",
  37488. image: {
  37489. source: "./media/characters/stagglas/feral.svg",
  37490. extra: 1732/1090,
  37491. bottom: 48/1780
  37492. }
  37493. },
  37494. },
  37495. [
  37496. {
  37497. name: "Normal",
  37498. height: math.unit(5 + 3/12, "feet"),
  37499. default: true
  37500. },
  37501. ]
  37502. ))
  37503. characterMakers.push(() => makeCharacter(
  37504. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  37505. {
  37506. front: {
  37507. height: math.unit(5 + 4/12, "feet"),
  37508. weight: math.unit(145, "lb"),
  37509. name: "Front",
  37510. image: {
  37511. source: "./media/characters/starra/front.svg",
  37512. extra: 1790/1691,
  37513. bottom: 91/1881
  37514. }
  37515. },
  37516. },
  37517. [
  37518. {
  37519. name: "Normal",
  37520. height: math.unit(5 + 4/12, "feet"),
  37521. default: true
  37522. },
  37523. ]
  37524. ))
  37525. characterMakers.push(() => makeCharacter(
  37526. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  37527. {
  37528. front: {
  37529. height: math.unit(3.5, "meters"),
  37530. name: "Front",
  37531. image: {
  37532. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  37533. extra: 1248/972,
  37534. bottom: 38/1286
  37535. }
  37536. },
  37537. },
  37538. [
  37539. {
  37540. name: "Normal",
  37541. height: math.unit(3.5, "meters"),
  37542. default: true
  37543. },
  37544. ]
  37545. ))
  37546. characterMakers.push(() => makeCharacter(
  37547. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  37548. {
  37549. side: {
  37550. height: math.unit(8 + 2/12, "feet"),
  37551. weight: math.unit(1240, "lb"),
  37552. name: "Side",
  37553. image: {
  37554. source: "./media/characters/mika-valentine/side.svg",
  37555. extra: 2670/2501,
  37556. bottom: 250/2920
  37557. }
  37558. },
  37559. },
  37560. [
  37561. {
  37562. name: "Normal",
  37563. height: math.unit(8 + 2/12, "feet"),
  37564. default: true
  37565. },
  37566. ]
  37567. ))
  37568. characterMakers.push(() => makeCharacter(
  37569. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  37570. {
  37571. front: {
  37572. height: math.unit(7 + 2/12, "feet"),
  37573. name: "Front",
  37574. image: {
  37575. source: "./media/characters/xoltol/front.svg",
  37576. extra: 2212/2124,
  37577. bottom: 84/2296
  37578. }
  37579. },
  37580. side: {
  37581. height: math.unit(7 + 2/12, "feet"),
  37582. name: "Side",
  37583. image: {
  37584. source: "./media/characters/xoltol/side.svg",
  37585. extra: 2273/2197,
  37586. bottom: 26/2299
  37587. }
  37588. },
  37589. hand: {
  37590. height: math.unit(2.5, "feet"),
  37591. name: "Hand",
  37592. image: {
  37593. source: "./media/characters/xoltol/hand.svg"
  37594. }
  37595. },
  37596. },
  37597. [
  37598. {
  37599. name: "Small-ish",
  37600. height: math.unit(5 + 11/12, "feet")
  37601. },
  37602. {
  37603. name: "Normal",
  37604. height: math.unit(7 + 2/12, "feet")
  37605. },
  37606. {
  37607. name: "\"Macro\"",
  37608. height: math.unit(14 + 9/12, "feet"),
  37609. default: true
  37610. },
  37611. {
  37612. name: "Alternate Height",
  37613. height: math.unit(20, "feet")
  37614. },
  37615. {
  37616. name: "Actually Macro",
  37617. height: math.unit(100, "feet")
  37618. },
  37619. ]
  37620. ))
  37621. characterMakers.push(() => makeCharacter(
  37622. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  37623. {
  37624. front: {
  37625. height: math.unit(5 + 2/12, "feet"),
  37626. weight: math.unit(75, "kg"),
  37627. name: "Front",
  37628. image: {
  37629. source: "./media/characters/kotetsu-redwood/front.svg",
  37630. extra: 1053/942,
  37631. bottom: 60/1113
  37632. }
  37633. },
  37634. },
  37635. [
  37636. {
  37637. name: "Normal",
  37638. height: math.unit(5 + 2/12, "feet"),
  37639. default: true
  37640. },
  37641. ]
  37642. ))
  37643. characterMakers.push(() => makeCharacter(
  37644. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  37645. {
  37646. front: {
  37647. height: math.unit(2.4, "meters"),
  37648. weight: math.unit(125, "kg"),
  37649. name: "Front",
  37650. image: {
  37651. source: "./media/characters/lilith/front.svg",
  37652. extra: 1590/1513,
  37653. bottom: 203/1793
  37654. }
  37655. },
  37656. },
  37657. [
  37658. {
  37659. name: "Humanoid",
  37660. height: math.unit(2.4, "meters")
  37661. },
  37662. {
  37663. name: "Normal",
  37664. height: math.unit(6, "meters"),
  37665. default: true
  37666. },
  37667. {
  37668. name: "Largest",
  37669. height: math.unit(55, "meters")
  37670. },
  37671. ]
  37672. ))
  37673. characterMakers.push(() => makeCharacter(
  37674. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  37675. {
  37676. front: {
  37677. height: math.unit(8 + 4/12, "feet"),
  37678. weight: math.unit(535, "lb"),
  37679. name: "Front",
  37680. image: {
  37681. source: "./media/characters/beh'kah-bolger/front.svg",
  37682. extra: 1660/1603,
  37683. bottom: 37/1697
  37684. }
  37685. },
  37686. },
  37687. [
  37688. {
  37689. name: "Normal",
  37690. height: math.unit(8 + 4/12, "feet"),
  37691. default: true
  37692. },
  37693. {
  37694. name: "Kaiju",
  37695. height: math.unit(250, "feet")
  37696. },
  37697. {
  37698. name: "Still Growing",
  37699. height: math.unit(10, "miles")
  37700. },
  37701. {
  37702. name: "Continental",
  37703. height: math.unit(5000, "miles")
  37704. },
  37705. {
  37706. name: "Final Form",
  37707. height: math.unit(2500000, "miles")
  37708. },
  37709. ]
  37710. ))
  37711. characterMakers.push(() => makeCharacter(
  37712. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  37713. {
  37714. front: {
  37715. height: math.unit(7 + 2/12, "feet"),
  37716. weight: math.unit(230, "kg"),
  37717. name: "Front",
  37718. image: {
  37719. source: "./media/characters/tatyana-milewska/front.svg",
  37720. extra: 1199/1150,
  37721. bottom: 86/1285
  37722. }
  37723. },
  37724. },
  37725. [
  37726. {
  37727. name: "Normal",
  37728. height: math.unit(7 + 2/12, "feet"),
  37729. default: true
  37730. },
  37731. {
  37732. name: "Big",
  37733. height: math.unit(12, "feet")
  37734. },
  37735. {
  37736. name: "Minimacro",
  37737. height: math.unit(20, "feet")
  37738. },
  37739. {
  37740. name: "Macro",
  37741. height: math.unit(120, "feet")
  37742. },
  37743. ]
  37744. ))
  37745. characterMakers.push(() => makeCharacter(
  37746. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  37747. {
  37748. front: {
  37749. height: math.unit(7 + 8/12, "feet"),
  37750. weight: math.unit(152, "kg"),
  37751. name: "Front",
  37752. image: {
  37753. source: "./media/characters/helen-arri/front.svg",
  37754. extra: 440/423,
  37755. bottom: 14/454
  37756. }
  37757. },
  37758. back: {
  37759. height: math.unit(7 + 8/12, "feet"),
  37760. weight: math.unit(152, "kg"),
  37761. name: "Back",
  37762. image: {
  37763. source: "./media/characters/helen-arri/back.svg",
  37764. extra: 443/426,
  37765. bottom: 8/451
  37766. }
  37767. },
  37768. },
  37769. [
  37770. {
  37771. name: "Normal",
  37772. height: math.unit(7 + 8/12, "feet"),
  37773. default: true
  37774. },
  37775. {
  37776. name: "Big",
  37777. height: math.unit(14, "feet")
  37778. },
  37779. {
  37780. name: "Minimacro",
  37781. height: math.unit(24, "feet")
  37782. },
  37783. {
  37784. name: "Macro",
  37785. height: math.unit(140, "feet")
  37786. },
  37787. ]
  37788. ))
  37789. characterMakers.push(() => makeCharacter(
  37790. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  37791. {
  37792. front: {
  37793. height: math.unit(6, "meters"),
  37794. name: "Front",
  37795. image: {
  37796. source: "./media/characters/ehanu-rehu/front.svg",
  37797. extra: 1800/1800,
  37798. bottom: 59/1859
  37799. }
  37800. },
  37801. },
  37802. [
  37803. {
  37804. name: "Normal",
  37805. height: math.unit(6, "meters"),
  37806. default: true
  37807. },
  37808. ]
  37809. ))
  37810. characterMakers.push(() => makeCharacter(
  37811. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  37812. {
  37813. front: {
  37814. height: math.unit(7 + 3/12, "feet"),
  37815. name: "Front",
  37816. image: {
  37817. source: "./media/characters/renholder/front.svg",
  37818. extra: 3096/2960,
  37819. bottom: 250/3346
  37820. }
  37821. },
  37822. },
  37823. [
  37824. {
  37825. name: "Normal Bat",
  37826. height: math.unit(7 + 3/12, "feet"),
  37827. default: true
  37828. },
  37829. {
  37830. name: "Slightly Tall Bat",
  37831. height: math.unit(100, "feet")
  37832. },
  37833. {
  37834. name: "Big Bat",
  37835. height: math.unit(1000, "feet")
  37836. },
  37837. {
  37838. name: "City-Sized Bat",
  37839. height: math.unit(200000, "feet")
  37840. },
  37841. {
  37842. name: "Bigger Bat",
  37843. height: math.unit(10000, "miles")
  37844. },
  37845. {
  37846. name: "Solar Sized Bat",
  37847. height: math.unit(100, "AU")
  37848. },
  37849. {
  37850. name: "Galactic Bat",
  37851. height: math.unit(200000, "lightyears")
  37852. },
  37853. {
  37854. name: "Universally Known Bat",
  37855. height: math.unit(1, "universe")
  37856. },
  37857. ]
  37858. ))
  37859. characterMakers.push(() => makeCharacter(
  37860. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  37861. {
  37862. front: {
  37863. height: math.unit(6 + 11/12, "feet"),
  37864. weight: math.unit(250, "lb"),
  37865. name: "Front",
  37866. image: {
  37867. source: "./media/characters/cookiecat/front.svg",
  37868. extra: 893/827,
  37869. bottom: 14/907
  37870. }
  37871. },
  37872. },
  37873. [
  37874. {
  37875. name: "Micro",
  37876. height: math.unit(3, "inches")
  37877. },
  37878. {
  37879. name: "Normal",
  37880. height: math.unit(6 + 11/12, "feet"),
  37881. default: true
  37882. },
  37883. {
  37884. name: "Macro",
  37885. height: math.unit(100, "feet")
  37886. },
  37887. {
  37888. name: "Macro+",
  37889. height: math.unit(404, "feet")
  37890. },
  37891. {
  37892. name: "Megamacro",
  37893. height: math.unit(165, "miles")
  37894. },
  37895. {
  37896. name: "Planetary",
  37897. height: math.unit(4600, "miles")
  37898. },
  37899. ]
  37900. ))
  37901. characterMakers.push(() => makeCharacter(
  37902. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  37903. {
  37904. front: {
  37905. height: math.unit(10 + 3/12, "feet"),
  37906. weight: math.unit(1500, "lb"),
  37907. name: "Front",
  37908. image: {
  37909. source: "./media/characters/tux-kusanagi/front.svg",
  37910. extra: 944/840,
  37911. bottom: 39/983
  37912. }
  37913. },
  37914. back: {
  37915. height: math.unit(10 + 3/12, "feet"),
  37916. weight: math.unit(1500, "lb"),
  37917. name: "Back",
  37918. image: {
  37919. source: "./media/characters/tux-kusanagi/back.svg",
  37920. extra: 941/842,
  37921. bottom: 28/969
  37922. }
  37923. },
  37924. rump: {
  37925. height: math.unit(5.25, "feet"),
  37926. name: "Rump",
  37927. image: {
  37928. source: "./media/characters/tux-kusanagi/rump.svg"
  37929. }
  37930. },
  37931. beak: {
  37932. height: math.unit(1.54, "feet"),
  37933. name: "Beak",
  37934. image: {
  37935. source: "./media/characters/tux-kusanagi/beak.svg"
  37936. }
  37937. },
  37938. },
  37939. [
  37940. {
  37941. name: "Normal",
  37942. height: math.unit(10 + 3/12, "feet"),
  37943. default: true
  37944. },
  37945. ]
  37946. ))
  37947. characterMakers.push(() => makeCharacter(
  37948. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37949. {
  37950. front: {
  37951. height: math.unit(58, "feet"),
  37952. weight: math.unit(200, "tons"),
  37953. name: "Front",
  37954. image: {
  37955. source: "./media/characters/uzarmazari/front.svg",
  37956. extra: 1575/1455,
  37957. bottom: 152/1727
  37958. }
  37959. },
  37960. back: {
  37961. height: math.unit(58, "feet"),
  37962. weight: math.unit(200, "tons"),
  37963. name: "Back",
  37964. image: {
  37965. source: "./media/characters/uzarmazari/back.svg",
  37966. extra: 1585/1510,
  37967. bottom: 157/1742
  37968. }
  37969. },
  37970. head: {
  37971. height: math.unit(26, "feet"),
  37972. name: "Head",
  37973. image: {
  37974. source: "./media/characters/uzarmazari/head.svg"
  37975. }
  37976. },
  37977. },
  37978. [
  37979. {
  37980. name: "Normal",
  37981. height: math.unit(58, "feet"),
  37982. default: true
  37983. },
  37984. ]
  37985. ))
  37986. characterMakers.push(() => makeCharacter(
  37987. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37988. {
  37989. side: {
  37990. height: math.unit(15, "feet"),
  37991. name: "Side",
  37992. image: {
  37993. source: "./media/characters/akitu/side.svg",
  37994. extra: 1421/1321,
  37995. bottom: 157/1578
  37996. }
  37997. },
  37998. front: {
  37999. height: math.unit(15, "feet"),
  38000. name: "Front",
  38001. image: {
  38002. source: "./media/characters/akitu/front.svg",
  38003. extra: 1435/1326,
  38004. bottom: 232/1667
  38005. }
  38006. },
  38007. },
  38008. [
  38009. {
  38010. name: "Normal",
  38011. height: math.unit(15, "feet"),
  38012. default: true
  38013. },
  38014. ]
  38015. ))
  38016. characterMakers.push(() => makeCharacter(
  38017. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  38018. {
  38019. front: {
  38020. height: math.unit(10 + 8/12, "feet"),
  38021. name: "Front",
  38022. image: {
  38023. source: "./media/characters/azalie-croixland/front.svg",
  38024. extra: 1972/1856,
  38025. bottom: 31/2003
  38026. }
  38027. },
  38028. },
  38029. [
  38030. {
  38031. name: "Original Height",
  38032. height: math.unit(5 + 4/12, "feet")
  38033. },
  38034. {
  38035. name: "Normal Height",
  38036. height: math.unit(10 + 8/12, "feet"),
  38037. default: true
  38038. },
  38039. ]
  38040. ))
  38041. characterMakers.push(() => makeCharacter(
  38042. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  38043. {
  38044. side: {
  38045. height: math.unit(7 + 1/12, "feet"),
  38046. weight: math.unit(245, "lb"),
  38047. name: "Side",
  38048. image: {
  38049. source: "./media/characters/kavus-kazian/side.svg",
  38050. extra: 349/342,
  38051. bottom: 15/364
  38052. }
  38053. },
  38054. },
  38055. [
  38056. {
  38057. name: "Normal",
  38058. height: math.unit(7 + 1/12, "feet"),
  38059. default: true
  38060. },
  38061. ]
  38062. ))
  38063. characterMakers.push(() => makeCharacter(
  38064. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  38065. {
  38066. normalFront: {
  38067. height: math.unit(5 + 11/12, "feet"),
  38068. name: "Front",
  38069. image: {
  38070. source: "./media/characters/moonlight-rose/normal-front.svg",
  38071. extra: 1980/1825,
  38072. bottom: 18/1998
  38073. },
  38074. form: "normal",
  38075. default: true
  38076. },
  38077. normalBack: {
  38078. height: math.unit(5 + 11/12, "feet"),
  38079. name: "Back",
  38080. image: {
  38081. source: "./media/characters/moonlight-rose/normal-back.svg",
  38082. extra: 2010/1839,
  38083. bottom: 10/2020
  38084. },
  38085. form: "normal"
  38086. },
  38087. demonFront: {
  38088. height: math.unit(1.5, "earths"),
  38089. name: "Front",
  38090. image: {
  38091. source: "./media/characters/moonlight-rose/demon.svg",
  38092. extra: 1400/1294,
  38093. bottom: 45/1445
  38094. },
  38095. form: "demon",
  38096. default: true
  38097. },
  38098. terraFront: {
  38099. height: math.unit(1.5, "earths"),
  38100. name: "Front",
  38101. image: {
  38102. source: "./media/characters/moonlight-rose/terra.svg"
  38103. },
  38104. form: "terra",
  38105. default: true
  38106. },
  38107. jupiterFront: {
  38108. height: math.unit(69911*2, "km"),
  38109. name: "Front",
  38110. image: {
  38111. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  38112. extra: 1367/1286,
  38113. bottom: 55/1422
  38114. },
  38115. form: "jupiter",
  38116. default: true
  38117. },
  38118. neptuneFront: {
  38119. height: math.unit(24622*2, "feet"),
  38120. name: "Front",
  38121. image: {
  38122. source: "./media/characters/moonlight-rose/neptune-front.svg",
  38123. extra: 1851/1712,
  38124. bottom: 0/1851
  38125. },
  38126. form: "neptune",
  38127. default: true
  38128. },
  38129. },
  38130. [
  38131. {
  38132. name: "\"Natural\" Height",
  38133. height: math.unit(5 + 11/12, "feet"),
  38134. form: "normal"
  38135. },
  38136. {
  38137. name: "Smallest comfortable size",
  38138. height: math.unit(40, "meters"),
  38139. form: "normal"
  38140. },
  38141. {
  38142. name: "Common size",
  38143. height: math.unit(50, "km"),
  38144. form: "normal",
  38145. default: true
  38146. },
  38147. {
  38148. name: "Normal",
  38149. height: math.unit(1.5, "earths"),
  38150. form: "demon",
  38151. default: true
  38152. },
  38153. {
  38154. name: "Universal",
  38155. height: math.unit(15, "universes"),
  38156. form: "demon"
  38157. },
  38158. {
  38159. name: "Earth",
  38160. height: math.unit(1.5, "earths"),
  38161. form: "terra",
  38162. default: true
  38163. },
  38164. {
  38165. name: "Super Earth",
  38166. height: math.unit(67.5, "earths"),
  38167. form: "terra"
  38168. },
  38169. {
  38170. name: "Doesn't fit in a solar system...",
  38171. height: math.unit(1, "galaxy"),
  38172. form: "terra"
  38173. },
  38174. {
  38175. name: "Saturn",
  38176. height: math.unit(58232*2, "km"),
  38177. form: "jupiter"
  38178. },
  38179. {
  38180. name: "Jupiter",
  38181. height: math.unit(69911*2, "km"),
  38182. form: "jupiter",
  38183. default: true
  38184. },
  38185. {
  38186. name: "HD 100546 b",
  38187. height: math.unit(482938, "km"),
  38188. form: "jupiter"
  38189. },
  38190. {
  38191. name: "Enceladus",
  38192. height: math.unit(513*2, "km"),
  38193. form: "neptune"
  38194. },
  38195. {
  38196. name: "Europe",
  38197. height: math.unit(1560*2, "km"),
  38198. form: "neptune"
  38199. },
  38200. {
  38201. name: "Neptune",
  38202. height: math.unit(24622*2, "km"),
  38203. form: "neptune",
  38204. default: true
  38205. },
  38206. {
  38207. name: "CoRoT-9b",
  38208. height: math.unit(75067*2, "km"),
  38209. form: "neptune"
  38210. },
  38211. ],
  38212. {
  38213. "normal": {
  38214. name: "Normal",
  38215. default: true
  38216. },
  38217. "demon": {
  38218. name: "Demon"
  38219. },
  38220. "terra": {
  38221. name: "Terra"
  38222. },
  38223. "jupiter": {
  38224. name: "Jupiter"
  38225. },
  38226. "neptune": {
  38227. name: "Neptune"
  38228. }
  38229. }
  38230. ))
  38231. characterMakers.push(() => makeCharacter(
  38232. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  38233. {
  38234. front: {
  38235. height: math.unit(16, "feet"),
  38236. weight: math.unit(610, "kg"),
  38237. name: "Front",
  38238. image: {
  38239. source: "./media/characters/huckle/front.svg",
  38240. extra: 1731/1625,
  38241. bottom: 33/1764
  38242. }
  38243. },
  38244. back: {
  38245. height: math.unit(16, "feet"),
  38246. weight: math.unit(610, "kg"),
  38247. name: "Back",
  38248. image: {
  38249. source: "./media/characters/huckle/back.svg",
  38250. extra: 1738/1651,
  38251. bottom: 37/1775
  38252. }
  38253. },
  38254. laughing: {
  38255. height: math.unit(3.75, "feet"),
  38256. name: "Laughing",
  38257. image: {
  38258. source: "./media/characters/huckle/laughing.svg"
  38259. }
  38260. },
  38261. angry: {
  38262. height: math.unit(4.15, "feet"),
  38263. name: "Angry",
  38264. image: {
  38265. source: "./media/characters/huckle/angry.svg"
  38266. }
  38267. },
  38268. },
  38269. [
  38270. {
  38271. name: "Normal",
  38272. height: math.unit(16, "feet"),
  38273. default: true
  38274. },
  38275. {
  38276. name: "Mini Macro",
  38277. height: math.unit(463, "feet")
  38278. },
  38279. {
  38280. name: "Macro",
  38281. height: math.unit(1680, "meters")
  38282. },
  38283. {
  38284. name: "Mega Macro",
  38285. height: math.unit(175, "km")
  38286. },
  38287. {
  38288. name: "Terra Macro",
  38289. height: math.unit(32, "gigameters")
  38290. },
  38291. {
  38292. name: "Multiverse+",
  38293. height: math.unit(2.56e23, "yottameters")
  38294. },
  38295. ]
  38296. ))
  38297. characterMakers.push(() => makeCharacter(
  38298. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  38299. {
  38300. front: {
  38301. height: math.unit(6 + 9/12, "feet"),
  38302. weight: math.unit(280, "lb"),
  38303. name: "Front",
  38304. image: {
  38305. source: "./media/characters/candy/front.svg",
  38306. extra: 234/217,
  38307. bottom: 11/245
  38308. }
  38309. },
  38310. },
  38311. [
  38312. {
  38313. name: "Really Small",
  38314. height: math.unit(0.1, "nm")
  38315. },
  38316. {
  38317. name: "Micro",
  38318. height: math.unit(2, "inches")
  38319. },
  38320. {
  38321. name: "Normal",
  38322. height: math.unit(6 + 9/12, "feet"),
  38323. default: true
  38324. },
  38325. {
  38326. name: "Small Macro",
  38327. height: math.unit(69, "feet")
  38328. },
  38329. {
  38330. name: "Macro",
  38331. height: math.unit(160, "feet")
  38332. },
  38333. {
  38334. name: "Megamacro",
  38335. height: math.unit(22000, "miles")
  38336. },
  38337. {
  38338. name: "Gigamacro",
  38339. height: math.unit(50000, "miles")
  38340. },
  38341. ]
  38342. ))
  38343. characterMakers.push(() => makeCharacter(
  38344. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  38345. {
  38346. front: {
  38347. height: math.unit(4, "feet"),
  38348. weight: math.unit(90, "lb"),
  38349. name: "Front",
  38350. image: {
  38351. source: "./media/characters/joey-mcdonald/front.svg",
  38352. extra: 1059/852,
  38353. bottom: 33/1092
  38354. }
  38355. },
  38356. back: {
  38357. height: math.unit(4, "feet"),
  38358. weight: math.unit(90, "lb"),
  38359. name: "Back",
  38360. image: {
  38361. source: "./media/characters/joey-mcdonald/back.svg",
  38362. extra: 1077/879,
  38363. bottom: 5/1082
  38364. }
  38365. },
  38366. frontKobold: {
  38367. height: math.unit(4, "feet"),
  38368. weight: math.unit(100, "lb"),
  38369. name: "Front-kobold",
  38370. image: {
  38371. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  38372. extra: 1480/1367,
  38373. bottom: 0/1480
  38374. }
  38375. },
  38376. backKobold: {
  38377. height: math.unit(4, "feet"),
  38378. weight: math.unit(100, "lb"),
  38379. name: "Back-kobold",
  38380. image: {
  38381. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  38382. extra: 1449/1361,
  38383. bottom: 0/1449
  38384. }
  38385. },
  38386. },
  38387. [
  38388. {
  38389. name: "Normal",
  38390. height: math.unit(4, "feet"),
  38391. default: true
  38392. },
  38393. ]
  38394. ))
  38395. characterMakers.push(() => makeCharacter(
  38396. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  38397. {
  38398. front: {
  38399. height: math.unit(12 + 6/12, "feet"),
  38400. name: "Front",
  38401. image: {
  38402. source: "./media/characters/kass-lockheed/front.svg",
  38403. extra: 354/343,
  38404. bottom: 9/363
  38405. }
  38406. },
  38407. back: {
  38408. height: math.unit(12 + 6/12, "feet"),
  38409. name: "Back",
  38410. image: {
  38411. source: "./media/characters/kass-lockheed/back.svg",
  38412. extra: 364/352,
  38413. bottom: 3/367
  38414. }
  38415. },
  38416. dick: {
  38417. height: math.unit(3.12, "feet"),
  38418. name: "Dick",
  38419. image: {
  38420. source: "./media/characters/kass-lockheed/dick.svg"
  38421. }
  38422. },
  38423. head: {
  38424. height: math.unit(2.6, "feet"),
  38425. name: "Head",
  38426. image: {
  38427. source: "./media/characters/kass-lockheed/head.svg"
  38428. }
  38429. },
  38430. bleh: {
  38431. height: math.unit(2.85, "feet"),
  38432. name: "Bleh",
  38433. image: {
  38434. source: "./media/characters/kass-lockheed/bleh.svg"
  38435. }
  38436. },
  38437. smug: {
  38438. height: math.unit(2.85, "feet"),
  38439. name: "Smug",
  38440. image: {
  38441. source: "./media/characters/kass-lockheed/smug.svg"
  38442. }
  38443. },
  38444. },
  38445. [
  38446. {
  38447. name: "Normal",
  38448. height: math.unit(12 + 6/12, "feet"),
  38449. default: true
  38450. },
  38451. ]
  38452. ))
  38453. characterMakers.push(() => makeCharacter(
  38454. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  38455. {
  38456. front: {
  38457. height: math.unit(6 + 2/12, "feet"),
  38458. name: "Front",
  38459. image: {
  38460. source: "./media/characters/taylor/front.svg",
  38461. extra: 639/495,
  38462. bottom: 12/651
  38463. }
  38464. },
  38465. },
  38466. [
  38467. {
  38468. name: "Normal",
  38469. height: math.unit(6 + 2/12, "feet"),
  38470. default: true
  38471. },
  38472. {
  38473. name: "Big",
  38474. height: math.unit(15, "feet")
  38475. },
  38476. {
  38477. name: "Lorg",
  38478. height: math.unit(80, "feet")
  38479. },
  38480. {
  38481. name: "Too Lorg",
  38482. height: math.unit(120, "feet")
  38483. },
  38484. ]
  38485. ))
  38486. characterMakers.push(() => makeCharacter(
  38487. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  38488. {
  38489. front: {
  38490. height: math.unit(15, "feet"),
  38491. name: "Front",
  38492. image: {
  38493. source: "./media/characters/kaizer/front.svg",
  38494. extra: 1612/1436,
  38495. bottom: 43/1655
  38496. }
  38497. },
  38498. },
  38499. [
  38500. {
  38501. name: "Normal",
  38502. height: math.unit(15, "feet"),
  38503. default: true
  38504. },
  38505. ]
  38506. ))
  38507. characterMakers.push(() => makeCharacter(
  38508. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  38509. {
  38510. front: {
  38511. height: math.unit(2, "feet"),
  38512. weight: math.unit(30, "lb"),
  38513. name: "Front",
  38514. image: {
  38515. source: "./media/characters/sandy/front.svg",
  38516. extra: 1439/1307,
  38517. bottom: 194/1633
  38518. }
  38519. },
  38520. },
  38521. [
  38522. {
  38523. name: "Normal",
  38524. height: math.unit(2, "feet"),
  38525. default: true
  38526. },
  38527. ]
  38528. ))
  38529. characterMakers.push(() => makeCharacter(
  38530. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  38531. {
  38532. front: {
  38533. height: math.unit(3, "feet"),
  38534. name: "Front",
  38535. image: {
  38536. source: "./media/characters/mellvi/front.svg",
  38537. extra: 1831/1630,
  38538. bottom: 58/1889
  38539. }
  38540. },
  38541. },
  38542. [
  38543. {
  38544. name: "Normal",
  38545. height: math.unit(3, "feet"),
  38546. default: true
  38547. },
  38548. ]
  38549. ))
  38550. characterMakers.push(() => makeCharacter(
  38551. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  38552. {
  38553. front: {
  38554. height: math.unit(5 + 11/12, "feet"),
  38555. weight: math.unit(200, "lb"),
  38556. name: "Front",
  38557. image: {
  38558. source: "./media/characters/shirou/front.svg",
  38559. extra: 2491/2383,
  38560. bottom: 189/2680
  38561. }
  38562. },
  38563. back: {
  38564. height: math.unit(5 + 11/12, "feet"),
  38565. weight: math.unit(200, "lb"),
  38566. name: "Back",
  38567. image: {
  38568. source: "./media/characters/shirou/back.svg",
  38569. extra: 2554/2450,
  38570. bottom: 76/2630
  38571. }
  38572. },
  38573. },
  38574. [
  38575. {
  38576. name: "Normal",
  38577. height: math.unit(5 + 11/12, "feet"),
  38578. default: true
  38579. },
  38580. ]
  38581. ))
  38582. characterMakers.push(() => makeCharacter(
  38583. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  38584. {
  38585. front: {
  38586. height: math.unit(6 + 3/12, "feet"),
  38587. weight: math.unit(177, "lb"),
  38588. name: "Front",
  38589. image: {
  38590. source: "./media/characters/noryu/front.svg",
  38591. extra: 973/885,
  38592. bottom: 10/983
  38593. }
  38594. },
  38595. },
  38596. [
  38597. {
  38598. name: "Normal",
  38599. height: math.unit(6 + 3/12, "feet"),
  38600. default: true
  38601. },
  38602. ]
  38603. ))
  38604. characterMakers.push(() => makeCharacter(
  38605. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  38606. {
  38607. front: {
  38608. height: math.unit(5 + 6/12, "feet"),
  38609. weight: math.unit(170, "lb"),
  38610. name: "Front",
  38611. image: {
  38612. source: "./media/characters/mevolas-rubenido/front.svg",
  38613. extra: 2109/1901,
  38614. bottom: 96/2205
  38615. }
  38616. },
  38617. },
  38618. [
  38619. {
  38620. name: "Normal",
  38621. height: math.unit(5 + 6/12, "feet"),
  38622. default: true
  38623. },
  38624. ]
  38625. ))
  38626. characterMakers.push(() => makeCharacter(
  38627. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  38628. {
  38629. front: {
  38630. height: math.unit(100, "feet"),
  38631. name: "Front",
  38632. image: {
  38633. source: "./media/characters/dee/front.svg",
  38634. extra: 2153/2036,
  38635. bottom: 59/2212
  38636. }
  38637. },
  38638. back: {
  38639. height: math.unit(100, "feet"),
  38640. name: "Back",
  38641. image: {
  38642. source: "./media/characters/dee/back.svg",
  38643. extra: 2183/2058,
  38644. bottom: 75/2258
  38645. }
  38646. },
  38647. foot: {
  38648. height: math.unit(19.43, "feet"),
  38649. name: "Foot",
  38650. image: {
  38651. source: "./media/characters/dee/foot.svg"
  38652. }
  38653. },
  38654. hoof: {
  38655. height: math.unit(20.6, "feet"),
  38656. name: "Hoof",
  38657. image: {
  38658. source: "./media/characters/dee/hoof.svg"
  38659. }
  38660. },
  38661. },
  38662. [
  38663. {
  38664. name: "Macro",
  38665. height: math.unit(100, "feet"),
  38666. default: true
  38667. },
  38668. ]
  38669. ))
  38670. characterMakers.push(() => makeCharacter(
  38671. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  38672. {
  38673. front: {
  38674. height: math.unit(5 + 6/12, "feet"),
  38675. name: "Front",
  38676. image: {
  38677. source: "./media/characters/teh/front.svg",
  38678. extra: 1002/847,
  38679. bottom: 62/1064
  38680. }
  38681. },
  38682. },
  38683. [
  38684. {
  38685. name: "Normal",
  38686. height: math.unit(5 + 6/12, "feet"),
  38687. default: true
  38688. },
  38689. ]
  38690. ))
  38691. characterMakers.push(() => makeCharacter(
  38692. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  38693. {
  38694. side: {
  38695. height: math.unit(6 + 1/12, "feet"),
  38696. weight: math.unit(204, "lb"),
  38697. name: "Side",
  38698. image: {
  38699. source: "./media/characters/quicksilver-ayukoti/side.svg",
  38700. extra: 974/775,
  38701. bottom: 169/1143
  38702. }
  38703. },
  38704. sitting: {
  38705. height: math.unit(6 + 2/12, "feet"),
  38706. weight: math.unit(204, "lb"),
  38707. name: "Sitting",
  38708. image: {
  38709. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  38710. extra: 1175/964,
  38711. bottom: 378/1553
  38712. }
  38713. },
  38714. },
  38715. [
  38716. {
  38717. name: "Normal",
  38718. height: math.unit(6 + 1/12, "feet"),
  38719. default: true
  38720. },
  38721. ]
  38722. ))
  38723. characterMakers.push(() => makeCharacter(
  38724. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  38725. {
  38726. front: {
  38727. height: math.unit(6, "inches"),
  38728. name: "Front",
  38729. image: {
  38730. source: "./media/characters/tululi/front.svg",
  38731. extra: 1997/1876,
  38732. bottom: 20/2017
  38733. }
  38734. },
  38735. },
  38736. [
  38737. {
  38738. name: "Normal",
  38739. height: math.unit(6, "inches"),
  38740. default: true
  38741. },
  38742. ]
  38743. ))
  38744. characterMakers.push(() => makeCharacter(
  38745. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  38746. {
  38747. front: {
  38748. height: math.unit(4 + 1/12, "feet"),
  38749. name: "Front",
  38750. image: {
  38751. source: "./media/characters/star/front.svg",
  38752. extra: 1493/1189,
  38753. bottom: 48/1541
  38754. }
  38755. },
  38756. },
  38757. [
  38758. {
  38759. name: "Normal",
  38760. height: math.unit(4 + 1/12, "feet"),
  38761. default: true
  38762. },
  38763. ]
  38764. ))
  38765. characterMakers.push(() => makeCharacter(
  38766. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  38767. {
  38768. front: {
  38769. height: math.unit(6 + 3/12, "feet"),
  38770. name: "Front",
  38771. image: {
  38772. source: "./media/characters/comet/front.svg",
  38773. extra: 1681/1462,
  38774. bottom: 26/1707
  38775. }
  38776. },
  38777. },
  38778. [
  38779. {
  38780. name: "Normal",
  38781. height: math.unit(6 + 3/12, "feet"),
  38782. default: true
  38783. },
  38784. ]
  38785. ))
  38786. characterMakers.push(() => makeCharacter(
  38787. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  38788. {
  38789. front: {
  38790. height: math.unit(950, "feet"),
  38791. name: "Front",
  38792. image: {
  38793. source: "./media/characters/vortex/front.svg",
  38794. extra: 1497/1434,
  38795. bottom: 56/1553
  38796. }
  38797. },
  38798. maw: {
  38799. height: math.unit(285, "feet"),
  38800. name: "Maw",
  38801. image: {
  38802. source: "./media/characters/vortex/maw.svg"
  38803. }
  38804. },
  38805. },
  38806. [
  38807. {
  38808. name: "Macro",
  38809. height: math.unit(950, "feet"),
  38810. default: true
  38811. },
  38812. ]
  38813. ))
  38814. characterMakers.push(() => makeCharacter(
  38815. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  38816. {
  38817. front: {
  38818. height: math.unit(600, "feet"),
  38819. weight: math.unit(0.02, "grams"),
  38820. name: "Front",
  38821. image: {
  38822. source: "./media/characters/doodle/front.svg",
  38823. extra: 1578/1413,
  38824. bottom: 37/1615
  38825. }
  38826. },
  38827. },
  38828. [
  38829. {
  38830. name: "Macro",
  38831. height: math.unit(600, "feet"),
  38832. default: true
  38833. },
  38834. ]
  38835. ))
  38836. characterMakers.push(() => makeCharacter(
  38837. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  38838. {
  38839. front: {
  38840. height: math.unit(6 + 6/12, "feet"),
  38841. name: "Front",
  38842. image: {
  38843. source: "./media/characters/jai/front.svg",
  38844. extra: 1645/1534,
  38845. bottom: 115/1760
  38846. }
  38847. },
  38848. },
  38849. [
  38850. {
  38851. name: "Normal",
  38852. height: math.unit(6 + 6/12, "feet"),
  38853. default: true
  38854. },
  38855. ]
  38856. ))
  38857. characterMakers.push(() => makeCharacter(
  38858. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  38859. {
  38860. front: {
  38861. height: math.unit(6 + 8/12, "feet"),
  38862. name: "Front",
  38863. image: {
  38864. source: "./media/characters/pixel/front.svg",
  38865. extra: 1900/1735,
  38866. bottom: 63/1963
  38867. }
  38868. },
  38869. },
  38870. [
  38871. {
  38872. name: "Normal",
  38873. height: math.unit(6 + 8/12, "feet"),
  38874. default: true
  38875. },
  38876. ]
  38877. ))
  38878. characterMakers.push(() => makeCharacter(
  38879. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38880. {
  38881. back: {
  38882. height: math.unit(4 + 1/12, "feet"),
  38883. weight: math.unit(75, "lb"),
  38884. name: "Back",
  38885. image: {
  38886. source: "./media/characters/rhett/back.svg",
  38887. extra: 930/878,
  38888. bottom: 25/955
  38889. }
  38890. },
  38891. front: {
  38892. height: math.unit(4 + 1/12, "feet"),
  38893. weight: math.unit(75, "lb"),
  38894. name: "Front",
  38895. image: {
  38896. source: "./media/characters/rhett/front.svg",
  38897. extra: 1682/1586,
  38898. bottom: 92/1774
  38899. }
  38900. },
  38901. },
  38902. [
  38903. {
  38904. name: "Micro",
  38905. height: math.unit(8, "inches")
  38906. },
  38907. {
  38908. name: "Tiny",
  38909. height: math.unit(2, "feet")
  38910. },
  38911. {
  38912. name: "Normal",
  38913. height: math.unit(4 + 1/12, "feet"),
  38914. default: true
  38915. },
  38916. ]
  38917. ))
  38918. characterMakers.push(() => makeCharacter(
  38919. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  38920. {
  38921. front: {
  38922. height: math.unit(3 + 3/12, "feet"),
  38923. name: "Front",
  38924. image: {
  38925. source: "./media/characters/penny/front.svg",
  38926. extra: 1406/1311,
  38927. bottom: 26/1432
  38928. }
  38929. },
  38930. },
  38931. [
  38932. {
  38933. name: "Normal",
  38934. height: math.unit(3 + 3/12, "feet"),
  38935. default: true
  38936. },
  38937. ]
  38938. ))
  38939. characterMakers.push(() => makeCharacter(
  38940. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38941. {
  38942. front: {
  38943. height: math.unit(4 + 11/12, "feet"),
  38944. name: "Front",
  38945. image: {
  38946. source: "./media/characters/monty/front.svg",
  38947. extra: 1479/1209,
  38948. bottom: 0/1479
  38949. }
  38950. },
  38951. },
  38952. [
  38953. {
  38954. name: "Normal",
  38955. height: math.unit(4 + 11/12, "feet"),
  38956. default: true
  38957. },
  38958. ]
  38959. ))
  38960. characterMakers.push(() => makeCharacter(
  38961. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38962. {
  38963. front: {
  38964. height: math.unit(8 + 4/12, "feet"),
  38965. name: "Front",
  38966. image: {
  38967. source: "./media/characters/sterling/front.svg",
  38968. extra: 1420/1236,
  38969. bottom: 27/1447
  38970. }
  38971. },
  38972. },
  38973. [
  38974. {
  38975. name: "Normal",
  38976. height: math.unit(8 + 4/12, "feet"),
  38977. default: true
  38978. },
  38979. ]
  38980. ))
  38981. characterMakers.push(() => makeCharacter(
  38982. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38983. {
  38984. front: {
  38985. height: math.unit(15, "feet"),
  38986. name: "Front",
  38987. image: {
  38988. source: "./media/characters/marble/front.svg",
  38989. extra: 973/937,
  38990. bottom: 32/1005
  38991. }
  38992. },
  38993. },
  38994. [
  38995. {
  38996. name: "Normal",
  38997. height: math.unit(15, "feet"),
  38998. default: true
  38999. },
  39000. ]
  39001. ))
  39002. characterMakers.push(() => makeCharacter(
  39003. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  39004. {
  39005. front: {
  39006. height: math.unit(3, "inches"),
  39007. name: "Front",
  39008. image: {
  39009. source: "./media/characters/powder/front.svg",
  39010. extra: 1504/1334,
  39011. bottom: 518/2022
  39012. }
  39013. },
  39014. },
  39015. [
  39016. {
  39017. name: "Normal",
  39018. height: math.unit(3, "inches"),
  39019. default: true
  39020. },
  39021. ]
  39022. ))
  39023. characterMakers.push(() => makeCharacter(
  39024. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  39025. {
  39026. front: {
  39027. height: math.unit(4 + 5/12, "feet"),
  39028. name: "Front",
  39029. image: {
  39030. source: "./media/characters/joey-raccoon/front.svg",
  39031. extra: 1273/1197,
  39032. bottom: 0/1273
  39033. }
  39034. },
  39035. },
  39036. [
  39037. {
  39038. name: "Normal",
  39039. height: math.unit(4 + 5/12, "feet"),
  39040. default: true
  39041. },
  39042. ]
  39043. ))
  39044. characterMakers.push(() => makeCharacter(
  39045. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  39046. {
  39047. front: {
  39048. height: math.unit(8 + 4/12, "feet"),
  39049. name: "Front",
  39050. image: {
  39051. source: "./media/characters/vick/front.svg",
  39052. extra: 2187/2118,
  39053. bottom: 47/2234
  39054. }
  39055. },
  39056. },
  39057. [
  39058. {
  39059. name: "Normal",
  39060. height: math.unit(8 + 4/12, "feet"),
  39061. default: true
  39062. },
  39063. ]
  39064. ))
  39065. characterMakers.push(() => makeCharacter(
  39066. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  39067. {
  39068. front: {
  39069. height: math.unit(5 + 5/12, "feet"),
  39070. name: "Front",
  39071. image: {
  39072. source: "./media/characters/mitsy/front.svg",
  39073. extra: 1842/1695,
  39074. bottom: 0/1842
  39075. }
  39076. },
  39077. },
  39078. [
  39079. {
  39080. name: "Normal",
  39081. height: math.unit(5 + 5/12, "feet"),
  39082. default: true
  39083. },
  39084. ]
  39085. ))
  39086. characterMakers.push(() => makeCharacter(
  39087. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  39088. {
  39089. front: {
  39090. height: math.unit(6 + 3/12, "feet"),
  39091. name: "Front",
  39092. image: {
  39093. source: "./media/characters/silvy/front.svg",
  39094. extra: 1995/1836,
  39095. bottom: 225/2220
  39096. }
  39097. },
  39098. },
  39099. [
  39100. {
  39101. name: "Normal",
  39102. height: math.unit(6 + 3/12, "feet"),
  39103. default: true
  39104. },
  39105. ]
  39106. ))
  39107. characterMakers.push(() => makeCharacter(
  39108. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  39109. {
  39110. front: {
  39111. height: math.unit(3 + 8/12, "feet"),
  39112. name: "Front",
  39113. image: {
  39114. source: "./media/characters/rodney/front.svg",
  39115. extra: 1956/1747,
  39116. bottom: 31/1987
  39117. }
  39118. },
  39119. frontDressed: {
  39120. height: math.unit(2.9, "feet"),
  39121. name: "Front (Dressed)",
  39122. image: {
  39123. source: "./media/characters/rodney/front-dressed.svg",
  39124. extra: 1382/1241,
  39125. bottom: 385/1767
  39126. }
  39127. },
  39128. },
  39129. [
  39130. {
  39131. name: "Normal",
  39132. height: math.unit(3 + 8/12, "feet"),
  39133. default: true
  39134. },
  39135. ]
  39136. ))
  39137. characterMakers.push(() => makeCharacter(
  39138. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  39139. {
  39140. front: {
  39141. height: math.unit(5 + 9/12, "feet"),
  39142. weight: math.unit(194, "lbs"),
  39143. name: "Front",
  39144. image: {
  39145. source: "./media/characters/zakail-sudekai/front.svg",
  39146. extra: 2696/2533,
  39147. bottom: 248/2944
  39148. }
  39149. },
  39150. maw: {
  39151. height: math.unit(1.35, "feet"),
  39152. name: "Maw",
  39153. image: {
  39154. source: "./media/characters/zakail-sudekai/maw.svg"
  39155. }
  39156. },
  39157. },
  39158. [
  39159. {
  39160. name: "Normal",
  39161. height: math.unit(5 + 9/12, "feet"),
  39162. default: true
  39163. },
  39164. ]
  39165. ))
  39166. characterMakers.push(() => makeCharacter(
  39167. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  39168. {
  39169. front: {
  39170. height: math.unit(8 + 4/12, "feet"),
  39171. weight: math.unit(1200, "lb"),
  39172. name: "Front",
  39173. image: {
  39174. source: "./media/characters/eleanor/front.svg",
  39175. extra: 1226/1192,
  39176. bottom: 52/1278
  39177. }
  39178. },
  39179. back: {
  39180. height: math.unit(8 + 4/12, "feet"),
  39181. weight: math.unit(1200, "lb"),
  39182. name: "Back",
  39183. image: {
  39184. source: "./media/characters/eleanor/back.svg",
  39185. extra: 1242/1184,
  39186. bottom: 60/1302
  39187. }
  39188. },
  39189. head: {
  39190. height: math.unit(2.62, "feet"),
  39191. name: "Head",
  39192. image: {
  39193. source: "./media/characters/eleanor/head.svg"
  39194. }
  39195. },
  39196. },
  39197. [
  39198. {
  39199. name: "Normal",
  39200. height: math.unit(8 + 4/12, "feet"),
  39201. default: true
  39202. },
  39203. ]
  39204. ))
  39205. characterMakers.push(() => makeCharacter(
  39206. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  39207. {
  39208. front: {
  39209. height: math.unit(8 + 4/12, "feet"),
  39210. weight: math.unit(750, "lb"),
  39211. name: "Front",
  39212. image: {
  39213. source: "./media/characters/tanya/front.svg",
  39214. extra: 1749/1615,
  39215. bottom: 33/1782
  39216. }
  39217. },
  39218. },
  39219. [
  39220. {
  39221. name: "Normal",
  39222. height: math.unit(8 + 4/12, "feet"),
  39223. default: true
  39224. },
  39225. ]
  39226. ))
  39227. characterMakers.push(() => makeCharacter(
  39228. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  39229. {
  39230. front: {
  39231. height: math.unit(5, "feet"),
  39232. weight: math.unit(225, "lb"),
  39233. name: "Front",
  39234. image: {
  39235. source: "./media/characters/cindy/front.svg",
  39236. extra: 1320/1250,
  39237. bottom: 42/1362
  39238. }
  39239. },
  39240. frontDressed: {
  39241. height: math.unit(5, "feet"),
  39242. weight: math.unit(225, "lb"),
  39243. name: "Front (Dressed)",
  39244. image: {
  39245. source: "./media/characters/cindy/front-dressed.svg",
  39246. extra: 1320/1250,
  39247. bottom: 42/1362
  39248. }
  39249. },
  39250. back: {
  39251. height: math.unit(5, "feet"),
  39252. weight: math.unit(225, "lb"),
  39253. name: "Back",
  39254. image: {
  39255. source: "./media/characters/cindy/back.svg",
  39256. extra: 1384/1346,
  39257. bottom: 14/1398
  39258. }
  39259. },
  39260. },
  39261. [
  39262. {
  39263. name: "Normal",
  39264. height: math.unit(5, "feet"),
  39265. default: true
  39266. },
  39267. ]
  39268. ))
  39269. characterMakers.push(() => makeCharacter(
  39270. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  39271. {
  39272. front: {
  39273. height: math.unit(6 + 9/12, "feet"),
  39274. weight: math.unit(440, "lb"),
  39275. name: "Front",
  39276. image: {
  39277. source: "./media/characters/wilbur-owen/front.svg",
  39278. extra: 1575/1448,
  39279. bottom: 72/1647
  39280. }
  39281. },
  39282. back: {
  39283. height: math.unit(6 + 9/12, "feet"),
  39284. weight: math.unit(440, "lb"),
  39285. name: "Back",
  39286. image: {
  39287. source: "./media/characters/wilbur-owen/back.svg",
  39288. extra: 1578/1445,
  39289. bottom: 36/1614
  39290. }
  39291. },
  39292. },
  39293. [
  39294. {
  39295. name: "Normal",
  39296. height: math.unit(6 + 9/12, "feet"),
  39297. default: true
  39298. },
  39299. ]
  39300. ))
  39301. characterMakers.push(() => makeCharacter(
  39302. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  39303. {
  39304. front: {
  39305. height: math.unit(6 + 5/12, "feet"),
  39306. weight: math.unit(650, "lb"),
  39307. name: "Front",
  39308. image: {
  39309. source: "./media/characters/keegan/front.svg",
  39310. extra: 2387/2198,
  39311. bottom: 33/2420
  39312. }
  39313. },
  39314. side: {
  39315. height: math.unit(6 + 5/12, "feet"),
  39316. weight: math.unit(650, "lb"),
  39317. name: "Side",
  39318. image: {
  39319. source: "./media/characters/keegan/side.svg",
  39320. extra: 2390/2202,
  39321. bottom: 47/2437
  39322. }
  39323. },
  39324. back: {
  39325. height: math.unit(6 + 5/12, "feet"),
  39326. weight: math.unit(650, "lb"),
  39327. name: "Back",
  39328. image: {
  39329. source: "./media/characters/keegan/back.svg",
  39330. extra: 2418/2268,
  39331. bottom: 15/2433
  39332. }
  39333. },
  39334. frontSfw: {
  39335. height: math.unit(6 + 5/12, "feet"),
  39336. weight: math.unit(650, "lb"),
  39337. name: "Front (SFW)",
  39338. image: {
  39339. source: "./media/characters/keegan/front-sfw.svg",
  39340. extra: 2387/2198,
  39341. bottom: 33/2420
  39342. }
  39343. },
  39344. beans: {
  39345. height: math.unit(1.85, "feet"),
  39346. name: "Beans",
  39347. image: {
  39348. source: "./media/characters/keegan/beans.svg"
  39349. }
  39350. },
  39351. },
  39352. [
  39353. {
  39354. name: "Normal",
  39355. height: math.unit(6 + 5/12, "feet"),
  39356. default: true
  39357. },
  39358. ]
  39359. ))
  39360. characterMakers.push(() => makeCharacter(
  39361. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  39362. {
  39363. front: {
  39364. height: math.unit(9, "feet"),
  39365. name: "Front",
  39366. image: {
  39367. source: "./media/characters/colton/front.svg",
  39368. extra: 1589/1326,
  39369. bottom: 139/1728
  39370. }
  39371. },
  39372. },
  39373. [
  39374. {
  39375. name: "Normal",
  39376. height: math.unit(9, "feet"),
  39377. default: true
  39378. },
  39379. ]
  39380. ))
  39381. characterMakers.push(() => makeCharacter(
  39382. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  39383. {
  39384. front: {
  39385. height: math.unit(2 + 9/12, "feet"),
  39386. name: "Front",
  39387. image: {
  39388. source: "./media/characters/bora/front.svg",
  39389. extra: 1265/1250,
  39390. bottom: 24/1289
  39391. }
  39392. },
  39393. },
  39394. [
  39395. {
  39396. name: "Normal",
  39397. height: math.unit(2 + 9/12, "feet"),
  39398. default: true
  39399. },
  39400. ]
  39401. ))
  39402. characterMakers.push(() => makeCharacter(
  39403. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  39404. {
  39405. front: {
  39406. height: math.unit(8, "feet"),
  39407. name: "Front",
  39408. image: {
  39409. source: "./media/characters/myu-myu/front.svg",
  39410. extra: 1949/1857,
  39411. bottom: 90/2039
  39412. }
  39413. },
  39414. },
  39415. [
  39416. {
  39417. name: "Normal",
  39418. height: math.unit(8, "feet"),
  39419. default: true
  39420. },
  39421. {
  39422. name: "Big",
  39423. height: math.unit(15, "feet")
  39424. },
  39425. {
  39426. name: "BIG",
  39427. height: math.unit(25, "feet")
  39428. },
  39429. ]
  39430. ))
  39431. characterMakers.push(() => makeCharacter(
  39432. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  39433. {
  39434. side: {
  39435. height: math.unit(7 + 5/12, "feet"),
  39436. weight: math.unit(2800, "lb"),
  39437. name: "Side",
  39438. image: {
  39439. source: "./media/characters/haloren/side.svg",
  39440. extra: 1793/409,
  39441. bottom: 59/1852
  39442. }
  39443. },
  39444. frontPaw: {
  39445. height: math.unit(2.36, "feet"),
  39446. name: "Front paw",
  39447. image: {
  39448. source: "./media/characters/haloren/front-paw.svg"
  39449. }
  39450. },
  39451. hindPaw: {
  39452. height: math.unit(3.18, "feet"),
  39453. name: "Hind paw",
  39454. image: {
  39455. source: "./media/characters/haloren/hind-paw.svg"
  39456. }
  39457. },
  39458. maw: {
  39459. height: math.unit(5.05, "feet"),
  39460. name: "Maw",
  39461. image: {
  39462. source: "./media/characters/haloren/maw.svg"
  39463. }
  39464. },
  39465. dick: {
  39466. height: math.unit(2.90, "feet"),
  39467. name: "Dick",
  39468. image: {
  39469. source: "./media/characters/haloren/dick.svg"
  39470. }
  39471. },
  39472. },
  39473. [
  39474. {
  39475. name: "Normal",
  39476. height: math.unit(7 + 5/12, "feet"),
  39477. default: true
  39478. },
  39479. {
  39480. name: "Enhanced",
  39481. height: math.unit(14 + 3/12, "feet")
  39482. },
  39483. ]
  39484. ))
  39485. characterMakers.push(() => makeCharacter(
  39486. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  39487. {
  39488. front: {
  39489. height: math.unit(171, "cm"),
  39490. name: "Front",
  39491. image: {
  39492. source: "./media/characters/kimmy/front.svg",
  39493. extra: 1491/1435,
  39494. bottom: 53/1544
  39495. }
  39496. },
  39497. },
  39498. [
  39499. {
  39500. name: "Small",
  39501. height: math.unit(9, "cm")
  39502. },
  39503. {
  39504. name: "Normal",
  39505. height: math.unit(171, "cm"),
  39506. default: true
  39507. },
  39508. ]
  39509. ))
  39510. characterMakers.push(() => makeCharacter(
  39511. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  39512. {
  39513. front: {
  39514. height: math.unit(8, "feet"),
  39515. weight: math.unit(300, "lb"),
  39516. name: "Front",
  39517. image: {
  39518. source: "./media/characters/galeboomer/front.svg",
  39519. extra: 4651/4415,
  39520. bottom: 162/4813
  39521. }
  39522. },
  39523. back: {
  39524. height: math.unit(8, "feet"),
  39525. weight: math.unit(300, "lb"),
  39526. name: "Back",
  39527. image: {
  39528. source: "./media/characters/galeboomer/back.svg",
  39529. extra: 4544/4314,
  39530. bottom: 16/4560
  39531. }
  39532. },
  39533. frontAlt: {
  39534. height: math.unit(8, "feet"),
  39535. weight: math.unit(300, "lb"),
  39536. name: "Front (Alt)",
  39537. image: {
  39538. source: "./media/characters/galeboomer/front-alt.svg",
  39539. extra: 4458/4228,
  39540. bottom: 68/4526
  39541. }
  39542. },
  39543. maw: {
  39544. height: math.unit(1.2, "feet"),
  39545. name: "Maw",
  39546. image: {
  39547. source: "./media/characters/galeboomer/maw.svg"
  39548. }
  39549. },
  39550. },
  39551. [
  39552. {
  39553. name: "Normal",
  39554. height: math.unit(8, "feet"),
  39555. default: true
  39556. },
  39557. ]
  39558. ))
  39559. characterMakers.push(() => makeCharacter(
  39560. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  39561. {
  39562. front: {
  39563. height: math.unit(5 + 9/12, "feet"),
  39564. weight: math.unit(120, "lb"),
  39565. name: "Front",
  39566. image: {
  39567. source: "./media/characters/chyr/front.svg",
  39568. extra: 1323/1254,
  39569. bottom: 63/1386
  39570. }
  39571. },
  39572. back: {
  39573. height: math.unit(5 + 9/12, "feet"),
  39574. weight: math.unit(120, "lb"),
  39575. name: "Back",
  39576. image: {
  39577. source: "./media/characters/chyr/back.svg",
  39578. extra: 1323/1252,
  39579. bottom: 48/1371
  39580. }
  39581. },
  39582. },
  39583. [
  39584. {
  39585. name: "Normal",
  39586. height: math.unit(5 + 9/12, "feet"),
  39587. default: true
  39588. },
  39589. ]
  39590. ))
  39591. characterMakers.push(() => makeCharacter(
  39592. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  39593. {
  39594. front: {
  39595. height: math.unit(7, "feet"),
  39596. weight: math.unit(310, "lb"),
  39597. name: "Front",
  39598. image: {
  39599. source: "./media/characters/solarus/front.svg",
  39600. extra: 2415/2021,
  39601. bottom: 103/2518
  39602. }
  39603. },
  39604. back: {
  39605. height: math.unit(7, "feet"),
  39606. weight: math.unit(310, "lb"),
  39607. name: "Back",
  39608. image: {
  39609. source: "./media/characters/solarus/back.svg",
  39610. extra: 2463/2089,
  39611. bottom: 79/2542
  39612. }
  39613. },
  39614. },
  39615. [
  39616. {
  39617. name: "Normal",
  39618. height: math.unit(7, "feet"),
  39619. default: true
  39620. },
  39621. ]
  39622. ))
  39623. characterMakers.push(() => makeCharacter(
  39624. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  39625. {
  39626. front: {
  39627. height: math.unit(16, "feet"),
  39628. name: "Front",
  39629. image: {
  39630. source: "./media/characters/mutsuju-koizaemon/front.svg",
  39631. extra: 1844/1780,
  39632. bottom: 58/1902
  39633. }
  39634. },
  39635. winterCoat: {
  39636. height: math.unit(16, "feet"),
  39637. name: "Winter Coat",
  39638. image: {
  39639. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  39640. extra: 1807/1775,
  39641. bottom: 69/1876
  39642. }
  39643. },
  39644. },
  39645. [
  39646. {
  39647. name: "Normal",
  39648. height: math.unit(16, "feet"),
  39649. default: true
  39650. },
  39651. {
  39652. name: "Chicago Size",
  39653. height: math.unit(560, "feet")
  39654. },
  39655. ]
  39656. ))
  39657. characterMakers.push(() => makeCharacter(
  39658. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  39659. {
  39660. front: {
  39661. height: math.unit(11 + 6/12, "feet"),
  39662. weight: math.unit(1366, "lb"),
  39663. name: "Front",
  39664. image: {
  39665. source: "./media/characters/lexor/front.svg",
  39666. extra: 1560/1481,
  39667. bottom: 211/1771
  39668. }
  39669. },
  39670. back: {
  39671. height: math.unit(11 + 6/12, "feet"),
  39672. weight: math.unit(1366, "lb"),
  39673. name: "Back",
  39674. image: {
  39675. source: "./media/characters/lexor/back.svg",
  39676. extra: 1614/1533,
  39677. bottom: 76/1690
  39678. }
  39679. },
  39680. maw: {
  39681. height: math.unit(3, "feet"),
  39682. name: "Maw",
  39683. image: {
  39684. source: "./media/characters/lexor/maw.svg"
  39685. }
  39686. },
  39687. dick: {
  39688. height: math.unit(2.59, "feet"),
  39689. name: "Dick",
  39690. image: {
  39691. source: "./media/characters/lexor/dick.svg"
  39692. }
  39693. },
  39694. },
  39695. [
  39696. {
  39697. name: "Normal",
  39698. height: math.unit(11 + 6/12, "feet"),
  39699. default: true
  39700. },
  39701. ]
  39702. ))
  39703. characterMakers.push(() => makeCharacter(
  39704. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  39705. {
  39706. front: {
  39707. height: math.unit(5 + 8/12, "feet"),
  39708. name: "Front",
  39709. image: {
  39710. source: "./media/characters/magnum/front.svg",
  39711. extra: 942/855,
  39712. bottom: 26/968
  39713. }
  39714. },
  39715. },
  39716. [
  39717. {
  39718. name: "Normal",
  39719. height: math.unit(5 + 8/12, "feet"),
  39720. default: true
  39721. },
  39722. ]
  39723. ))
  39724. characterMakers.push(() => makeCharacter(
  39725. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  39726. {
  39727. front: {
  39728. height: math.unit(18 + 4/12, "feet"),
  39729. weight: math.unit(1500, "kg"),
  39730. name: "Front",
  39731. image: {
  39732. source: "./media/characters/solas-sharpsman/front.svg",
  39733. extra: 1698/1589,
  39734. bottom: 0/1698
  39735. }
  39736. },
  39737. },
  39738. [
  39739. {
  39740. name: "Normal",
  39741. height: math.unit(18 + 4/12, "feet"),
  39742. default: true
  39743. },
  39744. ]
  39745. ))
  39746. characterMakers.push(() => makeCharacter(
  39747. { name: "October", species: ["tiger"], tags: ["anthro"] },
  39748. {
  39749. front: {
  39750. height: math.unit(5 + 5/12, "feet"),
  39751. weight: math.unit(180, "lb"),
  39752. name: "Front",
  39753. image: {
  39754. source: "./media/characters/october/front.svg",
  39755. extra: 1800/1650,
  39756. bottom: 0/1800
  39757. }
  39758. },
  39759. frontNsfw: {
  39760. height: math.unit(5 + 5/12, "feet"),
  39761. weight: math.unit(180, "lb"),
  39762. name: "Front (NSFW)",
  39763. image: {
  39764. source: "./media/characters/october/front-nsfw.svg",
  39765. extra: 1392/1307,
  39766. bottom: 42/1434
  39767. }
  39768. },
  39769. },
  39770. [
  39771. {
  39772. name: "Normal",
  39773. height: math.unit(5 + 5/12, "feet"),
  39774. default: true
  39775. },
  39776. ]
  39777. ))
  39778. characterMakers.push(() => makeCharacter(
  39779. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  39780. {
  39781. front: {
  39782. height: math.unit(8 + 6/12, "feet"),
  39783. name: "Front",
  39784. image: {
  39785. source: "./media/characters/essynkardi/front.svg",
  39786. extra: 1541/1457,
  39787. bottom: 47/1588
  39788. }
  39789. },
  39790. },
  39791. [
  39792. {
  39793. name: "Normal",
  39794. height: math.unit(8 + 6/12, "feet"),
  39795. default: true
  39796. },
  39797. ]
  39798. ))
  39799. characterMakers.push(() => makeCharacter(
  39800. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  39801. {
  39802. front: {
  39803. height: math.unit(6 + 6/12, "feet"),
  39804. weight: math.unit(7, "lb"),
  39805. name: "Front",
  39806. image: {
  39807. source: "./media/characters/icky/front.svg",
  39808. extra: 813/782,
  39809. bottom: 66/879
  39810. }
  39811. },
  39812. back: {
  39813. height: math.unit(6 + 6/12, "feet"),
  39814. weight: math.unit(7, "lb"),
  39815. name: "Back",
  39816. image: {
  39817. source: "./media/characters/icky/back.svg",
  39818. extra: 754/735,
  39819. bottom: 56/810
  39820. }
  39821. },
  39822. },
  39823. [
  39824. {
  39825. name: "Normal",
  39826. height: math.unit(6 + 6/12, "feet"),
  39827. default: true
  39828. },
  39829. ]
  39830. ))
  39831. characterMakers.push(() => makeCharacter(
  39832. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  39833. {
  39834. front: {
  39835. height: math.unit(15, "feet"),
  39836. name: "Front",
  39837. image: {
  39838. source: "./media/characters/rojas/front.svg",
  39839. extra: 1462/1408,
  39840. bottom: 95/1557
  39841. }
  39842. },
  39843. back: {
  39844. height: math.unit(15, "feet"),
  39845. name: "Back",
  39846. image: {
  39847. source: "./media/characters/rojas/back.svg",
  39848. extra: 1023/954,
  39849. bottom: 28/1051
  39850. }
  39851. },
  39852. },
  39853. [
  39854. {
  39855. name: "Normal",
  39856. height: math.unit(15, "feet"),
  39857. default: true
  39858. },
  39859. ]
  39860. ))
  39861. characterMakers.push(() => makeCharacter(
  39862. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  39863. {
  39864. frontHuman: {
  39865. height: math.unit(5 + 7/12, "feet"),
  39866. name: "Front (Human)",
  39867. image: {
  39868. source: "./media/characters/alek-dryagan/front-human.svg",
  39869. extra: 1687/1667,
  39870. bottom: 69/1756
  39871. }
  39872. },
  39873. backHuman: {
  39874. height: math.unit(5 + 7/12, "feet"),
  39875. name: "Back (Human)",
  39876. image: {
  39877. source: "./media/characters/alek-dryagan/back-human.svg",
  39878. extra: 1670/1649,
  39879. bottom: 65/1735
  39880. }
  39881. },
  39882. frontDemi: {
  39883. height: math.unit(65, "feet"),
  39884. name: "Front (Demi)",
  39885. image: {
  39886. source: "./media/characters/alek-dryagan/front-demi.svg",
  39887. extra: 1669/1642,
  39888. bottom: 49/1718
  39889. }
  39890. },
  39891. backDemi: {
  39892. height: math.unit(65, "feet"),
  39893. name: "Back (Demi)",
  39894. image: {
  39895. source: "./media/characters/alek-dryagan/back-demi.svg",
  39896. extra: 1658/1637,
  39897. bottom: 40/1698
  39898. }
  39899. },
  39900. mawHuman: {
  39901. height: math.unit(0.3, "feet"),
  39902. name: "Maw (Human)",
  39903. image: {
  39904. source: "./media/characters/alek-dryagan/maw-human.svg"
  39905. }
  39906. },
  39907. mawDemi: {
  39908. height: math.unit(3.8, "feet"),
  39909. name: "Maw (Demi)",
  39910. image: {
  39911. source: "./media/characters/alek-dryagan/maw-demi.svg"
  39912. }
  39913. },
  39914. },
  39915. [
  39916. {
  39917. name: "Normal",
  39918. height: math.unit(5 + 7/12, "feet"),
  39919. default: true
  39920. },
  39921. ]
  39922. ))
  39923. characterMakers.push(() => makeCharacter(
  39924. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  39925. {
  39926. frontHuman: {
  39927. height: math.unit(5 + 2/12, "feet"),
  39928. name: "Front (Human)",
  39929. image: {
  39930. source: "./media/characters/gen/front-human.svg",
  39931. extra: 1627/1538,
  39932. bottom: 71/1698
  39933. }
  39934. },
  39935. backHuman: {
  39936. height: math.unit(5 + 2/12, "feet"),
  39937. name: "Back (Human)",
  39938. image: {
  39939. source: "./media/characters/gen/back-human.svg",
  39940. extra: 1638/1548,
  39941. bottom: 69/1707
  39942. }
  39943. },
  39944. frontDemi: {
  39945. height: math.unit(5 + 2/12, "feet"),
  39946. name: "Front (Demi)",
  39947. image: {
  39948. source: "./media/characters/gen/front-demi.svg",
  39949. extra: 1627/1538,
  39950. bottom: 71/1698
  39951. }
  39952. },
  39953. backDemi: {
  39954. height: math.unit(5 + 2/12, "feet"),
  39955. name: "Back (Demi)",
  39956. image: {
  39957. source: "./media/characters/gen/back-demi.svg",
  39958. extra: 1638/1548,
  39959. bottom: 69/1707
  39960. }
  39961. },
  39962. },
  39963. [
  39964. {
  39965. name: "Normal",
  39966. height: math.unit(5 + 2/12, "feet"),
  39967. default: true
  39968. },
  39969. ]
  39970. ))
  39971. characterMakers.push(() => makeCharacter(
  39972. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39973. {
  39974. frontImp: {
  39975. height: math.unit(1 + 11/12, "feet"),
  39976. name: "Front (Imp)",
  39977. image: {
  39978. source: "./media/characters/max-kobold/front-imp.svg",
  39979. extra: 1238/1134,
  39980. bottom: 81/1319
  39981. }
  39982. },
  39983. backImp: {
  39984. height: math.unit(1 + 11/12, "feet"),
  39985. name: "Back (Imp)",
  39986. image: {
  39987. source: "./media/characters/max-kobold/back-imp.svg",
  39988. extra: 1334/1175,
  39989. bottom: 34/1368
  39990. }
  39991. },
  39992. frontDemi: {
  39993. height: math.unit(5 + 9/12, "feet"),
  39994. name: "Front (Demi)",
  39995. image: {
  39996. source: "./media/characters/max-kobold/front-demi.svg",
  39997. extra: 1715/1685,
  39998. bottom: 54/1769
  39999. }
  40000. },
  40001. backDemi: {
  40002. height: math.unit(5 + 9/12, "feet"),
  40003. name: "Back (Demi)",
  40004. image: {
  40005. source: "./media/characters/max-kobold/back-demi.svg",
  40006. extra: 1752/1729,
  40007. bottom: 41/1793
  40008. }
  40009. },
  40010. handImp: {
  40011. height: math.unit(0.45, "feet"),
  40012. name: "Hand (Imp)",
  40013. image: {
  40014. source: "./media/characters/max-kobold/hand.svg"
  40015. }
  40016. },
  40017. pawImp: {
  40018. height: math.unit(0.46, "feet"),
  40019. name: "Paw (Imp)",
  40020. image: {
  40021. source: "./media/characters/max-kobold/paw.svg"
  40022. }
  40023. },
  40024. handDemi: {
  40025. height: math.unit(0.80, "feet"),
  40026. name: "Hand (Demi)",
  40027. image: {
  40028. source: "./media/characters/max-kobold/hand.svg"
  40029. }
  40030. },
  40031. pawDemi: {
  40032. height: math.unit(1.1, "feet"),
  40033. name: "Paw (Demi)",
  40034. image: {
  40035. source: "./media/characters/max-kobold/paw.svg"
  40036. }
  40037. },
  40038. headImp: {
  40039. height: math.unit(1.33, "feet"),
  40040. name: "Head (Imp)",
  40041. image: {
  40042. source: "./media/characters/max-kobold/head-imp.svg"
  40043. }
  40044. },
  40045. mawImp: {
  40046. height: math.unit(0.75, "feet"),
  40047. name: "Maw (Imp)",
  40048. image: {
  40049. source: "./media/characters/max-kobold/maw-imp.svg"
  40050. }
  40051. },
  40052. mawDemi: {
  40053. height: math.unit(0.42, "feet"),
  40054. name: "Maw (Demi)",
  40055. image: {
  40056. source: "./media/characters/max-kobold/maw-demi.svg"
  40057. }
  40058. },
  40059. },
  40060. [
  40061. {
  40062. name: "Normal",
  40063. height: math.unit(1 + 11/12, "feet"),
  40064. default: true
  40065. },
  40066. ]
  40067. ))
  40068. characterMakers.push(() => makeCharacter(
  40069. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  40070. {
  40071. front: {
  40072. height: math.unit(7 + 5/12, "feet"),
  40073. name: "Front",
  40074. image: {
  40075. source: "./media/characters/carbon/front.svg",
  40076. extra: 1754/1689,
  40077. bottom: 65/1819
  40078. }
  40079. },
  40080. back: {
  40081. height: math.unit(7 + 5/12, "feet"),
  40082. name: "Back",
  40083. image: {
  40084. source: "./media/characters/carbon/back.svg",
  40085. extra: 1762/1695,
  40086. bottom: 24/1786
  40087. }
  40088. },
  40089. frontGigantamax: {
  40090. height: math.unit(150, "feet"),
  40091. name: "Front (Gigantamax)",
  40092. image: {
  40093. source: "./media/characters/carbon/front-gigantamax.svg",
  40094. extra: 1826/1669,
  40095. bottom: 59/1885
  40096. }
  40097. },
  40098. backGigantamax: {
  40099. height: math.unit(150, "feet"),
  40100. name: "Back (Gigantamax)",
  40101. image: {
  40102. source: "./media/characters/carbon/back-gigantamax.svg",
  40103. extra: 1796/1653,
  40104. bottom: 53/1849
  40105. }
  40106. },
  40107. maw: {
  40108. height: math.unit(0.48, "feet"),
  40109. name: "Maw",
  40110. image: {
  40111. source: "./media/characters/carbon/maw.svg"
  40112. }
  40113. },
  40114. mawGigantamax: {
  40115. height: math.unit(7.5, "feet"),
  40116. name: "Maw (Gigantamax)",
  40117. image: {
  40118. source: "./media/characters/carbon/maw-gigantamax.svg"
  40119. }
  40120. },
  40121. },
  40122. [
  40123. {
  40124. name: "Normal",
  40125. height: math.unit(7 + 5/12, "feet"),
  40126. default: true
  40127. },
  40128. ]
  40129. ))
  40130. characterMakers.push(() => makeCharacter(
  40131. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  40132. {
  40133. front: {
  40134. height: math.unit(6, "feet"),
  40135. name: "Front",
  40136. image: {
  40137. source: "./media/characters/maverick/front.svg",
  40138. extra: 1672/1661,
  40139. bottom: 85/1757
  40140. }
  40141. },
  40142. back: {
  40143. height: math.unit(6, "feet"),
  40144. name: "Back",
  40145. image: {
  40146. source: "./media/characters/maverick/back.svg",
  40147. extra: 1642/1631,
  40148. bottom: 38/1680
  40149. }
  40150. },
  40151. },
  40152. [
  40153. {
  40154. name: "Normal",
  40155. height: math.unit(6, "feet"),
  40156. default: true
  40157. },
  40158. ]
  40159. ))
  40160. characterMakers.push(() => makeCharacter(
  40161. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  40162. {
  40163. front: {
  40164. height: math.unit(15, "feet"),
  40165. weight: math.unit(615, "lb"),
  40166. name: "Front",
  40167. image: {
  40168. source: "./media/characters/grockle/front.svg",
  40169. extra: 1535/1427,
  40170. bottom: 56/1591
  40171. }
  40172. },
  40173. },
  40174. [
  40175. {
  40176. name: "Normal",
  40177. height: math.unit(15, "feet"),
  40178. default: true
  40179. },
  40180. {
  40181. name: "Large",
  40182. height: math.unit(150, "feet")
  40183. },
  40184. {
  40185. name: "Macro",
  40186. height: math.unit(1876, "feet")
  40187. },
  40188. {
  40189. name: "Mega Macro",
  40190. height: math.unit(121940, "feet")
  40191. },
  40192. {
  40193. name: "Giga Macro",
  40194. height: math.unit(750, "km")
  40195. },
  40196. {
  40197. name: "Tera Macro",
  40198. height: math.unit(750000, "km")
  40199. },
  40200. {
  40201. name: "Galactic",
  40202. height: math.unit(1.4e5, "km")
  40203. },
  40204. {
  40205. name: "Godlike",
  40206. height: math.unit(9.8e280, "galaxies")
  40207. },
  40208. ]
  40209. ))
  40210. characterMakers.push(() => makeCharacter(
  40211. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  40212. {
  40213. front: {
  40214. height: math.unit(11, "meters"),
  40215. weight: math.unit(20, "tonnes"),
  40216. name: "Front",
  40217. image: {
  40218. source: "./media/characters/alistair/front.svg",
  40219. extra: 1265/1009,
  40220. bottom: 93/1358
  40221. }
  40222. },
  40223. },
  40224. [
  40225. {
  40226. name: "Normal",
  40227. height: math.unit(11, "meters"),
  40228. default: true
  40229. },
  40230. ]
  40231. ))
  40232. characterMakers.push(() => makeCharacter(
  40233. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  40234. {
  40235. front: {
  40236. height: math.unit(5 + 8/12, "feet"),
  40237. name: "Front",
  40238. image: {
  40239. source: "./media/characters/haruka/front.svg",
  40240. extra: 2012/1952,
  40241. bottom: 0/2012
  40242. }
  40243. },
  40244. },
  40245. [
  40246. {
  40247. name: "Normal",
  40248. height: math.unit(5 + 8/12, "feet"),
  40249. default: true
  40250. },
  40251. ]
  40252. ))
  40253. characterMakers.push(() => makeCharacter(
  40254. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  40255. {
  40256. back: {
  40257. height: math.unit(9, "feet"),
  40258. name: "Back",
  40259. image: {
  40260. source: "./media/characters/vivian-sylveon/back.svg",
  40261. extra: 1853/1714,
  40262. bottom: 0/1853
  40263. }
  40264. },
  40265. hyper: {
  40266. height: math.unit(5.58, "feet"),
  40267. name: "Hyper",
  40268. preyCapacity: math.unit(2.80616218797, "m^3"),
  40269. image: {
  40270. source: "./media/characters/vivian-sylveon/hyper.svg",
  40271. extra: 999/676,
  40272. bottom: 697/1696
  40273. },
  40274. },
  40275. paw: {
  40276. height: math.unit(1.8, "feet"),
  40277. name: "Paw",
  40278. image: {
  40279. source: "./media/characters/vivian-sylveon/paw.svg"
  40280. }
  40281. },
  40282. danger: {
  40283. height: math.unit(7.5, "feet"),
  40284. name: "DANGER",
  40285. image: {
  40286. source: "./media/characters/vivian-sylveon/danger.svg"
  40287. }
  40288. },
  40289. },
  40290. [
  40291. {
  40292. name: "Normal",
  40293. height: math.unit(9, "feet"),
  40294. default: true
  40295. },
  40296. {
  40297. name: "Macro",
  40298. height: math.unit(500, "feet")
  40299. },
  40300. {
  40301. name: "Megamacro",
  40302. height: math.unit(600, "miles")
  40303. },
  40304. {
  40305. name: "Gigamacro",
  40306. height: math.unit(30000, "miles")
  40307. },
  40308. ]
  40309. ))
  40310. characterMakers.push(() => makeCharacter(
  40311. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  40312. {
  40313. anthro: {
  40314. height: math.unit(5 + 10/12, "feet"),
  40315. weight: math.unit(100, "lb"),
  40316. name: "Anthro",
  40317. image: {
  40318. source: "./media/characters/daiki/anthro.svg",
  40319. extra: 1115/1027,
  40320. bottom: 69/1184
  40321. }
  40322. },
  40323. feral: {
  40324. height: math.unit(200, "feet"),
  40325. name: "Feral",
  40326. image: {
  40327. source: "./media/characters/daiki/feral.svg",
  40328. extra: 1256/313,
  40329. bottom: 39/1295
  40330. }
  40331. },
  40332. feralHead: {
  40333. height: math.unit(171, "feet"),
  40334. name: "Feral Head",
  40335. image: {
  40336. source: "./media/characters/daiki/feral-head.svg"
  40337. }
  40338. },
  40339. manaDragon: {
  40340. height: math.unit(170, "meters"),
  40341. name: "Mana-dragon",
  40342. image: {
  40343. source: "./media/characters/daiki/mana-dragon.svg",
  40344. extra: 763/420,
  40345. bottom: 97/860
  40346. }
  40347. },
  40348. },
  40349. [
  40350. {
  40351. name: "Normal",
  40352. height: math.unit(5 + 10/12, "feet"),
  40353. default: true
  40354. },
  40355. ]
  40356. ))
  40357. characterMakers.push(() => makeCharacter(
  40358. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  40359. {
  40360. fullyEquippedFront: {
  40361. height: math.unit(3 + 1/12, "feet"),
  40362. weight: math.unit(24, "lb"),
  40363. name: "Fully Equipped (Front)",
  40364. image: {
  40365. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  40366. extra: 687/605,
  40367. bottom: 18/705
  40368. }
  40369. },
  40370. fullyEquippedBack: {
  40371. height: math.unit(3 + 1/12, "feet"),
  40372. weight: math.unit(24, "lb"),
  40373. name: "Fully Equipped (Back)",
  40374. image: {
  40375. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  40376. extra: 689/590,
  40377. bottom: 18/707
  40378. }
  40379. },
  40380. dailyWear: {
  40381. height: math.unit(3 + 1/12, "feet"),
  40382. weight: math.unit(24, "lb"),
  40383. name: "Daily Wear",
  40384. image: {
  40385. source: "./media/characters/tea-spot/daily-wear.svg",
  40386. extra: 701/620,
  40387. bottom: 21/722
  40388. }
  40389. },
  40390. maidWork: {
  40391. height: math.unit(3 + 1/12, "feet"),
  40392. weight: math.unit(24, "lb"),
  40393. name: "Maid Work",
  40394. image: {
  40395. source: "./media/characters/tea-spot/maid-work.svg",
  40396. extra: 693/609,
  40397. bottom: 15/708
  40398. }
  40399. },
  40400. },
  40401. [
  40402. {
  40403. name: "Normal",
  40404. height: math.unit(3 + 1/12, "feet"),
  40405. default: true
  40406. },
  40407. ]
  40408. ))
  40409. characterMakers.push(() => makeCharacter(
  40410. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  40411. {
  40412. front: {
  40413. height: math.unit(175, "cm"),
  40414. weight: math.unit(75, "kg"),
  40415. name: "Front",
  40416. image: {
  40417. source: "./media/characters/chee/front.svg",
  40418. extra: 1796/1740,
  40419. bottom: 40/1836
  40420. }
  40421. },
  40422. },
  40423. [
  40424. {
  40425. name: "Micro-Micro",
  40426. height: math.unit(1, "nm")
  40427. },
  40428. {
  40429. name: "Micro-erst",
  40430. height: math.unit(1, "micrometer")
  40431. },
  40432. {
  40433. name: "Micro-er",
  40434. height: math.unit(1, "cm")
  40435. },
  40436. {
  40437. name: "Normal",
  40438. height: math.unit(175, "cm"),
  40439. default: true
  40440. },
  40441. {
  40442. name: "Macro",
  40443. height: math.unit(100, "m")
  40444. },
  40445. {
  40446. name: "Macro-er",
  40447. height: math.unit(1, "km")
  40448. },
  40449. {
  40450. name: "Macro-erst",
  40451. height: math.unit(10, "km")
  40452. },
  40453. {
  40454. name: "Macro-Macro",
  40455. height: math.unit(100, "km")
  40456. },
  40457. ]
  40458. ))
  40459. characterMakers.push(() => makeCharacter(
  40460. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  40461. {
  40462. front: {
  40463. height: math.unit(11 + 9/12, "feet"),
  40464. weight: math.unit(935, "lb"),
  40465. name: "Front",
  40466. image: {
  40467. source: "./media/characters/kingsley/front.svg",
  40468. extra: 1803/1674,
  40469. bottom: 127/1930
  40470. }
  40471. },
  40472. frontNude: {
  40473. height: math.unit(11 + 9/12, "feet"),
  40474. weight: math.unit(935, "lb"),
  40475. name: "Front (Nude)",
  40476. image: {
  40477. source: "./media/characters/kingsley/front-nude.svg",
  40478. extra: 1803/1674,
  40479. bottom: 127/1930
  40480. }
  40481. },
  40482. },
  40483. [
  40484. {
  40485. name: "Normal",
  40486. height: math.unit(11 + 9/12, "feet"),
  40487. default: true
  40488. },
  40489. ]
  40490. ))
  40491. characterMakers.push(() => makeCharacter(
  40492. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  40493. {
  40494. side: {
  40495. height: math.unit(9, "feet"),
  40496. name: "Side",
  40497. image: {
  40498. source: "./media/characters/rymel/side.svg",
  40499. extra: 792/469,
  40500. bottom: 121/913
  40501. }
  40502. },
  40503. maw: {
  40504. height: math.unit(2.4, "meters"),
  40505. name: "Maw",
  40506. image: {
  40507. source: "./media/characters/rymel/maw.svg"
  40508. }
  40509. },
  40510. },
  40511. [
  40512. {
  40513. name: "House Drake",
  40514. height: math.unit(2, "feet")
  40515. },
  40516. {
  40517. name: "Reduced",
  40518. height: math.unit(4.5, "feet")
  40519. },
  40520. {
  40521. name: "Normal",
  40522. height: math.unit(9, "feet"),
  40523. default: true
  40524. },
  40525. ]
  40526. ))
  40527. characterMakers.push(() => makeCharacter(
  40528. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  40529. {
  40530. front: {
  40531. height: math.unit(1.74, "meters"),
  40532. weight: math.unit(55, "kg"),
  40533. name: "Front",
  40534. image: {
  40535. source: "./media/characters/rubus/front.svg",
  40536. extra: 1894/1742,
  40537. bottom: 44/1938
  40538. }
  40539. },
  40540. },
  40541. [
  40542. {
  40543. name: "Normal",
  40544. height: math.unit(1.74, "meters"),
  40545. default: true
  40546. },
  40547. ]
  40548. ))
  40549. characterMakers.push(() => makeCharacter(
  40550. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  40551. {
  40552. front: {
  40553. height: math.unit(5 + 2/12, "feet"),
  40554. weight: math.unit(112, "lb"),
  40555. name: "Front",
  40556. image: {
  40557. source: "./media/characters/cassie-kingston/front.svg",
  40558. extra: 1438/1390,
  40559. bottom: 47/1485
  40560. }
  40561. },
  40562. },
  40563. [
  40564. {
  40565. name: "Normal",
  40566. height: math.unit(5 + 2/12, "feet"),
  40567. default: true
  40568. },
  40569. {
  40570. name: "Macro",
  40571. height: math.unit(128, "feet")
  40572. },
  40573. {
  40574. name: "Megamacro",
  40575. height: math.unit(2.56, "miles")
  40576. },
  40577. ]
  40578. ))
  40579. characterMakers.push(() => makeCharacter(
  40580. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  40581. {
  40582. front: {
  40583. height: math.unit(7, "feet"),
  40584. name: "Front",
  40585. image: {
  40586. source: "./media/characters/fox/front.svg",
  40587. extra: 1798/1703,
  40588. bottom: 55/1853
  40589. }
  40590. },
  40591. back: {
  40592. height: math.unit(7, "feet"),
  40593. name: "Back",
  40594. image: {
  40595. source: "./media/characters/fox/back.svg",
  40596. extra: 1748/1649,
  40597. bottom: 32/1780
  40598. }
  40599. },
  40600. head: {
  40601. height: math.unit(1.95, "feet"),
  40602. name: "Head",
  40603. image: {
  40604. source: "./media/characters/fox/head.svg"
  40605. }
  40606. },
  40607. dick: {
  40608. height: math.unit(1.33, "feet"),
  40609. name: "Dick",
  40610. image: {
  40611. source: "./media/characters/fox/dick.svg"
  40612. }
  40613. },
  40614. foot: {
  40615. height: math.unit(1, "feet"),
  40616. name: "Foot",
  40617. image: {
  40618. source: "./media/characters/fox/foot.svg"
  40619. }
  40620. },
  40621. paw: {
  40622. height: math.unit(0.92, "feet"),
  40623. name: "Paw",
  40624. image: {
  40625. source: "./media/characters/fox/paw.svg"
  40626. }
  40627. },
  40628. },
  40629. [
  40630. {
  40631. name: "Small",
  40632. height: math.unit(3, "inches")
  40633. },
  40634. {
  40635. name: "\"Realistic\"",
  40636. height: math.unit(7, "feet")
  40637. },
  40638. {
  40639. name: "Normal",
  40640. height: math.unit(150, "feet"),
  40641. default: true
  40642. },
  40643. {
  40644. name: "BIG",
  40645. height: math.unit(1200, "feet")
  40646. },
  40647. {
  40648. name: "👀",
  40649. height: math.unit(5, "miles")
  40650. },
  40651. {
  40652. name: "👀👀👀",
  40653. height: math.unit(64, "miles")
  40654. },
  40655. ]
  40656. ))
  40657. characterMakers.push(() => makeCharacter(
  40658. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  40659. {
  40660. front: {
  40661. height: math.unit(625, "feet"),
  40662. name: "Front",
  40663. image: {
  40664. source: "./media/characters/asonja-rossa/front.svg",
  40665. extra: 1833/1686,
  40666. bottom: 24/1857
  40667. }
  40668. },
  40669. back: {
  40670. height: math.unit(625, "feet"),
  40671. name: "Back",
  40672. image: {
  40673. source: "./media/characters/asonja-rossa/back.svg",
  40674. extra: 1852/1753,
  40675. bottom: 26/1878
  40676. }
  40677. },
  40678. },
  40679. [
  40680. {
  40681. name: "Macro",
  40682. height: math.unit(625, "feet"),
  40683. default: true
  40684. },
  40685. ]
  40686. ))
  40687. characterMakers.push(() => makeCharacter(
  40688. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  40689. {
  40690. side: {
  40691. height: math.unit(8, "feet"),
  40692. name: "Side",
  40693. image: {
  40694. source: "./media/characters/rezukii/side.svg",
  40695. extra: 979/542,
  40696. bottom: 87/1066
  40697. }
  40698. },
  40699. sitting: {
  40700. height: math.unit(14.6, "feet"),
  40701. name: "Sitting",
  40702. image: {
  40703. source: "./media/characters/rezukii/sitting.svg",
  40704. extra: 1023/813,
  40705. bottom: 45/1068
  40706. }
  40707. },
  40708. },
  40709. [
  40710. {
  40711. name: "Tiny",
  40712. height: math.unit(2, "feet")
  40713. },
  40714. {
  40715. name: "Smol",
  40716. height: math.unit(4, "feet")
  40717. },
  40718. {
  40719. name: "Normal",
  40720. height: math.unit(8, "feet"),
  40721. default: true
  40722. },
  40723. {
  40724. name: "Big",
  40725. height: math.unit(12, "feet")
  40726. },
  40727. {
  40728. name: "Macro",
  40729. height: math.unit(30, "feet")
  40730. },
  40731. ]
  40732. ))
  40733. characterMakers.push(() => makeCharacter(
  40734. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  40735. {
  40736. front: {
  40737. height: math.unit(14, "feet"),
  40738. weight: math.unit(9.5, "tonnes"),
  40739. name: "Front",
  40740. image: {
  40741. source: "./media/characters/dawnheart/front.svg",
  40742. extra: 2792/2675,
  40743. bottom: 64/2856
  40744. }
  40745. },
  40746. },
  40747. [
  40748. {
  40749. name: "Normal",
  40750. height: math.unit(14, "feet"),
  40751. default: true
  40752. },
  40753. ]
  40754. ))
  40755. characterMakers.push(() => makeCharacter(
  40756. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  40757. {
  40758. front: {
  40759. height: math.unit(1.7, "m"),
  40760. name: "Front",
  40761. image: {
  40762. source: "./media/characters/gladi/front.svg",
  40763. extra: 1460/1362,
  40764. bottom: 19/1479
  40765. }
  40766. },
  40767. back: {
  40768. height: math.unit(1.7, "m"),
  40769. name: "Back",
  40770. image: {
  40771. source: "./media/characters/gladi/back.svg",
  40772. extra: 1459/1357,
  40773. bottom: 12/1471
  40774. }
  40775. },
  40776. feral: {
  40777. height: math.unit(2.05, "m"),
  40778. name: "Feral",
  40779. image: {
  40780. source: "./media/characters/gladi/feral.svg",
  40781. extra: 821/557,
  40782. bottom: 91/912
  40783. }
  40784. },
  40785. },
  40786. [
  40787. {
  40788. name: "Shortest",
  40789. height: math.unit(70, "cm")
  40790. },
  40791. {
  40792. name: "Normal",
  40793. height: math.unit(1.7, "m")
  40794. },
  40795. {
  40796. name: "Macro",
  40797. height: math.unit(10, "m"),
  40798. default: true
  40799. },
  40800. {
  40801. name: "Tallest",
  40802. height: math.unit(200, "m")
  40803. },
  40804. ]
  40805. ))
  40806. characterMakers.push(() => makeCharacter(
  40807. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  40808. {
  40809. front: {
  40810. height: math.unit(5 + 7/12, "feet"),
  40811. weight: math.unit(2, "tons"),
  40812. name: "Front",
  40813. image: {
  40814. source: "./media/characters/erdno/front.svg",
  40815. extra: 1234/1129,
  40816. bottom: 35/1269
  40817. }
  40818. },
  40819. angled: {
  40820. height: math.unit(5 + 7/12, "feet"),
  40821. weight: math.unit(2, "tons"),
  40822. name: "Angled",
  40823. image: {
  40824. source: "./media/characters/erdno/angled.svg",
  40825. extra: 1185/1139,
  40826. bottom: 36/1221
  40827. }
  40828. },
  40829. side: {
  40830. height: math.unit(5 + 7/12, "feet"),
  40831. weight: math.unit(2, "tons"),
  40832. name: "Side",
  40833. image: {
  40834. source: "./media/characters/erdno/side.svg",
  40835. extra: 1191/1144,
  40836. bottom: 40/1231
  40837. }
  40838. },
  40839. back: {
  40840. height: math.unit(5 + 7/12, "feet"),
  40841. weight: math.unit(2, "tons"),
  40842. name: "Back",
  40843. image: {
  40844. source: "./media/characters/erdno/back.svg",
  40845. extra: 1202/1146,
  40846. bottom: 17/1219
  40847. }
  40848. },
  40849. frontNsfw: {
  40850. height: math.unit(5 + 7/12, "feet"),
  40851. weight: math.unit(2, "tons"),
  40852. name: "Front (NSFW)",
  40853. image: {
  40854. source: "./media/characters/erdno/front-nsfw.svg",
  40855. extra: 1234/1129,
  40856. bottom: 35/1269
  40857. }
  40858. },
  40859. angledNsfw: {
  40860. height: math.unit(5 + 7/12, "feet"),
  40861. weight: math.unit(2, "tons"),
  40862. name: "Angled (NSFW)",
  40863. image: {
  40864. source: "./media/characters/erdno/angled-nsfw.svg",
  40865. extra: 1185/1139,
  40866. bottom: 36/1221
  40867. }
  40868. },
  40869. sideNsfw: {
  40870. height: math.unit(5 + 7/12, "feet"),
  40871. weight: math.unit(2, "tons"),
  40872. name: "Side (NSFW)",
  40873. image: {
  40874. source: "./media/characters/erdno/side-nsfw.svg",
  40875. extra: 1191/1144,
  40876. bottom: 40/1231
  40877. }
  40878. },
  40879. backNsfw: {
  40880. height: math.unit(5 + 7/12, "feet"),
  40881. weight: math.unit(2, "tons"),
  40882. name: "Back (NSFW)",
  40883. image: {
  40884. source: "./media/characters/erdno/back-nsfw.svg",
  40885. extra: 1202/1146,
  40886. bottom: 17/1219
  40887. }
  40888. },
  40889. frontHyper: {
  40890. height: math.unit(5 + 7/12, "feet"),
  40891. weight: math.unit(2, "tons"),
  40892. name: "Front (Hyper)",
  40893. image: {
  40894. source: "./media/characters/erdno/front-hyper.svg",
  40895. extra: 1298/1136,
  40896. bottom: 35/1333
  40897. }
  40898. },
  40899. },
  40900. [
  40901. {
  40902. name: "Normal",
  40903. height: math.unit(5 + 7/12, "feet"),
  40904. default: true
  40905. },
  40906. {
  40907. name: "Big",
  40908. height: math.unit(5.7, "meters")
  40909. },
  40910. {
  40911. name: "Macro",
  40912. height: math.unit(5.7, "kilometers")
  40913. },
  40914. {
  40915. name: "Megamacro",
  40916. height: math.unit(5.7, "earths")
  40917. },
  40918. ]
  40919. ))
  40920. characterMakers.push(() => makeCharacter(
  40921. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  40922. {
  40923. front: {
  40924. height: math.unit(5 + 10/12, "feet"),
  40925. weight: math.unit(150, "lb"),
  40926. name: "Front",
  40927. image: {
  40928. source: "./media/characters/jamie/front.svg",
  40929. extra: 1908/1768,
  40930. bottom: 19/1927
  40931. }
  40932. },
  40933. },
  40934. [
  40935. {
  40936. name: "Minimum",
  40937. height: math.unit(2, "cm")
  40938. },
  40939. {
  40940. name: "Micro",
  40941. height: math.unit(3, "inches")
  40942. },
  40943. {
  40944. name: "Normal",
  40945. height: math.unit(5 + 10/12, "feet"),
  40946. default: true
  40947. },
  40948. {
  40949. name: "Macro",
  40950. height: math.unit(150, "feet")
  40951. },
  40952. {
  40953. name: "Megamacro",
  40954. height: math.unit(10000, "m")
  40955. },
  40956. ]
  40957. ))
  40958. characterMakers.push(() => makeCharacter(
  40959. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40960. {
  40961. front: {
  40962. height: math.unit(2, "meters"),
  40963. weight: math.unit(100, "kg"),
  40964. name: "Front",
  40965. image: {
  40966. source: "./media/characters/shiron/front.svg",
  40967. extra: 2103/1985,
  40968. bottom: 98/2201
  40969. }
  40970. },
  40971. back: {
  40972. height: math.unit(2, "meters"),
  40973. weight: math.unit(100, "kg"),
  40974. name: "Back",
  40975. image: {
  40976. source: "./media/characters/shiron/back.svg",
  40977. extra: 2110/2015,
  40978. bottom: 89/2199
  40979. }
  40980. },
  40981. hand: {
  40982. height: math.unit(0.96, "feet"),
  40983. name: "Hand",
  40984. image: {
  40985. source: "./media/characters/shiron/hand.svg"
  40986. }
  40987. },
  40988. foot: {
  40989. height: math.unit(1.464, "feet"),
  40990. name: "Foot",
  40991. image: {
  40992. source: "./media/characters/shiron/foot.svg"
  40993. }
  40994. },
  40995. },
  40996. [
  40997. {
  40998. name: "Normal",
  40999. height: math.unit(2, "meters")
  41000. },
  41001. {
  41002. name: "Macro",
  41003. height: math.unit(500, "meters"),
  41004. default: true
  41005. },
  41006. {
  41007. name: "Megamacro",
  41008. height: math.unit(20, "km")
  41009. },
  41010. ]
  41011. ))
  41012. characterMakers.push(() => makeCharacter(
  41013. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  41014. {
  41015. front: {
  41016. height: math.unit(6, "feet"),
  41017. name: "Front",
  41018. image: {
  41019. source: "./media/characters/sam/front.svg",
  41020. extra: 849/826,
  41021. bottom: 19/868
  41022. }
  41023. },
  41024. },
  41025. [
  41026. {
  41027. name: "Normal",
  41028. height: math.unit(6, "feet"),
  41029. default: true
  41030. },
  41031. ]
  41032. ))
  41033. characterMakers.push(() => makeCharacter(
  41034. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  41035. {
  41036. front: {
  41037. height: math.unit(8 + 4/12, "feet"),
  41038. weight: math.unit(122, "kg"),
  41039. name: "Front",
  41040. image: {
  41041. source: "./media/characters/namori-kurogawa/front.svg",
  41042. extra: 1894/1576,
  41043. bottom: 34/1928
  41044. }
  41045. },
  41046. },
  41047. [
  41048. {
  41049. name: "Normal",
  41050. height: math.unit(8 + 4/12, "feet"),
  41051. default: true
  41052. },
  41053. ]
  41054. ))
  41055. characterMakers.push(() => makeCharacter(
  41056. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  41057. {
  41058. front: {
  41059. height: math.unit(9, "feet"),
  41060. weight: math.unit(621, "lb"),
  41061. name: "Front",
  41062. image: {
  41063. source: "./media/characters/unmru/front.svg",
  41064. extra: 1853/1747,
  41065. bottom: 73/1926
  41066. }
  41067. },
  41068. side: {
  41069. height: math.unit(9, "feet"),
  41070. weight: math.unit(621, "lb"),
  41071. name: "Side",
  41072. image: {
  41073. source: "./media/characters/unmru/side.svg",
  41074. extra: 1781/1671,
  41075. bottom: 127/1908
  41076. }
  41077. },
  41078. back: {
  41079. height: math.unit(9, "feet"),
  41080. weight: math.unit(621, "lb"),
  41081. name: "Back",
  41082. image: {
  41083. source: "./media/characters/unmru/back.svg",
  41084. extra: 1894/1765,
  41085. bottom: 75/1969
  41086. }
  41087. },
  41088. dick: {
  41089. height: math.unit(3, "feet"),
  41090. weight: math.unit(35, "lb"),
  41091. name: "Dick",
  41092. image: {
  41093. source: "./media/characters/unmru/dick.svg"
  41094. }
  41095. },
  41096. },
  41097. [
  41098. {
  41099. name: "Normal",
  41100. height: math.unit(9, "feet")
  41101. },
  41102. {
  41103. name: "Natural",
  41104. height: math.unit(27, "feet"),
  41105. default: true
  41106. },
  41107. {
  41108. name: "Giant",
  41109. height: math.unit(90, "feet")
  41110. },
  41111. {
  41112. name: "Kaiju",
  41113. height: math.unit(270, "feet")
  41114. },
  41115. {
  41116. name: "Macro",
  41117. height: math.unit(900, "feet")
  41118. },
  41119. {
  41120. name: "Macro+",
  41121. height: math.unit(2700, "feet")
  41122. },
  41123. {
  41124. name: "Megamacro",
  41125. height: math.unit(9000, "feet")
  41126. },
  41127. {
  41128. name: "City-Crushing",
  41129. height: math.unit(27000, "feet")
  41130. },
  41131. {
  41132. name: "Mountain-Mashing",
  41133. height: math.unit(90000, "feet")
  41134. },
  41135. {
  41136. name: "Earth-Eclipsing",
  41137. height: math.unit(2.7e8, "feet")
  41138. },
  41139. {
  41140. name: "Sol-Swallowing",
  41141. height: math.unit(9e10, "feet")
  41142. },
  41143. {
  41144. name: "Majoris-Munching",
  41145. height: math.unit(2.7e13, "feet")
  41146. },
  41147. ]
  41148. ))
  41149. characterMakers.push(() => makeCharacter(
  41150. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  41151. {
  41152. front: {
  41153. height: math.unit(1, "inch"),
  41154. name: "Front",
  41155. image: {
  41156. source: "./media/characters/squeaks-mouse/front.svg",
  41157. extra: 352/308,
  41158. bottom: 25/377
  41159. }
  41160. },
  41161. },
  41162. [
  41163. {
  41164. name: "Micro",
  41165. height: math.unit(1, "inch"),
  41166. default: true
  41167. },
  41168. ]
  41169. ))
  41170. characterMakers.push(() => makeCharacter(
  41171. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  41172. {
  41173. side: {
  41174. height: math.unit(35, "feet"),
  41175. name: "Side",
  41176. image: {
  41177. source: "./media/characters/sayko/side.svg",
  41178. extra: 1697/1021,
  41179. bottom: 82/1779
  41180. }
  41181. },
  41182. head: {
  41183. height: math.unit(16, "feet"),
  41184. name: "Head",
  41185. image: {
  41186. source: "./media/characters/sayko/head.svg"
  41187. }
  41188. },
  41189. forepaw: {
  41190. height: math.unit(7.85, "feet"),
  41191. name: "Forepaw",
  41192. image: {
  41193. source: "./media/characters/sayko/forepaw.svg"
  41194. }
  41195. },
  41196. hindpaw: {
  41197. height: math.unit(8.8, "feet"),
  41198. name: "Hindpaw",
  41199. image: {
  41200. source: "./media/characters/sayko/hindpaw.svg"
  41201. }
  41202. },
  41203. },
  41204. [
  41205. {
  41206. name: "Normal",
  41207. height: math.unit(35, "feet"),
  41208. default: true
  41209. },
  41210. {
  41211. name: "Colossus",
  41212. height: math.unit(100, "meters")
  41213. },
  41214. {
  41215. name: "\"Small\" Deity",
  41216. height: math.unit(1, "km")
  41217. },
  41218. {
  41219. name: "\"Large\" Deity",
  41220. height: math.unit(15, "km")
  41221. },
  41222. ]
  41223. ))
  41224. characterMakers.push(() => makeCharacter(
  41225. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  41226. {
  41227. front: {
  41228. height: math.unit(6, "feet"),
  41229. weight: math.unit(250, "lb"),
  41230. name: "Front",
  41231. image: {
  41232. source: "./media/characters/mukiro/front.svg",
  41233. extra: 1368/1310,
  41234. bottom: 34/1402
  41235. }
  41236. },
  41237. },
  41238. [
  41239. {
  41240. name: "Normal",
  41241. height: math.unit(6, "feet"),
  41242. default: true
  41243. },
  41244. ]
  41245. ))
  41246. characterMakers.push(() => makeCharacter(
  41247. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  41248. {
  41249. front: {
  41250. height: math.unit(12 + 4/12, "feet"),
  41251. name: "Front",
  41252. image: {
  41253. source: "./media/characters/zeph-the-tiger-god/front.svg",
  41254. extra: 1346/1311,
  41255. bottom: 65/1411
  41256. }
  41257. },
  41258. },
  41259. [
  41260. {
  41261. name: "Base",
  41262. height: math.unit(12 + 4/12, "feet"),
  41263. default: true
  41264. },
  41265. {
  41266. name: "Macro",
  41267. height: math.unit(150, "feet")
  41268. },
  41269. {
  41270. name: "Mega",
  41271. height: math.unit(2, "miles")
  41272. },
  41273. {
  41274. name: "Demi God",
  41275. height: math.unit(4, "AU")
  41276. },
  41277. {
  41278. name: "God Size",
  41279. height: math.unit(1, "universe")
  41280. },
  41281. ]
  41282. ))
  41283. characterMakers.push(() => makeCharacter(
  41284. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  41285. {
  41286. front: {
  41287. height: math.unit(3 + 3/12, "feet"),
  41288. weight: math.unit(88, "lb"),
  41289. name: "Front",
  41290. image: {
  41291. source: "./media/characters/trey/front.svg",
  41292. extra: 1815/1509,
  41293. bottom: 60/1875
  41294. }
  41295. },
  41296. },
  41297. [
  41298. {
  41299. name: "Normal",
  41300. height: math.unit(3 + 3/12, "feet"),
  41301. default: true
  41302. },
  41303. ]
  41304. ))
  41305. characterMakers.push(() => makeCharacter(
  41306. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  41307. {
  41308. front: {
  41309. height: math.unit(4, "meters"),
  41310. name: "Front",
  41311. image: {
  41312. source: "./media/characters/adelonda/front.svg",
  41313. extra: 1077/982,
  41314. bottom: 39/1116
  41315. }
  41316. },
  41317. back: {
  41318. height: math.unit(4, "meters"),
  41319. name: "Back",
  41320. image: {
  41321. source: "./media/characters/adelonda/back.svg",
  41322. extra: 1105/1003,
  41323. bottom: 25/1130
  41324. }
  41325. },
  41326. feral: {
  41327. height: math.unit(40/1.5, "meters"),
  41328. name: "Feral",
  41329. image: {
  41330. source: "./media/characters/adelonda/feral.svg",
  41331. extra: 597/271,
  41332. bottom: 387/984
  41333. }
  41334. },
  41335. },
  41336. [
  41337. {
  41338. name: "Normal",
  41339. height: math.unit(4, "meters"),
  41340. default: true
  41341. },
  41342. ]
  41343. ))
  41344. characterMakers.push(() => makeCharacter(
  41345. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  41346. {
  41347. front: {
  41348. height: math.unit(8 + 4/12, "feet"),
  41349. weight: math.unit(670, "lb"),
  41350. name: "Front",
  41351. image: {
  41352. source: "./media/characters/acadiel/front.svg",
  41353. extra: 1901/1595,
  41354. bottom: 142/2043
  41355. }
  41356. },
  41357. },
  41358. [
  41359. {
  41360. name: "Normal",
  41361. height: math.unit(8 + 4/12, "feet"),
  41362. default: true
  41363. },
  41364. {
  41365. name: "Macro",
  41366. height: math.unit(200, "feet")
  41367. },
  41368. ]
  41369. ))
  41370. characterMakers.push(() => makeCharacter(
  41371. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  41372. {
  41373. front: {
  41374. height: math.unit(6 + 2/12, "feet"),
  41375. weight: math.unit(185, "lb"),
  41376. name: "Front",
  41377. image: {
  41378. source: "./media/characters/kayne-ein/front.svg",
  41379. extra: 1780/1560,
  41380. bottom: 81/1861
  41381. }
  41382. },
  41383. },
  41384. [
  41385. {
  41386. name: "Normal",
  41387. height: math.unit(6 + 2/12, "feet"),
  41388. default: true
  41389. },
  41390. {
  41391. name: "Transformation Stage",
  41392. height: math.unit(15, "feet")
  41393. },
  41394. {
  41395. name: "Macro",
  41396. height: math.unit(150, "feet")
  41397. },
  41398. {
  41399. name: "Earth's Shadow",
  41400. height: math.unit(6200, "miles")
  41401. },
  41402. {
  41403. name: "Universal Demon",
  41404. height: math.unit(28e9, "parsecs")
  41405. },
  41406. {
  41407. name: "Multiverse God",
  41408. height: math.unit(3, "multiverses")
  41409. },
  41410. ]
  41411. ))
  41412. characterMakers.push(() => makeCharacter(
  41413. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  41414. {
  41415. front: {
  41416. height: math.unit(5 + 5/12, "feet"),
  41417. name: "Front",
  41418. image: {
  41419. source: "./media/characters/fawn/front.svg",
  41420. extra: 1873/1731,
  41421. bottom: 95/1968
  41422. }
  41423. },
  41424. back: {
  41425. height: math.unit(5 + 5/12, "feet"),
  41426. name: "Back",
  41427. image: {
  41428. source: "./media/characters/fawn/back.svg",
  41429. extra: 1813/1700,
  41430. bottom: 14/1827
  41431. }
  41432. },
  41433. hoof: {
  41434. height: math.unit(1.45, "feet"),
  41435. name: "Hoof",
  41436. image: {
  41437. source: "./media/characters/fawn/hoof.svg"
  41438. }
  41439. },
  41440. },
  41441. [
  41442. {
  41443. name: "Normal",
  41444. height: math.unit(5 + 5/12, "feet"),
  41445. default: true
  41446. },
  41447. ]
  41448. ))
  41449. characterMakers.push(() => makeCharacter(
  41450. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  41451. {
  41452. front: {
  41453. height: math.unit(2 + 5/12, "feet"),
  41454. name: "Front",
  41455. image: {
  41456. source: "./media/characters/orion/front.svg",
  41457. extra: 1366/1304,
  41458. bottom: 43/1409
  41459. }
  41460. },
  41461. paw: {
  41462. height: math.unit(0.52, "feet"),
  41463. name: "Paw",
  41464. image: {
  41465. source: "./media/characters/orion/paw.svg"
  41466. }
  41467. },
  41468. },
  41469. [
  41470. {
  41471. name: "Normal",
  41472. height: math.unit(2 + 5/12, "feet"),
  41473. default: true
  41474. },
  41475. ]
  41476. ))
  41477. characterMakers.push(() => makeCharacter(
  41478. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  41479. {
  41480. front: {
  41481. height: math.unit(5 + 10/12, "feet"),
  41482. name: "Front",
  41483. image: {
  41484. source: "./media/characters/vera/front.svg",
  41485. extra: 1680/1575,
  41486. bottom: 49/1729
  41487. }
  41488. },
  41489. back: {
  41490. height: math.unit(5 + 10/12, "feet"),
  41491. name: "Back",
  41492. image: {
  41493. source: "./media/characters/vera/back.svg",
  41494. extra: 1700/1588,
  41495. bottom: 18/1718
  41496. }
  41497. },
  41498. arcanine: {
  41499. height: math.unit(6 + 8/12, "feet"),
  41500. name: "Arcanine",
  41501. image: {
  41502. source: "./media/characters/vera/arcanine.svg",
  41503. extra: 1590/1511,
  41504. bottom: 71/1661
  41505. }
  41506. },
  41507. maw: {
  41508. height: math.unit(0.82, "feet"),
  41509. name: "Maw",
  41510. image: {
  41511. source: "./media/characters/vera/maw.svg"
  41512. }
  41513. },
  41514. mawArcanine: {
  41515. height: math.unit(0.97, "feet"),
  41516. name: "Maw (Arcanine)",
  41517. image: {
  41518. source: "./media/characters/vera/maw-arcanine.svg"
  41519. }
  41520. },
  41521. paw: {
  41522. height: math.unit(0.75, "feet"),
  41523. name: "Paw",
  41524. image: {
  41525. source: "./media/characters/vera/paw.svg"
  41526. }
  41527. },
  41528. pawprint: {
  41529. height: math.unit(0.52, "feet"),
  41530. name: "Pawprint",
  41531. image: {
  41532. source: "./media/characters/vera/pawprint.svg"
  41533. }
  41534. },
  41535. },
  41536. [
  41537. {
  41538. name: "Normal",
  41539. height: math.unit(5 + 10/12, "feet"),
  41540. default: true
  41541. },
  41542. {
  41543. name: "Macro",
  41544. height: math.unit(75, "feet")
  41545. },
  41546. ]
  41547. ))
  41548. characterMakers.push(() => makeCharacter(
  41549. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  41550. {
  41551. front: {
  41552. height: math.unit(4, "feet"),
  41553. weight: math.unit(40, "lb"),
  41554. name: "Front",
  41555. image: {
  41556. source: "./media/characters/orvan-rabbit/front.svg",
  41557. extra: 1896/1642,
  41558. bottom: 29/1925
  41559. }
  41560. },
  41561. },
  41562. [
  41563. {
  41564. name: "Normal",
  41565. height: math.unit(4, "feet"),
  41566. default: true
  41567. },
  41568. ]
  41569. ))
  41570. characterMakers.push(() => makeCharacter(
  41571. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  41572. {
  41573. front: {
  41574. height: math.unit(6, "feet"),
  41575. weight: math.unit(168, "lb"),
  41576. name: "Front",
  41577. image: {
  41578. source: "./media/characters/lisa/front.svg",
  41579. extra: 2065/1867,
  41580. bottom: 46/2111
  41581. }
  41582. },
  41583. back: {
  41584. height: math.unit(6, "feet"),
  41585. weight: math.unit(168, "lb"),
  41586. name: "Back",
  41587. image: {
  41588. source: "./media/characters/lisa/back.svg",
  41589. extra: 1982/1838,
  41590. bottom: 29/2011
  41591. }
  41592. },
  41593. maw: {
  41594. height: math.unit(0.81, "feet"),
  41595. name: "Maw",
  41596. image: {
  41597. source: "./media/characters/lisa/maw.svg"
  41598. }
  41599. },
  41600. paw: {
  41601. height: math.unit(0.9, "feet"),
  41602. name: "Paw",
  41603. image: {
  41604. source: "./media/characters/lisa/paw.svg"
  41605. }
  41606. },
  41607. caribousune: {
  41608. height: math.unit(7 + 2/12, "feet"),
  41609. weight: math.unit(268, "lb"),
  41610. name: "Caribousune",
  41611. image: {
  41612. source: "./media/characters/lisa/caribousune.svg",
  41613. extra: 1843/1633,
  41614. bottom: 29/1872
  41615. }
  41616. },
  41617. frontCaribousune: {
  41618. height: math.unit(7 + 2/12, "feet"),
  41619. weight: math.unit(268, "lb"),
  41620. name: "Front (Caribousune)",
  41621. image: {
  41622. source: "./media/characters/lisa/front-caribousune.svg",
  41623. extra: 1818/1638,
  41624. bottom: 52/1870
  41625. }
  41626. },
  41627. sideCaribousune: {
  41628. height: math.unit(7 + 2/12, "feet"),
  41629. weight: math.unit(268, "lb"),
  41630. name: "Side (Caribousune)",
  41631. image: {
  41632. source: "./media/characters/lisa/side-caribousune.svg",
  41633. extra: 1851/1635,
  41634. bottom: 16/1867
  41635. }
  41636. },
  41637. backCaribousune: {
  41638. height: math.unit(7 + 2/12, "feet"),
  41639. weight: math.unit(268, "lb"),
  41640. name: "Back (Caribousune)",
  41641. image: {
  41642. source: "./media/characters/lisa/back-caribousune.svg",
  41643. extra: 1801/1604,
  41644. bottom: 44/1845
  41645. }
  41646. },
  41647. caribou: {
  41648. height: math.unit(7 + 2/12, "feet"),
  41649. weight: math.unit(268, "lb"),
  41650. name: "Caribou",
  41651. image: {
  41652. source: "./media/characters/lisa/caribou.svg",
  41653. extra: 1843/1633,
  41654. bottom: 29/1872
  41655. }
  41656. },
  41657. frontCaribou: {
  41658. height: math.unit(7 + 2/12, "feet"),
  41659. weight: math.unit(268, "lb"),
  41660. name: "Front (Caribou)",
  41661. image: {
  41662. source: "./media/characters/lisa/front-caribou.svg",
  41663. extra: 1818/1638,
  41664. bottom: 52/1870
  41665. }
  41666. },
  41667. sideCaribou: {
  41668. height: math.unit(7 + 2/12, "feet"),
  41669. weight: math.unit(268, "lb"),
  41670. name: "Side (Caribou)",
  41671. image: {
  41672. source: "./media/characters/lisa/side-caribou.svg",
  41673. extra: 1851/1635,
  41674. bottom: 16/1867
  41675. }
  41676. },
  41677. backCaribou: {
  41678. height: math.unit(7 + 2/12, "feet"),
  41679. weight: math.unit(268, "lb"),
  41680. name: "Back (Caribou)",
  41681. image: {
  41682. source: "./media/characters/lisa/back-caribou.svg",
  41683. extra: 1801/1604,
  41684. bottom: 44/1845
  41685. }
  41686. },
  41687. mawCaribou: {
  41688. height: math.unit(1.45, "feet"),
  41689. name: "Maw (Caribou)",
  41690. image: {
  41691. source: "./media/characters/lisa/maw-caribou.svg"
  41692. }
  41693. },
  41694. mawCaribousune: {
  41695. height: math.unit(1.45, "feet"),
  41696. name: "Maw (Caribousune)",
  41697. image: {
  41698. source: "./media/characters/lisa/maw-caribousune.svg"
  41699. }
  41700. },
  41701. pawCaribousune: {
  41702. height: math.unit(1.61, "feet"),
  41703. name: "Paw (Caribou)",
  41704. image: {
  41705. source: "./media/characters/lisa/paw-caribousune.svg"
  41706. }
  41707. },
  41708. },
  41709. [
  41710. {
  41711. name: "Normal",
  41712. height: math.unit(6, "feet")
  41713. },
  41714. {
  41715. name: "God Size",
  41716. height: math.unit(72, "feet"),
  41717. default: true
  41718. },
  41719. {
  41720. name: "Towering",
  41721. height: math.unit(288, "feet")
  41722. },
  41723. {
  41724. name: "City Size",
  41725. height: math.unit(48384, "feet")
  41726. },
  41727. {
  41728. name: "Continental",
  41729. height: math.unit(4200, "miles")
  41730. },
  41731. {
  41732. name: "Planet Eater",
  41733. height: math.unit(42, "earths")
  41734. },
  41735. {
  41736. name: "Star Swallower",
  41737. height: math.unit(42, "solarradii")
  41738. },
  41739. {
  41740. name: "System Swallower",
  41741. height: math.unit(84000, "AU")
  41742. },
  41743. {
  41744. name: "Galaxy Gobbler",
  41745. height: math.unit(42, "galaxies")
  41746. },
  41747. {
  41748. name: "Universe Devourer",
  41749. height: math.unit(42, "universes")
  41750. },
  41751. {
  41752. name: "Multiverse Muncher",
  41753. height: math.unit(42, "multiverses")
  41754. },
  41755. ]
  41756. ))
  41757. characterMakers.push(() => makeCharacter(
  41758. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  41759. {
  41760. front: {
  41761. height: math.unit(36, "feet"),
  41762. name: "Front",
  41763. image: {
  41764. source: "./media/characters/shadow-rat/front.svg",
  41765. extra: 1845/1758,
  41766. bottom: 83/1928
  41767. }
  41768. },
  41769. },
  41770. [
  41771. {
  41772. name: "Macro",
  41773. height: math.unit(36, "feet"),
  41774. default: true
  41775. },
  41776. ]
  41777. ))
  41778. characterMakers.push(() => makeCharacter(
  41779. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  41780. {
  41781. side: {
  41782. height: math.unit(8, "feet"),
  41783. weight: math.unit(2630, "lb"),
  41784. name: "Side",
  41785. image: {
  41786. source: "./media/characters/torallia/side.svg",
  41787. extra: 2164/2021,
  41788. bottom: 371/2535
  41789. }
  41790. },
  41791. },
  41792. [
  41793. {
  41794. name: "Mortal Interaction",
  41795. height: math.unit(8, "feet")
  41796. },
  41797. {
  41798. name: "Natural",
  41799. height: math.unit(24, "feet"),
  41800. default: true
  41801. },
  41802. {
  41803. name: "Giant",
  41804. height: math.unit(80, "feet")
  41805. },
  41806. {
  41807. name: "Kaiju",
  41808. height: math.unit(240, "feet")
  41809. },
  41810. {
  41811. name: "Macro",
  41812. height: math.unit(800, "feet")
  41813. },
  41814. {
  41815. name: "Macro+",
  41816. height: math.unit(2400, "feet")
  41817. },
  41818. {
  41819. name: "Macro++",
  41820. height: math.unit(8000, "feet")
  41821. },
  41822. {
  41823. name: "City-Crushing",
  41824. height: math.unit(24000, "feet")
  41825. },
  41826. {
  41827. name: "Mountain-Mashing",
  41828. height: math.unit(80000, "feet")
  41829. },
  41830. {
  41831. name: "District Demolisher",
  41832. height: math.unit(240000, "feet")
  41833. },
  41834. {
  41835. name: "Tri-County Terror",
  41836. height: math.unit(800000, "feet")
  41837. },
  41838. {
  41839. name: "State Smasher",
  41840. height: math.unit(2.4e6, "feet")
  41841. },
  41842. {
  41843. name: "Nation Nemesis",
  41844. height: math.unit(8e6, "feet")
  41845. },
  41846. {
  41847. name: "Continent Cracker",
  41848. height: math.unit(2.4e7, "feet")
  41849. },
  41850. {
  41851. name: "Planet-Pillaging",
  41852. height: math.unit(8e7, "feet")
  41853. },
  41854. {
  41855. name: "Earth-Eclipsing",
  41856. height: math.unit(2.4e8, "feet")
  41857. },
  41858. {
  41859. name: "Jovian-Jostling",
  41860. height: math.unit(8e8, "feet")
  41861. },
  41862. {
  41863. name: "Gas Giant Gulper",
  41864. height: math.unit(2.4e9, "feet")
  41865. },
  41866. {
  41867. name: "Astral Annihilator",
  41868. height: math.unit(8e9, "feet")
  41869. },
  41870. {
  41871. name: "Celestial Conqueror",
  41872. height: math.unit(2.4e10, "feet")
  41873. },
  41874. {
  41875. name: "Sol-Swallowing",
  41876. height: math.unit(8e10, "feet")
  41877. },
  41878. {
  41879. name: "Hunter of the Heavens",
  41880. height: math.unit(2.4e13, "feet")
  41881. },
  41882. ]
  41883. ))
  41884. characterMakers.push(() => makeCharacter(
  41885. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  41886. {
  41887. front: {
  41888. height: math.unit(10, "feet"),
  41889. weight: math.unit(844, "kilograms"),
  41890. name: "Front",
  41891. image: {
  41892. source: "./media/characters/rebecca-pawlson/front.svg",
  41893. extra: 1196/1099,
  41894. bottom: 81/1277
  41895. },
  41896. extraAttributes: {
  41897. "pawSize": {
  41898. name: "Paw Size",
  41899. power: 2,
  41900. type: "area",
  41901. base: math.unit(0.2 * 0.375, "meters^2")
  41902. },
  41903. "handSize": {
  41904. name: "Hand Size",
  41905. power: 2,
  41906. type: "area",
  41907. base: math.unit(0.2 * 0.35, "meters^2")
  41908. },
  41909. "breastDiameter": {
  41910. name: "Breast Diameter",
  41911. power: 1,
  41912. type: "length",
  41913. base: math.unit(0.5, "meters")
  41914. },
  41915. "breastVolume": {
  41916. name: "Breast Volume",
  41917. power: 3,
  41918. type: "volume",
  41919. base: math.unit(0.065, "m^3")
  41920. },
  41921. "breastMass": {
  41922. name: "Breast Mass",
  41923. power: 3,
  41924. type: "mass",
  41925. base: math.unit(65, "kg")
  41926. },
  41927. "nippleDiameter": {
  41928. name: "Nipple Diameter",
  41929. power: 1,
  41930. type: "length",
  41931. base: math.unit(0.1, "meters")
  41932. },
  41933. }
  41934. },
  41935. back: {
  41936. height: math.unit(10, "feet"),
  41937. weight: math.unit(844, "kilograms"),
  41938. name: "Back",
  41939. image: {
  41940. source: "./media/characters/rebecca-pawlson/back.svg",
  41941. extra: 879/776,
  41942. bottom: 43/922
  41943. },
  41944. extraAttributes: {
  41945. "pawSize": {
  41946. name: "Paw Size",
  41947. power: 2,
  41948. type: "area",
  41949. base: math.unit(0.2 * 0.375, "meters^2")
  41950. },
  41951. "handSize": {
  41952. name: "Hand Size",
  41953. power: 2,
  41954. type: "area",
  41955. base: math.unit(0.2 * 0.35, "meters^2")
  41956. },
  41957. "breastDiameter": {
  41958. name: "Breast Diameter",
  41959. power: 1,
  41960. type: "length",
  41961. base: math.unit(0.5, "meters")
  41962. },
  41963. "breastVolume": {
  41964. name: "Breast Volume",
  41965. power: 3,
  41966. type: "volume",
  41967. base: math.unit(0.065, "m^3")
  41968. },
  41969. "breastMass": {
  41970. name: "Breast Mass",
  41971. power: 3,
  41972. type: "mass",
  41973. base: math.unit(65, "kg")
  41974. },
  41975. "nippleDiameter": {
  41976. name: "Nipple Diameter",
  41977. power: 1,
  41978. type: "length",
  41979. base: math.unit(0.1, "meters")
  41980. },
  41981. }
  41982. },
  41983. },
  41984. [
  41985. {
  41986. name: "Normal",
  41987. height: math.unit(6 + 8/12, "feet")
  41988. },
  41989. {
  41990. name: "Mini Macro",
  41991. height: math.unit(10, "feet"),
  41992. default: true
  41993. },
  41994. {
  41995. name: "Macro",
  41996. height: math.unit(100, "feet")
  41997. },
  41998. {
  41999. name: "Mega Macro",
  42000. height: math.unit(2500, "feet")
  42001. },
  42002. {
  42003. name: "Giga Macro",
  42004. height: math.unit(50, "miles")
  42005. },
  42006. ]
  42007. ))
  42008. characterMakers.push(() => makeCharacter(
  42009. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  42010. {
  42011. front: {
  42012. height: math.unit(7 + 6/12, "feet"),
  42013. weight: math.unit(600, "lb"),
  42014. name: "Front",
  42015. image: {
  42016. source: "./media/characters/moxie-nova/front.svg",
  42017. extra: 1734/1652,
  42018. bottom: 41/1775
  42019. }
  42020. },
  42021. },
  42022. [
  42023. {
  42024. name: "Normal",
  42025. height: math.unit(7 + 6/12, "feet"),
  42026. default: true
  42027. },
  42028. ]
  42029. ))
  42030. characterMakers.push(() => makeCharacter(
  42031. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  42032. {
  42033. goat: {
  42034. height: math.unit(4, "feet"),
  42035. weight: math.unit(180, "lb"),
  42036. name: "Goat",
  42037. image: {
  42038. source: "./media/characters/tiffany/goat.svg",
  42039. extra: 1845/1595,
  42040. bottom: 106/1951
  42041. }
  42042. },
  42043. front: {
  42044. height: math.unit(5, "feet"),
  42045. weight: math.unit(150, "lb"),
  42046. name: "Foxcoon",
  42047. image: {
  42048. source: "./media/characters/tiffany/foxcoon.svg",
  42049. extra: 1941/1845,
  42050. bottom: 58/1999
  42051. }
  42052. },
  42053. },
  42054. [
  42055. {
  42056. name: "Normal",
  42057. height: math.unit(5, "feet"),
  42058. default: true
  42059. },
  42060. ]
  42061. ))
  42062. characterMakers.push(() => makeCharacter(
  42063. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  42064. {
  42065. front: {
  42066. height: math.unit(8, "feet"),
  42067. weight: math.unit(300, "lb"),
  42068. name: "Front",
  42069. image: {
  42070. source: "./media/characters/raxinath/front.svg",
  42071. extra: 1407/1309,
  42072. bottom: 39/1446
  42073. }
  42074. },
  42075. back: {
  42076. height: math.unit(8, "feet"),
  42077. weight: math.unit(300, "lb"),
  42078. name: "Back",
  42079. image: {
  42080. source: "./media/characters/raxinath/back.svg",
  42081. extra: 1405/1315,
  42082. bottom: 9/1414
  42083. }
  42084. },
  42085. },
  42086. [
  42087. {
  42088. name: "Speck",
  42089. height: math.unit(0.5, "nm")
  42090. },
  42091. {
  42092. name: "Micro",
  42093. height: math.unit(3, "inches")
  42094. },
  42095. {
  42096. name: "Kobold",
  42097. height: math.unit(3, "feet")
  42098. },
  42099. {
  42100. name: "Normal",
  42101. height: math.unit(8, "feet"),
  42102. default: true
  42103. },
  42104. {
  42105. name: "Giant",
  42106. height: math.unit(50, "feet")
  42107. },
  42108. {
  42109. name: "Macro",
  42110. height: math.unit(1000, "feet")
  42111. },
  42112. {
  42113. name: "Megamacro",
  42114. height: math.unit(1, "mile")
  42115. },
  42116. ]
  42117. ))
  42118. characterMakers.push(() => makeCharacter(
  42119. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  42120. {
  42121. front: {
  42122. height: math.unit(10, "feet"),
  42123. weight: math.unit(1442, "lb"),
  42124. name: "Front",
  42125. image: {
  42126. source: "./media/characters/mal-dragon/front.svg",
  42127. extra: 1515/1444,
  42128. bottom: 113/1628
  42129. }
  42130. },
  42131. back: {
  42132. height: math.unit(10, "feet"),
  42133. weight: math.unit(1442, "lb"),
  42134. name: "Back",
  42135. image: {
  42136. source: "./media/characters/mal-dragon/back.svg",
  42137. extra: 1527/1434,
  42138. bottom: 25/1552
  42139. }
  42140. },
  42141. },
  42142. [
  42143. {
  42144. name: "Mortal Interaction",
  42145. height: math.unit(10, "feet"),
  42146. default: true
  42147. },
  42148. {
  42149. name: "Large",
  42150. height: math.unit(30, "feet")
  42151. },
  42152. {
  42153. name: "Kaiju",
  42154. height: math.unit(300, "feet")
  42155. },
  42156. {
  42157. name: "Megamacro",
  42158. height: math.unit(10000, "feet")
  42159. },
  42160. {
  42161. name: "Continent Cracker",
  42162. height: math.unit(30000000, "feet")
  42163. },
  42164. {
  42165. name: "Sol-Swallowing",
  42166. height: math.unit(1e11, "feet")
  42167. },
  42168. {
  42169. name: "Light Universal",
  42170. height: math.unit(5, "universes")
  42171. },
  42172. {
  42173. name: "Universe Atoms",
  42174. height: math.unit(1.829e9, "universes")
  42175. },
  42176. {
  42177. name: "Light Multiversal",
  42178. height: math.unit(5, "multiverses")
  42179. },
  42180. {
  42181. name: "Multiverse Atoms",
  42182. height: math.unit(1.829e9, "multiverses")
  42183. },
  42184. {
  42185. name: "Fabric of Time",
  42186. height: math.unit(1e262, "multiverses")
  42187. },
  42188. ]
  42189. ))
  42190. characterMakers.push(() => makeCharacter(
  42191. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  42192. {
  42193. front: {
  42194. height: math.unit(9, "feet"),
  42195. weight: math.unit(1050, "lb"),
  42196. name: "Front",
  42197. image: {
  42198. source: "./media/characters/tabitha/front.svg",
  42199. extra: 2083/1994,
  42200. bottom: 68/2151
  42201. }
  42202. },
  42203. },
  42204. [
  42205. {
  42206. name: "Baseline",
  42207. height: math.unit(9, "feet"),
  42208. default: true
  42209. },
  42210. {
  42211. name: "Giant",
  42212. height: math.unit(90, "feet")
  42213. },
  42214. {
  42215. name: "Macro",
  42216. height: math.unit(900, "feet")
  42217. },
  42218. {
  42219. name: "Megamacro",
  42220. height: math.unit(9000, "feet")
  42221. },
  42222. {
  42223. name: "City-Crushing",
  42224. height: math.unit(27000, "feet")
  42225. },
  42226. {
  42227. name: "Mountain-Mashing",
  42228. height: math.unit(90000, "feet")
  42229. },
  42230. {
  42231. name: "Nation Nemesis",
  42232. height: math.unit(9e6, "feet")
  42233. },
  42234. {
  42235. name: "Continent Cracker",
  42236. height: math.unit(27e6, "feet")
  42237. },
  42238. {
  42239. name: "Earth-Eclipsing",
  42240. height: math.unit(2.7e8, "feet")
  42241. },
  42242. {
  42243. name: "Gas Giant Gulper",
  42244. height: math.unit(2.7e9, "feet")
  42245. },
  42246. {
  42247. name: "Sol-Swallowing",
  42248. height: math.unit(9e10, "feet")
  42249. },
  42250. {
  42251. name: "Galaxy Gulper",
  42252. height: math.unit(9, "galaxies")
  42253. },
  42254. {
  42255. name: "Cosmos Churner",
  42256. height: math.unit(9, "universes")
  42257. },
  42258. ]
  42259. ))
  42260. characterMakers.push(() => makeCharacter(
  42261. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  42262. {
  42263. front: {
  42264. height: math.unit(160, "cm"),
  42265. weight: math.unit(55, "kg"),
  42266. name: "Front",
  42267. image: {
  42268. source: "./media/characters/tow/front.svg",
  42269. extra: 1751/1722,
  42270. bottom: 74/1825
  42271. }
  42272. },
  42273. },
  42274. [
  42275. {
  42276. name: "Norm",
  42277. height: math.unit(160, "cm")
  42278. },
  42279. {
  42280. name: "Casual",
  42281. height: math.unit(3200, "m"),
  42282. default: true
  42283. },
  42284. {
  42285. name: "Show-Off",
  42286. height: math.unit(160, "km")
  42287. },
  42288. ]
  42289. ))
  42290. characterMakers.push(() => makeCharacter(
  42291. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  42292. {
  42293. front: {
  42294. height: math.unit(7 + 11/12, "feet"),
  42295. weight: math.unit(342.8, "lb"),
  42296. name: "Front",
  42297. image: {
  42298. source: "./media/characters/vivian-orca-dragon/front.svg",
  42299. extra: 1890/1865,
  42300. bottom: 28/1918
  42301. }
  42302. },
  42303. },
  42304. [
  42305. {
  42306. name: "Micro",
  42307. height: math.unit(5, "inches")
  42308. },
  42309. {
  42310. name: "Normal",
  42311. height: math.unit(7 + 11/12, "feet"),
  42312. default: true
  42313. },
  42314. {
  42315. name: "Macro",
  42316. height: math.unit(395 + 7/12, "feet")
  42317. },
  42318. ]
  42319. ))
  42320. characterMakers.push(() => makeCharacter(
  42321. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  42322. {
  42323. side: {
  42324. height: math.unit(10, "feet"),
  42325. weight: math.unit(1442, "lb"),
  42326. name: "Side",
  42327. image: {
  42328. source: "./media/characters/lotherakon/side.svg",
  42329. extra: 1604/1497,
  42330. bottom: 89/1693
  42331. }
  42332. },
  42333. },
  42334. [
  42335. {
  42336. name: "Mortal Interaction",
  42337. height: math.unit(10, "feet")
  42338. },
  42339. {
  42340. name: "Large",
  42341. height: math.unit(30, "feet"),
  42342. default: true
  42343. },
  42344. {
  42345. name: "Giant",
  42346. height: math.unit(100, "feet")
  42347. },
  42348. {
  42349. name: "Kaiju",
  42350. height: math.unit(300, "feet")
  42351. },
  42352. {
  42353. name: "Macro",
  42354. height: math.unit(1000, "feet")
  42355. },
  42356. {
  42357. name: "Macro+",
  42358. height: math.unit(3000, "feet")
  42359. },
  42360. {
  42361. name: "Megamacro",
  42362. height: math.unit(10000, "feet")
  42363. },
  42364. {
  42365. name: "City-Crushing",
  42366. height: math.unit(30000, "feet")
  42367. },
  42368. {
  42369. name: "Continent Cracker",
  42370. height: math.unit(30e6, "feet")
  42371. },
  42372. {
  42373. name: "Earth Eclipsing",
  42374. height: math.unit(3e8, "feet")
  42375. },
  42376. {
  42377. name: "Gas Giant Gulper",
  42378. height: math.unit(3e9, "feet")
  42379. },
  42380. {
  42381. name: "Sol-Swallowing",
  42382. height: math.unit(1e11, "feet")
  42383. },
  42384. {
  42385. name: "System Swallower",
  42386. height: math.unit(3e14, "feet")
  42387. },
  42388. {
  42389. name: "Galaxy Gulper",
  42390. height: math.unit(10, "galaxies")
  42391. },
  42392. {
  42393. name: "Light Universal",
  42394. height: math.unit(5, "universes")
  42395. },
  42396. {
  42397. name: "Universe Palm",
  42398. height: math.unit(20, "universes")
  42399. },
  42400. {
  42401. name: "Light Multiversal",
  42402. height: math.unit(5, "multiverses")
  42403. },
  42404. {
  42405. name: "Multiverse Palm",
  42406. height: math.unit(20, "multiverses")
  42407. },
  42408. {
  42409. name: "Inferno Incarnate",
  42410. height: math.unit(1e7, "multiverses")
  42411. },
  42412. ]
  42413. ))
  42414. characterMakers.push(() => makeCharacter(
  42415. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  42416. {
  42417. front: {
  42418. height: math.unit(8, "feet"),
  42419. weight: math.unit(1200, "lb"),
  42420. name: "Front",
  42421. image: {
  42422. source: "./media/characters/malithee/front.svg",
  42423. extra: 1675/1640,
  42424. bottom: 162/1837
  42425. }
  42426. },
  42427. },
  42428. [
  42429. {
  42430. name: "Mortal Interaction",
  42431. height: math.unit(8, "feet"),
  42432. default: true
  42433. },
  42434. {
  42435. name: "Large",
  42436. height: math.unit(24, "feet")
  42437. },
  42438. {
  42439. name: "Kaiju",
  42440. height: math.unit(240, "feet")
  42441. },
  42442. {
  42443. name: "Megamacro",
  42444. height: math.unit(8000, "feet")
  42445. },
  42446. {
  42447. name: "Continent Cracker",
  42448. height: math.unit(24e6, "feet")
  42449. },
  42450. {
  42451. name: "Earth-Eclipsing",
  42452. height: math.unit(2.4e8, "feet")
  42453. },
  42454. {
  42455. name: "Sol-Swallowing",
  42456. height: math.unit(8e10, "feet")
  42457. },
  42458. {
  42459. name: "Galaxy Gulper",
  42460. height: math.unit(8, "galaxies")
  42461. },
  42462. {
  42463. name: "Light Universal",
  42464. height: math.unit(4, "universes")
  42465. },
  42466. {
  42467. name: "Universe Atoms",
  42468. height: math.unit(1.829e9, "universes")
  42469. },
  42470. {
  42471. name: "Light Multiversal",
  42472. height: math.unit(4, "multiverses")
  42473. },
  42474. {
  42475. name: "Multiverse Atoms",
  42476. height: math.unit(1.829e9, "multiverses")
  42477. },
  42478. {
  42479. name: "Nigh-Omnipresence",
  42480. height: math.unit(8e261, "multiverses")
  42481. },
  42482. ]
  42483. ))
  42484. characterMakers.push(() => makeCharacter(
  42485. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  42486. {
  42487. front: {
  42488. height: math.unit(10, "feet"),
  42489. weight: math.unit(1500, "lb"),
  42490. name: "Front",
  42491. image: {
  42492. source: "./media/characters/miles-thestia/front.svg",
  42493. extra: 1812/1727,
  42494. bottom: 86/1898
  42495. }
  42496. },
  42497. back: {
  42498. height: math.unit(10, "feet"),
  42499. weight: math.unit(1500, "lb"),
  42500. name: "Back",
  42501. image: {
  42502. source: "./media/characters/miles-thestia/back.svg",
  42503. extra: 1799/1690,
  42504. bottom: 47/1846
  42505. }
  42506. },
  42507. frontNsfw: {
  42508. height: math.unit(10, "feet"),
  42509. weight: math.unit(1500, "lb"),
  42510. name: "Front (NSFW)",
  42511. image: {
  42512. source: "./media/characters/miles-thestia/front-nsfw.svg",
  42513. extra: 1812/1727,
  42514. bottom: 86/1898
  42515. }
  42516. },
  42517. },
  42518. [
  42519. {
  42520. name: "Mini-Macro",
  42521. height: math.unit(10, "feet"),
  42522. default: true
  42523. },
  42524. ]
  42525. ))
  42526. characterMakers.push(() => makeCharacter(
  42527. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  42528. {
  42529. front: {
  42530. height: math.unit(25, "feet"),
  42531. name: "Front",
  42532. image: {
  42533. source: "./media/characters/titan-s-wulf/front.svg",
  42534. extra: 1560/1484,
  42535. bottom: 76/1636
  42536. }
  42537. },
  42538. },
  42539. [
  42540. {
  42541. name: "Smallest",
  42542. height: math.unit(25, "feet"),
  42543. default: true
  42544. },
  42545. {
  42546. name: "Normal",
  42547. height: math.unit(200, "feet")
  42548. },
  42549. {
  42550. name: "Macro",
  42551. height: math.unit(200000, "feet")
  42552. },
  42553. {
  42554. name: "Multiversal Original",
  42555. height: math.unit(10000, "multiverses")
  42556. },
  42557. ]
  42558. ))
  42559. characterMakers.push(() => makeCharacter(
  42560. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  42561. {
  42562. front: {
  42563. height: math.unit(8, "feet"),
  42564. weight: math.unit(553, "lb"),
  42565. name: "Front",
  42566. image: {
  42567. source: "./media/characters/tawendeh/front.svg",
  42568. extra: 2365/2268,
  42569. bottom: 83/2448
  42570. }
  42571. },
  42572. frontClothed: {
  42573. height: math.unit(8, "feet"),
  42574. weight: math.unit(553, "lb"),
  42575. name: "Front (Clothed)",
  42576. image: {
  42577. source: "./media/characters/tawendeh/front-clothed.svg",
  42578. extra: 2365/2268,
  42579. bottom: 83/2448
  42580. }
  42581. },
  42582. back: {
  42583. height: math.unit(8, "feet"),
  42584. weight: math.unit(553, "lb"),
  42585. name: "Back",
  42586. image: {
  42587. source: "./media/characters/tawendeh/back.svg",
  42588. extra: 2397/2294,
  42589. bottom: 42/2439
  42590. }
  42591. },
  42592. },
  42593. [
  42594. {
  42595. name: "Mortal Interaction",
  42596. height: math.unit(8, "feet"),
  42597. default: true
  42598. },
  42599. {
  42600. name: "Giant",
  42601. height: math.unit(80, "feet")
  42602. },
  42603. {
  42604. name: "Macro",
  42605. height: math.unit(800, "feet")
  42606. },
  42607. {
  42608. name: "Megamacro",
  42609. height: math.unit(8000, "feet")
  42610. },
  42611. {
  42612. name: "City-Crushing",
  42613. height: math.unit(24000, "feet")
  42614. },
  42615. {
  42616. name: "Mountain-Mashing",
  42617. height: math.unit(80000, "feet")
  42618. },
  42619. {
  42620. name: "Nation Nemesis",
  42621. height: math.unit(8e6, "feet")
  42622. },
  42623. {
  42624. name: "Continent Cracker",
  42625. height: math.unit(24e6, "feet")
  42626. },
  42627. {
  42628. name: "Earth-Eclipsing",
  42629. height: math.unit(2.4e8, "feet")
  42630. },
  42631. {
  42632. name: "Gas Giant Gulper",
  42633. height: math.unit(2.4e9, "feet")
  42634. },
  42635. {
  42636. name: "Sol-Swallowing",
  42637. height: math.unit(8e10, "feet")
  42638. },
  42639. {
  42640. name: "Galaxy Gulper",
  42641. height: math.unit(8, "galaxies")
  42642. },
  42643. {
  42644. name: "Cosmos Churner",
  42645. height: math.unit(8, "universes")
  42646. },
  42647. {
  42648. name: "Omnipotent Otter",
  42649. height: math.unit(80, "universes")
  42650. },
  42651. ]
  42652. ))
  42653. characterMakers.push(() => makeCharacter(
  42654. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  42655. {
  42656. front: {
  42657. height: math.unit(2.6, "meters"),
  42658. weight: math.unit(900, "kg"),
  42659. name: "Front",
  42660. image: {
  42661. source: "./media/characters/neesha/front.svg",
  42662. extra: 1803/1653,
  42663. bottom: 128/1931
  42664. }
  42665. },
  42666. },
  42667. [
  42668. {
  42669. name: "Normal",
  42670. height: math.unit(2.6, "meters"),
  42671. default: true
  42672. },
  42673. {
  42674. name: "Macro",
  42675. height: math.unit(50, "meters")
  42676. },
  42677. ]
  42678. ))
  42679. characterMakers.push(() => makeCharacter(
  42680. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  42681. {
  42682. front: {
  42683. height: math.unit(5, "feet"),
  42684. weight: math.unit(185, "lb"),
  42685. name: "Front",
  42686. image: {
  42687. source: "./media/characters/kyera/front.svg",
  42688. extra: 1875/1790,
  42689. bottom: 96/1971
  42690. }
  42691. },
  42692. },
  42693. [
  42694. {
  42695. name: "Normal",
  42696. height: math.unit(5, "feet"),
  42697. default: true
  42698. },
  42699. ]
  42700. ))
  42701. characterMakers.push(() => makeCharacter(
  42702. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  42703. {
  42704. front: {
  42705. height: math.unit(7 + 6/12, "feet"),
  42706. weight: math.unit(540, "lb"),
  42707. name: "Front",
  42708. image: {
  42709. source: "./media/characters/yuko/front.svg",
  42710. extra: 1282/1222,
  42711. bottom: 101/1383
  42712. }
  42713. },
  42714. frontClothed: {
  42715. height: math.unit(7 + 6/12, "feet"),
  42716. weight: math.unit(540, "lb"),
  42717. name: "Front (Clothed)",
  42718. image: {
  42719. source: "./media/characters/yuko/front-clothed.svg",
  42720. extra: 1282/1222,
  42721. bottom: 101/1383
  42722. }
  42723. },
  42724. },
  42725. [
  42726. {
  42727. name: "Normal",
  42728. height: math.unit(7 + 6/12, "feet"),
  42729. default: true
  42730. },
  42731. {
  42732. name: "Macro",
  42733. height: math.unit(26 + 9/12, "feet")
  42734. },
  42735. {
  42736. name: "Megamacro",
  42737. height: math.unit(300, "feet")
  42738. },
  42739. {
  42740. name: "Gigamacro",
  42741. height: math.unit(5000, "feet")
  42742. },
  42743. {
  42744. name: "Planetary",
  42745. height: math.unit(10000, "miles")
  42746. },
  42747. ]
  42748. ))
  42749. characterMakers.push(() => makeCharacter(
  42750. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  42751. {
  42752. front: {
  42753. height: math.unit(8 + 2/12, "feet"),
  42754. weight: math.unit(600, "lb"),
  42755. name: "Front",
  42756. image: {
  42757. source: "./media/characters/deam-nitrel/front.svg",
  42758. extra: 1308/1234,
  42759. bottom: 125/1433
  42760. }
  42761. },
  42762. },
  42763. [
  42764. {
  42765. name: "Normal",
  42766. height: math.unit(8 + 2/12, "feet"),
  42767. default: true
  42768. },
  42769. ]
  42770. ))
  42771. characterMakers.push(() => makeCharacter(
  42772. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  42773. {
  42774. front: {
  42775. height: math.unit(6.1, "feet"),
  42776. weight: math.unit(180, "lb"),
  42777. name: "Front",
  42778. image: {
  42779. source: "./media/characters/skyress/front.svg",
  42780. extra: 1045/915,
  42781. bottom: 28/1073
  42782. }
  42783. },
  42784. maw: {
  42785. height: math.unit(1, "feet"),
  42786. name: "Maw",
  42787. image: {
  42788. source: "./media/characters/skyress/maw.svg"
  42789. }
  42790. },
  42791. },
  42792. [
  42793. {
  42794. name: "Normal",
  42795. height: math.unit(6.1, "feet"),
  42796. default: true
  42797. },
  42798. {
  42799. name: "Macro",
  42800. height: math.unit(200, "feet")
  42801. },
  42802. ]
  42803. ))
  42804. characterMakers.push(() => makeCharacter(
  42805. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  42806. {
  42807. front: {
  42808. height: math.unit(4 + 2/12, "feet"),
  42809. weight: math.unit(40, "kg"),
  42810. name: "Front",
  42811. image: {
  42812. source: "./media/characters/amethyst-jones/front.svg",
  42813. extra: 1220/1150,
  42814. bottom: 101/1321
  42815. }
  42816. },
  42817. },
  42818. [
  42819. {
  42820. name: "Normal",
  42821. height: math.unit(4 + 2/12, "feet"),
  42822. default: true
  42823. },
  42824. ]
  42825. ))
  42826. characterMakers.push(() => makeCharacter(
  42827. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  42828. {
  42829. front: {
  42830. height: math.unit(1.7, "m"),
  42831. weight: math.unit(135, "lb"),
  42832. name: "Front",
  42833. image: {
  42834. source: "./media/characters/jade/front.svg",
  42835. extra: 1818/1767,
  42836. bottom: 32/1850
  42837. }
  42838. },
  42839. back: {
  42840. height: math.unit(1.7, "m"),
  42841. weight: math.unit(135, "lb"),
  42842. name: "Back",
  42843. image: {
  42844. source: "./media/characters/jade/back.svg",
  42845. extra: 1869/1809,
  42846. bottom: 35/1904
  42847. }
  42848. },
  42849. hand: {
  42850. height: math.unit(0.24, "m"),
  42851. name: "Hand",
  42852. image: {
  42853. source: "./media/characters/jade/hand.svg"
  42854. }
  42855. },
  42856. foot: {
  42857. height: math.unit(0.263, "m"),
  42858. name: "Foot",
  42859. image: {
  42860. source: "./media/characters/jade/foot.svg"
  42861. }
  42862. },
  42863. dick: {
  42864. height: math.unit(0.47, "m"),
  42865. name: "Dick",
  42866. image: {
  42867. source: "./media/characters/jade/dick.svg"
  42868. }
  42869. },
  42870. },
  42871. [
  42872. {
  42873. name: "Micro",
  42874. height: math.unit(22, "cm")
  42875. },
  42876. {
  42877. name: "Normal",
  42878. height: math.unit(1.7, "m"),
  42879. default: true
  42880. },
  42881. {
  42882. name: "Macro",
  42883. height: math.unit(152, "m")
  42884. },
  42885. ]
  42886. ))
  42887. characterMakers.push(() => makeCharacter(
  42888. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  42889. {
  42890. front: {
  42891. height: math.unit(100, "miles"),
  42892. weight: math.unit(20000, "tons"),
  42893. name: "Front",
  42894. image: {
  42895. source: "./media/characters/cookie/front.svg",
  42896. extra: 1125/1070,
  42897. bottom: 30/1155
  42898. }
  42899. },
  42900. },
  42901. [
  42902. {
  42903. name: "Big",
  42904. height: math.unit(50, "feet")
  42905. },
  42906. {
  42907. name: "Macro",
  42908. height: math.unit(100, "miles"),
  42909. default: true
  42910. },
  42911. {
  42912. name: "Megamacro",
  42913. height: math.unit(90000, "miles")
  42914. },
  42915. ]
  42916. ))
  42917. characterMakers.push(() => makeCharacter(
  42918. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  42919. {
  42920. front: {
  42921. height: math.unit(6, "feet"),
  42922. weight: math.unit(145, "lb"),
  42923. name: "Front",
  42924. image: {
  42925. source: "./media/characters/farzian/front.svg",
  42926. extra: 1902/1693,
  42927. bottom: 108/2010
  42928. }
  42929. },
  42930. },
  42931. [
  42932. {
  42933. name: "Macro",
  42934. height: math.unit(500, "feet"),
  42935. default: true
  42936. },
  42937. ]
  42938. ))
  42939. characterMakers.push(() => makeCharacter(
  42940. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  42941. {
  42942. front: {
  42943. height: math.unit(3 + 6/12, "feet"),
  42944. weight: math.unit(50, "lb"),
  42945. name: "Front",
  42946. image: {
  42947. source: "./media/characters/kimberly-tilson/front.svg",
  42948. extra: 1400/1322,
  42949. bottom: 36/1436
  42950. }
  42951. },
  42952. back: {
  42953. height: math.unit(3 + 6/12, "feet"),
  42954. weight: math.unit(50, "lb"),
  42955. name: "Back",
  42956. image: {
  42957. source: "./media/characters/kimberly-tilson/back.svg",
  42958. extra: 1370/1307,
  42959. bottom: 20/1390
  42960. }
  42961. },
  42962. },
  42963. [
  42964. {
  42965. name: "Normal",
  42966. height: math.unit(3 + 6/12, "feet"),
  42967. default: true
  42968. },
  42969. ]
  42970. ))
  42971. characterMakers.push(() => makeCharacter(
  42972. { name: "Harthos", species: ["peacekeeper", "allusus"], tags: ["anthro"] },
  42973. {
  42974. front: {
  42975. height: math.unit(350, "meters"),
  42976. weight: math.unit(7.57059e+8, "lb"),
  42977. name: "Front",
  42978. image: {
  42979. source: "./media/characters/harthos/front.svg",
  42980. extra: 455/446,
  42981. bottom: 15/470
  42982. },
  42983. form: "peacekeeper",
  42984. default: true
  42985. },
  42986. allusus_front: {
  42987. height: math.unit(270, "meters"),
  42988. weight: math.unit(3.47550e+8, "lb"),
  42989. name: "Front",
  42990. image: {
  42991. source: "./media/characters/harthos/allusus-front.svg",
  42992. extra: 455/446,
  42993. bottom: 15/470
  42994. },
  42995. form: "allusus",
  42996. },
  42997. },
  42998. [
  42999. {
  43000. name: "Macro",
  43001. height: math.unit(350, "meters"),
  43002. default: true,
  43003. form: "peacekeeper"
  43004. },
  43005. {
  43006. name: "Macro",
  43007. height: math.unit(270, "meters"),
  43008. default: true,
  43009. form: "allusus"
  43010. },
  43011. ],
  43012. {
  43013. "peacekeeper": {
  43014. name: "Peacekeeper",
  43015. default: true
  43016. },
  43017. "allusus": {
  43018. name: "Allusus",
  43019. },
  43020. }
  43021. ))
  43022. characterMakers.push(() => makeCharacter(
  43023. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  43024. {
  43025. front: {
  43026. height: math.unit(15, "feet"),
  43027. name: "Front",
  43028. image: {
  43029. source: "./media/characters/hypatia/front.svg",
  43030. extra: 1653/1591,
  43031. bottom: 79/1732
  43032. }
  43033. },
  43034. },
  43035. [
  43036. {
  43037. name: "Normal",
  43038. height: math.unit(15, "feet")
  43039. },
  43040. {
  43041. name: "Small",
  43042. height: math.unit(300, "feet")
  43043. },
  43044. {
  43045. name: "Macro",
  43046. height: math.unit(2500, "feet"),
  43047. default: true
  43048. },
  43049. {
  43050. name: "Mega Macro",
  43051. height: math.unit(1500, "miles")
  43052. },
  43053. {
  43054. name: "Giga Macro",
  43055. height: math.unit(1.5e6, "miles")
  43056. },
  43057. ]
  43058. ))
  43059. characterMakers.push(() => makeCharacter(
  43060. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  43061. {
  43062. front: {
  43063. height: math.unit(6, "feet"),
  43064. weight: math.unit(200, "lb"),
  43065. name: "Front",
  43066. image: {
  43067. source: "./media/characters/wulver/front.svg",
  43068. extra: 1724/1632,
  43069. bottom: 130/1854
  43070. }
  43071. },
  43072. frontNsfw: {
  43073. height: math.unit(6, "feet"),
  43074. weight: math.unit(200, "lb"),
  43075. name: "Front (NSFW)",
  43076. image: {
  43077. source: "./media/characters/wulver/front-nsfw.svg",
  43078. extra: 1724/1632,
  43079. bottom: 130/1854
  43080. }
  43081. },
  43082. },
  43083. [
  43084. {
  43085. name: "Human-Sized",
  43086. height: math.unit(6, "feet")
  43087. },
  43088. {
  43089. name: "Normal",
  43090. height: math.unit(4, "meters"),
  43091. default: true
  43092. },
  43093. {
  43094. name: "Large",
  43095. height: math.unit(6, "m")
  43096. },
  43097. ]
  43098. ))
  43099. characterMakers.push(() => makeCharacter(
  43100. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  43101. {
  43102. front: {
  43103. height: math.unit(7, "feet"),
  43104. name: "Front",
  43105. image: {
  43106. source: "./media/characters/maru/front.svg",
  43107. extra: 1595/1570,
  43108. bottom: 0/1595
  43109. }
  43110. },
  43111. },
  43112. [
  43113. {
  43114. name: "Normal",
  43115. height: math.unit(7, "feet"),
  43116. default: true
  43117. },
  43118. {
  43119. name: "Macro",
  43120. height: math.unit(700, "feet")
  43121. },
  43122. {
  43123. name: "Mega Macro",
  43124. height: math.unit(25, "miles")
  43125. },
  43126. ]
  43127. ))
  43128. characterMakers.push(() => makeCharacter(
  43129. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  43130. {
  43131. front: {
  43132. height: math.unit(6, "feet"),
  43133. weight: math.unit(170, "lb"),
  43134. name: "Front",
  43135. image: {
  43136. source: "./media/characters/xenon/front.svg",
  43137. extra: 1376/1305,
  43138. bottom: 56/1432
  43139. }
  43140. },
  43141. back: {
  43142. height: math.unit(6, "feet"),
  43143. weight: math.unit(170, "lb"),
  43144. name: "Back",
  43145. image: {
  43146. source: "./media/characters/xenon/back.svg",
  43147. extra: 1328/1259,
  43148. bottom: 95/1423
  43149. }
  43150. },
  43151. maw: {
  43152. height: math.unit(0.52, "feet"),
  43153. name: "Maw",
  43154. image: {
  43155. source: "./media/characters/xenon/maw.svg"
  43156. }
  43157. },
  43158. handLeft: {
  43159. height: math.unit(0.82 * 169 / 153, "feet"),
  43160. name: "Hand (Left)",
  43161. image: {
  43162. source: "./media/characters/xenon/hand-left.svg"
  43163. }
  43164. },
  43165. handRight: {
  43166. height: math.unit(0.82, "feet"),
  43167. name: "Hand (Right)",
  43168. image: {
  43169. source: "./media/characters/xenon/hand-right.svg"
  43170. }
  43171. },
  43172. footLeft: {
  43173. height: math.unit(1.13, "feet"),
  43174. name: "Foot (Left)",
  43175. image: {
  43176. source: "./media/characters/xenon/foot-left.svg"
  43177. }
  43178. },
  43179. footRight: {
  43180. height: math.unit(1.13 * 194 / 196, "feet"),
  43181. name: "Foot (Right)",
  43182. image: {
  43183. source: "./media/characters/xenon/foot-right.svg"
  43184. }
  43185. },
  43186. },
  43187. [
  43188. {
  43189. name: "Micro",
  43190. height: math.unit(0.8, "inches")
  43191. },
  43192. {
  43193. name: "Normal",
  43194. height: math.unit(6, "feet")
  43195. },
  43196. {
  43197. name: "Macro",
  43198. height: math.unit(50, "feet"),
  43199. default: true
  43200. },
  43201. {
  43202. name: "Macro+",
  43203. height: math.unit(250, "feet")
  43204. },
  43205. {
  43206. name: "Megamacro",
  43207. height: math.unit(1500, "feet")
  43208. },
  43209. ]
  43210. ))
  43211. characterMakers.push(() => makeCharacter(
  43212. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  43213. {
  43214. front: {
  43215. height: math.unit(7 + 5/12, "feet"),
  43216. name: "Front",
  43217. image: {
  43218. source: "./media/characters/zane/front.svg",
  43219. extra: 1260/1203,
  43220. bottom: 94/1354
  43221. }
  43222. },
  43223. back: {
  43224. height: math.unit(5.05, "feet"),
  43225. name: "Back",
  43226. image: {
  43227. source: "./media/characters/zane/back.svg",
  43228. extra: 893/829,
  43229. bottom: 30/923
  43230. }
  43231. },
  43232. werewolf: {
  43233. height: math.unit(11, "feet"),
  43234. name: "Werewolf",
  43235. image: {
  43236. source: "./media/characters/zane/werewolf.svg",
  43237. extra: 1383/1323,
  43238. bottom: 89/1472
  43239. }
  43240. },
  43241. foot: {
  43242. height: math.unit(1.46, "feet"),
  43243. name: "Foot",
  43244. image: {
  43245. source: "./media/characters/zane/foot.svg"
  43246. }
  43247. },
  43248. footFront: {
  43249. height: math.unit(0.784, "feet"),
  43250. name: "Foot (Front)",
  43251. image: {
  43252. source: "./media/characters/zane/foot-front.svg"
  43253. }
  43254. },
  43255. dick: {
  43256. height: math.unit(1.95, "feet"),
  43257. name: "Dick",
  43258. image: {
  43259. source: "./media/characters/zane/dick.svg"
  43260. }
  43261. },
  43262. dickWerewolf: {
  43263. height: math.unit(3.77, "feet"),
  43264. name: "Dick (Werewolf)",
  43265. image: {
  43266. source: "./media/characters/zane/dick.svg"
  43267. }
  43268. },
  43269. },
  43270. [
  43271. {
  43272. name: "Normal",
  43273. height: math.unit(7 + 5/12, "feet"),
  43274. default: true
  43275. },
  43276. ]
  43277. ))
  43278. characterMakers.push(() => makeCharacter(
  43279. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  43280. {
  43281. front: {
  43282. height: math.unit(6 + 2/12, "feet"),
  43283. weight: math.unit(284, "lb"),
  43284. name: "Front",
  43285. image: {
  43286. source: "./media/characters/benni-desparque/front.svg",
  43287. extra: 878/729,
  43288. bottom: 58/936
  43289. }
  43290. },
  43291. back: {
  43292. height: math.unit(6 + 2/12, "feet"),
  43293. weight: math.unit(284, "lb"),
  43294. name: "Back",
  43295. image: {
  43296. source: "./media/characters/benni-desparque/back.svg",
  43297. extra: 901/756,
  43298. bottom: 51/952
  43299. }
  43300. },
  43301. dressed: {
  43302. height: math.unit(6 + 2/12 + 0.5/12, "feet"),
  43303. weight: math.unit(284, "lb"),
  43304. name: "Dressed",
  43305. image: {
  43306. source: "./media/characters/benni-desparque/dressed.svg",
  43307. extra: 1514/1276,
  43308. bottom: 65/1579
  43309. }
  43310. },
  43311. hand: {
  43312. height: math.unit(1.28, "feet"),
  43313. name: "Hand",
  43314. image: {
  43315. source: "./media/characters/benni-desparque/hand.svg"
  43316. }
  43317. },
  43318. foot: {
  43319. height: math.unit(1.53, "feet"),
  43320. name: "Foot",
  43321. image: {
  43322. source: "./media/characters/benni-desparque/foot.svg"
  43323. }
  43324. },
  43325. aiControlUnit: {
  43326. height: math.unit(0.175, "feet"),
  43327. name: "AI Control Unit",
  43328. image: {
  43329. source: "./media/characters/benni-desparque/ai-control-unit.svg"
  43330. }
  43331. },
  43332. },
  43333. [
  43334. {
  43335. name: "Civilian",
  43336. height: math.unit(6 + 2/12, "feet")
  43337. },
  43338. {
  43339. name: "Normal",
  43340. height: math.unit(98, "feet"),
  43341. default: true
  43342. },
  43343. {
  43344. name: "Kaiju Fighter",
  43345. height: math.unit(268, "feet")
  43346. },
  43347. ]
  43348. ))
  43349. characterMakers.push(() => makeCharacter(
  43350. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  43351. {
  43352. front: {
  43353. height: math.unit(5, "feet"),
  43354. weight: math.unit(105, "lb"),
  43355. name: "Front",
  43356. image: {
  43357. source: "./media/characters/maxine/front.svg",
  43358. extra: 1386/1250,
  43359. bottom: 71/1457
  43360. }
  43361. },
  43362. },
  43363. [
  43364. {
  43365. name: "Normal",
  43366. height: math.unit(5, "feet"),
  43367. default: true
  43368. },
  43369. ]
  43370. ))
  43371. characterMakers.push(() => makeCharacter(
  43372. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  43373. {
  43374. front: {
  43375. height: math.unit(11 + 7/12, "feet"),
  43376. weight: math.unit(9576, "lb"),
  43377. name: "Front",
  43378. image: {
  43379. source: "./media/characters/scaly/front.svg",
  43380. extra: 888/867,
  43381. bottom: 36/924
  43382. }
  43383. },
  43384. },
  43385. [
  43386. {
  43387. name: "Normal",
  43388. height: math.unit(11 + 7/12, "feet"),
  43389. default: true
  43390. },
  43391. ]
  43392. ))
  43393. characterMakers.push(() => makeCharacter(
  43394. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  43395. {
  43396. front: {
  43397. height: math.unit(6 + 3/12, "feet"),
  43398. name: "Front",
  43399. image: {
  43400. source: "./media/characters/saelria/front.svg",
  43401. extra: 1243/1138,
  43402. bottom: 46/1289
  43403. }
  43404. },
  43405. },
  43406. [
  43407. {
  43408. name: "Micro",
  43409. height: math.unit(6, "inches"),
  43410. },
  43411. {
  43412. name: "Normal",
  43413. height: math.unit(6 + 3/12, "feet"),
  43414. default: true
  43415. },
  43416. {
  43417. name: "Macro",
  43418. height: math.unit(25, "feet")
  43419. },
  43420. ]
  43421. ))
  43422. characterMakers.push(() => makeCharacter(
  43423. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  43424. {
  43425. front: {
  43426. height: math.unit(80, "meters"),
  43427. weight: math.unit(7000, "tonnes"),
  43428. name: "Front",
  43429. image: {
  43430. source: "./media/characters/tef/front.svg",
  43431. extra: 2036/1991,
  43432. bottom: 54/2090
  43433. }
  43434. },
  43435. back: {
  43436. height: math.unit(80, "meters"),
  43437. weight: math.unit(7000, "tonnes"),
  43438. name: "Back",
  43439. image: {
  43440. source: "./media/characters/tef/back.svg",
  43441. extra: 2036/1991,
  43442. bottom: 54/2090
  43443. }
  43444. },
  43445. },
  43446. [
  43447. {
  43448. name: "Macro",
  43449. height: math.unit(80, "meters"),
  43450. default: true
  43451. },
  43452. ]
  43453. ))
  43454. characterMakers.push(() => makeCharacter(
  43455. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  43456. {
  43457. front: {
  43458. height: math.unit(13, "feet"),
  43459. weight: math.unit(6, "tons"),
  43460. name: "Front",
  43461. image: {
  43462. source: "./media/characters/rover/front.svg",
  43463. extra: 1233/1156,
  43464. bottom: 50/1283
  43465. }
  43466. },
  43467. back: {
  43468. height: math.unit(13, "feet"),
  43469. weight: math.unit(6, "tons"),
  43470. name: "Back",
  43471. image: {
  43472. source: "./media/characters/rover/back.svg",
  43473. extra: 1327/1258,
  43474. bottom: 39/1366
  43475. }
  43476. },
  43477. },
  43478. [
  43479. {
  43480. name: "Normal",
  43481. height: math.unit(13, "feet"),
  43482. default: true
  43483. },
  43484. {
  43485. name: "Macro",
  43486. height: math.unit(1300, "feet")
  43487. },
  43488. {
  43489. name: "Megamacro",
  43490. height: math.unit(1300, "miles")
  43491. },
  43492. {
  43493. name: "Gigamacro",
  43494. height: math.unit(1300000, "miles")
  43495. },
  43496. ]
  43497. ))
  43498. characterMakers.push(() => makeCharacter(
  43499. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  43500. {
  43501. front: {
  43502. height: math.unit(10, "feet"),
  43503. weight: math.unit(500, "lb"),
  43504. name: "Front",
  43505. image: {
  43506. source: "./media/characters/ariz/front.svg",
  43507. extra: 461/450,
  43508. bottom: 16/477
  43509. }
  43510. },
  43511. },
  43512. [
  43513. {
  43514. name: "MiniMacro",
  43515. height: math.unit(10, "feet"),
  43516. default: true
  43517. },
  43518. ]
  43519. ))
  43520. characterMakers.push(() => makeCharacter(
  43521. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  43522. {
  43523. front: {
  43524. height: math.unit(6, "feet"),
  43525. weight: math.unit(140, "lb"),
  43526. name: "Front",
  43527. image: {
  43528. source: "./media/characters/sigrun/front.svg",
  43529. extra: 1418/1359,
  43530. bottom: 27/1445
  43531. }
  43532. },
  43533. },
  43534. [
  43535. {
  43536. name: "Macro",
  43537. height: math.unit(35, "feet"),
  43538. default: true
  43539. },
  43540. ]
  43541. ))
  43542. characterMakers.push(() => makeCharacter(
  43543. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  43544. {
  43545. front: {
  43546. height: math.unit(6, "feet"),
  43547. weight: math.unit(150, "lb"),
  43548. name: "Front",
  43549. image: {
  43550. source: "./media/characters/numin/front.svg",
  43551. extra: 1433/1388,
  43552. bottom: 12/1445
  43553. }
  43554. },
  43555. },
  43556. [
  43557. {
  43558. name: "Macro",
  43559. height: math.unit(21.5, "km"),
  43560. default: true
  43561. },
  43562. ]
  43563. ))
  43564. characterMakers.push(() => makeCharacter(
  43565. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  43566. {
  43567. front: {
  43568. height: math.unit(6, "feet"),
  43569. weight: math.unit(463, "lb"),
  43570. name: "Front",
  43571. image: {
  43572. source: "./media/characters/melwa/front.svg",
  43573. extra: 1307/1248,
  43574. bottom: 93/1400
  43575. }
  43576. },
  43577. },
  43578. [
  43579. {
  43580. name: "Macro",
  43581. height: math.unit(50, "meters"),
  43582. default: true
  43583. },
  43584. ]
  43585. ))
  43586. characterMakers.push(() => makeCharacter(
  43587. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  43588. {
  43589. front: {
  43590. height: math.unit(325, "feet"),
  43591. name: "Front",
  43592. image: {
  43593. source: "./media/characters/zorkaiju/front.svg",
  43594. extra: 1955/1814,
  43595. bottom: 40/1995
  43596. }
  43597. },
  43598. frontExtended: {
  43599. height: math.unit(325, "feet"),
  43600. name: "Front (Extended)",
  43601. image: {
  43602. source: "./media/characters/zorkaiju/front-extended.svg",
  43603. extra: 1955/1814,
  43604. bottom: 40/1995
  43605. }
  43606. },
  43607. side: {
  43608. height: math.unit(325, "feet"),
  43609. name: "Side",
  43610. image: {
  43611. source: "./media/characters/zorkaiju/side.svg",
  43612. extra: 1495/1396,
  43613. bottom: 17/1512
  43614. }
  43615. },
  43616. sideExtended: {
  43617. height: math.unit(325, "feet"),
  43618. name: "Side (Extended)",
  43619. image: {
  43620. source: "./media/characters/zorkaiju/side-extended.svg",
  43621. extra: 1495/1396,
  43622. bottom: 17/1512
  43623. }
  43624. },
  43625. back: {
  43626. height: math.unit(325, "feet"),
  43627. name: "Back",
  43628. image: {
  43629. source: "./media/characters/zorkaiju/back.svg",
  43630. extra: 1959/1821,
  43631. bottom: 31/1990
  43632. }
  43633. },
  43634. backExtended: {
  43635. height: math.unit(325, "feet"),
  43636. name: "Back (Extended)",
  43637. image: {
  43638. source: "./media/characters/zorkaiju/back-extended.svg",
  43639. extra: 1959/1821,
  43640. bottom: 31/1990
  43641. }
  43642. },
  43643. hand: {
  43644. height: math.unit(58.4, "feet"),
  43645. name: "Hand",
  43646. image: {
  43647. source: "./media/characters/zorkaiju/hand.svg"
  43648. }
  43649. },
  43650. handExtended: {
  43651. height: math.unit(61.4, "feet"),
  43652. name: "Hand (Extended)",
  43653. image: {
  43654. source: "./media/characters/zorkaiju/hand-extended.svg"
  43655. }
  43656. },
  43657. foot: {
  43658. height: math.unit(95, "feet"),
  43659. name: "Foot",
  43660. image: {
  43661. source: "./media/characters/zorkaiju/foot.svg"
  43662. }
  43663. },
  43664. leftArm: {
  43665. height: math.unit(59, "feet"),
  43666. name: "Left Arm",
  43667. image: {
  43668. source: "./media/characters/zorkaiju/left-arm.svg"
  43669. }
  43670. },
  43671. rightArm: {
  43672. height: math.unit(59, "feet"),
  43673. name: "Right Arm",
  43674. image: {
  43675. source: "./media/characters/zorkaiju/right-arm.svg"
  43676. }
  43677. },
  43678. leftArmExtended: {
  43679. height: math.unit(59 * 1.033546, "feet"),
  43680. name: "Left Arm (Extended)",
  43681. image: {
  43682. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  43683. }
  43684. },
  43685. rightArmExtended: {
  43686. height: math.unit(59 * 1.0496, "feet"),
  43687. name: "Right Arm (Extended)",
  43688. image: {
  43689. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  43690. }
  43691. },
  43692. tail: {
  43693. height: math.unit(104, "feet"),
  43694. name: "Tail",
  43695. image: {
  43696. source: "./media/characters/zorkaiju/tail.svg"
  43697. }
  43698. },
  43699. tailExtended: {
  43700. height: math.unit(104, "feet"),
  43701. name: "Tail (Extended)",
  43702. image: {
  43703. source: "./media/characters/zorkaiju/tail-extended.svg"
  43704. }
  43705. },
  43706. tailBottom: {
  43707. height: math.unit(104, "feet"),
  43708. name: "Tail Bottom",
  43709. image: {
  43710. source: "./media/characters/zorkaiju/tail-bottom.svg"
  43711. }
  43712. },
  43713. crystal: {
  43714. height: math.unit(27.54, "feet"),
  43715. name: "Crystal",
  43716. image: {
  43717. source: "./media/characters/zorkaiju/crystal.svg"
  43718. }
  43719. },
  43720. },
  43721. [
  43722. {
  43723. name: "Kaiju",
  43724. height: math.unit(325, "feet"),
  43725. default: true
  43726. },
  43727. ]
  43728. ))
  43729. characterMakers.push(() => makeCharacter(
  43730. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  43731. {
  43732. front: {
  43733. height: math.unit(6 + 1/12, "feet"),
  43734. weight: math.unit(115, "lb"),
  43735. name: "Front",
  43736. image: {
  43737. source: "./media/characters/bailey-belfry/front.svg",
  43738. extra: 1240/1121,
  43739. bottom: 101/1341
  43740. }
  43741. },
  43742. },
  43743. [
  43744. {
  43745. name: "Normal",
  43746. height: math.unit(6 + 1/12, "feet"),
  43747. default: true
  43748. },
  43749. ]
  43750. ))
  43751. characterMakers.push(() => makeCharacter(
  43752. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  43753. {
  43754. side: {
  43755. height: math.unit(4, "meters"),
  43756. weight: math.unit(250, "kg"),
  43757. name: "Side",
  43758. image: {
  43759. source: "./media/characters/blacky/side.svg",
  43760. extra: 1027/919,
  43761. bottom: 43/1070
  43762. }
  43763. },
  43764. maw: {
  43765. height: math.unit(1, "meters"),
  43766. name: "Maw",
  43767. image: {
  43768. source: "./media/characters/blacky/maw.svg"
  43769. }
  43770. },
  43771. paw: {
  43772. height: math.unit(1, "meters"),
  43773. name: "Paw",
  43774. image: {
  43775. source: "./media/characters/blacky/paw.svg"
  43776. }
  43777. },
  43778. },
  43779. [
  43780. {
  43781. name: "Normal",
  43782. height: math.unit(4, "meters"),
  43783. default: true
  43784. },
  43785. ]
  43786. ))
  43787. characterMakers.push(() => makeCharacter(
  43788. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  43789. {
  43790. front: {
  43791. height: math.unit(170, "cm"),
  43792. weight: math.unit(66, "kg"),
  43793. name: "Front",
  43794. image: {
  43795. source: "./media/characters/thux-ei/front.svg",
  43796. extra: 1109/1011,
  43797. bottom: 8/1117
  43798. }
  43799. },
  43800. },
  43801. [
  43802. {
  43803. name: "Normal",
  43804. height: math.unit(170, "cm"),
  43805. default: true
  43806. },
  43807. ]
  43808. ))
  43809. characterMakers.push(() => makeCharacter(
  43810. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  43811. {
  43812. front: {
  43813. height: math.unit(5, "feet"),
  43814. weight: math.unit(120, "lb"),
  43815. name: "Front",
  43816. image: {
  43817. source: "./media/characters/roxanne-voltaire/front.svg",
  43818. extra: 1901/1779,
  43819. bottom: 53/1954
  43820. }
  43821. },
  43822. },
  43823. [
  43824. {
  43825. name: "Normal",
  43826. height: math.unit(5, "feet"),
  43827. default: true
  43828. },
  43829. {
  43830. name: "Giant",
  43831. height: math.unit(50, "feet")
  43832. },
  43833. {
  43834. name: "Titan",
  43835. height: math.unit(500, "feet")
  43836. },
  43837. {
  43838. name: "Macro",
  43839. height: math.unit(5000, "feet")
  43840. },
  43841. {
  43842. name: "Megamacro",
  43843. height: math.unit(50000, "feet")
  43844. },
  43845. {
  43846. name: "Gigamacro",
  43847. height: math.unit(500000, "feet")
  43848. },
  43849. {
  43850. name: "Teramacro",
  43851. height: math.unit(5e6, "feet")
  43852. },
  43853. ]
  43854. ))
  43855. characterMakers.push(() => makeCharacter(
  43856. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  43857. {
  43858. front: {
  43859. height: math.unit(6 + 2/12, "feet"),
  43860. name: "Front",
  43861. image: {
  43862. source: "./media/characters/squeaks/front.svg",
  43863. extra: 1823/1768,
  43864. bottom: 138/1961
  43865. }
  43866. },
  43867. },
  43868. [
  43869. {
  43870. name: "Micro",
  43871. height: math.unit(0.5, "inches")
  43872. },
  43873. {
  43874. name: "Normal",
  43875. height: math.unit(6 + 2/12, "feet"),
  43876. default: true
  43877. },
  43878. {
  43879. name: "Macro",
  43880. height: math.unit(600, "feet")
  43881. },
  43882. ]
  43883. ))
  43884. characterMakers.push(() => makeCharacter(
  43885. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  43886. {
  43887. front: {
  43888. height: math.unit(1.72, "meters"),
  43889. name: "Front",
  43890. image: {
  43891. source: "./media/characters/archinger/front.svg",
  43892. extra: 1861/1675,
  43893. bottom: 125/1986
  43894. }
  43895. },
  43896. back: {
  43897. height: math.unit(1.72, "meters"),
  43898. name: "Back",
  43899. image: {
  43900. source: "./media/characters/archinger/back.svg",
  43901. extra: 1844/1701,
  43902. bottom: 104/1948
  43903. }
  43904. },
  43905. cock: {
  43906. height: math.unit(0.59, "feet"),
  43907. name: "Cock",
  43908. image: {
  43909. source: "./media/characters/archinger/cock.svg"
  43910. }
  43911. },
  43912. },
  43913. [
  43914. {
  43915. name: "Normal",
  43916. height: math.unit(1.72, "meters"),
  43917. default: true
  43918. },
  43919. {
  43920. name: "Macro",
  43921. height: math.unit(84, "meters")
  43922. },
  43923. {
  43924. name: "Macro+",
  43925. height: math.unit(112, "meters")
  43926. },
  43927. {
  43928. name: "Macro++",
  43929. height: math.unit(960, "meters")
  43930. },
  43931. {
  43932. name: "Macro+++",
  43933. height: math.unit(4, "km")
  43934. },
  43935. {
  43936. name: "Macro++++",
  43937. height: math.unit(48, "km")
  43938. },
  43939. {
  43940. name: "Macro+++++",
  43941. height: math.unit(4500, "km")
  43942. },
  43943. ]
  43944. ))
  43945. characterMakers.push(() => makeCharacter(
  43946. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  43947. {
  43948. front: {
  43949. height: math.unit(5 + 5/12, "feet"),
  43950. name: "Front",
  43951. image: {
  43952. source: "./media/characters/alsnapz/front.svg",
  43953. extra: 1157/1065,
  43954. bottom: 42/1199
  43955. }
  43956. },
  43957. },
  43958. [
  43959. {
  43960. name: "Normal",
  43961. height: math.unit(5 + 5/12, "feet"),
  43962. default: true
  43963. },
  43964. ]
  43965. ))
  43966. characterMakers.push(() => makeCharacter(
  43967. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  43968. {
  43969. side: {
  43970. height: math.unit(3.2, "earths"),
  43971. name: "Side",
  43972. image: {
  43973. source: "./media/characters/mag/side.svg",
  43974. extra: 1331/1008,
  43975. bottom: 52/1383
  43976. }
  43977. },
  43978. wing: {
  43979. height: math.unit(1.94, "earths"),
  43980. name: "Wing",
  43981. image: {
  43982. source: "./media/characters/mag/wing.svg"
  43983. }
  43984. },
  43985. dick: {
  43986. height: math.unit(1.8, "earths"),
  43987. name: "Dick",
  43988. image: {
  43989. source: "./media/characters/mag/dick.svg"
  43990. }
  43991. },
  43992. ass: {
  43993. height: math.unit(1.33, "earths"),
  43994. name: "Ass",
  43995. image: {
  43996. source: "./media/characters/mag/ass.svg"
  43997. }
  43998. },
  43999. head: {
  44000. height: math.unit(1.1, "earths"),
  44001. name: "Head",
  44002. image: {
  44003. source: "./media/characters/mag/head.svg"
  44004. }
  44005. },
  44006. maw: {
  44007. height: math.unit(1.62, "earths"),
  44008. name: "Maw",
  44009. image: {
  44010. source: "./media/characters/mag/maw.svg"
  44011. }
  44012. },
  44013. },
  44014. [
  44015. {
  44016. name: "Small",
  44017. height: math.unit(162, "feet")
  44018. },
  44019. {
  44020. name: "Normal",
  44021. height: math.unit(3.2, "earths"),
  44022. default: true
  44023. },
  44024. ]
  44025. ))
  44026. characterMakers.push(() => makeCharacter(
  44027. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  44028. {
  44029. front: {
  44030. height: math.unit(512, "feet"),
  44031. weight: math.unit(63509, "tonnes"),
  44032. name: "Front",
  44033. image: {
  44034. source: "./media/characters/vorrel-harroc/front.svg",
  44035. extra: 1075/1063,
  44036. bottom: 62/1137
  44037. }
  44038. },
  44039. },
  44040. [
  44041. {
  44042. name: "Normal",
  44043. height: math.unit(10, "feet")
  44044. },
  44045. {
  44046. name: "Macro",
  44047. height: math.unit(512, "feet"),
  44048. default: true
  44049. },
  44050. {
  44051. name: "Megamacro",
  44052. height: math.unit(256, "miles")
  44053. },
  44054. {
  44055. name: "Gigamacro",
  44056. height: math.unit(4096, "miles")
  44057. },
  44058. ]
  44059. ))
  44060. characterMakers.push(() => makeCharacter(
  44061. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  44062. {
  44063. side: {
  44064. height: math.unit(50, "feet"),
  44065. name: "Side",
  44066. image: {
  44067. source: "./media/characters/froimar/side.svg",
  44068. extra: 855/638,
  44069. bottom: 99/954
  44070. }
  44071. },
  44072. },
  44073. [
  44074. {
  44075. name: "Macro",
  44076. height: math.unit(50, "feet"),
  44077. default: true
  44078. },
  44079. ]
  44080. ))
  44081. characterMakers.push(() => makeCharacter(
  44082. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  44083. {
  44084. front: {
  44085. height: math.unit(210, "miles"),
  44086. name: "Front",
  44087. image: {
  44088. source: "./media/characters/timothy/front.svg",
  44089. extra: 1007/943,
  44090. bottom: 62/1069
  44091. }
  44092. },
  44093. frontSkirt: {
  44094. height: math.unit(210, "miles"),
  44095. name: "Front (Skirt)",
  44096. image: {
  44097. source: "./media/characters/timothy/front-skirt.svg",
  44098. extra: 1007/943,
  44099. bottom: 62/1069
  44100. }
  44101. },
  44102. frontCoat: {
  44103. height: math.unit(210, "miles"),
  44104. name: "Front (Coat)",
  44105. image: {
  44106. source: "./media/characters/timothy/front-coat.svg",
  44107. extra: 1007/943,
  44108. bottom: 62/1069
  44109. }
  44110. },
  44111. },
  44112. [
  44113. {
  44114. name: "Macro",
  44115. height: math.unit(210, "miles"),
  44116. default: true
  44117. },
  44118. {
  44119. name: "Megamacro",
  44120. height: math.unit(210000, "miles")
  44121. },
  44122. ]
  44123. ))
  44124. characterMakers.push(() => makeCharacter(
  44125. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  44126. {
  44127. front: {
  44128. height: math.unit(188, "feet"),
  44129. name: "Front",
  44130. image: {
  44131. source: "./media/characters/pyotr/front.svg",
  44132. extra: 1912/1826,
  44133. bottom: 18/1930
  44134. }
  44135. },
  44136. },
  44137. [
  44138. {
  44139. name: "Macro",
  44140. height: math.unit(188, "feet"),
  44141. default: true
  44142. },
  44143. {
  44144. name: "Megamacro",
  44145. height: math.unit(8, "miles")
  44146. },
  44147. ]
  44148. ))
  44149. characterMakers.push(() => makeCharacter(
  44150. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  44151. {
  44152. side: {
  44153. height: math.unit(10, "feet"),
  44154. weight: math.unit(4500, "lb"),
  44155. name: "Side",
  44156. image: {
  44157. source: "./media/characters/ackart/side.svg",
  44158. extra: 1776/1668,
  44159. bottom: 116/1892
  44160. }
  44161. },
  44162. },
  44163. [
  44164. {
  44165. name: "Normal",
  44166. height: math.unit(10, "feet"),
  44167. default: true
  44168. },
  44169. ]
  44170. ))
  44171. characterMakers.push(() => makeCharacter(
  44172. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  44173. {
  44174. side: {
  44175. height: math.unit(21, "feet"),
  44176. name: "Side",
  44177. image: {
  44178. source: "./media/characters/nolow/side.svg",
  44179. extra: 1484/1434,
  44180. bottom: 85/1569
  44181. }
  44182. },
  44183. sideErect: {
  44184. height: math.unit(21, "feet"),
  44185. name: "Side-erect",
  44186. image: {
  44187. source: "./media/characters/nolow/side-erect.svg",
  44188. extra: 1484/1434,
  44189. bottom: 85/1569
  44190. }
  44191. },
  44192. },
  44193. [
  44194. {
  44195. name: "Regular",
  44196. height: math.unit(12, "feet")
  44197. },
  44198. {
  44199. name: "Big Chee",
  44200. height: math.unit(21, "feet"),
  44201. default: true
  44202. },
  44203. ]
  44204. ))
  44205. characterMakers.push(() => makeCharacter(
  44206. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  44207. {
  44208. front: {
  44209. height: math.unit(7, "feet"),
  44210. weight: math.unit(250, "lb"),
  44211. name: "Front",
  44212. image: {
  44213. source: "./media/characters/nines/front.svg",
  44214. extra: 1741/1607,
  44215. bottom: 41/1782
  44216. }
  44217. },
  44218. side: {
  44219. height: math.unit(7, "feet"),
  44220. weight: math.unit(250, "lb"),
  44221. name: "Side",
  44222. image: {
  44223. source: "./media/characters/nines/side.svg",
  44224. extra: 1854/1735,
  44225. bottom: 93/1947
  44226. }
  44227. },
  44228. back: {
  44229. height: math.unit(7, "feet"),
  44230. weight: math.unit(250, "lb"),
  44231. name: "Back",
  44232. image: {
  44233. source: "./media/characters/nines/back.svg",
  44234. extra: 1748/1615,
  44235. bottom: 20/1768
  44236. }
  44237. },
  44238. },
  44239. [
  44240. {
  44241. name: "Megamacro",
  44242. height: math.unit(99, "km"),
  44243. default: true
  44244. },
  44245. ]
  44246. ))
  44247. characterMakers.push(() => makeCharacter(
  44248. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  44249. {
  44250. front: {
  44251. height: math.unit(5 + 10/12, "feet"),
  44252. weight: math.unit(210, "lb"),
  44253. name: "Front",
  44254. image: {
  44255. source: "./media/characters/zenith/front.svg",
  44256. extra: 1531/1452,
  44257. bottom: 198/1729
  44258. }
  44259. },
  44260. back: {
  44261. height: math.unit(5 + 10/12, "feet"),
  44262. weight: math.unit(210, "lb"),
  44263. name: "Back",
  44264. image: {
  44265. source: "./media/characters/zenith/back.svg",
  44266. extra: 1571/1487,
  44267. bottom: 75/1646
  44268. }
  44269. },
  44270. },
  44271. [
  44272. {
  44273. name: "Normal",
  44274. height: math.unit(5 + 10/12, "feet"),
  44275. default: true
  44276. }
  44277. ]
  44278. ))
  44279. characterMakers.push(() => makeCharacter(
  44280. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  44281. {
  44282. front: {
  44283. height: math.unit(4, "feet"),
  44284. weight: math.unit(60, "lb"),
  44285. name: "Front",
  44286. image: {
  44287. source: "./media/characters/jasper/front.svg",
  44288. extra: 1450/1379,
  44289. bottom: 19/1469
  44290. }
  44291. },
  44292. },
  44293. [
  44294. {
  44295. name: "Normal",
  44296. height: math.unit(4, "feet"),
  44297. default: true
  44298. },
  44299. ]
  44300. ))
  44301. characterMakers.push(() => makeCharacter(
  44302. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  44303. {
  44304. front: {
  44305. height: math.unit(6 + 5/12, "feet"),
  44306. weight: math.unit(290, "lb"),
  44307. name: "Front",
  44308. image: {
  44309. source: "./media/characters/tiberius-thyben/front.svg",
  44310. extra: 757/739,
  44311. bottom: 39/796
  44312. }
  44313. },
  44314. },
  44315. [
  44316. {
  44317. name: "Micro",
  44318. height: math.unit(1.5, "inches")
  44319. },
  44320. {
  44321. name: "Normal",
  44322. height: math.unit(6 + 5/12, "feet"),
  44323. default: true
  44324. },
  44325. {
  44326. name: "Macro",
  44327. height: math.unit(300, "feet")
  44328. },
  44329. ]
  44330. ))
  44331. characterMakers.push(() => makeCharacter(
  44332. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  44333. {
  44334. front: {
  44335. height: math.unit(5 + 6/12, "feet"),
  44336. weight: math.unit(60, "kg"),
  44337. name: "Front",
  44338. image: {
  44339. source: "./media/characters/sabre/front.svg",
  44340. extra: 738/671,
  44341. bottom: 27/765
  44342. }
  44343. },
  44344. },
  44345. [
  44346. {
  44347. name: "Teeny",
  44348. height: math.unit(2, "inches")
  44349. },
  44350. {
  44351. name: "Smol",
  44352. height: math.unit(8, "inches")
  44353. },
  44354. {
  44355. name: "Normal",
  44356. height: math.unit(5 + 6/12, "feet"),
  44357. default: true
  44358. },
  44359. {
  44360. name: "Mini-Macro",
  44361. height: math.unit(15, "feet")
  44362. },
  44363. {
  44364. name: "Macro",
  44365. height: math.unit(50, "feet")
  44366. },
  44367. ]
  44368. ))
  44369. characterMakers.push(() => makeCharacter(
  44370. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  44371. {
  44372. front: {
  44373. height: math.unit(6 + 4/12, "feet"),
  44374. weight: math.unit(170, "lb"),
  44375. name: "Front",
  44376. image: {
  44377. source: "./media/characters/charlie/front.svg",
  44378. extra: 1348/1228,
  44379. bottom: 15/1363
  44380. }
  44381. },
  44382. },
  44383. [
  44384. {
  44385. name: "Macro",
  44386. height: math.unit(1700, "meters"),
  44387. default: true
  44388. },
  44389. {
  44390. name: "MegaMacro",
  44391. height: math.unit(20400, "meters")
  44392. },
  44393. ]
  44394. ))
  44395. characterMakers.push(() => makeCharacter(
  44396. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  44397. {
  44398. front: {
  44399. height: math.unit(1.96, "meters"),
  44400. weight: math.unit(220, "lb"),
  44401. name: "Front",
  44402. image: {
  44403. source: "./media/characters/susan-grant/front.svg",
  44404. extra: 482/478,
  44405. bottom: 7/489
  44406. }
  44407. },
  44408. },
  44409. [
  44410. {
  44411. name: "Normal",
  44412. height: math.unit(1.96, "meters"),
  44413. default: true
  44414. },
  44415. {
  44416. name: "Macro",
  44417. height: math.unit(76.2, "meters")
  44418. },
  44419. {
  44420. name: "MegaMacro",
  44421. height: math.unit(305, "meters")
  44422. },
  44423. {
  44424. name: "GigaMacro",
  44425. height: math.unit(1220, "meters")
  44426. },
  44427. {
  44428. name: "SuperMacro",
  44429. height: math.unit(4878, "meters")
  44430. },
  44431. ]
  44432. ))
  44433. characterMakers.push(() => makeCharacter(
  44434. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  44435. {
  44436. front: {
  44437. height: math.unit(5 + 4/12, "feet"),
  44438. weight: math.unit(110, "lb"),
  44439. name: "Front",
  44440. image: {
  44441. source: "./media/characters/axel-isanov/front.svg",
  44442. extra: 1096/1065,
  44443. bottom: 13/1109
  44444. }
  44445. },
  44446. },
  44447. [
  44448. {
  44449. name: "Normal",
  44450. height: math.unit(5 + 4/12, "feet"),
  44451. default: true
  44452. },
  44453. ]
  44454. ))
  44455. characterMakers.push(() => makeCharacter(
  44456. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  44457. {
  44458. front: {
  44459. height: math.unit(9, "feet"),
  44460. weight: math.unit(467, "lb"),
  44461. name: "Front",
  44462. image: {
  44463. source: "./media/characters/necahual/front.svg",
  44464. extra: 920/873,
  44465. bottom: 26/946
  44466. }
  44467. },
  44468. back: {
  44469. height: math.unit(9, "feet"),
  44470. weight: math.unit(467, "lb"),
  44471. name: "Back",
  44472. image: {
  44473. source: "./media/characters/necahual/back.svg",
  44474. extra: 930/884,
  44475. bottom: 16/946
  44476. }
  44477. },
  44478. frontUnderwear: {
  44479. height: math.unit(9, "feet"),
  44480. weight: math.unit(467, "lb"),
  44481. name: "Front (Underwear)",
  44482. image: {
  44483. source: "./media/characters/necahual/front-underwear.svg",
  44484. extra: 920/873,
  44485. bottom: 26/946
  44486. }
  44487. },
  44488. frontDressed: {
  44489. height: math.unit(9, "feet"),
  44490. weight: math.unit(467, "lb"),
  44491. name: "Front (Dressed)",
  44492. image: {
  44493. source: "./media/characters/necahual/front-dressed.svg",
  44494. extra: 920/873,
  44495. bottom: 26/946
  44496. }
  44497. },
  44498. },
  44499. [
  44500. {
  44501. name: "Comprsesed",
  44502. height: math.unit(9, "feet")
  44503. },
  44504. {
  44505. name: "Natural",
  44506. height: math.unit(15, "feet"),
  44507. default: true
  44508. },
  44509. {
  44510. name: "Boosted",
  44511. height: math.unit(50, "feet")
  44512. },
  44513. {
  44514. name: "Boosted+",
  44515. height: math.unit(150, "feet")
  44516. },
  44517. {
  44518. name: "Max",
  44519. height: math.unit(500, "feet")
  44520. },
  44521. ]
  44522. ))
  44523. characterMakers.push(() => makeCharacter(
  44524. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  44525. {
  44526. front: {
  44527. height: math.unit(22 + 1/12, "feet"),
  44528. weight: math.unit(3200, "lb"),
  44529. name: "Front",
  44530. image: {
  44531. source: "./media/characters/theo-acacia/front.svg",
  44532. extra: 1796/1741,
  44533. bottom: 83/1879
  44534. }
  44535. },
  44536. frontUnderwear: {
  44537. height: math.unit(22 + 1/12, "feet"),
  44538. weight: math.unit(3200, "lb"),
  44539. name: "Front (Underwear)",
  44540. image: {
  44541. source: "./media/characters/theo-acacia/front-underwear.svg",
  44542. extra: 1796/1741,
  44543. bottom: 83/1879
  44544. }
  44545. },
  44546. frontNude: {
  44547. height: math.unit(22 + 1/12, "feet"),
  44548. weight: math.unit(3200, "lb"),
  44549. name: "Front (Nude)",
  44550. image: {
  44551. source: "./media/characters/theo-acacia/front-nude.svg",
  44552. extra: 1796/1741,
  44553. bottom: 83/1879
  44554. }
  44555. },
  44556. },
  44557. [
  44558. {
  44559. name: "Normal",
  44560. height: math.unit(22 + 1/12, "feet"),
  44561. default: true
  44562. },
  44563. ]
  44564. ))
  44565. characterMakers.push(() => makeCharacter(
  44566. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44567. {
  44568. front: {
  44569. height: math.unit(20, "feet"),
  44570. name: "Front",
  44571. image: {
  44572. source: "./media/characters/astra/front.svg",
  44573. extra: 1850/1714,
  44574. bottom: 106/1956
  44575. }
  44576. },
  44577. frontUndressed: {
  44578. height: math.unit(20, "feet"),
  44579. name: "Front (Undressed)",
  44580. image: {
  44581. source: "./media/characters/astra/front-undressed.svg",
  44582. extra: 1926/1749,
  44583. bottom: 0/1926
  44584. }
  44585. },
  44586. hand: {
  44587. height: math.unit(1.53, "feet"),
  44588. name: "Hand",
  44589. image: {
  44590. source: "./media/characters/astra/hand.svg"
  44591. }
  44592. },
  44593. paw: {
  44594. height: math.unit(1.53, "feet"),
  44595. name: "Paw",
  44596. image: {
  44597. source: "./media/characters/astra/paw.svg"
  44598. }
  44599. },
  44600. },
  44601. [
  44602. {
  44603. name: "Smallest",
  44604. height: math.unit(20, "feet")
  44605. },
  44606. {
  44607. name: "Normal",
  44608. height: math.unit(1e9, "miles"),
  44609. default: true
  44610. },
  44611. {
  44612. name: "Larger",
  44613. height: math.unit(5, "multiverses")
  44614. },
  44615. {
  44616. name: "Largest",
  44617. height: math.unit(1e9, "multiverses")
  44618. },
  44619. ]
  44620. ))
  44621. characterMakers.push(() => makeCharacter(
  44622. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44623. {
  44624. front: {
  44625. height: math.unit(8, "feet"),
  44626. name: "Front",
  44627. image: {
  44628. source: "./media/characters/breanna/front.svg",
  44629. extra: 1912/1632,
  44630. bottom: 33/1945
  44631. }
  44632. },
  44633. },
  44634. [
  44635. {
  44636. name: "Smallest",
  44637. height: math.unit(8, "feet")
  44638. },
  44639. {
  44640. name: "Normal",
  44641. height: math.unit(1, "mile"),
  44642. default: true
  44643. },
  44644. {
  44645. name: "Maximum",
  44646. height: math.unit(1500000000000, "lightyears")
  44647. },
  44648. ]
  44649. ))
  44650. characterMakers.push(() => makeCharacter(
  44651. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  44652. {
  44653. front: {
  44654. height: math.unit(5 + 11/12, "feet"),
  44655. weight: math.unit(155, "lb"),
  44656. name: "Front",
  44657. image: {
  44658. source: "./media/characters/cai/front.svg",
  44659. extra: 1823/1702,
  44660. bottom: 32/1855
  44661. }
  44662. },
  44663. back: {
  44664. height: math.unit(5 + 11/12, "feet"),
  44665. weight: math.unit(155, "lb"),
  44666. name: "Back",
  44667. image: {
  44668. source: "./media/characters/cai/back.svg",
  44669. extra: 1809/1708,
  44670. bottom: 31/1840
  44671. }
  44672. },
  44673. },
  44674. [
  44675. {
  44676. name: "Normal",
  44677. height: math.unit(5 + 11/12, "feet"),
  44678. default: true
  44679. },
  44680. {
  44681. name: "Big",
  44682. height: math.unit(15, "feet")
  44683. },
  44684. {
  44685. name: "Macro",
  44686. height: math.unit(200, "feet")
  44687. },
  44688. ]
  44689. ))
  44690. characterMakers.push(() => makeCharacter(
  44691. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  44692. {
  44693. front: {
  44694. height: math.unit(5 + 6/12, "feet"),
  44695. weight: math.unit(160, "lb"),
  44696. name: "Front",
  44697. image: {
  44698. source: "./media/characters/zanna-virtuedòttir/front.svg",
  44699. extra: 1227/1174,
  44700. bottom: 37/1264
  44701. }
  44702. },
  44703. },
  44704. [
  44705. {
  44706. name: "Macro",
  44707. height: math.unit(444, "meters"),
  44708. default: true
  44709. },
  44710. ]
  44711. ))
  44712. characterMakers.push(() => makeCharacter(
  44713. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  44714. {
  44715. front: {
  44716. height: math.unit(18 + 7/12, "feet"),
  44717. name: "Front",
  44718. image: {
  44719. source: "./media/characters/rex/front.svg",
  44720. extra: 1941/1807,
  44721. bottom: 66/2007
  44722. }
  44723. },
  44724. back: {
  44725. height: math.unit(18 + 7/12, "feet"),
  44726. name: "Back",
  44727. image: {
  44728. source: "./media/characters/rex/back.svg",
  44729. extra: 1937/1822,
  44730. bottom: 42/1979
  44731. }
  44732. },
  44733. boot: {
  44734. height: math.unit(3.45, "feet"),
  44735. name: "Boot",
  44736. image: {
  44737. source: "./media/characters/rex/boot.svg"
  44738. }
  44739. },
  44740. paw: {
  44741. height: math.unit(4.17, "feet"),
  44742. name: "Paw",
  44743. image: {
  44744. source: "./media/characters/rex/paw.svg"
  44745. }
  44746. },
  44747. head: {
  44748. height: math.unit(6.728, "feet"),
  44749. name: "Head",
  44750. image: {
  44751. source: "./media/characters/rex/head.svg"
  44752. }
  44753. },
  44754. },
  44755. [
  44756. {
  44757. name: "Nano",
  44758. height: math.unit(18 + 7/12, "feet")
  44759. },
  44760. {
  44761. name: "Micro",
  44762. height: math.unit(1.5, "megameters")
  44763. },
  44764. {
  44765. name: "Normal",
  44766. height: math.unit(440, "megameters"),
  44767. default: true
  44768. },
  44769. {
  44770. name: "Macro",
  44771. height: math.unit(2.5, "gigameters")
  44772. },
  44773. {
  44774. name: "Gigamacro",
  44775. height: math.unit(2, "galaxies")
  44776. },
  44777. ]
  44778. ))
  44779. characterMakers.push(() => makeCharacter(
  44780. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  44781. {
  44782. side: {
  44783. height: math.unit(32, "feet"),
  44784. weight: math.unit(250000, "lb"),
  44785. name: "Side",
  44786. image: {
  44787. source: "./media/characters/silverwing/side.svg",
  44788. extra: 1100/1019,
  44789. bottom: 204/1304
  44790. }
  44791. },
  44792. },
  44793. [
  44794. {
  44795. name: "Normal",
  44796. height: math.unit(32, "feet"),
  44797. default: true
  44798. },
  44799. ]
  44800. ))
  44801. characterMakers.push(() => makeCharacter(
  44802. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  44803. {
  44804. front: {
  44805. height: math.unit(6 + 6/12, "feet"),
  44806. weight: math.unit(350, "lb"),
  44807. name: "Front",
  44808. image: {
  44809. source: "./media/characters/tristan-hawthorne/front.svg",
  44810. extra: 1159/1124,
  44811. bottom: 37/1196
  44812. },
  44813. form: "labrador",
  44814. default: true
  44815. },
  44816. skunkFront: {
  44817. height: math.unit(4 + 6/12, "feet"),
  44818. weight: math.unit(120, "lb"),
  44819. name: "Front",
  44820. image: {
  44821. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  44822. extra: 1609/1551,
  44823. bottom: 169/1778
  44824. },
  44825. form: "skunk",
  44826. default: true
  44827. },
  44828. },
  44829. [
  44830. {
  44831. name: "Normal",
  44832. height: math.unit(6 + 6/12, "feet"),
  44833. form: "labrador",
  44834. default: true
  44835. },
  44836. {
  44837. name: "Normal",
  44838. height: math.unit(4 + 6/12, "feet"),
  44839. form: "skunk",
  44840. default: true
  44841. },
  44842. ],
  44843. {
  44844. "labrador": {
  44845. name: "Labrador",
  44846. default: true
  44847. },
  44848. "skunk": {
  44849. name: "Skunk"
  44850. }
  44851. }
  44852. ))
  44853. characterMakers.push(() => makeCharacter(
  44854. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  44855. {
  44856. front: {
  44857. height: math.unit(5 + 11/12, "feet"),
  44858. weight: math.unit(190, "lb"),
  44859. name: "Front",
  44860. image: {
  44861. source: "./media/characters/mizu/front.svg",
  44862. extra: 1988/1788,
  44863. bottom: 14/2002
  44864. }
  44865. },
  44866. },
  44867. [
  44868. {
  44869. name: "Normal",
  44870. height: math.unit(5 + 11/12, "feet"),
  44871. default: true
  44872. },
  44873. ]
  44874. ))
  44875. characterMakers.push(() => makeCharacter(
  44876. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  44877. {
  44878. front: {
  44879. height: math.unit(1.7, "feet"),
  44880. weight: math.unit(50, "lb"),
  44881. name: "Front",
  44882. image: {
  44883. source: "./media/characters/dechroma/front.svg",
  44884. extra: 1095/859,
  44885. bottom: 64/1159
  44886. }
  44887. },
  44888. },
  44889. [
  44890. {
  44891. name: "Normal",
  44892. height: math.unit(1.7, "feet"),
  44893. default: true
  44894. },
  44895. ]
  44896. ))
  44897. characterMakers.push(() => makeCharacter(
  44898. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  44899. {
  44900. side: {
  44901. height: math.unit(30, "feet"),
  44902. name: "Side",
  44903. image: {
  44904. source: "./media/characters/veluren-thanazel/side.svg",
  44905. extra: 1611/633,
  44906. bottom: 118/1729
  44907. }
  44908. },
  44909. front: {
  44910. height: math.unit(30, "feet"),
  44911. name: "Front",
  44912. image: {
  44913. source: "./media/characters/veluren-thanazel/front.svg",
  44914. extra: 1486/636,
  44915. bottom: 238/1724
  44916. }
  44917. },
  44918. head: {
  44919. height: math.unit(21.4, "feet"),
  44920. name: "Head",
  44921. image: {
  44922. source: "./media/characters/veluren-thanazel/head.svg"
  44923. }
  44924. },
  44925. genitals: {
  44926. height: math.unit(19.4, "feet"),
  44927. name: "Genitals",
  44928. image: {
  44929. source: "./media/characters/veluren-thanazel/genitals.svg"
  44930. }
  44931. },
  44932. },
  44933. [
  44934. {
  44935. name: "Social",
  44936. height: math.unit(6, "feet")
  44937. },
  44938. {
  44939. name: "Play",
  44940. height: math.unit(12, "feet")
  44941. },
  44942. {
  44943. name: "True",
  44944. height: math.unit(30, "feet"),
  44945. default: true
  44946. },
  44947. ]
  44948. ))
  44949. characterMakers.push(() => makeCharacter(
  44950. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  44951. {
  44952. front: {
  44953. height: math.unit(7 + 6/12, "feet"),
  44954. weight: math.unit(500, "kg"),
  44955. name: "Front",
  44956. image: {
  44957. source: "./media/characters/arcturas/front.svg",
  44958. extra: 1700/1500,
  44959. bottom: 145/1845
  44960. }
  44961. },
  44962. },
  44963. [
  44964. {
  44965. name: "Normal",
  44966. height: math.unit(7 + 6/12, "feet"),
  44967. default: true
  44968. },
  44969. ]
  44970. ))
  44971. characterMakers.push(() => makeCharacter(
  44972. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  44973. {
  44974. side: {
  44975. height: math.unit(6, "feet"),
  44976. weight: math.unit(2, "tons"),
  44977. name: "Side",
  44978. image: {
  44979. source: "./media/characters/vitaen/side.svg",
  44980. extra: 1157/617,
  44981. bottom: 122/1279
  44982. }
  44983. },
  44984. },
  44985. [
  44986. {
  44987. name: "Normal",
  44988. height: math.unit(6, "feet"),
  44989. default: true
  44990. },
  44991. ]
  44992. ))
  44993. characterMakers.push(() => makeCharacter(
  44994. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  44995. {
  44996. front: {
  44997. height: math.unit(19, "feet"),
  44998. name: "Front",
  44999. image: {
  45000. source: "./media/characters/fia-dreamweaver/front.svg",
  45001. extra: 1630/1504,
  45002. bottom: 25/1655
  45003. }
  45004. },
  45005. },
  45006. [
  45007. {
  45008. name: "Normal",
  45009. height: math.unit(19, "feet"),
  45010. default: true
  45011. },
  45012. ]
  45013. ))
  45014. characterMakers.push(() => makeCharacter(
  45015. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  45016. {
  45017. front: {
  45018. height: math.unit(5 + 4/12, "feet"),
  45019. name: "Front",
  45020. image: {
  45021. source: "./media/characters/artan/front.svg",
  45022. extra: 1618/1535,
  45023. bottom: 46/1664
  45024. }
  45025. },
  45026. back: {
  45027. height: math.unit(5 + 4/12, "feet"),
  45028. name: "Back",
  45029. image: {
  45030. source: "./media/characters/artan/back.svg",
  45031. extra: 1618/1543,
  45032. bottom: 31/1649
  45033. }
  45034. },
  45035. },
  45036. [
  45037. {
  45038. name: "Normal",
  45039. height: math.unit(5 + 4/12, "feet"),
  45040. default: true
  45041. },
  45042. ]
  45043. ))
  45044. characterMakers.push(() => makeCharacter(
  45045. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  45046. {
  45047. side: {
  45048. height: math.unit(182, "cm"),
  45049. weight: math.unit(1000, "lb"),
  45050. name: "Side",
  45051. image: {
  45052. source: "./media/characters/silver-dragon/side.svg",
  45053. extra: 710/287,
  45054. bottom: 88/798
  45055. }
  45056. },
  45057. },
  45058. [
  45059. {
  45060. name: "Normal",
  45061. height: math.unit(182, "cm"),
  45062. default: true
  45063. },
  45064. ]
  45065. ))
  45066. characterMakers.push(() => makeCharacter(
  45067. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  45068. {
  45069. side: {
  45070. height: math.unit(6 + 6/12, "feet"),
  45071. weight: math.unit(1.5, "tons"),
  45072. name: "Side",
  45073. image: {
  45074. source: "./media/characters/zephyr/side.svg",
  45075. extra: 1433/586,
  45076. bottom: 109/1542
  45077. }
  45078. },
  45079. },
  45080. [
  45081. {
  45082. name: "Normal",
  45083. height: math.unit(6 + 6/12, "feet"),
  45084. default: true
  45085. },
  45086. ]
  45087. ))
  45088. characterMakers.push(() => makeCharacter(
  45089. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  45090. {
  45091. side: {
  45092. height: math.unit(1, "feet"),
  45093. name: "Side",
  45094. image: {
  45095. source: "./media/characters/vixye/side.svg",
  45096. extra: 632/541,
  45097. bottom: 0/632
  45098. }
  45099. },
  45100. },
  45101. [
  45102. {
  45103. name: "Normal",
  45104. height: math.unit(1, "feet"),
  45105. default: true
  45106. },
  45107. {
  45108. name: "True",
  45109. height: math.unit(1e15, "multiverses")
  45110. },
  45111. ]
  45112. ))
  45113. characterMakers.push(() => makeCharacter(
  45114. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  45115. {
  45116. front: {
  45117. height: math.unit(8 + 2/12, "feet"),
  45118. weight: math.unit(650, "lb"),
  45119. name: "Front",
  45120. image: {
  45121. source: "./media/characters/darla-mac-lochlainn/front.svg",
  45122. extra: 1174/1137,
  45123. bottom: 82/1256
  45124. }
  45125. },
  45126. back: {
  45127. height: math.unit(8 + 2/12, "feet"),
  45128. weight: math.unit(650, "lb"),
  45129. name: "Back",
  45130. image: {
  45131. source: "./media/characters/darla-mac-lochlainn/back.svg",
  45132. extra: 1204/1157,
  45133. bottom: 46/1250
  45134. }
  45135. },
  45136. },
  45137. [
  45138. {
  45139. name: "Wildform",
  45140. height: math.unit(8 + 2/12, "feet"),
  45141. default: true
  45142. },
  45143. ]
  45144. ))
  45145. characterMakers.push(() => makeCharacter(
  45146. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  45147. {
  45148. front: {
  45149. height: math.unit(18, "feet"),
  45150. name: "Front",
  45151. image: {
  45152. source: "./media/characters/cyphin/front.svg",
  45153. extra: 970/886,
  45154. bottom: 42/1012
  45155. }
  45156. },
  45157. back: {
  45158. height: math.unit(18, "feet"),
  45159. name: "Back",
  45160. image: {
  45161. source: "./media/characters/cyphin/back.svg",
  45162. extra: 1009/894,
  45163. bottom: 24/1033
  45164. }
  45165. },
  45166. head: {
  45167. height: math.unit(5.05, "feet"),
  45168. name: "Head",
  45169. image: {
  45170. source: "./media/characters/cyphin/head.svg"
  45171. }
  45172. },
  45173. tailbud: {
  45174. height: math.unit(5, "feet"),
  45175. name: "Tailbud",
  45176. image: {
  45177. source: "./media/characters/cyphin/tailbud.svg"
  45178. }
  45179. },
  45180. },
  45181. [
  45182. ]
  45183. ))
  45184. characterMakers.push(() => makeCharacter(
  45185. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  45186. {
  45187. side: {
  45188. height: math.unit(10, "feet"),
  45189. weight: math.unit(6, "tons"),
  45190. name: "Side",
  45191. image: {
  45192. source: "./media/characters/raijin/side.svg",
  45193. extra: 1529/613,
  45194. bottom: 337/1866
  45195. }
  45196. },
  45197. },
  45198. [
  45199. {
  45200. name: "Normal",
  45201. height: math.unit(10, "feet"),
  45202. default: true
  45203. },
  45204. ]
  45205. ))
  45206. characterMakers.push(() => makeCharacter(
  45207. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  45208. {
  45209. side: {
  45210. height: math.unit(9, "feet"),
  45211. name: "Side",
  45212. image: {
  45213. source: "./media/characters/nilghais/side.svg",
  45214. extra: 1047/744,
  45215. bottom: 91/1138
  45216. }
  45217. },
  45218. head: {
  45219. height: math.unit(3.14, "feet"),
  45220. name: "Head",
  45221. image: {
  45222. source: "./media/characters/nilghais/head.svg"
  45223. }
  45224. },
  45225. mouth: {
  45226. height: math.unit(4.6, "feet"),
  45227. name: "Mouth",
  45228. image: {
  45229. source: "./media/characters/nilghais/mouth.svg"
  45230. }
  45231. },
  45232. wings: {
  45233. height: math.unit(24, "feet"),
  45234. name: "Wings",
  45235. image: {
  45236. source: "./media/characters/nilghais/wings.svg"
  45237. }
  45238. },
  45239. ass: {
  45240. height: math.unit(6.12, "feet"),
  45241. name: "Ass",
  45242. image: {
  45243. source: "./media/characters/nilghais/ass.svg"
  45244. }
  45245. },
  45246. },
  45247. [
  45248. {
  45249. name: "Normal",
  45250. height: math.unit(9, "feet"),
  45251. default: true
  45252. },
  45253. ]
  45254. ))
  45255. characterMakers.push(() => makeCharacter(
  45256. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  45257. {
  45258. regular: {
  45259. height: math.unit(16 + 2/12, "feet"),
  45260. weight: math.unit(2300, "lb"),
  45261. name: "Regular",
  45262. image: {
  45263. source: "./media/characters/zolgar/regular.svg",
  45264. extra: 1246/1004,
  45265. bottom: 124/1370
  45266. }
  45267. },
  45268. boxers: {
  45269. height: math.unit(16 + 2/12, "feet"),
  45270. weight: math.unit(2300, "lb"),
  45271. name: "Boxers",
  45272. image: {
  45273. source: "./media/characters/zolgar/boxers.svg",
  45274. extra: 1246/1004,
  45275. bottom: 124/1370
  45276. }
  45277. },
  45278. armored: {
  45279. height: math.unit(16 + 2/12, "feet"),
  45280. weight: math.unit(2300, "lb"),
  45281. name: "Armored",
  45282. image: {
  45283. source: "./media/characters/zolgar/armored.svg",
  45284. extra: 1246/1004,
  45285. bottom: 124/1370
  45286. }
  45287. },
  45288. goth: {
  45289. height: math.unit(16 + 2/12, "feet"),
  45290. weight: math.unit(2300, "lb"),
  45291. name: "Goth",
  45292. image: {
  45293. source: "./media/characters/zolgar/goth.svg",
  45294. extra: 1246/1004,
  45295. bottom: 124/1370
  45296. }
  45297. },
  45298. },
  45299. [
  45300. {
  45301. name: "Shrunken Down",
  45302. height: math.unit(9 + 2/12, "feet")
  45303. },
  45304. {
  45305. name: "Normal",
  45306. height: math.unit(16 + 2/12, "feet"),
  45307. default: true
  45308. },
  45309. ]
  45310. ))
  45311. characterMakers.push(() => makeCharacter(
  45312. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  45313. {
  45314. front: {
  45315. height: math.unit(6, "feet"),
  45316. weight: math.unit(168, "lb"),
  45317. name: "Front",
  45318. image: {
  45319. source: "./media/characters/luca/front.svg",
  45320. extra: 841/667,
  45321. bottom: 102/943
  45322. }
  45323. },
  45324. },
  45325. [
  45326. {
  45327. name: "Normal",
  45328. height: math.unit(6, "feet"),
  45329. default: true
  45330. },
  45331. ]
  45332. ))
  45333. characterMakers.push(() => makeCharacter(
  45334. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  45335. {
  45336. side: {
  45337. height: math.unit(7 + 3/12, "feet"),
  45338. weight: math.unit(312, "lb"),
  45339. name: "Side",
  45340. image: {
  45341. source: "./media/characters/zezo/side.svg",
  45342. extra: 1192/1067,
  45343. bottom: 63/1255
  45344. }
  45345. },
  45346. },
  45347. [
  45348. {
  45349. name: "Normal",
  45350. height: math.unit(7 + 3/12, "feet"),
  45351. default: true
  45352. },
  45353. ]
  45354. ))
  45355. characterMakers.push(() => makeCharacter(
  45356. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  45357. {
  45358. front: {
  45359. height: math.unit(5 + 5/12, "feet"),
  45360. weight: math.unit(170, "lb"),
  45361. name: "Front",
  45362. image: {
  45363. source: "./media/characters/mayso/front.svg",
  45364. extra: 1215/1108,
  45365. bottom: 16/1231
  45366. }
  45367. },
  45368. },
  45369. [
  45370. {
  45371. name: "Normal",
  45372. height: math.unit(5 + 5/12, "feet"),
  45373. default: true
  45374. },
  45375. ]
  45376. ))
  45377. characterMakers.push(() => makeCharacter(
  45378. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  45379. {
  45380. front: {
  45381. height: math.unit(4 + 3/12, "feet"),
  45382. weight: math.unit(80, "lb"),
  45383. name: "Front",
  45384. image: {
  45385. source: "./media/characters/hess/front.svg",
  45386. extra: 1200/1123,
  45387. bottom: 16/1216
  45388. }
  45389. },
  45390. },
  45391. [
  45392. {
  45393. name: "Normal",
  45394. height: math.unit(4 + 3/12, "feet"),
  45395. default: true
  45396. },
  45397. ]
  45398. ))
  45399. characterMakers.push(() => makeCharacter(
  45400. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  45401. {
  45402. front: {
  45403. height: math.unit(1.9, "meters"),
  45404. name: "Front",
  45405. image: {
  45406. source: "./media/characters/ashgar/front.svg",
  45407. extra: 1177/1146,
  45408. bottom: 99/1276
  45409. }
  45410. },
  45411. back: {
  45412. height: math.unit(1.9, "meters"),
  45413. name: "Back",
  45414. image: {
  45415. source: "./media/characters/ashgar/back.svg",
  45416. extra: 1201/1183,
  45417. bottom: 53/1254
  45418. }
  45419. },
  45420. feral: {
  45421. height: math.unit(1.4, "meters"),
  45422. name: "Feral",
  45423. image: {
  45424. source: "./media/characters/ashgar/feral.svg",
  45425. extra: 370/345,
  45426. bottom: 45/415
  45427. }
  45428. },
  45429. },
  45430. [
  45431. {
  45432. name: "Normal",
  45433. height: math.unit(1.9, "meters"),
  45434. default: true
  45435. },
  45436. ]
  45437. ))
  45438. characterMakers.push(() => makeCharacter(
  45439. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  45440. {
  45441. regular: {
  45442. height: math.unit(6, "feet"),
  45443. weight: math.unit(220, "lb"),
  45444. name: "Regular",
  45445. image: {
  45446. source: "./media/characters/phillip/regular.svg",
  45447. extra: 1373/1277,
  45448. bottom: 75/1448
  45449. }
  45450. },
  45451. dressed: {
  45452. height: math.unit(6, "feet"),
  45453. weight: math.unit(220, "lb"),
  45454. name: "Dressed",
  45455. image: {
  45456. source: "./media/characters/phillip/dressed.svg",
  45457. extra: 1373/1277,
  45458. bottom: 75/1448
  45459. }
  45460. },
  45461. paw: {
  45462. height: math.unit(1.44, "feet"),
  45463. name: "Paw",
  45464. image: {
  45465. source: "./media/characters/phillip/paw.svg"
  45466. }
  45467. },
  45468. },
  45469. [
  45470. {
  45471. name: "Normal",
  45472. height: math.unit(6, "feet"),
  45473. default: true
  45474. },
  45475. ]
  45476. ))
  45477. characterMakers.push(() => makeCharacter(
  45478. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  45479. {
  45480. side: {
  45481. height: math.unit(42, "feet"),
  45482. name: "Side",
  45483. image: {
  45484. source: "./media/characters/uvula/side.svg",
  45485. extra: 683/586,
  45486. bottom: 60/743
  45487. }
  45488. },
  45489. front: {
  45490. height: math.unit(42, "feet"),
  45491. name: "Front",
  45492. image: {
  45493. source: "./media/characters/uvula/front.svg",
  45494. extra: 705/613,
  45495. bottom: 54/759
  45496. }
  45497. },
  45498. maw: {
  45499. height: math.unit(23.5, "feet"),
  45500. name: "Maw",
  45501. image: {
  45502. source: "./media/characters/uvula/maw.svg"
  45503. }
  45504. },
  45505. },
  45506. [
  45507. {
  45508. name: "Original Size",
  45509. height: math.unit(14, "inches")
  45510. },
  45511. {
  45512. name: "Human Size",
  45513. height: math.unit(6, "feet")
  45514. },
  45515. {
  45516. name: "Big",
  45517. height: math.unit(42, "feet"),
  45518. default: true
  45519. },
  45520. {
  45521. name: "Bigger",
  45522. height: math.unit(100, "feet")
  45523. },
  45524. ]
  45525. ))
  45526. characterMakers.push(() => makeCharacter(
  45527. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  45528. {
  45529. front: {
  45530. height: math.unit(5 + 11/12, "feet"),
  45531. name: "Front",
  45532. image: {
  45533. source: "./media/characters/lannah/front.svg",
  45534. extra: 1208/1113,
  45535. bottom: 97/1305
  45536. }
  45537. },
  45538. },
  45539. [
  45540. {
  45541. name: "Normal",
  45542. height: math.unit(5 + 11/12, "feet"),
  45543. default: true
  45544. },
  45545. ]
  45546. ))
  45547. characterMakers.push(() => makeCharacter(
  45548. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  45549. {
  45550. front: {
  45551. height: math.unit(6 + 3/12, "feet"),
  45552. weight: math.unit(3.5, "tons"),
  45553. name: "Front",
  45554. image: {
  45555. source: "./media/characters/emberflame/front.svg",
  45556. extra: 1198/672,
  45557. bottom: 82/1280
  45558. }
  45559. },
  45560. side: {
  45561. height: math.unit(6 + 3/12, "feet"),
  45562. weight: math.unit(3.5, "tons"),
  45563. name: "Side",
  45564. image: {
  45565. source: "./media/characters/emberflame/side.svg",
  45566. extra: 938/527,
  45567. bottom: 56/994
  45568. }
  45569. },
  45570. },
  45571. [
  45572. {
  45573. name: "Normal",
  45574. height: math.unit(6 + 3/12, "feet"),
  45575. default: true
  45576. },
  45577. ]
  45578. ))
  45579. characterMakers.push(() => makeCharacter(
  45580. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  45581. {
  45582. side: {
  45583. height: math.unit(17.5, "feet"),
  45584. weight: math.unit(35, "tons"),
  45585. name: "Side",
  45586. image: {
  45587. source: "./media/characters/sophie-ambrose/side.svg",
  45588. extra: 1573/1242,
  45589. bottom: 71/1644
  45590. }
  45591. },
  45592. maw: {
  45593. height: math.unit(7.4, "feet"),
  45594. name: "Maw",
  45595. image: {
  45596. source: "./media/characters/sophie-ambrose/maw.svg"
  45597. }
  45598. },
  45599. },
  45600. [
  45601. {
  45602. name: "Normal",
  45603. height: math.unit(17.5, "feet"),
  45604. default: true
  45605. },
  45606. ]
  45607. ))
  45608. characterMakers.push(() => makeCharacter(
  45609. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  45610. {
  45611. front: {
  45612. height: math.unit(280, "feet"),
  45613. weight: math.unit(550, "tons"),
  45614. name: "Front",
  45615. image: {
  45616. source: "./media/characters/king-mugi/front.svg",
  45617. extra: 1102/947,
  45618. bottom: 104/1206
  45619. }
  45620. },
  45621. },
  45622. [
  45623. {
  45624. name: "King Mugi",
  45625. height: math.unit(280, "feet"),
  45626. default: true
  45627. },
  45628. ]
  45629. ))
  45630. characterMakers.push(() => makeCharacter(
  45631. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  45632. {
  45633. female: {
  45634. height: math.unit(300, "meters"),
  45635. name: "Front",
  45636. image: {
  45637. source: "./media/characters/nova-fox/female.svg",
  45638. extra: 664/632,
  45639. bottom: 51/715
  45640. },
  45641. form: "female",
  45642. default: true
  45643. },
  45644. male: {
  45645. height: math.unit(300, "meters"),
  45646. name: "Front",
  45647. image: {
  45648. source: "./media/characters/nova-fox/male.svg",
  45649. extra: 663/631,
  45650. bottom: 30/693
  45651. },
  45652. form: "male",
  45653. default: true
  45654. },
  45655. },
  45656. [
  45657. {
  45658. name: "Macro",
  45659. height: math.unit(300, "meters"),
  45660. default: true,
  45661. allForms: true
  45662. },
  45663. ],
  45664. {
  45665. "female": {
  45666. name: "Female",
  45667. default: true
  45668. },
  45669. "male": {
  45670. name: "Male",
  45671. },
  45672. }
  45673. ))
  45674. characterMakers.push(() => makeCharacter(
  45675. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  45676. {
  45677. front: {
  45678. height: math.unit(6 + 3/12, "feet"),
  45679. weight: math.unit(170, "lb"),
  45680. name: "Front",
  45681. image: {
  45682. source: "./media/characters/sam-bat/front.svg",
  45683. extra: 1601/1411,
  45684. bottom: 125/1726
  45685. }
  45686. },
  45687. back: {
  45688. height: math.unit(6 + 3/12, "feet"),
  45689. weight: math.unit(170, "lb"),
  45690. name: "Back",
  45691. image: {
  45692. source: "./media/characters/sam-bat/back.svg",
  45693. extra: 1577/1405,
  45694. bottom: 58/1635
  45695. }
  45696. },
  45697. },
  45698. [
  45699. {
  45700. name: "Normal",
  45701. height: math.unit(6 + 3/12, "feet"),
  45702. default: true
  45703. },
  45704. ]
  45705. ))
  45706. characterMakers.push(() => makeCharacter(
  45707. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  45708. {
  45709. front: {
  45710. height: math.unit(59, "feet"),
  45711. weight: math.unit(40000, "lb"),
  45712. name: "Front",
  45713. image: {
  45714. source: "./media/characters/inari/front.svg",
  45715. extra: 1884/1350,
  45716. bottom: 95/1979
  45717. }
  45718. },
  45719. },
  45720. [
  45721. {
  45722. name: "Gigantamax",
  45723. height: math.unit(59, "feet"),
  45724. default: true
  45725. },
  45726. ]
  45727. ))
  45728. characterMakers.push(() => makeCharacter(
  45729. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  45730. {
  45731. front: {
  45732. height: math.unit(5 + 8/12, "feet"),
  45733. name: "Front",
  45734. image: {
  45735. source: "./media/characters/elizabeth/front.svg",
  45736. extra: 1395/1298,
  45737. bottom: 54/1449
  45738. }
  45739. },
  45740. mouth: {
  45741. height: math.unit(1.97, "feet"),
  45742. name: "Mouth",
  45743. image: {
  45744. source: "./media/characters/elizabeth/mouth.svg"
  45745. }
  45746. },
  45747. foot: {
  45748. height: math.unit(1.17, "feet"),
  45749. name: "Foot",
  45750. image: {
  45751. source: "./media/characters/elizabeth/foot.svg"
  45752. }
  45753. },
  45754. },
  45755. [
  45756. {
  45757. name: "Normal",
  45758. height: math.unit(5 + 8/12, "feet"),
  45759. default: true
  45760. },
  45761. {
  45762. name: "Minimacro",
  45763. height: math.unit(18, "feet")
  45764. },
  45765. {
  45766. name: "Macro",
  45767. height: math.unit(180, "feet")
  45768. },
  45769. ]
  45770. ))
  45771. characterMakers.push(() => makeCharacter(
  45772. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  45773. {
  45774. front: {
  45775. height: math.unit(5 + 2/12, "feet"),
  45776. name: "Front",
  45777. image: {
  45778. source: "./media/characters/october-gossamer/front.svg",
  45779. extra: 505/454,
  45780. bottom: 7/512
  45781. }
  45782. },
  45783. back: {
  45784. height: math.unit(5 + 2/12, "feet"),
  45785. name: "Back",
  45786. image: {
  45787. source: "./media/characters/october-gossamer/back.svg",
  45788. extra: 501/454,
  45789. bottom: 11/512
  45790. }
  45791. },
  45792. },
  45793. [
  45794. {
  45795. name: "Normal",
  45796. height: math.unit(5 + 2/12, "feet"),
  45797. default: true
  45798. },
  45799. ]
  45800. ))
  45801. characterMakers.push(() => makeCharacter(
  45802. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  45803. {
  45804. front: {
  45805. height: math.unit(5, "feet"),
  45806. name: "Front",
  45807. image: {
  45808. source: "./media/characters/epiglottis/front.svg",
  45809. extra: 923/849,
  45810. bottom: 17/940
  45811. }
  45812. },
  45813. },
  45814. [
  45815. {
  45816. name: "Original Size",
  45817. height: math.unit(10, "inches")
  45818. },
  45819. {
  45820. name: "Human Size",
  45821. height: math.unit(5, "feet"),
  45822. default: true
  45823. },
  45824. {
  45825. name: "Big",
  45826. height: math.unit(25, "feet")
  45827. },
  45828. {
  45829. name: "Bigger",
  45830. height: math.unit(50, "feet")
  45831. },
  45832. {
  45833. name: "oh lawd",
  45834. height: math.unit(75, "feet")
  45835. },
  45836. ]
  45837. ))
  45838. characterMakers.push(() => makeCharacter(
  45839. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  45840. {
  45841. front: {
  45842. height: math.unit(2 + 4/12, "feet"),
  45843. weight: math.unit(60, "lb"),
  45844. name: "Front",
  45845. image: {
  45846. source: "./media/characters/lerm/front.svg",
  45847. extra: 796/790,
  45848. bottom: 79/875
  45849. }
  45850. },
  45851. },
  45852. [
  45853. {
  45854. name: "Normal",
  45855. height: math.unit(2 + 4/12, "feet"),
  45856. default: true
  45857. },
  45858. ]
  45859. ))
  45860. characterMakers.push(() => makeCharacter(
  45861. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  45862. {
  45863. front: {
  45864. height: math.unit(5.5, "feet"),
  45865. weight: math.unit(130, "lb"),
  45866. name: "Front",
  45867. image: {
  45868. source: "./media/characters/xena-nebadon/front.svg",
  45869. extra: 1828/1730,
  45870. bottom: 79/1907
  45871. }
  45872. },
  45873. },
  45874. [
  45875. {
  45876. name: "Tiny Puppy",
  45877. height: math.unit(3, "inches")
  45878. },
  45879. {
  45880. name: "Normal",
  45881. height: math.unit(5.5, "feet"),
  45882. default: true
  45883. },
  45884. {
  45885. name: "Lotta Lady",
  45886. height: math.unit(12, "feet")
  45887. },
  45888. {
  45889. name: "Pretty Big",
  45890. height: math.unit(100, "feet")
  45891. },
  45892. {
  45893. name: "Big",
  45894. height: math.unit(500, "feet")
  45895. },
  45896. {
  45897. name: "Skyscraper Toys",
  45898. height: math.unit(2500, "feet")
  45899. },
  45900. {
  45901. name: "Plane Catcher",
  45902. height: math.unit(8, "miles")
  45903. },
  45904. {
  45905. name: "Planet Toys",
  45906. height: math.unit(15, "earths")
  45907. },
  45908. {
  45909. name: "Stardust",
  45910. height: math.unit(0.25, "galaxies")
  45911. },
  45912. {
  45913. name: "Snacks",
  45914. height: math.unit(70, "universes")
  45915. },
  45916. ]
  45917. ))
  45918. characterMakers.push(() => makeCharacter(
  45919. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  45920. {
  45921. front: {
  45922. height: math.unit(1.6, "meters"),
  45923. weight: math.unit(60, "kg"),
  45924. name: "Front",
  45925. image: {
  45926. source: "./media/characters/bounty/front.svg",
  45927. extra: 1426/1308,
  45928. bottom: 15/1441
  45929. }
  45930. },
  45931. back: {
  45932. height: math.unit(1.6, "meters"),
  45933. weight: math.unit(60, "kg"),
  45934. name: "Back",
  45935. image: {
  45936. source: "./media/characters/bounty/back.svg",
  45937. extra: 1417/1307,
  45938. bottom: 8/1425
  45939. }
  45940. },
  45941. },
  45942. [
  45943. {
  45944. name: "Normal",
  45945. height: math.unit(1.6, "meters"),
  45946. default: true
  45947. },
  45948. {
  45949. name: "Macro",
  45950. height: math.unit(300, "meters")
  45951. },
  45952. ]
  45953. ))
  45954. characterMakers.push(() => makeCharacter(
  45955. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  45956. {
  45957. front: {
  45958. height: math.unit(2 + 8/12, "feet"),
  45959. weight: math.unit(15, "lb"),
  45960. name: "Front",
  45961. image: {
  45962. source: "./media/characters/mochi/front.svg",
  45963. extra: 1022/852,
  45964. bottom: 435/1457
  45965. }
  45966. },
  45967. back: {
  45968. height: math.unit(2 + 8/12, "feet"),
  45969. weight: math.unit(15, "lb"),
  45970. name: "Back",
  45971. image: {
  45972. source: "./media/characters/mochi/back.svg",
  45973. extra: 1335/1119,
  45974. bottom: 39/1374
  45975. }
  45976. },
  45977. bird: {
  45978. height: math.unit(2 + 8/12, "feet"),
  45979. weight: math.unit(15, "lb"),
  45980. name: "Bird",
  45981. image: {
  45982. source: "./media/characters/mochi/bird.svg",
  45983. extra: 1251/1113,
  45984. bottom: 178/1429
  45985. }
  45986. },
  45987. kaiju: {
  45988. height: math.unit(154, "feet"),
  45989. weight: math.unit(1e7, "lb"),
  45990. name: "Kaiju",
  45991. image: {
  45992. source: "./media/characters/mochi/kaiju.svg",
  45993. extra: 460/324,
  45994. bottom: 40/500
  45995. }
  45996. },
  45997. head: {
  45998. height: math.unit(1.21, "feet"),
  45999. name: "Head",
  46000. image: {
  46001. source: "./media/characters/mochi/head.svg"
  46002. }
  46003. },
  46004. alternateTail: {
  46005. height: math.unit(2 + 8/12, "feet"),
  46006. weight: math.unit(45, "lb"),
  46007. name: "Alternate Tail",
  46008. image: {
  46009. source: "./media/characters/mochi/alternate-tail.svg",
  46010. extra: 139/76,
  46011. bottom: 45/184
  46012. }
  46013. },
  46014. },
  46015. [
  46016. {
  46017. name: "Micro",
  46018. height: math.unit(2, "inches")
  46019. },
  46020. {
  46021. name: "Normal",
  46022. height: math.unit(2 + 8/12, "feet"),
  46023. default: true
  46024. },
  46025. {
  46026. name: "Macro",
  46027. height: math.unit(106, "feet")
  46028. },
  46029. ]
  46030. ))
  46031. characterMakers.push(() => makeCharacter(
  46032. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  46033. {
  46034. front: {
  46035. height: math.unit(5.67, "feet"),
  46036. weight: math.unit(135, "lb"),
  46037. name: "Front",
  46038. image: {
  46039. source: "./media/characters/sarel/front.svg",
  46040. extra: 865/788,
  46041. bottom: 97/962
  46042. }
  46043. },
  46044. back: {
  46045. height: math.unit(5.67, "feet"),
  46046. weight: math.unit(135, "lb"),
  46047. name: "Back",
  46048. image: {
  46049. source: "./media/characters/sarel/back.svg",
  46050. extra: 857/777,
  46051. bottom: 32/889
  46052. }
  46053. },
  46054. chozoan: {
  46055. height: math.unit(5.67, "feet"),
  46056. weight: math.unit(135, "lb"),
  46057. name: "Chozoan",
  46058. image: {
  46059. source: "./media/characters/sarel/chozoan.svg",
  46060. extra: 865/788,
  46061. bottom: 97/962
  46062. }
  46063. },
  46064. current: {
  46065. height: math.unit(5.67, "feet"),
  46066. weight: math.unit(135, "lb"),
  46067. name: "Current",
  46068. image: {
  46069. source: "./media/characters/sarel/current.svg",
  46070. extra: 865/788,
  46071. bottom: 97/962
  46072. }
  46073. },
  46074. head: {
  46075. height: math.unit(1.77, "feet"),
  46076. name: "Head",
  46077. image: {
  46078. source: "./media/characters/sarel/head.svg"
  46079. }
  46080. },
  46081. claws: {
  46082. height: math.unit(1.8, "feet"),
  46083. name: "Claws",
  46084. image: {
  46085. source: "./media/characters/sarel/claws.svg"
  46086. }
  46087. },
  46088. clawsAlt: {
  46089. height: math.unit(1.8, "feet"),
  46090. name: "Claws-alt",
  46091. image: {
  46092. source: "./media/characters/sarel/claws-alt.svg"
  46093. }
  46094. },
  46095. },
  46096. [
  46097. {
  46098. name: "Normal",
  46099. height: math.unit(5.67, "feet"),
  46100. default: true
  46101. },
  46102. ]
  46103. ))
  46104. characterMakers.push(() => makeCharacter(
  46105. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  46106. {
  46107. front: {
  46108. height: math.unit(5500, "feet"),
  46109. name: "Front",
  46110. image: {
  46111. source: "./media/characters/alyonia/front.svg",
  46112. extra: 1200/1135,
  46113. bottom: 29/1229
  46114. }
  46115. },
  46116. back: {
  46117. height: math.unit(5500, "feet"),
  46118. name: "Back",
  46119. image: {
  46120. source: "./media/characters/alyonia/back.svg",
  46121. extra: 1205/1138,
  46122. bottom: 10/1215
  46123. }
  46124. },
  46125. },
  46126. [
  46127. {
  46128. name: "Small",
  46129. height: math.unit(10, "feet")
  46130. },
  46131. {
  46132. name: "Macro",
  46133. height: math.unit(500, "feet")
  46134. },
  46135. {
  46136. name: "Mega Macro",
  46137. height: math.unit(5500, "feet"),
  46138. default: true
  46139. },
  46140. {
  46141. name: "Mega Macro+",
  46142. height: math.unit(500000, "feet")
  46143. },
  46144. {
  46145. name: "Giga Macro",
  46146. height: math.unit(3000, "miles")
  46147. },
  46148. {
  46149. name: "Tera Macro",
  46150. height: math.unit(2.8e6, "miles")
  46151. },
  46152. {
  46153. name: "Galactic",
  46154. height: math.unit(120000, "lightyears")
  46155. },
  46156. ]
  46157. ))
  46158. characterMakers.push(() => makeCharacter(
  46159. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  46160. {
  46161. werewolf: {
  46162. height: math.unit(8, "feet"),
  46163. weight: math.unit(425, "lb"),
  46164. name: "Werewolf",
  46165. image: {
  46166. source: "./media/characters/autumn/werewolf.svg",
  46167. extra: 2154/2031,
  46168. bottom: 160/2314
  46169. }
  46170. },
  46171. human: {
  46172. height: math.unit(5 + 8/12, "feet"),
  46173. weight: math.unit(150, "lb"),
  46174. name: "Human",
  46175. image: {
  46176. source: "./media/characters/autumn/human.svg",
  46177. extra: 1200/1149,
  46178. bottom: 30/1230
  46179. }
  46180. },
  46181. },
  46182. [
  46183. {
  46184. name: "Normal",
  46185. height: math.unit(8, "feet"),
  46186. default: true
  46187. },
  46188. ]
  46189. ))
  46190. characterMakers.push(() => makeCharacter(
  46191. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  46192. {
  46193. front: {
  46194. height: math.unit(8 + 5/12, "feet"),
  46195. weight: math.unit(825, "lb"),
  46196. name: "Front",
  46197. image: {
  46198. source: "./media/characters/cobalt-charizard/front.svg",
  46199. extra: 1268/1155,
  46200. bottom: 122/1390
  46201. }
  46202. },
  46203. side: {
  46204. height: math.unit(8 + 5/12, "feet"),
  46205. weight: math.unit(825, "lb"),
  46206. name: "Side",
  46207. image: {
  46208. source: "./media/characters/cobalt-charizard/side.svg",
  46209. extra: 1348/1257,
  46210. bottom: 58/1406
  46211. }
  46212. },
  46213. gMax: {
  46214. height: math.unit(134 + 11/12, "feet"),
  46215. name: "G-Max",
  46216. image: {
  46217. source: "./media/characters/cobalt-charizard/g-max.svg",
  46218. extra: 1835/1541,
  46219. bottom: 151/1986
  46220. }
  46221. },
  46222. },
  46223. [
  46224. {
  46225. name: "Normal",
  46226. height: math.unit(8 + 5/12, "feet"),
  46227. default: true
  46228. },
  46229. ]
  46230. ))
  46231. characterMakers.push(() => makeCharacter(
  46232. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  46233. {
  46234. front: {
  46235. height: math.unit(6 + 3/12, "feet"),
  46236. weight: math.unit(210, "lb"),
  46237. name: "Front",
  46238. image: {
  46239. source: "./media/characters/stella/front.svg",
  46240. extra: 3549/3335,
  46241. bottom: 51/3600
  46242. }
  46243. },
  46244. },
  46245. [
  46246. {
  46247. name: "Normal",
  46248. height: math.unit(6 + 3/12, "feet"),
  46249. default: true
  46250. },
  46251. ]
  46252. ))
  46253. characterMakers.push(() => makeCharacter(
  46254. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  46255. {
  46256. front: {
  46257. height: math.unit(5, "feet"),
  46258. weight: math.unit(90, "lb"),
  46259. name: "Front",
  46260. image: {
  46261. source: "./media/characters/riley-bishop/front.svg",
  46262. extra: 1450/1428,
  46263. bottom: 152/1602
  46264. }
  46265. },
  46266. },
  46267. [
  46268. {
  46269. name: "Normal",
  46270. height: math.unit(5, "feet"),
  46271. default: true
  46272. },
  46273. ]
  46274. ))
  46275. characterMakers.push(() => makeCharacter(
  46276. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  46277. {
  46278. side: {
  46279. height: math.unit(8 + 2/12, "feet"),
  46280. weight: math.unit(500, "kg"),
  46281. name: "Side",
  46282. image: {
  46283. source: "./media/characters/theo-arcanine/side.svg",
  46284. extra: 1342/1074,
  46285. bottom: 111/1453
  46286. }
  46287. },
  46288. },
  46289. [
  46290. {
  46291. name: "Normal",
  46292. height: math.unit(8 + 2/12, "feet"),
  46293. default: true
  46294. },
  46295. ]
  46296. ))
  46297. characterMakers.push(() => makeCharacter(
  46298. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  46299. {
  46300. front: {
  46301. height: math.unit(4, "feet"),
  46302. name: "Front",
  46303. image: {
  46304. source: "./media/characters/kali/front.svg",
  46305. extra: 1074/867,
  46306. bottom: 34/1108
  46307. }
  46308. },
  46309. back: {
  46310. height: math.unit(4, "feet"),
  46311. name: "Back",
  46312. image: {
  46313. source: "./media/characters/kali/back.svg",
  46314. extra: 1068/863,
  46315. bottom: 26/1094
  46316. }
  46317. },
  46318. frontAlt: {
  46319. height: math.unit(4, "feet"),
  46320. name: "Front (Alt)",
  46321. image: {
  46322. source: "./media/characters/kali/front-alt.svg",
  46323. extra: 1921/1357,
  46324. bottom: 70/1991
  46325. }
  46326. },
  46327. },
  46328. [
  46329. {
  46330. name: "Normal",
  46331. height: math.unit(4, "feet"),
  46332. default: true
  46333. },
  46334. {
  46335. name: "Big'vali",
  46336. height: math.unit(11, "feet")
  46337. },
  46338. {
  46339. name: "Macro",
  46340. height: math.unit(32, "meters")
  46341. },
  46342. {
  46343. name: "Macro+",
  46344. height: math.unit(150, "meters")
  46345. },
  46346. {
  46347. name: "Megamacro",
  46348. height: math.unit(7500, "meters")
  46349. },
  46350. {
  46351. name: "Megamacro+",
  46352. height: math.unit(80, "kilometers")
  46353. },
  46354. ]
  46355. ))
  46356. characterMakers.push(() => makeCharacter(
  46357. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  46358. {
  46359. side: {
  46360. height: math.unit(5 + 11/12, "feet"),
  46361. weight: math.unit(236, "lb"),
  46362. name: "Side",
  46363. image: {
  46364. source: "./media/characters/gapp/side.svg",
  46365. extra: 775/340,
  46366. bottom: 58/833
  46367. }
  46368. },
  46369. mouth: {
  46370. height: math.unit(2.98, "feet"),
  46371. name: "Mouth",
  46372. image: {
  46373. source: "./media/characters/gapp/mouth.svg"
  46374. }
  46375. },
  46376. },
  46377. [
  46378. {
  46379. name: "Normal",
  46380. height: math.unit(5 + 1/12, "feet"),
  46381. default: true
  46382. },
  46383. ]
  46384. ))
  46385. characterMakers.push(() => makeCharacter(
  46386. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  46387. {
  46388. front: {
  46389. height: math.unit(6, "feet"),
  46390. name: "Front",
  46391. image: {
  46392. source: "./media/characters/persephone/front.svg",
  46393. extra: 1895/1717,
  46394. bottom: 96/1991
  46395. }
  46396. },
  46397. back: {
  46398. height: math.unit(6, "feet"),
  46399. name: "Back",
  46400. image: {
  46401. source: "./media/characters/persephone/back.svg",
  46402. extra: 1868/1679,
  46403. bottom: 26/1894
  46404. }
  46405. },
  46406. casual: {
  46407. height: math.unit(6, "feet"),
  46408. name: "Casual",
  46409. image: {
  46410. source: "./media/characters/persephone/casual.svg",
  46411. extra: 1713/1541,
  46412. bottom: 76/1789
  46413. }
  46414. },
  46415. gaming: {
  46416. height: math.unit(3.55, "feet"),
  46417. name: "Gaming",
  46418. image: {
  46419. source: "./media/characters/persephone/gaming.svg",
  46420. extra: 1242/1038,
  46421. bottom: 66/1308
  46422. }
  46423. },
  46424. head: {
  46425. height: math.unit(2.15, "feet"),
  46426. name: "😐",
  46427. image: {
  46428. source: "./media/characters/persephone/head.svg"
  46429. }
  46430. },
  46431. talking: {
  46432. height: math.unit(2.5, "feet"),
  46433. name: "💬",
  46434. image: {
  46435. source: "./media/characters/persephone/talking.svg"
  46436. }
  46437. },
  46438. hmm: {
  46439. height: math.unit(2.28, "feet"),
  46440. name: "🤨",
  46441. image: {
  46442. source: "./media/characters/persephone/hmm.svg"
  46443. }
  46444. },
  46445. },
  46446. [
  46447. {
  46448. name: "Human Size",
  46449. height: math.unit(6, "feet")
  46450. },
  46451. {
  46452. name: "Big Steppy",
  46453. height: math.unit(600, "meters"),
  46454. default: true
  46455. },
  46456. {
  46457. name: "Galaxy Brain",
  46458. height: math.unit(1, "zettameter")
  46459. },
  46460. ]
  46461. ))
  46462. characterMakers.push(() => makeCharacter(
  46463. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  46464. {
  46465. front: {
  46466. height: math.unit(1.85, "meters"),
  46467. name: "Front",
  46468. image: {
  46469. source: "./media/characters/riley-foxthing/front.svg",
  46470. extra: 1495/1354,
  46471. bottom: 122/1617
  46472. }
  46473. },
  46474. frontAlt: {
  46475. height: math.unit(1.85, "meters"),
  46476. name: "Front (Alt)",
  46477. image: {
  46478. source: "./media/characters/riley-foxthing/front-alt.svg",
  46479. extra: 1572/1389,
  46480. bottom: 116/1688
  46481. }
  46482. },
  46483. },
  46484. [
  46485. {
  46486. name: "Normal Sized",
  46487. height: math.unit(1.85, "meters"),
  46488. default: true
  46489. },
  46490. {
  46491. name: "Quite Sizable",
  46492. height: math.unit(5, "meters")
  46493. },
  46494. {
  46495. name: "Rather Large",
  46496. height: math.unit(20, "meters")
  46497. },
  46498. {
  46499. name: "Macro",
  46500. height: math.unit(450, "meters")
  46501. },
  46502. {
  46503. name: "Giga",
  46504. height: math.unit(5, "km")
  46505. },
  46506. ]
  46507. ))
  46508. characterMakers.push(() => makeCharacter(
  46509. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  46510. {
  46511. front: {
  46512. height: math.unit(6, "feet"),
  46513. weight: math.unit(200, "lb"),
  46514. name: "Front",
  46515. image: {
  46516. source: "./media/characters/blizzard/front.svg",
  46517. extra: 1136/990,
  46518. bottom: 136/1272
  46519. }
  46520. },
  46521. back: {
  46522. height: math.unit(6, "feet"),
  46523. weight: math.unit(200, "lb"),
  46524. name: "Back",
  46525. image: {
  46526. source: "./media/characters/blizzard/back.svg",
  46527. extra: 1175/1034,
  46528. bottom: 97/1272
  46529. }
  46530. },
  46531. sitting: {
  46532. height: math.unit(3.725, "feet"),
  46533. weight: math.unit(200, "lb"),
  46534. name: "Sitting",
  46535. image: {
  46536. source: "./media/characters/blizzard/sitting.svg",
  46537. extra: 581/485,
  46538. bottom: 90/671
  46539. }
  46540. },
  46541. frontWizard: {
  46542. height: math.unit(7.9, "feet"),
  46543. weight: math.unit(200, "lb"),
  46544. name: "Front (Wizard)",
  46545. image: {
  46546. source: "./media/characters/blizzard/front-wizard.svg"
  46547. }
  46548. },
  46549. backWizard: {
  46550. height: math.unit(7.9, "feet"),
  46551. weight: math.unit(200, "lb"),
  46552. name: "Back (Wizard)",
  46553. image: {
  46554. source: "./media/characters/blizzard/back-wizard.svg"
  46555. }
  46556. },
  46557. frontNsfw: {
  46558. height: math.unit(6, "feet"),
  46559. weight: math.unit(200, "lb"),
  46560. name: "Front (NSFW)",
  46561. image: {
  46562. source: "./media/characters/blizzard/front-nsfw.svg",
  46563. extra: 1136/990,
  46564. bottom: 136/1272
  46565. }
  46566. },
  46567. backNsfw: {
  46568. height: math.unit(6, "feet"),
  46569. weight: math.unit(200, "lb"),
  46570. name: "Back (NSFW)",
  46571. image: {
  46572. source: "./media/characters/blizzard/back-nsfw.svg",
  46573. extra: 1175/1034,
  46574. bottom: 97/1272
  46575. }
  46576. },
  46577. sittingNsfw: {
  46578. height: math.unit(3.725, "feet"),
  46579. weight: math.unit(200, "lb"),
  46580. name: "Sitting (NSFW)",
  46581. image: {
  46582. source: "./media/characters/blizzard/sitting-nsfw.svg",
  46583. extra: 581/485,
  46584. bottom: 90/671
  46585. }
  46586. },
  46587. wizardFrontNsfw: {
  46588. height: math.unit(7.9, "feet"),
  46589. weight: math.unit(200, "lb"),
  46590. name: "Wizard (Front, NSFW)",
  46591. image: {
  46592. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  46593. }
  46594. },
  46595. },
  46596. [
  46597. {
  46598. name: "Normal",
  46599. height: math.unit(6, "feet"),
  46600. default: true
  46601. },
  46602. ]
  46603. ))
  46604. characterMakers.push(() => makeCharacter(
  46605. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  46606. {
  46607. front: {
  46608. height: math.unit(5 + 2/12, "feet"),
  46609. name: "Front",
  46610. image: {
  46611. source: "./media/characters/lumi/front.svg",
  46612. extra: 1328/1268,
  46613. bottom: 103/1431
  46614. }
  46615. },
  46616. back: {
  46617. height: math.unit(5 + 2/12, "feet"),
  46618. name: "Back",
  46619. image: {
  46620. source: "./media/characters/lumi/back.svg",
  46621. extra: 1381/1327,
  46622. bottom: 43/1424
  46623. }
  46624. },
  46625. },
  46626. [
  46627. {
  46628. name: "Normal",
  46629. height: math.unit(5 + 2/12, "feet"),
  46630. default: true
  46631. },
  46632. ]
  46633. ))
  46634. characterMakers.push(() => makeCharacter(
  46635. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  46636. {
  46637. front: {
  46638. height: math.unit(5 + 9/12, "feet"),
  46639. name: "Front",
  46640. image: {
  46641. source: "./media/characters/aliya-cotton/front.svg",
  46642. extra: 577/564,
  46643. bottom: 29/606
  46644. }
  46645. },
  46646. },
  46647. [
  46648. {
  46649. name: "Normal",
  46650. height: math.unit(5 + 9/12, "feet"),
  46651. default: true
  46652. },
  46653. ]
  46654. ))
  46655. characterMakers.push(() => makeCharacter(
  46656. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  46657. {
  46658. front: {
  46659. height: math.unit(2.7, "meters"),
  46660. weight: math.unit(25000, "lb"),
  46661. name: "Front",
  46662. image: {
  46663. source: "./media/characters/noah-luxray/front.svg",
  46664. extra: 1644/825,
  46665. bottom: 339/1983
  46666. }
  46667. },
  46668. side: {
  46669. height: math.unit(2.97, "meters"),
  46670. weight: math.unit(25000, "lb"),
  46671. name: "Side",
  46672. image: {
  46673. source: "./media/characters/noah-luxray/side.svg",
  46674. extra: 1319/650,
  46675. bottom: 163/1482
  46676. }
  46677. },
  46678. dick: {
  46679. height: math.unit(7.4, "feet"),
  46680. weight: math.unit(2500, "lb"),
  46681. name: "Dick",
  46682. image: {
  46683. source: "./media/characters/noah-luxray/dick.svg"
  46684. }
  46685. },
  46686. dickAlt: {
  46687. height: math.unit(10.83, "feet"),
  46688. weight: math.unit(2500, "lb"),
  46689. name: "Dick-alt",
  46690. image: {
  46691. source: "./media/characters/noah-luxray/dick-alt.svg"
  46692. }
  46693. },
  46694. },
  46695. [
  46696. {
  46697. name: "BIG",
  46698. height: math.unit(2.7, "meters"),
  46699. default: true
  46700. },
  46701. ]
  46702. ))
  46703. characterMakers.push(() => makeCharacter(
  46704. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  46705. {
  46706. standing: {
  46707. height: math.unit(183, "cm"),
  46708. weight: math.unit(68, "kg"),
  46709. name: "Standing",
  46710. image: {
  46711. source: "./media/characters/arion/standing.svg",
  46712. extra: 1869/1807,
  46713. bottom: 93/1962
  46714. }
  46715. },
  46716. reclining: {
  46717. height: math.unit(70.5, "cm"),
  46718. weight: math.unit(68, "lb"),
  46719. name: "Reclining",
  46720. image: {
  46721. source: "./media/characters/arion/reclining.svg",
  46722. extra: 937/870,
  46723. bottom: 63/1000
  46724. }
  46725. },
  46726. },
  46727. [
  46728. {
  46729. name: "Colossus Size, Low",
  46730. height: math.unit(33, "meters"),
  46731. default: true
  46732. },
  46733. {
  46734. name: "Colossus Size, Mid",
  46735. height: math.unit(52, "meters")
  46736. },
  46737. {
  46738. name: "Colossus Size, High",
  46739. height: math.unit(60, "meters")
  46740. },
  46741. {
  46742. name: "Titan Size, Low",
  46743. height: math.unit(91, "meters"),
  46744. },
  46745. {
  46746. name: "Titan Size, Mid",
  46747. height: math.unit(122, "meters")
  46748. },
  46749. {
  46750. name: "Titan Size, High",
  46751. height: math.unit(162, "meters")
  46752. },
  46753. ]
  46754. ))
  46755. characterMakers.push(() => makeCharacter(
  46756. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  46757. {
  46758. front: {
  46759. height: math.unit(53, "meters"),
  46760. name: "Front",
  46761. image: {
  46762. source: "./media/characters/stellar-marbey/front.svg",
  46763. extra: 1913/1805,
  46764. bottom: 92/2005
  46765. }
  46766. },
  46767. back: {
  46768. height: math.unit(53, "meters"),
  46769. name: "Back",
  46770. image: {
  46771. source: "./media/characters/stellar-marbey/back.svg",
  46772. extra: 1960/1851,
  46773. bottom: 28/1988
  46774. }
  46775. },
  46776. mouth: {
  46777. height: math.unit(3.5, "meters"),
  46778. name: "Mouth",
  46779. image: {
  46780. source: "./media/characters/stellar-marbey/mouth.svg"
  46781. }
  46782. },
  46783. },
  46784. [
  46785. {
  46786. name: "Macro",
  46787. height: math.unit(53, "meters"),
  46788. default: true
  46789. },
  46790. ]
  46791. ))
  46792. characterMakers.push(() => makeCharacter(
  46793. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  46794. {
  46795. front: {
  46796. height: math.unit(8 + 1/12, "feet"),
  46797. weight: math.unit(233, "lb"),
  46798. name: "Front",
  46799. image: {
  46800. source: "./media/characters/matsu/front.svg",
  46801. extra: 832/772,
  46802. bottom: 40/872
  46803. }
  46804. },
  46805. back: {
  46806. height: math.unit(8 + 1/12, "feet"),
  46807. weight: math.unit(233, "lb"),
  46808. name: "Back",
  46809. image: {
  46810. source: "./media/characters/matsu/back.svg",
  46811. extra: 839/780,
  46812. bottom: 47/886
  46813. }
  46814. },
  46815. },
  46816. [
  46817. {
  46818. name: "Normal",
  46819. height: math.unit(8 + 1/12, "feet"),
  46820. default: true
  46821. },
  46822. ]
  46823. ))
  46824. characterMakers.push(() => makeCharacter(
  46825. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  46826. {
  46827. front: {
  46828. height: math.unit(4, "feet"),
  46829. weight: math.unit(148, "lb"),
  46830. name: "Front",
  46831. image: {
  46832. source: "./media/characters/thiz/front.svg",
  46833. extra: 1913/1748,
  46834. bottom: 62/1975
  46835. }
  46836. },
  46837. },
  46838. [
  46839. {
  46840. name: "Normal",
  46841. height: math.unit(4, "feet"),
  46842. default: true
  46843. },
  46844. ]
  46845. ))
  46846. characterMakers.push(() => makeCharacter(
  46847. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  46848. {
  46849. front: {
  46850. height: math.unit(7 + 6/12, "feet"),
  46851. weight: math.unit(267, "lb"),
  46852. name: "Front",
  46853. image: {
  46854. source: "./media/characters/marcel/front.svg",
  46855. extra: 1221/1096,
  46856. bottom: 76/1297
  46857. }
  46858. },
  46859. },
  46860. [
  46861. {
  46862. name: "Normal",
  46863. height: math.unit(7 + 6/12, "feet"),
  46864. default: true
  46865. },
  46866. ]
  46867. ))
  46868. characterMakers.push(() => makeCharacter(
  46869. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  46870. {
  46871. side: {
  46872. height: math.unit(42, "meters"),
  46873. name: "Side",
  46874. image: {
  46875. source: "./media/characters/flake/side.svg",
  46876. extra: 1525/1306,
  46877. bottom: 209/1734
  46878. }
  46879. },
  46880. },
  46881. [
  46882. {
  46883. name: "Normal",
  46884. height: math.unit(42, "meters"),
  46885. default: true
  46886. },
  46887. ]
  46888. ))
  46889. characterMakers.push(() => makeCharacter(
  46890. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  46891. {
  46892. dressed: {
  46893. height: math.unit(6 + 4/12, "feet"),
  46894. weight: math.unit(520, "lb"),
  46895. name: "Dressed",
  46896. image: {
  46897. source: "./media/characters/someonne/dressed.svg",
  46898. extra: 1020/1010,
  46899. bottom: 178/1198
  46900. }
  46901. },
  46902. undressed: {
  46903. height: math.unit(6 + 4/12, "feet"),
  46904. weight: math.unit(520, "lb"),
  46905. name: "Undressed",
  46906. image: {
  46907. source: "./media/characters/someonne/undressed.svg",
  46908. extra: 1019/1014,
  46909. bottom: 169/1188
  46910. }
  46911. },
  46912. },
  46913. [
  46914. {
  46915. name: "Normal",
  46916. height: math.unit(6 + 4/12, "feet"),
  46917. default: true
  46918. },
  46919. ]
  46920. ))
  46921. characterMakers.push(() => makeCharacter(
  46922. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  46923. {
  46924. front: {
  46925. height: math.unit(3, "feet"),
  46926. weight: math.unit(30, "lb"),
  46927. name: "Front",
  46928. image: {
  46929. source: "./media/characters/till/front.svg",
  46930. extra: 892/823,
  46931. bottom: 55/947
  46932. }
  46933. },
  46934. },
  46935. [
  46936. {
  46937. name: "Normal",
  46938. height: math.unit(3, "feet"),
  46939. default: true
  46940. },
  46941. ]
  46942. ))
  46943. characterMakers.push(() => makeCharacter(
  46944. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  46945. {
  46946. front: {
  46947. height: math.unit(9 + 8/12, "feet"),
  46948. weight: math.unit(800, "lb"),
  46949. name: "Front",
  46950. image: {
  46951. source: "./media/characters/sydney-heki/front.svg",
  46952. extra: 1360/1300,
  46953. bottom: 22/1382
  46954. }
  46955. },
  46956. back: {
  46957. height: math.unit(9 + 8/12, "feet"),
  46958. weight: math.unit(800, "lb"),
  46959. name: "Back",
  46960. image: {
  46961. source: "./media/characters/sydney-heki/back.svg",
  46962. extra: 1356/1293,
  46963. bottom: 12/1368
  46964. }
  46965. },
  46966. frontDressed: {
  46967. height: math.unit(9 + 8/12, "feet"),
  46968. weight: math.unit(800, "lb"),
  46969. name: "Front-dressed",
  46970. image: {
  46971. source: "./media/characters/sydney-heki/front-dressed.svg",
  46972. extra: 1360/1300,
  46973. bottom: 22/1382
  46974. }
  46975. },
  46976. },
  46977. [
  46978. {
  46979. name: "Normal",
  46980. height: math.unit(9 + 8/12, "feet"),
  46981. default: true
  46982. },
  46983. {
  46984. name: "Macro",
  46985. height: math.unit(500, "feet")
  46986. },
  46987. {
  46988. name: "Megamacro",
  46989. height: math.unit(3.6, "miles")
  46990. },
  46991. ]
  46992. ))
  46993. characterMakers.push(() => makeCharacter(
  46994. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  46995. {
  46996. front: {
  46997. height: math.unit(200, "cm"),
  46998. weight: math.unit(250, "lb"),
  46999. name: "Front",
  47000. image: {
  47001. source: "./media/characters/fowler-karlsson/front.svg",
  47002. extra: 897/845,
  47003. bottom: 123/1020
  47004. }
  47005. },
  47006. back: {
  47007. height: math.unit(200, "cm"),
  47008. weight: math.unit(250, "lb"),
  47009. name: "Back",
  47010. image: {
  47011. source: "./media/characters/fowler-karlsson/back.svg",
  47012. extra: 999/944,
  47013. bottom: 26/1025
  47014. }
  47015. },
  47016. dick: {
  47017. height: math.unit(1.92, "feet"),
  47018. weight: math.unit(150, "lb"),
  47019. name: "Dick",
  47020. image: {
  47021. source: "./media/characters/fowler-karlsson/dick.svg"
  47022. }
  47023. },
  47024. },
  47025. [
  47026. {
  47027. name: "Normal",
  47028. height: math.unit(200, "cm"),
  47029. default: true
  47030. },
  47031. {
  47032. name: "Smaller Macro",
  47033. height: math.unit(90, "m")
  47034. },
  47035. {
  47036. name: "Macro",
  47037. height: math.unit(150, "m")
  47038. },
  47039. {
  47040. name: "Bigger Macro",
  47041. height: math.unit(300, "m")
  47042. },
  47043. ]
  47044. ))
  47045. characterMakers.push(() => makeCharacter(
  47046. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  47047. {
  47048. side: {
  47049. height: math.unit(8 + 2/12, "feet"),
  47050. weight: math.unit(1, "tonne"),
  47051. name: "Side",
  47052. image: {
  47053. source: "./media/characters/rylide/side.svg",
  47054. extra: 1318/1034,
  47055. bottom: 106/1424
  47056. }
  47057. },
  47058. sitting: {
  47059. height: math.unit(303, "cm"),
  47060. weight: math.unit(1, "tonne"),
  47061. name: "Sitting",
  47062. image: {
  47063. source: "./media/characters/rylide/sitting.svg",
  47064. extra: 1303/1103,
  47065. bottom: 36/1339
  47066. }
  47067. },
  47068. },
  47069. [
  47070. {
  47071. name: "Normal",
  47072. height: math.unit(8 + 2/12, "feet"),
  47073. default: true
  47074. },
  47075. ]
  47076. ))
  47077. characterMakers.push(() => makeCharacter(
  47078. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  47079. {
  47080. front: {
  47081. height: math.unit(5 + 10/12, "feet"),
  47082. weight: math.unit(160, "lb"),
  47083. name: "Front",
  47084. image: {
  47085. source: "./media/characters/pudask/front.svg",
  47086. extra: 1616/1590,
  47087. bottom: 161/1777
  47088. }
  47089. },
  47090. },
  47091. [
  47092. {
  47093. name: "Ferret Height",
  47094. height: math.unit(2 + 5/12, "feet")
  47095. },
  47096. {
  47097. name: "Canon Height",
  47098. height: math.unit(5 + 10/12, "feet"),
  47099. default: true
  47100. },
  47101. ]
  47102. ))
  47103. characterMakers.push(() => makeCharacter(
  47104. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  47105. {
  47106. front: {
  47107. height: math.unit(3 + 6/12, "feet"),
  47108. weight: math.unit(60, "lb"),
  47109. name: "Front",
  47110. image: {
  47111. source: "./media/characters/ramita/front.svg",
  47112. extra: 1402/1232,
  47113. bottom: 62/1464
  47114. }
  47115. },
  47116. dressed: {
  47117. height: math.unit(3 + 6/12, "feet"),
  47118. weight: math.unit(60, "lb"),
  47119. name: "Dressed",
  47120. image: {
  47121. source: "./media/characters/ramita/dressed.svg",
  47122. extra: 1534/1249,
  47123. bottom: 50/1584
  47124. }
  47125. },
  47126. },
  47127. [
  47128. {
  47129. name: "Normal",
  47130. height: math.unit(3 + 6/12, "feet"),
  47131. default: true
  47132. },
  47133. ]
  47134. ))
  47135. characterMakers.push(() => makeCharacter(
  47136. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  47137. {
  47138. front: {
  47139. height: math.unit(8, "feet"),
  47140. name: "Front",
  47141. image: {
  47142. source: "./media/characters/ark/front.svg",
  47143. extra: 772/693,
  47144. bottom: 45/817
  47145. }
  47146. },
  47147. },
  47148. [
  47149. {
  47150. name: "Normal",
  47151. height: math.unit(8, "feet"),
  47152. default: true
  47153. },
  47154. ]
  47155. ))
  47156. characterMakers.push(() => makeCharacter(
  47157. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  47158. {
  47159. front: {
  47160. height: math.unit(6, "feet"),
  47161. weight: math.unit(250, "lb"),
  47162. volume: math.unit(5/8, "gallons"),
  47163. name: "Front",
  47164. image: {
  47165. source: "./media/characters/ludwig-horn/front.svg",
  47166. extra: 1782/1635,
  47167. bottom: 96/1878
  47168. }
  47169. },
  47170. back: {
  47171. height: math.unit(6, "feet"),
  47172. weight: math.unit(250, "lb"),
  47173. volume: math.unit(5/8, "gallons"),
  47174. name: "Back",
  47175. image: {
  47176. source: "./media/characters/ludwig-horn/back.svg",
  47177. extra: 1874/1729,
  47178. bottom: 27/1901
  47179. }
  47180. },
  47181. dick: {
  47182. height: math.unit(1.05, "feet"),
  47183. weight: math.unit(15, "lb"),
  47184. volume: math.unit(5/8, "gallons"),
  47185. name: "Dick",
  47186. image: {
  47187. source: "./media/characters/ludwig-horn/dick.svg"
  47188. }
  47189. },
  47190. },
  47191. [
  47192. {
  47193. name: "Small",
  47194. height: math.unit(6, "feet")
  47195. },
  47196. {
  47197. name: "Typical",
  47198. height: math.unit(12, "feet"),
  47199. default: true
  47200. },
  47201. {
  47202. name: "Building",
  47203. height: math.unit(80, "feet")
  47204. },
  47205. {
  47206. name: "Town",
  47207. height: math.unit(800, "feet")
  47208. },
  47209. {
  47210. name: "Kingdom",
  47211. height: math.unit(80000, "feet")
  47212. },
  47213. {
  47214. name: "Planet",
  47215. height: math.unit(8000000, "feet")
  47216. },
  47217. {
  47218. name: "Universe",
  47219. height: math.unit(8000000000, "feet")
  47220. },
  47221. {
  47222. name: "Transcended",
  47223. height: math.unit(8e27, "feet")
  47224. },
  47225. ]
  47226. ))
  47227. characterMakers.push(() => makeCharacter(
  47228. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  47229. {
  47230. front: {
  47231. height: math.unit(5, "feet"),
  47232. weight: math.unit(50, "kg"),
  47233. name: "Front",
  47234. image: {
  47235. source: "./media/characters/biot-avery/front.svg",
  47236. extra: 1295/1232,
  47237. bottom: 86/1381
  47238. }
  47239. },
  47240. },
  47241. [
  47242. {
  47243. name: "Normal",
  47244. height: math.unit(5, "feet"),
  47245. default: true
  47246. },
  47247. ]
  47248. ))
  47249. characterMakers.push(() => makeCharacter(
  47250. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  47251. {
  47252. front: {
  47253. height: math.unit(6, "feet"),
  47254. name: "Front",
  47255. image: {
  47256. source: "./media/characters/kitsune-kiro/front.svg",
  47257. extra: 1270/1158,
  47258. bottom: 42/1312
  47259. }
  47260. },
  47261. frontAlt: {
  47262. height: math.unit(6, "feet"),
  47263. name: "Front-alt",
  47264. image: {
  47265. source: "./media/characters/kitsune-kiro/front-alt.svg",
  47266. extra: 1130/1081,
  47267. bottom: 36/1166
  47268. }
  47269. },
  47270. },
  47271. [
  47272. {
  47273. name: "Smol",
  47274. height: math.unit(3, "feet")
  47275. },
  47276. {
  47277. name: "Normal",
  47278. height: math.unit(6, "feet"),
  47279. default: true
  47280. },
  47281. ]
  47282. ))
  47283. characterMakers.push(() => makeCharacter(
  47284. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  47285. {
  47286. front: {
  47287. height: math.unit(6, "feet"),
  47288. weight: math.unit(125, "lb"),
  47289. name: "Front",
  47290. image: {
  47291. source: "./media/characters/jack-thatcher/front.svg",
  47292. extra: 1474/1370,
  47293. bottom: 26/1500
  47294. }
  47295. },
  47296. back: {
  47297. height: math.unit(6, "feet"),
  47298. weight: math.unit(125, "lb"),
  47299. name: "Back",
  47300. image: {
  47301. source: "./media/characters/jack-thatcher/back.svg",
  47302. extra: 1489/1384,
  47303. bottom: 18/1507
  47304. }
  47305. },
  47306. },
  47307. [
  47308. {
  47309. name: "Normal",
  47310. height: math.unit(6, "feet"),
  47311. default: true
  47312. },
  47313. {
  47314. name: "Macro",
  47315. height: math.unit(75, "feet")
  47316. },
  47317. {
  47318. name: "Macro-er",
  47319. height: math.unit(250, "feet")
  47320. },
  47321. ]
  47322. ))
  47323. characterMakers.push(() => makeCharacter(
  47324. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  47325. {
  47326. front: {
  47327. height: math.unit(7, "feet"),
  47328. weight: math.unit(110, "kg"),
  47329. name: "Front",
  47330. image: {
  47331. source: "./media/characters/max-hyper/front.svg",
  47332. extra: 1969/1881,
  47333. bottom: 49/2018
  47334. }
  47335. },
  47336. },
  47337. [
  47338. {
  47339. name: "Normal",
  47340. height: math.unit(7, "feet"),
  47341. default: true
  47342. },
  47343. ]
  47344. ))
  47345. characterMakers.push(() => makeCharacter(
  47346. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  47347. {
  47348. front: {
  47349. height: math.unit(5 + 5/12, "feet"),
  47350. weight: math.unit(160, "lb"),
  47351. name: "Front",
  47352. image: {
  47353. source: "./media/characters/spook/front.svg",
  47354. extra: 794/791,
  47355. bottom: 54/848
  47356. }
  47357. },
  47358. back: {
  47359. height: math.unit(5 + 5/12, "feet"),
  47360. weight: math.unit(160, "lb"),
  47361. name: "Back",
  47362. image: {
  47363. source: "./media/characters/spook/back.svg",
  47364. extra: 812/798,
  47365. bottom: 32/844
  47366. }
  47367. },
  47368. },
  47369. [
  47370. {
  47371. name: "Normal",
  47372. height: math.unit(5 + 5/12, "feet"),
  47373. default: true
  47374. },
  47375. ]
  47376. ))
  47377. characterMakers.push(() => makeCharacter(
  47378. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  47379. {
  47380. front: {
  47381. height: math.unit(18, "feet"),
  47382. name: "Front",
  47383. image: {
  47384. source: "./media/characters/xeaduulix/front.svg",
  47385. extra: 1380/1166,
  47386. bottom: 110/1490
  47387. }
  47388. },
  47389. back: {
  47390. height: math.unit(18, "feet"),
  47391. name: "Back",
  47392. image: {
  47393. source: "./media/characters/xeaduulix/back.svg",
  47394. extra: 1592/1170,
  47395. bottom: 128/1720
  47396. }
  47397. },
  47398. frontNsfw: {
  47399. height: math.unit(18, "feet"),
  47400. name: "Front (NSFW)",
  47401. image: {
  47402. source: "./media/characters/xeaduulix/front-nsfw.svg",
  47403. extra: 1380/1166,
  47404. bottom: 110/1490
  47405. }
  47406. },
  47407. backNsfw: {
  47408. height: math.unit(18, "feet"),
  47409. name: "Back (NSFW)",
  47410. image: {
  47411. source: "./media/characters/xeaduulix/back-nsfw.svg",
  47412. extra: 1592/1170,
  47413. bottom: 128/1720
  47414. }
  47415. },
  47416. },
  47417. [
  47418. {
  47419. name: "Normal",
  47420. height: math.unit(18, "feet"),
  47421. default: true
  47422. },
  47423. ]
  47424. ))
  47425. characterMakers.push(() => makeCharacter(
  47426. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  47427. {
  47428. spreadWings: {
  47429. height: math.unit(20, "feet"),
  47430. name: "Spread Wings",
  47431. image: {
  47432. source: "./media/characters/fledge/spread-wings.svg",
  47433. extra: 693/635,
  47434. bottom: 26/719
  47435. }
  47436. },
  47437. front: {
  47438. height: math.unit(20, "feet"),
  47439. name: "Front",
  47440. image: {
  47441. source: "./media/characters/fledge/front.svg",
  47442. extra: 684/637,
  47443. bottom: 18/702
  47444. }
  47445. },
  47446. frontAlt: {
  47447. height: math.unit(20, "feet"),
  47448. name: "Front (Alt)",
  47449. image: {
  47450. source: "./media/characters/fledge/front-alt.svg",
  47451. extra: 708/664,
  47452. bottom: 13/721
  47453. }
  47454. },
  47455. back: {
  47456. height: math.unit(20, "feet"),
  47457. name: "Back",
  47458. image: {
  47459. source: "./media/characters/fledge/back.svg",
  47460. extra: 718/634,
  47461. bottom: 22/740
  47462. }
  47463. },
  47464. head: {
  47465. height: math.unit(5.55, "feet"),
  47466. name: "Head",
  47467. image: {
  47468. source: "./media/characters/fledge/head.svg"
  47469. }
  47470. },
  47471. headAlt: {
  47472. height: math.unit(5.1, "feet"),
  47473. name: "Head (Alt)",
  47474. image: {
  47475. source: "./media/characters/fledge/head-alt.svg"
  47476. }
  47477. },
  47478. },
  47479. [
  47480. {
  47481. name: "Small",
  47482. height: math.unit(6 + 2/12, "feet")
  47483. },
  47484. {
  47485. name: "Big",
  47486. height: math.unit(20, "feet"),
  47487. default: true
  47488. },
  47489. {
  47490. name: "Giant",
  47491. height: math.unit(100, "feet")
  47492. },
  47493. {
  47494. name: "Macro",
  47495. height: math.unit(200, "feet")
  47496. },
  47497. ]
  47498. ))
  47499. characterMakers.push(() => makeCharacter(
  47500. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  47501. {
  47502. front: {
  47503. height: math.unit(1, "meter"),
  47504. name: "Front",
  47505. image: {
  47506. source: "./media/characters/atlas-morenai/front.svg",
  47507. extra: 1275/1043,
  47508. bottom: 19/1294
  47509. }
  47510. },
  47511. back: {
  47512. height: math.unit(1, "meter"),
  47513. name: "Back",
  47514. image: {
  47515. source: "./media/characters/atlas-morenai/back.svg",
  47516. extra: 1141/1001,
  47517. bottom: 25/1166
  47518. }
  47519. },
  47520. },
  47521. [
  47522. {
  47523. name: "Normal",
  47524. height: math.unit(1, "meter"),
  47525. default: true
  47526. },
  47527. {
  47528. name: "Magic-Infused",
  47529. height: math.unit(5, "meters")
  47530. },
  47531. ]
  47532. ))
  47533. characterMakers.push(() => makeCharacter(
  47534. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  47535. {
  47536. front: {
  47537. height: math.unit(5, "meters"),
  47538. name: "Front",
  47539. image: {
  47540. source: "./media/characters/cintia/front.svg",
  47541. extra: 1312/1228,
  47542. bottom: 38/1350
  47543. }
  47544. },
  47545. back: {
  47546. height: math.unit(5, "meters"),
  47547. name: "Back",
  47548. image: {
  47549. source: "./media/characters/cintia/back.svg",
  47550. extra: 1260/1166,
  47551. bottom: 98/1358
  47552. }
  47553. },
  47554. frontDick: {
  47555. height: math.unit(5, "meters"),
  47556. name: "Front (Dick)",
  47557. image: {
  47558. source: "./media/characters/cintia/front-dick.svg",
  47559. extra: 1312/1228,
  47560. bottom: 38/1350
  47561. }
  47562. },
  47563. backDick: {
  47564. height: math.unit(5, "meters"),
  47565. name: "Back (Dick)",
  47566. image: {
  47567. source: "./media/characters/cintia/back-dick.svg",
  47568. extra: 1260/1166,
  47569. bottom: 98/1358
  47570. }
  47571. },
  47572. bust: {
  47573. height: math.unit(1.97, "meters"),
  47574. name: "Bust",
  47575. image: {
  47576. source: "./media/characters/cintia/bust.svg",
  47577. extra: 617/565,
  47578. bottom: 0/617
  47579. }
  47580. },
  47581. },
  47582. [
  47583. {
  47584. name: "Normal",
  47585. height: math.unit(5, "meters"),
  47586. default: true
  47587. },
  47588. ]
  47589. ))
  47590. characterMakers.push(() => makeCharacter(
  47591. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  47592. {
  47593. side: {
  47594. height: math.unit(100, "feet"),
  47595. name: "Side",
  47596. image: {
  47597. source: "./media/characters/denora/side.svg",
  47598. extra: 875/803,
  47599. bottom: 9/884
  47600. }
  47601. },
  47602. },
  47603. [
  47604. {
  47605. name: "Standard",
  47606. height: math.unit(100, "feet"),
  47607. default: true
  47608. },
  47609. {
  47610. name: "Grand",
  47611. height: math.unit(1000, "feet")
  47612. },
  47613. {
  47614. name: "Conquering",
  47615. height: math.unit(10000, "feet")
  47616. },
  47617. ]
  47618. ))
  47619. characterMakers.push(() => makeCharacter(
  47620. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  47621. {
  47622. dressed: {
  47623. height: math.unit(8 + 5/12, "feet"),
  47624. weight: math.unit(700, "lb"),
  47625. name: "Dressed",
  47626. image: {
  47627. source: "./media/characters/kiva/dressed.svg",
  47628. extra: 1102/1055,
  47629. bottom: 60/1162
  47630. }
  47631. },
  47632. nude: {
  47633. height: math.unit(8 + 5/12, "feet"),
  47634. weight: math.unit(700, "lb"),
  47635. name: "Nude",
  47636. image: {
  47637. source: "./media/characters/kiva/nude.svg",
  47638. extra: 1102/1055,
  47639. bottom: 60/1162
  47640. }
  47641. },
  47642. },
  47643. [
  47644. {
  47645. name: "Base Height",
  47646. height: math.unit(8 + 5/12, "feet"),
  47647. default: true
  47648. },
  47649. {
  47650. name: "Macro",
  47651. height: math.unit(100, "feet")
  47652. },
  47653. {
  47654. name: "Max",
  47655. height: math.unit(3280, "feet")
  47656. },
  47657. ]
  47658. ))
  47659. characterMakers.push(() => makeCharacter(
  47660. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  47661. {
  47662. front: {
  47663. height: math.unit(6 + 8/12, "feet"),
  47664. weight: math.unit(250, "lb"),
  47665. name: "Front",
  47666. image: {
  47667. source: "./media/characters/ztragon/front.svg",
  47668. extra: 1825/1684,
  47669. bottom: 98/1923
  47670. }
  47671. },
  47672. },
  47673. [
  47674. {
  47675. name: "Normal",
  47676. height: math.unit(6 + 8/12, "feet"),
  47677. default: true
  47678. },
  47679. {
  47680. name: "Macro",
  47681. height: math.unit(80, "feet")
  47682. },
  47683. ]
  47684. ))
  47685. characterMakers.push(() => makeCharacter(
  47686. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  47687. {
  47688. front: {
  47689. height: math.unit(10.4, "feet"),
  47690. weight: math.unit(2, "tons"),
  47691. name: "Front",
  47692. image: {
  47693. source: "./media/characters/yesenia/front.svg",
  47694. extra: 1479/1474,
  47695. bottom: 233/1712
  47696. }
  47697. },
  47698. },
  47699. [
  47700. {
  47701. name: "Normal",
  47702. height: math.unit(10.4, "feet"),
  47703. default: true
  47704. },
  47705. ]
  47706. ))
  47707. characterMakers.push(() => makeCharacter(
  47708. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  47709. {
  47710. normal: {
  47711. height: math.unit(6 + 1/12, "feet"),
  47712. weight: math.unit(180, "lb"),
  47713. name: "Normal",
  47714. image: {
  47715. source: "./media/characters/leanne-lycheborne/normal.svg",
  47716. extra: 1748/1660,
  47717. bottom: 98/1846
  47718. }
  47719. },
  47720. were: {
  47721. height: math.unit(12, "feet"),
  47722. weight: math.unit(1600, "lb"),
  47723. name: "Were",
  47724. image: {
  47725. source: "./media/characters/leanne-lycheborne/were.svg",
  47726. extra: 1485/1432,
  47727. bottom: 66/1551
  47728. }
  47729. },
  47730. },
  47731. [
  47732. {
  47733. name: "Normal",
  47734. height: math.unit(6 + 1/12, "feet"),
  47735. default: true
  47736. },
  47737. ]
  47738. ))
  47739. characterMakers.push(() => makeCharacter(
  47740. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  47741. {
  47742. side: {
  47743. height: math.unit(13, "feet"),
  47744. name: "Side",
  47745. image: {
  47746. source: "./media/characters/kira-tyler/side.svg",
  47747. extra: 693/393,
  47748. bottom: 58/751
  47749. }
  47750. },
  47751. },
  47752. [
  47753. {
  47754. name: "Normal",
  47755. height: math.unit(13, "feet"),
  47756. default: true
  47757. },
  47758. ]
  47759. ))
  47760. characterMakers.push(() => makeCharacter(
  47761. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  47762. {
  47763. front: {
  47764. height: math.unit(10.3, "feet"),
  47765. weight: math.unit(150, "lb"),
  47766. name: "Front",
  47767. image: {
  47768. source: "./media/characters/blaze/front.svg",
  47769. extra: 1378/1286,
  47770. bottom: 172/1550
  47771. }
  47772. },
  47773. },
  47774. [
  47775. {
  47776. name: "Normal",
  47777. height: math.unit(10.3, "feet"),
  47778. default: true
  47779. },
  47780. ]
  47781. ))
  47782. characterMakers.push(() => makeCharacter(
  47783. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  47784. {
  47785. side: {
  47786. height: math.unit(2, "meters"),
  47787. weight: math.unit(400, "kg"),
  47788. name: "Side",
  47789. image: {
  47790. source: "./media/characters/anu/side.svg",
  47791. extra: 506/394,
  47792. bottom: 18/524
  47793. }
  47794. },
  47795. },
  47796. [
  47797. {
  47798. name: "Humanoid",
  47799. height: math.unit(2, "meters")
  47800. },
  47801. {
  47802. name: "Normal",
  47803. height: math.unit(5, "meters"),
  47804. default: true
  47805. },
  47806. ]
  47807. ))
  47808. characterMakers.push(() => makeCharacter(
  47809. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  47810. {
  47811. front: {
  47812. height: math.unit(5 + 5/12, "feet"),
  47813. weight: math.unit(170, "lb"),
  47814. name: "Front",
  47815. image: {
  47816. source: "./media/characters/synx-the-lynx/front.svg",
  47817. extra: 1893/1745,
  47818. bottom: 17/1910
  47819. }
  47820. },
  47821. side: {
  47822. height: math.unit(5 + 5/12, "feet"),
  47823. weight: math.unit(170, "lb"),
  47824. name: "Side",
  47825. image: {
  47826. source: "./media/characters/synx-the-lynx/side.svg",
  47827. extra: 1884/1740,
  47828. bottom: 39/1923
  47829. }
  47830. },
  47831. back: {
  47832. height: math.unit(5 + 5/12, "feet"),
  47833. weight: math.unit(170, "lb"),
  47834. name: "Back",
  47835. image: {
  47836. source: "./media/characters/synx-the-lynx/back.svg",
  47837. extra: 1903/1755,
  47838. bottom: 14/1917
  47839. }
  47840. },
  47841. },
  47842. [
  47843. {
  47844. name: "Normal",
  47845. height: math.unit(5 + 5/12, "feet"),
  47846. default: true
  47847. },
  47848. ]
  47849. ))
  47850. characterMakers.push(() => makeCharacter(
  47851. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  47852. {
  47853. back: {
  47854. height: math.unit(15, "feet"),
  47855. name: "Back",
  47856. image: {
  47857. source: "./media/characters/nadezda-fex/back.svg",
  47858. extra: 1695/1481,
  47859. bottom: 25/1720
  47860. }
  47861. },
  47862. },
  47863. [
  47864. {
  47865. name: "Normal",
  47866. height: math.unit(15, "feet"),
  47867. default: true
  47868. },
  47869. {
  47870. name: "Macro",
  47871. height: math.unit(2.5, "miles")
  47872. },
  47873. {
  47874. name: "Goddess",
  47875. height: math.unit(2, "multiverses")
  47876. },
  47877. ]
  47878. ))
  47879. characterMakers.push(() => makeCharacter(
  47880. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  47881. {
  47882. front: {
  47883. height: math.unit(216, "cm"),
  47884. name: "Front",
  47885. image: {
  47886. source: "./media/characters/lev/front.svg",
  47887. extra: 1728/1670,
  47888. bottom: 82/1810
  47889. }
  47890. },
  47891. back: {
  47892. height: math.unit(216, "cm"),
  47893. name: "Back",
  47894. image: {
  47895. source: "./media/characters/lev/back.svg",
  47896. extra: 1738/1675,
  47897. bottom: 24/1762
  47898. }
  47899. },
  47900. dressed: {
  47901. height: math.unit(216, "cm"),
  47902. name: "Dressed",
  47903. image: {
  47904. source: "./media/characters/lev/dressed.svg",
  47905. extra: 1397/1351,
  47906. bottom: 73/1470
  47907. }
  47908. },
  47909. head: {
  47910. height: math.unit(0.51, "meter"),
  47911. name: "Head",
  47912. image: {
  47913. source: "./media/characters/lev/head.svg"
  47914. }
  47915. },
  47916. },
  47917. [
  47918. {
  47919. name: "Normal",
  47920. height: math.unit(216, "cm"),
  47921. default: true
  47922. },
  47923. {
  47924. name: "Relatively Macro",
  47925. height: math.unit(80, "meters")
  47926. },
  47927. {
  47928. name: "Megamacro",
  47929. height: math.unit(21600, "meters")
  47930. },
  47931. {
  47932. name: "Megamacro+",
  47933. height: math.unit(64800, "meters")
  47934. },
  47935. ]
  47936. ))
  47937. characterMakers.push(() => makeCharacter(
  47938. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  47939. {
  47940. front: {
  47941. height: math.unit(2, "meters"),
  47942. weight: math.unit(80, "kg"),
  47943. name: "Front",
  47944. image: {
  47945. source: "./media/characters/moka/front.svg",
  47946. extra: 1337/1255,
  47947. bottom: 58/1395
  47948. }
  47949. },
  47950. },
  47951. [
  47952. {
  47953. name: "Micro",
  47954. height: math.unit(15, "cm")
  47955. },
  47956. {
  47957. name: "Normal",
  47958. height: math.unit(2, "meters"),
  47959. default: true
  47960. },
  47961. {
  47962. name: "Macro",
  47963. height: math.unit(20, "meters"),
  47964. },
  47965. ]
  47966. ))
  47967. characterMakers.push(() => makeCharacter(
  47968. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  47969. {
  47970. front: {
  47971. height: math.unit(9, "feet"),
  47972. weight: math.unit(240, "lb"),
  47973. name: "Front",
  47974. image: {
  47975. source: "./media/characters/kuzco/front.svg",
  47976. extra: 1593/1487,
  47977. bottom: 32/1625
  47978. }
  47979. },
  47980. side: {
  47981. height: math.unit(9, "feet"),
  47982. weight: math.unit(240, "lb"),
  47983. name: "Side",
  47984. image: {
  47985. source: "./media/characters/kuzco/side.svg",
  47986. extra: 1575/1485,
  47987. bottom: 30/1605
  47988. }
  47989. },
  47990. back: {
  47991. height: math.unit(9, "feet"),
  47992. weight: math.unit(240, "lb"),
  47993. name: "Back",
  47994. image: {
  47995. source: "./media/characters/kuzco/back.svg",
  47996. extra: 1603/1514,
  47997. bottom: 14/1617
  47998. }
  47999. },
  48000. },
  48001. [
  48002. {
  48003. name: "Normal",
  48004. height: math.unit(9, "feet"),
  48005. default: true
  48006. },
  48007. ]
  48008. ))
  48009. characterMakers.push(() => makeCharacter(
  48010. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  48011. {
  48012. side: {
  48013. height: math.unit(2, "meters"),
  48014. weight: math.unit(300, "kg"),
  48015. name: "Side",
  48016. image: {
  48017. source: "./media/characters/ceruleus/side.svg",
  48018. extra: 1068/974,
  48019. bottom: 126/1194
  48020. }
  48021. },
  48022. maw: {
  48023. height: math.unit(0.8125, "meter"),
  48024. name: "Maw",
  48025. image: {
  48026. source: "./media/characters/ceruleus/maw.svg"
  48027. }
  48028. },
  48029. },
  48030. [
  48031. {
  48032. name: "Normal",
  48033. height: math.unit(16, "meters"),
  48034. default: true
  48035. },
  48036. ]
  48037. ))
  48038. characterMakers.push(() => makeCharacter(
  48039. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  48040. {
  48041. front: {
  48042. height: math.unit(9, "feet"),
  48043. weight: math.unit(500, "kg"),
  48044. name: "Front",
  48045. image: {
  48046. source: "./media/characters/acouya/front.svg",
  48047. extra: 1660/1473,
  48048. bottom: 28/1688
  48049. }
  48050. },
  48051. },
  48052. [
  48053. {
  48054. name: "Normal",
  48055. height: math.unit(9, "feet"),
  48056. default: true
  48057. },
  48058. ]
  48059. ))
  48060. characterMakers.push(() => makeCharacter(
  48061. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  48062. {
  48063. front: {
  48064. height: math.unit(5 + 6/12, "feet"),
  48065. weight: math.unit(195, "lb"),
  48066. name: "Front",
  48067. image: {
  48068. source: "./media/characters/vant/front.svg",
  48069. extra: 1396/1320,
  48070. bottom: 20/1416
  48071. }
  48072. },
  48073. back: {
  48074. height: math.unit(5 + 6/12, "feet"),
  48075. weight: math.unit(195, "lb"),
  48076. name: "Back",
  48077. image: {
  48078. source: "./media/characters/vant/back.svg",
  48079. extra: 1396/1320,
  48080. bottom: 20/1416
  48081. }
  48082. },
  48083. maw: {
  48084. height: math.unit(0.75, "feet"),
  48085. name: "Maw",
  48086. image: {
  48087. source: "./media/characters/vant/maw.svg"
  48088. }
  48089. },
  48090. paw: {
  48091. height: math.unit(1.07, "feet"),
  48092. name: "Paw",
  48093. image: {
  48094. source: "./media/characters/vant/paw.svg"
  48095. }
  48096. },
  48097. },
  48098. [
  48099. {
  48100. name: "Micro",
  48101. height: math.unit(0.25, "inches")
  48102. },
  48103. {
  48104. name: "Normal",
  48105. height: math.unit(5 + 6/12, "feet"),
  48106. default: true
  48107. },
  48108. {
  48109. name: "Macro",
  48110. height: math.unit(75, "feet")
  48111. },
  48112. ]
  48113. ))
  48114. characterMakers.push(() => makeCharacter(
  48115. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  48116. {
  48117. front: {
  48118. height: math.unit(30, "meters"),
  48119. weight: math.unit(363, "tons"),
  48120. name: "Front",
  48121. image: {
  48122. source: "./media/characters/ahra/front.svg",
  48123. extra: 1914/1814,
  48124. bottom: 46/1960
  48125. }
  48126. },
  48127. },
  48128. [
  48129. {
  48130. name: "Macro",
  48131. height: math.unit(30, "meters"),
  48132. default: true
  48133. },
  48134. ]
  48135. ))
  48136. characterMakers.push(() => makeCharacter(
  48137. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  48138. {
  48139. undressed: {
  48140. height: math.unit(2, "m"),
  48141. weight: math.unit(250, "kg"),
  48142. name: "Undressed",
  48143. image: {
  48144. source: "./media/characters/coriander/undressed.svg",
  48145. extra: 1757/1606,
  48146. bottom: 107/1864
  48147. }
  48148. },
  48149. dressed: {
  48150. height: math.unit(2, "m"),
  48151. weight: math.unit(250, "kg"),
  48152. name: "Dressed",
  48153. image: {
  48154. source: "./media/characters/coriander/dressed.svg",
  48155. extra: 1757/1606,
  48156. bottom: 107/1864
  48157. }
  48158. },
  48159. },
  48160. [
  48161. {
  48162. name: "Normal",
  48163. height: math.unit(4, "meters"),
  48164. default: true
  48165. },
  48166. {
  48167. name: "XL",
  48168. height: math.unit(6, "meters")
  48169. },
  48170. {
  48171. name: "XXL",
  48172. height: math.unit(8, "meters")
  48173. },
  48174. ]
  48175. ))
  48176. characterMakers.push(() => makeCharacter(
  48177. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  48178. {
  48179. front: {
  48180. height: math.unit(6, "feet"),
  48181. name: "Front",
  48182. image: {
  48183. source: "./media/characters/syrinx/front.svg",
  48184. extra: 1557/1259,
  48185. bottom: 171/1728
  48186. }
  48187. },
  48188. },
  48189. [
  48190. {
  48191. name: "Normal",
  48192. height: math.unit(6 + 3/12, "feet"),
  48193. default: true
  48194. },
  48195. ]
  48196. ))
  48197. characterMakers.push(() => makeCharacter(
  48198. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  48199. {
  48200. front: {
  48201. height: math.unit(11 + 6/12, "feet"),
  48202. weight: math.unit(1.5, "tons"),
  48203. name: "Front",
  48204. image: {
  48205. source: "./media/characters/bor/front.svg",
  48206. extra: 1189/1109,
  48207. bottom: 170/1359
  48208. }
  48209. },
  48210. },
  48211. [
  48212. {
  48213. name: "Normal",
  48214. height: math.unit(11 + 6/12, "feet"),
  48215. default: true
  48216. },
  48217. {
  48218. name: "Macro",
  48219. height: math.unit(32 + 9/12, "feet")
  48220. },
  48221. ]
  48222. ))
  48223. characterMakers.push(() => makeCharacter(
  48224. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  48225. {
  48226. anthro: {
  48227. height: math.unit(9, "feet"),
  48228. weight: math.unit(2076, "lb"),
  48229. name: "Anthro",
  48230. image: {
  48231. source: "./media/characters/abacus/anthro.svg",
  48232. extra: 1540/1494,
  48233. bottom: 233/1773
  48234. }
  48235. },
  48236. pigeon: {
  48237. height: math.unit(1, "feet"),
  48238. name: "Pigeon",
  48239. image: {
  48240. source: "./media/characters/abacus/pigeon.svg",
  48241. extra: 528/525,
  48242. bottom: 46/574
  48243. }
  48244. },
  48245. },
  48246. [
  48247. {
  48248. name: "Normal",
  48249. height: math.unit(9, "feet"),
  48250. default: true
  48251. },
  48252. ]
  48253. ))
  48254. characterMakers.push(() => makeCharacter(
  48255. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  48256. {
  48257. side: {
  48258. height: math.unit(6, "feet"),
  48259. name: "Side",
  48260. image: {
  48261. source: "./media/characters/delkhan/side.svg",
  48262. extra: 1884/1786,
  48263. bottom: 308/2192
  48264. }
  48265. },
  48266. head: {
  48267. height: math.unit(3.38, "feet"),
  48268. name: "Head",
  48269. image: {
  48270. source: "./media/characters/delkhan/head.svg"
  48271. }
  48272. },
  48273. },
  48274. [
  48275. {
  48276. name: "Normal",
  48277. height: math.unit(72, "feet"),
  48278. default: true
  48279. },
  48280. {
  48281. name: "Giant",
  48282. height: math.unit(172, "feet")
  48283. },
  48284. ]
  48285. ))
  48286. characterMakers.push(() => makeCharacter(
  48287. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  48288. {
  48289. standing: {
  48290. height: math.unit(6, "feet"),
  48291. name: "Standing",
  48292. image: {
  48293. source: "./media/characters/euchidat/standing.svg",
  48294. extra: 1612/1553,
  48295. bottom: 116/1728
  48296. }
  48297. },
  48298. leaning: {
  48299. height: math.unit(6, "feet"),
  48300. name: "Leaning",
  48301. image: {
  48302. source: "./media/characters/euchidat/leaning.svg",
  48303. extra: 1719/1674,
  48304. bottom: 27/1746
  48305. }
  48306. },
  48307. },
  48308. [
  48309. {
  48310. name: "Normal",
  48311. height: math.unit(175, "feet"),
  48312. default: true
  48313. },
  48314. {
  48315. name: "Megamacro",
  48316. height: math.unit(190, "miles")
  48317. },
  48318. {
  48319. name: "Gigamacro",
  48320. height: math.unit(190000, "miles")
  48321. },
  48322. ]
  48323. ))
  48324. characterMakers.push(() => makeCharacter(
  48325. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  48326. {
  48327. front: {
  48328. height: math.unit(6, "feet"),
  48329. weight: math.unit(150, "lb"),
  48330. name: "Front",
  48331. image: {
  48332. source: "./media/characters/rebecca-stack/front.svg",
  48333. extra: 1256/1201,
  48334. bottom: 18/1274
  48335. }
  48336. },
  48337. },
  48338. [
  48339. {
  48340. name: "Normal",
  48341. height: math.unit(5 + 8/12, "feet"),
  48342. default: true
  48343. },
  48344. {
  48345. name: "Demolitionist",
  48346. height: math.unit(200, "feet")
  48347. },
  48348. {
  48349. name: "Out of Control",
  48350. height: math.unit(2, "miles")
  48351. },
  48352. {
  48353. name: "Giga",
  48354. height: math.unit(7200, "miles")
  48355. },
  48356. ]
  48357. ))
  48358. characterMakers.push(() => makeCharacter(
  48359. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  48360. {
  48361. front: {
  48362. height: math.unit(6, "feet"),
  48363. weight: math.unit(150, "lb"),
  48364. name: "Front",
  48365. image: {
  48366. source: "./media/characters/jenny-cartwright/front.svg",
  48367. extra: 1384/1376,
  48368. bottom: 58/1442
  48369. }
  48370. },
  48371. },
  48372. [
  48373. {
  48374. name: "Normal",
  48375. height: math.unit(6 + 7/12, "feet"),
  48376. default: true
  48377. },
  48378. {
  48379. name: "Librarian",
  48380. height: math.unit(55, "feet")
  48381. },
  48382. {
  48383. name: "Sightseer",
  48384. height: math.unit(50, "miles")
  48385. },
  48386. {
  48387. name: "Giga",
  48388. height: math.unit(30000, "miles")
  48389. },
  48390. ]
  48391. ))
  48392. characterMakers.push(() => makeCharacter(
  48393. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  48394. {
  48395. nude: {
  48396. height: math.unit(8, "feet"),
  48397. weight: math.unit(225, "lb"),
  48398. name: "Nude",
  48399. image: {
  48400. source: "./media/characters/marvy/nude.svg",
  48401. extra: 1900/1683,
  48402. bottom: 89/1989
  48403. }
  48404. },
  48405. dressed: {
  48406. height: math.unit(8, "feet"),
  48407. weight: math.unit(225, "lb"),
  48408. name: "Dressed",
  48409. image: {
  48410. source: "./media/characters/marvy/dressed.svg",
  48411. extra: 1900/1683,
  48412. bottom: 89/1989
  48413. }
  48414. },
  48415. head: {
  48416. height: math.unit(2.85, "feet"),
  48417. name: "Head",
  48418. image: {
  48419. source: "./media/characters/marvy/head.svg"
  48420. }
  48421. },
  48422. },
  48423. [
  48424. {
  48425. name: "Normal",
  48426. height: math.unit(8, "feet"),
  48427. default: true
  48428. },
  48429. ]
  48430. ))
  48431. characterMakers.push(() => makeCharacter(
  48432. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  48433. {
  48434. front: {
  48435. height: math.unit(8, "feet"),
  48436. weight: math.unit(250, "lb"),
  48437. name: "Front",
  48438. image: {
  48439. source: "./media/characters/leah/front.svg",
  48440. extra: 1257/1149,
  48441. bottom: 109/1366
  48442. }
  48443. },
  48444. },
  48445. [
  48446. {
  48447. name: "Normal",
  48448. height: math.unit(8, "feet"),
  48449. default: true
  48450. },
  48451. {
  48452. name: "Minimacro",
  48453. height: math.unit(40, "feet")
  48454. },
  48455. {
  48456. name: "Macro",
  48457. height: math.unit(124, "feet")
  48458. },
  48459. {
  48460. name: "Megamacro",
  48461. height: math.unit(850, "feet")
  48462. },
  48463. ]
  48464. ))
  48465. characterMakers.push(() => makeCharacter(
  48466. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  48467. {
  48468. side: {
  48469. height: math.unit(13 + 6/12, "feet"),
  48470. weight: math.unit(3200, "lb"),
  48471. name: "Side",
  48472. image: {
  48473. source: "./media/characters/alvir/side.svg",
  48474. extra: 896/589,
  48475. bottom: 26/922
  48476. }
  48477. },
  48478. },
  48479. [
  48480. {
  48481. name: "Normal",
  48482. height: math.unit(13 + 6/12, "feet"),
  48483. default: true
  48484. },
  48485. ]
  48486. ))
  48487. characterMakers.push(() => makeCharacter(
  48488. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  48489. {
  48490. front: {
  48491. height: math.unit(5 + 4/12, "feet"),
  48492. weight: math.unit(236, "lb"),
  48493. name: "Front",
  48494. image: {
  48495. source: "./media/characters/zaina-khalil/front.svg",
  48496. extra: 1533/1485,
  48497. bottom: 94/1627
  48498. }
  48499. },
  48500. side: {
  48501. height: math.unit(5 + 4/12, "feet"),
  48502. weight: math.unit(236, "lb"),
  48503. name: "Side",
  48504. image: {
  48505. source: "./media/characters/zaina-khalil/side.svg",
  48506. extra: 1537/1498,
  48507. bottom: 66/1603
  48508. }
  48509. },
  48510. back: {
  48511. height: math.unit(5 + 4/12, "feet"),
  48512. weight: math.unit(236, "lb"),
  48513. name: "Back",
  48514. image: {
  48515. source: "./media/characters/zaina-khalil/back.svg",
  48516. extra: 1546/1494,
  48517. bottom: 89/1635
  48518. }
  48519. },
  48520. },
  48521. [
  48522. {
  48523. name: "Normal",
  48524. height: math.unit(5 + 4/12, "feet"),
  48525. default: true
  48526. },
  48527. ]
  48528. ))
  48529. characterMakers.push(() => makeCharacter(
  48530. { name: "Terry", species: ["husky"], tags: ["taur"] },
  48531. {
  48532. side: {
  48533. height: math.unit(12, "feet"),
  48534. weight: math.unit(4000, "lb"),
  48535. name: "Side",
  48536. image: {
  48537. source: "./media/characters/terry/side.svg",
  48538. extra: 1518/1439,
  48539. bottom: 149/1667
  48540. }
  48541. },
  48542. },
  48543. [
  48544. {
  48545. name: "Normal",
  48546. height: math.unit(12, "feet"),
  48547. default: true
  48548. },
  48549. ]
  48550. ))
  48551. characterMakers.push(() => makeCharacter(
  48552. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  48553. {
  48554. front: {
  48555. height: math.unit(12, "feet"),
  48556. weight: math.unit(1500, "lb"),
  48557. name: "Front",
  48558. image: {
  48559. source: "./media/characters/kahea/front.svg",
  48560. extra: 1722/1617,
  48561. bottom: 179/1901
  48562. }
  48563. },
  48564. },
  48565. [
  48566. {
  48567. name: "Normal",
  48568. height: math.unit(12, "feet"),
  48569. default: true
  48570. },
  48571. ]
  48572. ))
  48573. characterMakers.push(() => makeCharacter(
  48574. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  48575. {
  48576. demonFront: {
  48577. height: math.unit(36, "feet"),
  48578. name: "Front",
  48579. image: {
  48580. source: "./media/characters/alex-xuria/demon-front.svg",
  48581. extra: 1705/1673,
  48582. bottom: 198/1903
  48583. },
  48584. form: "demon",
  48585. default: true
  48586. },
  48587. demonBack: {
  48588. height: math.unit(36, "feet"),
  48589. name: "Back",
  48590. image: {
  48591. source: "./media/characters/alex-xuria/demon-back.svg",
  48592. extra: 1725/1693,
  48593. bottom: 70/1795
  48594. },
  48595. form: "demon"
  48596. },
  48597. demonHead: {
  48598. height: math.unit(2.14, "meters"),
  48599. name: "Head",
  48600. image: {
  48601. source: "./media/characters/alex-xuria/demon-head.svg"
  48602. },
  48603. form: "demon"
  48604. },
  48605. demonHand: {
  48606. height: math.unit(1.61, "meters"),
  48607. name: "Hand",
  48608. image: {
  48609. source: "./media/characters/alex-xuria/demon-hand.svg"
  48610. },
  48611. form: "demon"
  48612. },
  48613. demonPaw: {
  48614. height: math.unit(1.35, "meters"),
  48615. name: "Paw",
  48616. image: {
  48617. source: "./media/characters/alex-xuria/demon-paw.svg"
  48618. },
  48619. form: "demon"
  48620. },
  48621. demonFoot: {
  48622. height: math.unit(2.2, "meters"),
  48623. name: "Foot",
  48624. image: {
  48625. source: "./media/characters/alex-xuria/demon-foot.svg"
  48626. },
  48627. form: "demon"
  48628. },
  48629. demonCock: {
  48630. height: math.unit(1.74, "meters"),
  48631. name: "Cock",
  48632. image: {
  48633. source: "./media/characters/alex-xuria/demon-cock.svg"
  48634. },
  48635. form: "demon"
  48636. },
  48637. demonTailClosed: {
  48638. height: math.unit(1.47, "meters"),
  48639. name: "Tail (Closed)",
  48640. image: {
  48641. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  48642. },
  48643. form: "demon"
  48644. },
  48645. demonTailOpen: {
  48646. height: math.unit(2.85, "meters"),
  48647. name: "Tail (Open)",
  48648. image: {
  48649. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  48650. },
  48651. form: "demon"
  48652. },
  48653. incubusFront: {
  48654. height: math.unit(12, "feet"),
  48655. name: "Front",
  48656. image: {
  48657. source: "./media/characters/alex-xuria/incubus-front.svg",
  48658. extra: 1754/1677,
  48659. bottom: 125/1879
  48660. },
  48661. form: "incubus",
  48662. default: true
  48663. },
  48664. incubusBack: {
  48665. height: math.unit(12, "feet"),
  48666. name: "Back",
  48667. image: {
  48668. source: "./media/characters/alex-xuria/incubus-back.svg",
  48669. extra: 1702/1647,
  48670. bottom: 30/1732
  48671. },
  48672. form: "incubus"
  48673. },
  48674. incubusHead: {
  48675. height: math.unit(3.45, "feet"),
  48676. name: "Head",
  48677. image: {
  48678. source: "./media/characters/alex-xuria/incubus-head.svg"
  48679. },
  48680. form: "incubus"
  48681. },
  48682. rabbitFront: {
  48683. height: math.unit(6, "feet"),
  48684. name: "Front",
  48685. image: {
  48686. source: "./media/characters/alex-xuria/rabbit-front.svg",
  48687. extra: 1369/1349,
  48688. bottom: 45/1414
  48689. },
  48690. form: "rabbit",
  48691. default: true
  48692. },
  48693. rabbitSide: {
  48694. height: math.unit(6, "feet"),
  48695. name: "Side",
  48696. image: {
  48697. source: "./media/characters/alex-xuria/rabbit-side.svg",
  48698. extra: 1370/1356,
  48699. bottom: 37/1407
  48700. },
  48701. form: "rabbit"
  48702. },
  48703. rabbitBack: {
  48704. height: math.unit(6, "feet"),
  48705. name: "Back",
  48706. image: {
  48707. source: "./media/characters/alex-xuria/rabbit-back.svg",
  48708. extra: 1375/1358,
  48709. bottom: 43/1418
  48710. },
  48711. form: "rabbit"
  48712. },
  48713. },
  48714. [
  48715. {
  48716. name: "Normal",
  48717. height: math.unit(6, "feet"),
  48718. default: true,
  48719. form: "rabbit"
  48720. },
  48721. {
  48722. name: "Incubus",
  48723. height: math.unit(12, "feet"),
  48724. default: true,
  48725. form: "incubus"
  48726. },
  48727. {
  48728. name: "Demon",
  48729. height: math.unit(36, "feet"),
  48730. default: true,
  48731. form: "demon"
  48732. }
  48733. ],
  48734. {
  48735. "demon": {
  48736. name: "Demon",
  48737. default: true
  48738. },
  48739. "incubus": {
  48740. name: "Incubus",
  48741. },
  48742. "rabbit": {
  48743. name: "Rabbit"
  48744. }
  48745. }
  48746. ))
  48747. characterMakers.push(() => makeCharacter(
  48748. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  48749. {
  48750. front: {
  48751. height: math.unit(7 + 5/12, "feet"),
  48752. weight: math.unit(510, "lb"),
  48753. name: "Front",
  48754. image: {
  48755. source: "./media/characters/syrup/front.svg",
  48756. extra: 932/916,
  48757. bottom: 26/958
  48758. }
  48759. },
  48760. },
  48761. [
  48762. {
  48763. name: "Normal",
  48764. height: math.unit(7 + 5/12, "feet"),
  48765. default: true
  48766. },
  48767. {
  48768. name: "Big",
  48769. height: math.unit(50, "feet")
  48770. },
  48771. {
  48772. name: "Macro",
  48773. height: math.unit(300, "feet")
  48774. },
  48775. {
  48776. name: "Megamacro",
  48777. height: math.unit(1, "mile")
  48778. },
  48779. ]
  48780. ))
  48781. characterMakers.push(() => makeCharacter(
  48782. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  48783. {
  48784. front: {
  48785. height: math.unit(6 + 9/12, "feet"),
  48786. name: "Front",
  48787. image: {
  48788. source: "./media/characters/zeimne/front.svg",
  48789. extra: 1969/1806,
  48790. bottom: 53/2022
  48791. }
  48792. },
  48793. },
  48794. [
  48795. {
  48796. name: "Normal",
  48797. height: math.unit(6 + 9/12, "feet"),
  48798. default: true
  48799. },
  48800. {
  48801. name: "Giant",
  48802. height: math.unit(550, "feet")
  48803. },
  48804. {
  48805. name: "Mega",
  48806. height: math.unit(3, "miles")
  48807. },
  48808. {
  48809. name: "Giga",
  48810. height: math.unit(250, "miles")
  48811. },
  48812. {
  48813. name: "Tera",
  48814. height: math.unit(1, "AU")
  48815. },
  48816. ]
  48817. ))
  48818. characterMakers.push(() => makeCharacter(
  48819. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  48820. {
  48821. front: {
  48822. height: math.unit(5 + 2/12, "feet"),
  48823. name: "Front",
  48824. image: {
  48825. source: "./media/characters/grar/front.svg",
  48826. extra: 1331/1119,
  48827. bottom: 60/1391
  48828. }
  48829. },
  48830. back: {
  48831. height: math.unit(5 + 2/12, "feet"),
  48832. name: "Back",
  48833. image: {
  48834. source: "./media/characters/grar/back.svg",
  48835. extra: 1385/1169,
  48836. bottom: 23/1408
  48837. }
  48838. },
  48839. },
  48840. [
  48841. {
  48842. name: "Normal",
  48843. height: math.unit(5 + 2/12, "feet"),
  48844. default: true
  48845. },
  48846. ]
  48847. ))
  48848. characterMakers.push(() => makeCharacter(
  48849. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  48850. {
  48851. front: {
  48852. height: math.unit(13 + 7/12, "feet"),
  48853. weight: math.unit(2200, "lb"),
  48854. name: "Front",
  48855. image: {
  48856. source: "./media/characters/endraya/front.svg",
  48857. extra: 1289/1215,
  48858. bottom: 50/1339
  48859. }
  48860. },
  48861. nude: {
  48862. height: math.unit(13 + 7/12, "feet"),
  48863. weight: math.unit(2200, "lb"),
  48864. name: "Nude",
  48865. image: {
  48866. source: "./media/characters/endraya/nude.svg",
  48867. extra: 1247/1171,
  48868. bottom: 40/1287
  48869. }
  48870. },
  48871. head: {
  48872. height: math.unit(2.6, "feet"),
  48873. name: "Head",
  48874. image: {
  48875. source: "./media/characters/endraya/head.svg"
  48876. }
  48877. },
  48878. slit: {
  48879. height: math.unit(3.4, "feet"),
  48880. name: "Slit",
  48881. image: {
  48882. source: "./media/characters/endraya/slit.svg"
  48883. }
  48884. },
  48885. },
  48886. [
  48887. {
  48888. name: "Normal",
  48889. height: math.unit(13 + 7/12, "feet"),
  48890. default: true
  48891. },
  48892. {
  48893. name: "Macro",
  48894. height: math.unit(200, "feet")
  48895. },
  48896. ]
  48897. ))
  48898. characterMakers.push(() => makeCharacter(
  48899. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  48900. {
  48901. front: {
  48902. height: math.unit(1.81, "meters"),
  48903. weight: math.unit(69, "kg"),
  48904. name: "Front",
  48905. image: {
  48906. source: "./media/characters/rodryana/front.svg",
  48907. extra: 2002/1921,
  48908. bottom: 53/2055
  48909. }
  48910. },
  48911. back: {
  48912. height: math.unit(1.81, "meters"),
  48913. weight: math.unit(69, "kg"),
  48914. name: "Back",
  48915. image: {
  48916. source: "./media/characters/rodryana/back.svg",
  48917. extra: 1993/1926,
  48918. bottom: 48/2041
  48919. }
  48920. },
  48921. maw: {
  48922. height: math.unit(0.19769417475, "meters"),
  48923. name: "Maw",
  48924. image: {
  48925. source: "./media/characters/rodryana/maw.svg"
  48926. }
  48927. },
  48928. slit: {
  48929. height: math.unit(0.31631067961, "meters"),
  48930. name: "Slit",
  48931. image: {
  48932. source: "./media/characters/rodryana/slit.svg"
  48933. }
  48934. },
  48935. },
  48936. [
  48937. {
  48938. name: "Normal",
  48939. height: math.unit(1.81, "meters")
  48940. },
  48941. {
  48942. name: "Mini Macro",
  48943. height: math.unit(181, "meters")
  48944. },
  48945. {
  48946. name: "Macro",
  48947. height: math.unit(452, "meters"),
  48948. default: true
  48949. },
  48950. {
  48951. name: "Mega Macro",
  48952. height: math.unit(1.375, "km")
  48953. },
  48954. {
  48955. name: "Giga Macro",
  48956. height: math.unit(13.575, "km")
  48957. },
  48958. ]
  48959. ))
  48960. characterMakers.push(() => makeCharacter(
  48961. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  48962. {
  48963. front: {
  48964. height: math.unit(6, "feet"),
  48965. weight: math.unit(1000, "lb"),
  48966. name: "Front",
  48967. image: {
  48968. source: "./media/characters/asaya/front.svg",
  48969. extra: 1460/1200,
  48970. bottom: 71/1531
  48971. }
  48972. },
  48973. },
  48974. [
  48975. {
  48976. name: "Normal",
  48977. height: math.unit(8, "km"),
  48978. default: true
  48979. },
  48980. ]
  48981. ))
  48982. characterMakers.push(() => makeCharacter(
  48983. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  48984. {
  48985. front: {
  48986. height: math.unit(3.5, "meters"),
  48987. name: "Front",
  48988. image: {
  48989. source: "./media/characters/sarzu-and-israz/front.svg",
  48990. extra: 1570/1558,
  48991. bottom: 150/1720
  48992. },
  48993. },
  48994. back: {
  48995. height: math.unit(3.5, "meters"),
  48996. name: "Back",
  48997. image: {
  48998. source: "./media/characters/sarzu-and-israz/back.svg",
  48999. extra: 1523/1509,
  49000. bottom: 132/1655
  49001. },
  49002. },
  49003. frontFemale: {
  49004. height: math.unit(3.5, "meters"),
  49005. name: "Front (Female)",
  49006. image: {
  49007. source: "./media/characters/sarzu-and-israz/front-female.svg",
  49008. extra: 1570/1558,
  49009. bottom: 150/1720
  49010. },
  49011. },
  49012. frontHerm: {
  49013. height: math.unit(3.5, "meters"),
  49014. name: "Front (Herm)",
  49015. image: {
  49016. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  49017. extra: 1570/1558,
  49018. bottom: 150/1720
  49019. },
  49020. },
  49021. },
  49022. [
  49023. {
  49024. name: "Normal",
  49025. height: math.unit(3.5, "meters"),
  49026. default: true,
  49027. },
  49028. {
  49029. name: "Macro",
  49030. height: math.unit(65.5, "meters"),
  49031. },
  49032. ],
  49033. ))
  49034. characterMakers.push(() => makeCharacter(
  49035. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  49036. {
  49037. front: {
  49038. height: math.unit(6, "feet"),
  49039. weight: math.unit(250, "lb"),
  49040. name: "Front",
  49041. image: {
  49042. source: "./media/characters/zenimma/front.svg",
  49043. extra: 1346/1320,
  49044. bottom: 58/1404
  49045. }
  49046. },
  49047. back: {
  49048. height: math.unit(6, "feet"),
  49049. weight: math.unit(250, "lb"),
  49050. name: "Back",
  49051. image: {
  49052. source: "./media/characters/zenimma/back.svg",
  49053. extra: 1324/1308,
  49054. bottom: 44/1368
  49055. }
  49056. },
  49057. dick: {
  49058. height: math.unit(1.44, "feet"),
  49059. name: "Dick",
  49060. image: {
  49061. source: "./media/characters/zenimma/dick.svg"
  49062. }
  49063. },
  49064. },
  49065. [
  49066. {
  49067. name: "Canon Height",
  49068. height: math.unit(66, "miles"),
  49069. default: true
  49070. },
  49071. ]
  49072. ))
  49073. characterMakers.push(() => makeCharacter(
  49074. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  49075. {
  49076. nude: {
  49077. height: math.unit(6, "feet"),
  49078. weight: math.unit(150, "lb"),
  49079. name: "Nude",
  49080. image: {
  49081. source: "./media/characters/shavon/nude.svg",
  49082. extra: 1242/1096,
  49083. bottom: 98/1340
  49084. }
  49085. },
  49086. dressed: {
  49087. height: math.unit(6, "feet"),
  49088. weight: math.unit(150, "lb"),
  49089. name: "Dressed",
  49090. image: {
  49091. source: "./media/characters/shavon/dressed.svg",
  49092. extra: 1242/1096,
  49093. bottom: 98/1340
  49094. }
  49095. },
  49096. },
  49097. [
  49098. {
  49099. name: "Macro",
  49100. height: math.unit(255, "feet"),
  49101. default: true
  49102. },
  49103. ]
  49104. ))
  49105. characterMakers.push(() => makeCharacter(
  49106. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  49107. {
  49108. front: {
  49109. height: math.unit(6, "feet"),
  49110. name: "Front",
  49111. image: {
  49112. source: "./media/characters/steph/front.svg",
  49113. extra: 1430/1330,
  49114. bottom: 54/1484
  49115. }
  49116. },
  49117. },
  49118. [
  49119. {
  49120. name: "Normal",
  49121. height: math.unit(6, "feet"),
  49122. default: true
  49123. },
  49124. ]
  49125. ))
  49126. characterMakers.push(() => makeCharacter(
  49127. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  49128. {
  49129. front: {
  49130. height: math.unit(9, "feet"),
  49131. weight: math.unit(400, "lb"),
  49132. name: "Front",
  49133. image: {
  49134. source: "./media/characters/kil'aman/front.svg",
  49135. extra: 1210/1159,
  49136. bottom: 109/1319
  49137. }
  49138. },
  49139. head: {
  49140. height: math.unit(2.14, "feet"),
  49141. name: "Head",
  49142. image: {
  49143. source: "./media/characters/kil'aman/head.svg"
  49144. }
  49145. },
  49146. maw: {
  49147. height: math.unit(1.21, "feet"),
  49148. name: "Maw",
  49149. image: {
  49150. source: "./media/characters/kil'aman/maw.svg"
  49151. }
  49152. },
  49153. foot: {
  49154. height: math.unit(1.7, "feet"),
  49155. name: "Foot",
  49156. image: {
  49157. source: "./media/characters/kil'aman/foot.svg"
  49158. }
  49159. },
  49160. dick: {
  49161. height: math.unit(2.1, "feet"),
  49162. name: "Dick",
  49163. image: {
  49164. source: "./media/characters/kil'aman/dick.svg"
  49165. }
  49166. },
  49167. },
  49168. [
  49169. {
  49170. name: "Normal",
  49171. height: math.unit(9, "feet")
  49172. },
  49173. {
  49174. name: "Canon Height",
  49175. height: math.unit(10, "miles"),
  49176. default: true
  49177. },
  49178. {
  49179. name: "Maximum",
  49180. height: math.unit(6e9, "miles")
  49181. },
  49182. ]
  49183. ))
  49184. characterMakers.push(() => makeCharacter(
  49185. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  49186. {
  49187. front: {
  49188. height: math.unit(90, "feet"),
  49189. weight: math.unit(675000, "lb"),
  49190. name: "Front",
  49191. image: {
  49192. source: "./media/characters/qadan/front.svg",
  49193. extra: 1012/1004,
  49194. bottom: 78/1090
  49195. }
  49196. },
  49197. back: {
  49198. height: math.unit(90, "feet"),
  49199. weight: math.unit(675000, "lb"),
  49200. name: "Back",
  49201. image: {
  49202. source: "./media/characters/qadan/back.svg",
  49203. extra: 1042/1031,
  49204. bottom: 55/1097
  49205. }
  49206. },
  49207. armored: {
  49208. height: math.unit(90, "feet"),
  49209. weight: math.unit(675000, "lb"),
  49210. name: "Armored",
  49211. image: {
  49212. source: "./media/characters/qadan/armored.svg",
  49213. extra: 1047/1037,
  49214. bottom: 48/1095
  49215. }
  49216. },
  49217. },
  49218. [
  49219. {
  49220. name: "Normal",
  49221. height: math.unit(90, "feet"),
  49222. default: true
  49223. },
  49224. ]
  49225. ))
  49226. characterMakers.push(() => makeCharacter(
  49227. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  49228. {
  49229. front: {
  49230. height: math.unit(6, "feet"),
  49231. weight: math.unit(225, "lb"),
  49232. name: "Front",
  49233. image: {
  49234. source: "./media/characters/brooke/front.svg",
  49235. extra: 1050/1010,
  49236. bottom: 66/1116
  49237. }
  49238. },
  49239. back: {
  49240. height: math.unit(6, "feet"),
  49241. weight: math.unit(225, "lb"),
  49242. name: "Back",
  49243. image: {
  49244. source: "./media/characters/brooke/back.svg",
  49245. extra: 1053/1013,
  49246. bottom: 41/1094
  49247. }
  49248. },
  49249. dressed: {
  49250. height: math.unit(6, "feet"),
  49251. weight: math.unit(225, "lb"),
  49252. name: "Dressed",
  49253. image: {
  49254. source: "./media/characters/brooke/dressed.svg",
  49255. extra: 1050/1010,
  49256. bottom: 66/1116
  49257. }
  49258. },
  49259. },
  49260. [
  49261. {
  49262. name: "Canon Height",
  49263. height: math.unit(500, "miles"),
  49264. default: true
  49265. },
  49266. ]
  49267. ))
  49268. characterMakers.push(() => makeCharacter(
  49269. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  49270. {
  49271. front: {
  49272. height: math.unit(6 + 2/12, "feet"),
  49273. weight: math.unit(210, "lb"),
  49274. name: "Front",
  49275. image: {
  49276. source: "./media/characters/wubs/front.svg",
  49277. extra: 1345/1325,
  49278. bottom: 70/1415
  49279. }
  49280. },
  49281. back: {
  49282. height: math.unit(6 + 2/12, "feet"),
  49283. weight: math.unit(210, "lb"),
  49284. name: "Back",
  49285. image: {
  49286. source: "./media/characters/wubs/back.svg",
  49287. extra: 1296/1275,
  49288. bottom: 58/1354
  49289. }
  49290. },
  49291. },
  49292. [
  49293. {
  49294. name: "Normal",
  49295. height: math.unit(6 + 2/12, "feet"),
  49296. default: true
  49297. },
  49298. {
  49299. name: "Macro",
  49300. height: math.unit(1000, "feet")
  49301. },
  49302. {
  49303. name: "Megamacro",
  49304. height: math.unit(1, "mile")
  49305. },
  49306. ]
  49307. ))
  49308. characterMakers.push(() => makeCharacter(
  49309. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  49310. {
  49311. front: {
  49312. height: math.unit(4, "feet"),
  49313. weight: math.unit(120, "lb"),
  49314. name: "Front",
  49315. image: {
  49316. source: "./media/characters/blue/front.svg",
  49317. extra: 1636/1525,
  49318. bottom: 43/1679
  49319. }
  49320. },
  49321. back: {
  49322. height: math.unit(4, "feet"),
  49323. weight: math.unit(120, "lb"),
  49324. name: "Back",
  49325. image: {
  49326. source: "./media/characters/blue/back.svg",
  49327. extra: 1660/1560,
  49328. bottom: 57/1717
  49329. }
  49330. },
  49331. paws: {
  49332. height: math.unit(0.826, "feet"),
  49333. name: "Paws",
  49334. image: {
  49335. source: "./media/characters/blue/paws.svg"
  49336. }
  49337. },
  49338. },
  49339. [
  49340. {
  49341. name: "Micro",
  49342. height: math.unit(3, "inches")
  49343. },
  49344. {
  49345. name: "Normal",
  49346. height: math.unit(4, "feet"),
  49347. default: true
  49348. },
  49349. {
  49350. name: "Femenine Form",
  49351. height: math.unit(14, "feet")
  49352. },
  49353. {
  49354. name: "Werebat Form",
  49355. height: math.unit(18, "feet")
  49356. },
  49357. ]
  49358. ))
  49359. characterMakers.push(() => makeCharacter(
  49360. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  49361. {
  49362. female: {
  49363. height: math.unit(7 + 4/12, "feet"),
  49364. weight: math.unit(243, "lb"),
  49365. name: "Female",
  49366. image: {
  49367. source: "./media/characters/kaya/female.svg",
  49368. extra: 975/898,
  49369. bottom: 34/1009
  49370. }
  49371. },
  49372. herm: {
  49373. height: math.unit(7 + 4/12, "feet"),
  49374. weight: math.unit(243, "lb"),
  49375. name: "Herm",
  49376. image: {
  49377. source: "./media/characters/kaya/herm.svg",
  49378. extra: 975/898,
  49379. bottom: 34/1009
  49380. }
  49381. },
  49382. },
  49383. [
  49384. {
  49385. name: "Normal",
  49386. height: math.unit(7 + 4/12, "feet"),
  49387. default: true
  49388. },
  49389. ]
  49390. ))
  49391. characterMakers.push(() => makeCharacter(
  49392. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  49393. {
  49394. female: {
  49395. height: math.unit(9 + 4/12, "feet"),
  49396. weight: math.unit(398, "lb"),
  49397. name: "Female",
  49398. image: {
  49399. source: "./media/characters/kassandra/female.svg",
  49400. extra: 908/839,
  49401. bottom: 61/969
  49402. }
  49403. },
  49404. intersex: {
  49405. height: math.unit(9 + 4/12, "feet"),
  49406. weight: math.unit(398, "lb"),
  49407. name: "Intersex",
  49408. image: {
  49409. source: "./media/characters/kassandra/intersex.svg",
  49410. extra: 908/839,
  49411. bottom: 61/969
  49412. }
  49413. },
  49414. },
  49415. [
  49416. {
  49417. name: "Normal",
  49418. height: math.unit(9 + 4/12, "feet"),
  49419. default: true
  49420. },
  49421. ]
  49422. ))
  49423. characterMakers.push(() => makeCharacter(
  49424. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  49425. {
  49426. front: {
  49427. height: math.unit(3, "meters"),
  49428. name: "Front",
  49429. image: {
  49430. source: "./media/characters/amy/front.svg",
  49431. extra: 1380/1343,
  49432. bottom: 70/1450
  49433. }
  49434. },
  49435. back: {
  49436. height: math.unit(3, "meters"),
  49437. name: "Back",
  49438. image: {
  49439. source: "./media/characters/amy/back.svg",
  49440. extra: 1380/1347,
  49441. bottom: 66/1446
  49442. }
  49443. },
  49444. },
  49445. [
  49446. {
  49447. name: "Normal",
  49448. height: math.unit(3, "meters"),
  49449. default: true
  49450. },
  49451. ]
  49452. ))
  49453. characterMakers.push(() => makeCharacter(
  49454. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  49455. {
  49456. side: {
  49457. height: math.unit(47, "cm"),
  49458. weight: math.unit(10.8, "kg"),
  49459. name: "Side",
  49460. image: {
  49461. source: "./media/characters/alphaschakal/side.svg",
  49462. extra: 1058/568,
  49463. bottom: 62/1120
  49464. }
  49465. },
  49466. back: {
  49467. height: math.unit(78, "cm"),
  49468. weight: math.unit(10.8, "kg"),
  49469. name: "Back",
  49470. image: {
  49471. source: "./media/characters/alphaschakal/back.svg",
  49472. extra: 1102/942,
  49473. bottom: 185/1287
  49474. }
  49475. },
  49476. head: {
  49477. height: math.unit(28, "cm"),
  49478. name: "Head",
  49479. image: {
  49480. source: "./media/characters/alphaschakal/head.svg",
  49481. extra: 696/508,
  49482. bottom: 0/696
  49483. }
  49484. },
  49485. paw: {
  49486. height: math.unit(16, "cm"),
  49487. name: "Paw",
  49488. image: {
  49489. source: "./media/characters/alphaschakal/paw.svg"
  49490. }
  49491. },
  49492. },
  49493. [
  49494. {
  49495. name: "Normal",
  49496. height: math.unit(47, "cm"),
  49497. default: true
  49498. },
  49499. {
  49500. name: "Macro",
  49501. height: math.unit(340, "cm")
  49502. },
  49503. ]
  49504. ))
  49505. characterMakers.push(() => makeCharacter(
  49506. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  49507. {
  49508. front: {
  49509. height: math.unit(36, "earths"),
  49510. name: "Front",
  49511. image: {
  49512. source: "./media/characters/ecobyss/front.svg",
  49513. extra: 1282/1215,
  49514. bottom: 11/1293
  49515. }
  49516. },
  49517. back: {
  49518. height: math.unit(36, "earths"),
  49519. name: "Back",
  49520. image: {
  49521. source: "./media/characters/ecobyss/back.svg",
  49522. extra: 1291/1222,
  49523. bottom: 8/1299
  49524. }
  49525. },
  49526. },
  49527. [
  49528. {
  49529. name: "Normal",
  49530. height: math.unit(36, "earths"),
  49531. default: true
  49532. },
  49533. ]
  49534. ))
  49535. characterMakers.push(() => makeCharacter(
  49536. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  49537. {
  49538. front: {
  49539. height: math.unit(12, "feet"),
  49540. name: "Front",
  49541. image: {
  49542. source: "./media/characters/vasuk/front.svg",
  49543. extra: 1326/1207,
  49544. bottom: 64/1390
  49545. }
  49546. },
  49547. },
  49548. [
  49549. {
  49550. name: "Normal",
  49551. height: math.unit(12, "feet"),
  49552. default: true
  49553. },
  49554. ]
  49555. ))
  49556. characterMakers.push(() => makeCharacter(
  49557. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  49558. {
  49559. side: {
  49560. height: math.unit(100, "feet"),
  49561. name: "Side",
  49562. image: {
  49563. source: "./media/characters/linneaus/side.svg",
  49564. extra: 987/807,
  49565. bottom: 47/1034
  49566. }
  49567. },
  49568. },
  49569. [
  49570. {
  49571. name: "Macro",
  49572. height: math.unit(100, "feet"),
  49573. default: true
  49574. },
  49575. ]
  49576. ))
  49577. characterMakers.push(() => makeCharacter(
  49578. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  49579. {
  49580. front: {
  49581. height: math.unit(8, "feet"),
  49582. weight: math.unit(1200, "lb"),
  49583. name: "Front",
  49584. image: {
  49585. source: "./media/characters/nyterious-daligdig/front.svg",
  49586. extra: 1284/1094,
  49587. bottom: 84/1368
  49588. }
  49589. },
  49590. back: {
  49591. height: math.unit(8, "feet"),
  49592. weight: math.unit(1200, "lb"),
  49593. name: "Back",
  49594. image: {
  49595. source: "./media/characters/nyterious-daligdig/back.svg",
  49596. extra: 1301/1121,
  49597. bottom: 129/1430
  49598. }
  49599. },
  49600. mouth: {
  49601. height: math.unit(1.464, "feet"),
  49602. name: "Mouth",
  49603. image: {
  49604. source: "./media/characters/nyterious-daligdig/mouth.svg"
  49605. }
  49606. },
  49607. },
  49608. [
  49609. {
  49610. name: "Small",
  49611. height: math.unit(8, "feet"),
  49612. default: true
  49613. },
  49614. {
  49615. name: "Normal",
  49616. height: math.unit(15, "feet")
  49617. },
  49618. {
  49619. name: "Macro",
  49620. height: math.unit(90, "feet")
  49621. },
  49622. ]
  49623. ))
  49624. characterMakers.push(() => makeCharacter(
  49625. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  49626. {
  49627. front: {
  49628. height: math.unit(7 + 4/12, "feet"),
  49629. weight: math.unit(252, "lb"),
  49630. name: "Front",
  49631. image: {
  49632. source: "./media/characters/bandel/front.svg",
  49633. extra: 1946/1775,
  49634. bottom: 26/1972
  49635. }
  49636. },
  49637. back: {
  49638. height: math.unit(7 + 4/12, "feet"),
  49639. weight: math.unit(252, "lb"),
  49640. name: "Back",
  49641. image: {
  49642. source: "./media/characters/bandel/back.svg",
  49643. extra: 1940/1770,
  49644. bottom: 25/1965
  49645. }
  49646. },
  49647. maw: {
  49648. height: math.unit(2.15, "feet"),
  49649. name: "Maw",
  49650. image: {
  49651. source: "./media/characters/bandel/maw.svg"
  49652. }
  49653. },
  49654. stomach: {
  49655. height: math.unit(1.95, "feet"),
  49656. name: "Stomach",
  49657. image: {
  49658. source: "./media/characters/bandel/stomach.svg"
  49659. }
  49660. },
  49661. },
  49662. [
  49663. {
  49664. name: "Normal",
  49665. height: math.unit(7 + 4/12, "feet"),
  49666. default: true
  49667. },
  49668. ]
  49669. ))
  49670. characterMakers.push(() => makeCharacter(
  49671. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  49672. {
  49673. front: {
  49674. height: math.unit(10 + 5/12, "feet"),
  49675. weight: math.unit(773.5, "kg"),
  49676. name: "Front",
  49677. image: {
  49678. source: "./media/characters/zed/front.svg",
  49679. extra: 987/941,
  49680. bottom: 52/1039
  49681. }
  49682. },
  49683. },
  49684. [
  49685. {
  49686. name: "Short",
  49687. height: math.unit(5 + 4/12, "feet")
  49688. },
  49689. {
  49690. name: "Average",
  49691. height: math.unit(10 + 5/12, "feet"),
  49692. default: true
  49693. },
  49694. {
  49695. name: "Mini-Macro",
  49696. height: math.unit(24 + 9/12, "feet")
  49697. },
  49698. {
  49699. name: "Macro",
  49700. height: math.unit(249, "feet")
  49701. },
  49702. {
  49703. name: "Mega-Macro",
  49704. height: math.unit(12490, "feet")
  49705. },
  49706. {
  49707. name: "Giga-Macro",
  49708. height: math.unit(24.9, "miles")
  49709. },
  49710. {
  49711. name: "Tera-Macro",
  49712. height: math.unit(24900, "miles")
  49713. },
  49714. {
  49715. name: "Cosmic Scale",
  49716. height: math.unit(38.9, "lightyears")
  49717. },
  49718. {
  49719. name: "Universal Scale",
  49720. height: math.unit(138e12, "lightyears")
  49721. },
  49722. ]
  49723. ))
  49724. characterMakers.push(() => makeCharacter(
  49725. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  49726. {
  49727. front: {
  49728. height: math.unit(1561, "inches"),
  49729. name: "Front",
  49730. image: {
  49731. source: "./media/characters/ivan/front.svg",
  49732. extra: 1126/1071,
  49733. bottom: 26/1152
  49734. }
  49735. },
  49736. back: {
  49737. height: math.unit(1561, "inches"),
  49738. name: "Back",
  49739. image: {
  49740. source: "./media/characters/ivan/back.svg",
  49741. extra: 1134/1079,
  49742. bottom: 30/1164
  49743. }
  49744. },
  49745. },
  49746. [
  49747. {
  49748. name: "Normal",
  49749. height: math.unit(1561, "inches"),
  49750. default: true
  49751. },
  49752. ]
  49753. ))
  49754. characterMakers.push(() => makeCharacter(
  49755. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  49756. {
  49757. front: {
  49758. height: math.unit(5 + 7/12, "feet"),
  49759. weight: math.unit(150, "lb"),
  49760. name: "Front",
  49761. image: {
  49762. source: "./media/characters/robin-arctic-hare/front.svg",
  49763. extra: 1148/974,
  49764. bottom: 20/1168
  49765. }
  49766. },
  49767. },
  49768. [
  49769. {
  49770. name: "Normal",
  49771. height: math.unit(5 + 7/12, "feet"),
  49772. default: true
  49773. },
  49774. ]
  49775. ))
  49776. characterMakers.push(() => makeCharacter(
  49777. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  49778. {
  49779. side: {
  49780. height: math.unit(5, "feet"),
  49781. name: "Side",
  49782. image: {
  49783. source: "./media/characters/birch/side.svg",
  49784. extra: 985/796,
  49785. bottom: 111/1096
  49786. }
  49787. },
  49788. },
  49789. [
  49790. {
  49791. name: "Normal",
  49792. height: math.unit(5, "feet"),
  49793. default: true
  49794. },
  49795. ]
  49796. ))
  49797. characterMakers.push(() => makeCharacter(
  49798. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  49799. {
  49800. front: {
  49801. height: math.unit(4, "feet"),
  49802. name: "Front",
  49803. image: {
  49804. source: "./media/characters/rasp/front.svg",
  49805. extra: 561/478,
  49806. bottom: 74/635
  49807. }
  49808. },
  49809. },
  49810. [
  49811. {
  49812. name: "Normal",
  49813. height: math.unit(4, "feet"),
  49814. default: true
  49815. },
  49816. ]
  49817. ))
  49818. characterMakers.push(() => makeCharacter(
  49819. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  49820. {
  49821. front: {
  49822. height: math.unit(4 + 6/12, "feet"),
  49823. name: "Front",
  49824. image: {
  49825. source: "./media/characters/agatha/front.svg",
  49826. extra: 947/933,
  49827. bottom: 42/989
  49828. }
  49829. },
  49830. back: {
  49831. height: math.unit(4 + 6/12, "feet"),
  49832. name: "Back",
  49833. image: {
  49834. source: "./media/characters/agatha/back.svg",
  49835. extra: 935/922,
  49836. bottom: 48/983
  49837. }
  49838. },
  49839. },
  49840. [
  49841. {
  49842. name: "Normal",
  49843. height: math.unit(4 + 6 /12, "feet"),
  49844. default: true
  49845. },
  49846. {
  49847. name: "Max Size",
  49848. height: math.unit(500, "feet")
  49849. },
  49850. ]
  49851. ))
  49852. characterMakers.push(() => makeCharacter(
  49853. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  49854. {
  49855. side: {
  49856. height: math.unit(30, "feet"),
  49857. name: "Side",
  49858. image: {
  49859. source: "./media/characters/roggy/side.svg",
  49860. extra: 909/643,
  49861. bottom: 63/972
  49862. }
  49863. },
  49864. lounging: {
  49865. height: math.unit(20, "feet"),
  49866. name: "Lounging",
  49867. image: {
  49868. source: "./media/characters/roggy/lounging.svg",
  49869. extra: 643/479,
  49870. bottom: 145/788
  49871. }
  49872. },
  49873. handpaw: {
  49874. height: math.unit(13.1, "feet"),
  49875. name: "Handpaw",
  49876. image: {
  49877. source: "./media/characters/roggy/handpaw.svg"
  49878. }
  49879. },
  49880. footpaw: {
  49881. height: math.unit(15.8, "feet"),
  49882. name: "Footpaw",
  49883. image: {
  49884. source: "./media/characters/roggy/footpaw.svg"
  49885. }
  49886. },
  49887. },
  49888. [
  49889. {
  49890. name: "Menacing",
  49891. height: math.unit(30, "feet"),
  49892. default: true
  49893. },
  49894. ]
  49895. ))
  49896. characterMakers.push(() => makeCharacter(
  49897. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  49898. {
  49899. front: {
  49900. height: math.unit(5 + 7/12, "feet"),
  49901. weight: math.unit(135, "lb"),
  49902. name: "Front",
  49903. image: {
  49904. source: "./media/characters/naomi/front.svg",
  49905. extra: 1209/1154,
  49906. bottom: 129/1338
  49907. }
  49908. },
  49909. back: {
  49910. height: math.unit(5 + 7/12, "feet"),
  49911. weight: math.unit(135, "lb"),
  49912. name: "Back",
  49913. image: {
  49914. source: "./media/characters/naomi/back.svg",
  49915. extra: 1252/1190,
  49916. bottom: 23/1275
  49917. }
  49918. },
  49919. },
  49920. [
  49921. {
  49922. name: "Normal",
  49923. height: math.unit(5 + 7 /12, "feet"),
  49924. default: true
  49925. },
  49926. ]
  49927. ))
  49928. characterMakers.push(() => makeCharacter(
  49929. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  49930. {
  49931. side: {
  49932. height: math.unit(35, "meters"),
  49933. name: "Side",
  49934. image: {
  49935. source: "./media/characters/kimpi/side.svg",
  49936. extra: 419/382,
  49937. bottom: 63/482
  49938. }
  49939. },
  49940. hand: {
  49941. height: math.unit(8.96, "meters"),
  49942. name: "Hand",
  49943. image: {
  49944. source: "./media/characters/kimpi/hand.svg"
  49945. }
  49946. },
  49947. },
  49948. [
  49949. {
  49950. name: "Normal",
  49951. height: math.unit(35, "meters"),
  49952. default: true
  49953. },
  49954. ]
  49955. ))
  49956. characterMakers.push(() => makeCharacter(
  49957. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  49958. {
  49959. front: {
  49960. height: math.unit(4 + 4/12, "feet"),
  49961. name: "Front",
  49962. image: {
  49963. source: "./media/characters/pepper-purrloin/front.svg",
  49964. extra: 1141/1024,
  49965. bottom: 21/1162
  49966. }
  49967. },
  49968. },
  49969. [
  49970. {
  49971. name: "Normal",
  49972. height: math.unit(4 + 4/12, "feet"),
  49973. default: true
  49974. },
  49975. ]
  49976. ))
  49977. characterMakers.push(() => makeCharacter(
  49978. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  49979. {
  49980. front: {
  49981. height: math.unit(6 + 2/12, "feet"),
  49982. name: "Front",
  49983. image: {
  49984. source: "./media/characters/raphael/front.svg",
  49985. extra: 1101/962,
  49986. bottom: 59/1160
  49987. }
  49988. },
  49989. },
  49990. [
  49991. {
  49992. name: "Normal",
  49993. height: math.unit(6 + 2/12, "feet"),
  49994. default: true
  49995. },
  49996. ]
  49997. ))
  49998. characterMakers.push(() => makeCharacter(
  49999. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  50000. {
  50001. front: {
  50002. height: math.unit(6, "feet"),
  50003. weight: math.unit(150, "lb"),
  50004. name: "Front",
  50005. image: {
  50006. source: "./media/characters/victor-williams/front.svg",
  50007. extra: 1894/1825,
  50008. bottom: 67/1961
  50009. }
  50010. },
  50011. },
  50012. [
  50013. {
  50014. name: "Normal",
  50015. height: math.unit(6, "feet"),
  50016. default: true
  50017. },
  50018. ]
  50019. ))
  50020. characterMakers.push(() => makeCharacter(
  50021. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  50022. {
  50023. front: {
  50024. height: math.unit(5 + 8/12, "feet"),
  50025. weight: math.unit(150, "lb"),
  50026. name: "Front",
  50027. image: {
  50028. source: "./media/characters/rachel/front.svg",
  50029. extra: 1902/1787,
  50030. bottom: 46/1948
  50031. }
  50032. },
  50033. },
  50034. [
  50035. {
  50036. name: "Base Height",
  50037. height: math.unit(5 + 8/12, "feet"),
  50038. default: true
  50039. },
  50040. {
  50041. name: "Macro",
  50042. height: math.unit(200, "feet")
  50043. },
  50044. {
  50045. name: "Mega Macro",
  50046. height: math.unit(1, "mile")
  50047. },
  50048. {
  50049. name: "Giga Macro",
  50050. height: math.unit(1500, "miles")
  50051. },
  50052. {
  50053. name: "Tera Macro",
  50054. height: math.unit(8000, "miles")
  50055. },
  50056. {
  50057. name: "Tera Macro+",
  50058. height: math.unit(2e5, "miles")
  50059. },
  50060. ]
  50061. ))
  50062. characterMakers.push(() => makeCharacter(
  50063. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  50064. {
  50065. front: {
  50066. height: math.unit(6.5, "feet"),
  50067. name: "Front",
  50068. image: {
  50069. source: "./media/characters/svetlana-rozovskaya/front.svg",
  50070. extra: 860/819,
  50071. bottom: 307/1167
  50072. }
  50073. },
  50074. back: {
  50075. height: math.unit(6.5, "feet"),
  50076. name: "Back",
  50077. image: {
  50078. source: "./media/characters/svetlana-rozovskaya/back.svg",
  50079. extra: 880/837,
  50080. bottom: 395/1275
  50081. }
  50082. },
  50083. sleeping: {
  50084. height: math.unit(2.79, "feet"),
  50085. name: "Sleeping",
  50086. image: {
  50087. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  50088. extra: 465/383,
  50089. bottom: 263/728
  50090. }
  50091. },
  50092. maw: {
  50093. height: math.unit(2.52, "feet"),
  50094. name: "Maw",
  50095. image: {
  50096. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  50097. }
  50098. },
  50099. },
  50100. [
  50101. {
  50102. name: "Normal",
  50103. height: math.unit(6.5, "feet"),
  50104. default: true
  50105. },
  50106. ]
  50107. ))
  50108. characterMakers.push(() => makeCharacter(
  50109. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  50110. {
  50111. front: {
  50112. height: math.unit(5, "feet"),
  50113. name: "Front",
  50114. image: {
  50115. source: "./media/characters/nova-nerium/front.svg",
  50116. extra: 1548/1392,
  50117. bottom: 374/1922
  50118. }
  50119. },
  50120. back: {
  50121. height: math.unit(5, "feet"),
  50122. name: "Back",
  50123. image: {
  50124. source: "./media/characters/nova-nerium/back.svg",
  50125. extra: 1658/1468,
  50126. bottom: 257/1915
  50127. }
  50128. },
  50129. },
  50130. [
  50131. {
  50132. name: "Normal",
  50133. height: math.unit(5, "feet"),
  50134. default: true
  50135. },
  50136. ]
  50137. ))
  50138. characterMakers.push(() => makeCharacter(
  50139. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  50140. {
  50141. front: {
  50142. height: math.unit(5 + 4/12, "feet"),
  50143. name: "Front",
  50144. image: {
  50145. source: "./media/characters/ashe-pyriph/front.svg",
  50146. extra: 1935/1747,
  50147. bottom: 60/1995
  50148. }
  50149. },
  50150. },
  50151. [
  50152. {
  50153. name: "Normal",
  50154. height: math.unit(5 + 4/12, "feet"),
  50155. default: true
  50156. },
  50157. ]
  50158. ))
  50159. characterMakers.push(() => makeCharacter(
  50160. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  50161. {
  50162. front: {
  50163. height: math.unit(8.7, "feet"),
  50164. name: "Front",
  50165. image: {
  50166. source: "./media/characters/flicker-wisp/front.svg",
  50167. extra: 1835/1613,
  50168. bottom: 449/2284
  50169. }
  50170. },
  50171. side: {
  50172. height: math.unit(8.7, "feet"),
  50173. name: "Side",
  50174. image: {
  50175. source: "./media/characters/flicker-wisp/side.svg",
  50176. extra: 1841/1642,
  50177. bottom: 336/2177
  50178. },
  50179. default: true
  50180. },
  50181. maw: {
  50182. height: math.unit(3.35, "feet"),
  50183. name: "Maw",
  50184. image: {
  50185. source: "./media/characters/flicker-wisp/maw.svg",
  50186. extra: 2338/1506,
  50187. bottom: 0/2338
  50188. }
  50189. },
  50190. ovipositor: {
  50191. height: math.unit(4.95, "feet"),
  50192. name: "Ovipositor",
  50193. image: {
  50194. source: "./media/characters/flicker-wisp/ovipositor.svg"
  50195. }
  50196. },
  50197. egg: {
  50198. height: math.unit(0.385, "feet"),
  50199. weight: math.unit(2, "lb"),
  50200. name: "Egg",
  50201. image: {
  50202. source: "./media/characters/flicker-wisp/egg.svg"
  50203. }
  50204. },
  50205. },
  50206. [
  50207. {
  50208. name: "Normal",
  50209. height: math.unit(8.7, "feet"),
  50210. default: true
  50211. },
  50212. ]
  50213. ))
  50214. characterMakers.push(() => makeCharacter(
  50215. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  50216. {
  50217. side: {
  50218. height: math.unit(11, "feet"),
  50219. name: "Side",
  50220. image: {
  50221. source: "./media/characters/faefnul/side.svg",
  50222. extra: 1100/1007,
  50223. bottom: 0/1100
  50224. }
  50225. },
  50226. },
  50227. [
  50228. {
  50229. name: "Normal",
  50230. height: math.unit(11, "feet"),
  50231. default: true
  50232. },
  50233. ]
  50234. ))
  50235. characterMakers.push(() => makeCharacter(
  50236. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  50237. {
  50238. front: {
  50239. height: math.unit(6 + 2/12, "feet"),
  50240. name: "Front",
  50241. image: {
  50242. source: "./media/characters/shady/front.svg",
  50243. extra: 502/461,
  50244. bottom: 9/511
  50245. }
  50246. },
  50247. kneeling: {
  50248. height: math.unit(4.6, "feet"),
  50249. name: "Kneeling",
  50250. image: {
  50251. source: "./media/characters/shady/kneeling.svg",
  50252. extra: 1328/1219,
  50253. bottom: 117/1445
  50254. }
  50255. },
  50256. maw: {
  50257. height: math.unit(2, "feet"),
  50258. name: "Maw",
  50259. image: {
  50260. source: "./media/characters/shady/maw.svg"
  50261. }
  50262. },
  50263. },
  50264. [
  50265. {
  50266. name: "Nano",
  50267. height: math.unit(1, "mm")
  50268. },
  50269. {
  50270. name: "Micro",
  50271. height: math.unit(12, "mm")
  50272. },
  50273. {
  50274. name: "Tiny",
  50275. height: math.unit(3, "inches")
  50276. },
  50277. {
  50278. name: "Normal",
  50279. height: math.unit(6 + 2/12, "feet"),
  50280. default: true
  50281. },
  50282. {
  50283. name: "Big",
  50284. height: math.unit(15, "feet")
  50285. },
  50286. {
  50287. name: "Macro",
  50288. height: math.unit(150, "feet")
  50289. },
  50290. {
  50291. name: "Titanic",
  50292. height: math.unit(500, "feet")
  50293. },
  50294. ]
  50295. ))
  50296. characterMakers.push(() => makeCharacter(
  50297. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  50298. {
  50299. front: {
  50300. height: math.unit(12, "feet"),
  50301. name: "Front",
  50302. image: {
  50303. source: "./media/characters/fenrir/front.svg",
  50304. extra: 968/875,
  50305. bottom: 22/990
  50306. }
  50307. },
  50308. },
  50309. [
  50310. {
  50311. name: "Big",
  50312. height: math.unit(12, "feet"),
  50313. default: true
  50314. },
  50315. ]
  50316. ))
  50317. characterMakers.push(() => makeCharacter(
  50318. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  50319. {
  50320. front: {
  50321. height: math.unit(5 + 4/12, "feet"),
  50322. name: "Front",
  50323. image: {
  50324. source: "./media/characters/makar/front.svg",
  50325. extra: 1181/1112,
  50326. bottom: 78/1259
  50327. }
  50328. },
  50329. },
  50330. [
  50331. {
  50332. name: "Normal",
  50333. height: math.unit(5 + 4/12, "feet"),
  50334. default: true
  50335. },
  50336. ]
  50337. ))
  50338. characterMakers.push(() => makeCharacter(
  50339. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  50340. {
  50341. front: {
  50342. height: math.unit(5 + 7/12, "feet"),
  50343. name: "Front",
  50344. image: {
  50345. source: "./media/characters/callow/front.svg",
  50346. extra: 1482/1304,
  50347. bottom: 23/1505
  50348. }
  50349. },
  50350. back: {
  50351. height: math.unit(5 + 7/12, "feet"),
  50352. name: "Back",
  50353. image: {
  50354. source: "./media/characters/callow/back.svg",
  50355. extra: 1484/1296,
  50356. bottom: 25/1509
  50357. }
  50358. },
  50359. },
  50360. [
  50361. {
  50362. name: "Micro",
  50363. height: math.unit(3, "inches"),
  50364. default: true
  50365. },
  50366. {
  50367. name: "Normal",
  50368. height: math.unit(5 + 7/12, "feet")
  50369. },
  50370. ]
  50371. ))
  50372. characterMakers.push(() => makeCharacter(
  50373. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  50374. {
  50375. front: {
  50376. height: math.unit(6 + 2/12, "feet"),
  50377. name: "Front",
  50378. image: {
  50379. source: "./media/characters/natel/front.svg",
  50380. extra: 1833/1692,
  50381. bottom: 166/1999
  50382. }
  50383. },
  50384. },
  50385. [
  50386. {
  50387. name: "Normal",
  50388. height: math.unit(6 + 2/12, "feet"),
  50389. default: true
  50390. },
  50391. ]
  50392. ))
  50393. characterMakers.push(() => makeCharacter(
  50394. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  50395. {
  50396. front: {
  50397. height: math.unit(1.75, "meters"),
  50398. name: "Front",
  50399. image: {
  50400. source: "./media/characters/misu/front.svg",
  50401. extra: 1690/1558,
  50402. bottom: 234/1924
  50403. }
  50404. },
  50405. back: {
  50406. height: math.unit(1.75, "meters"),
  50407. name: "Back",
  50408. image: {
  50409. source: "./media/characters/misu/back.svg",
  50410. extra: 1762/1618,
  50411. bottom: 146/1908
  50412. }
  50413. },
  50414. frontNude: {
  50415. height: math.unit(1.75, "meters"),
  50416. name: "Front (Nude)",
  50417. image: {
  50418. source: "./media/characters/misu/front-nude.svg",
  50419. extra: 1690/1558,
  50420. bottom: 234/1924
  50421. }
  50422. },
  50423. backNude: {
  50424. height: math.unit(1.75, "meters"),
  50425. name: "Back (Nude)",
  50426. image: {
  50427. source: "./media/characters/misu/back-nude.svg",
  50428. extra: 1762/1618,
  50429. bottom: 146/1908
  50430. }
  50431. },
  50432. frontErect: {
  50433. height: math.unit(1.75, "meters"),
  50434. name: "Front (Erect)",
  50435. image: {
  50436. source: "./media/characters/misu/front-erect.svg",
  50437. extra: 1690/1558,
  50438. bottom: 234/1924
  50439. }
  50440. },
  50441. maw: {
  50442. height: math.unit(0.47, "meters"),
  50443. name: "Maw",
  50444. image: {
  50445. source: "./media/characters/misu/maw.svg"
  50446. }
  50447. },
  50448. head: {
  50449. height: math.unit(0.35, "meters"),
  50450. name: "Head",
  50451. image: {
  50452. source: "./media/characters/misu/head.svg"
  50453. }
  50454. },
  50455. rear: {
  50456. height: math.unit(0.47, "meters"),
  50457. name: "Rear",
  50458. image: {
  50459. source: "./media/characters/misu/rear.svg"
  50460. }
  50461. },
  50462. },
  50463. [
  50464. {
  50465. name: "Normal",
  50466. height: math.unit(1.75, "meters")
  50467. },
  50468. {
  50469. name: "Not good for the people",
  50470. height: math.unit(42, "meters")
  50471. },
  50472. {
  50473. name: "Not good for the neighborhood",
  50474. height: math.unit(135, "meters")
  50475. },
  50476. {
  50477. name: "Bit bigger problem",
  50478. height: math.unit(380, "meters"),
  50479. default: true
  50480. },
  50481. {
  50482. name: "Not good for the city",
  50483. height: math.unit(1.5, "km")
  50484. },
  50485. {
  50486. name: "Not good for the county",
  50487. height: math.unit(5.5, "km")
  50488. },
  50489. {
  50490. name: "Not good for the state",
  50491. height: math.unit(25, "km")
  50492. },
  50493. {
  50494. name: "Not good for the country",
  50495. height: math.unit(125, "km")
  50496. },
  50497. {
  50498. name: "Not good for the continent",
  50499. height: math.unit(2100, "km")
  50500. },
  50501. {
  50502. name: "Not good for the planet",
  50503. height: math.unit(35000, "km")
  50504. },
  50505. {
  50506. name: "Just no",
  50507. height: math.unit(8.5e18, "km")
  50508. },
  50509. ]
  50510. ))
  50511. characterMakers.push(() => makeCharacter(
  50512. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  50513. {
  50514. front: {
  50515. height: math.unit(6.5, "feet"),
  50516. name: "Front",
  50517. image: {
  50518. source: "./media/characters/poppy/front.svg",
  50519. extra: 1878/1812,
  50520. bottom: 43/1921
  50521. }
  50522. },
  50523. feet: {
  50524. height: math.unit(1.06, "feet"),
  50525. name: "Feet",
  50526. image: {
  50527. source: "./media/characters/poppy/feet.svg",
  50528. extra: 1083/1083,
  50529. bottom: 87/1170
  50530. }
  50531. },
  50532. },
  50533. [
  50534. {
  50535. name: "Human",
  50536. height: math.unit(6.5, "feet")
  50537. },
  50538. {
  50539. name: "Default",
  50540. height: math.unit(300, "feet"),
  50541. default: true
  50542. },
  50543. {
  50544. name: "Huge",
  50545. height: math.unit(850, "feet")
  50546. },
  50547. {
  50548. name: "Mega",
  50549. height: math.unit(8000, "feet")
  50550. },
  50551. {
  50552. name: "Giga",
  50553. height: math.unit(300, "miles")
  50554. },
  50555. ]
  50556. ))
  50557. characterMakers.push(() => makeCharacter(
  50558. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  50559. {
  50560. bipedal: {
  50561. height: math.unit(7, "feet"),
  50562. name: "Bipedal",
  50563. image: {
  50564. source: "./media/characters/zener/bipedal.svg",
  50565. extra: 874/805,
  50566. bottom: 109/983
  50567. }
  50568. },
  50569. quadrupedal: {
  50570. height: math.unit(4.64, "feet"),
  50571. name: "Quadrupedal",
  50572. image: {
  50573. source: "./media/characters/zener/quadrupedal.svg",
  50574. extra: 638/507,
  50575. bottom: 190/828
  50576. }
  50577. },
  50578. cock: {
  50579. height: math.unit(18, "inches"),
  50580. name: "Cock",
  50581. image: {
  50582. source: "./media/characters/zener/cock.svg"
  50583. }
  50584. },
  50585. },
  50586. [
  50587. {
  50588. name: "Normal",
  50589. height: math.unit(7, "feet"),
  50590. default: true
  50591. },
  50592. ]
  50593. ))
  50594. characterMakers.push(() => makeCharacter(
  50595. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  50596. {
  50597. nude: {
  50598. height: math.unit(5 + 6/12, "feet"),
  50599. name: "Nude",
  50600. image: {
  50601. source: "./media/characters/charlie-dog/nude.svg",
  50602. extra: 768/734,
  50603. bottom: 26/794
  50604. }
  50605. },
  50606. dressed: {
  50607. height: math.unit(5 + 6/12, "feet"),
  50608. name: "Dressed",
  50609. image: {
  50610. source: "./media/characters/charlie-dog/dressed.svg",
  50611. extra: 768/734,
  50612. bottom: 26/794
  50613. }
  50614. },
  50615. },
  50616. [
  50617. {
  50618. name: "Normal",
  50619. height: math.unit(5 + 6/12, "feet"),
  50620. default: true
  50621. },
  50622. ]
  50623. ))
  50624. characterMakers.push(() => makeCharacter(
  50625. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  50626. {
  50627. front: {
  50628. height: math.unit(6 + 4/12, "feet"),
  50629. name: "Front",
  50630. image: {
  50631. source: "./media/characters/ir'istrasz/front.svg",
  50632. extra: 1014/977,
  50633. bottom: 65/1079
  50634. }
  50635. },
  50636. back: {
  50637. height: math.unit(6 + 4/12, "feet"),
  50638. name: "Back",
  50639. image: {
  50640. source: "./media/characters/ir'istrasz/back.svg",
  50641. extra: 1024/992,
  50642. bottom: 34/1058
  50643. }
  50644. },
  50645. },
  50646. [
  50647. {
  50648. name: "Normal",
  50649. height: math.unit(6 + 4/12, "feet"),
  50650. default: true
  50651. },
  50652. ]
  50653. ))
  50654. characterMakers.push(() => makeCharacter(
  50655. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  50656. {
  50657. front: {
  50658. height: math.unit(5 + 8/12, "feet"),
  50659. name: "Front",
  50660. image: {
  50661. source: "./media/characters/dee-ditto/front.svg",
  50662. extra: 1874/1785,
  50663. bottom: 68/1942
  50664. }
  50665. },
  50666. back: {
  50667. height: math.unit(5 + 8/12, "feet"),
  50668. name: "Back",
  50669. image: {
  50670. source: "./media/characters/dee-ditto/back.svg",
  50671. extra: 1870/1783,
  50672. bottom: 77/1947
  50673. }
  50674. },
  50675. },
  50676. [
  50677. {
  50678. name: "Normal",
  50679. height: math.unit(5 + 8/12, "feet"),
  50680. default: true
  50681. },
  50682. ]
  50683. ))
  50684. characterMakers.push(() => makeCharacter(
  50685. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  50686. {
  50687. front: {
  50688. height: math.unit(7 + 6/12, "feet"),
  50689. name: "Front",
  50690. image: {
  50691. source: "./media/characters/fey/front.svg",
  50692. extra: 995/979,
  50693. bottom: 30/1025
  50694. }
  50695. },
  50696. back: {
  50697. height: math.unit(7 + 6/12, "feet"),
  50698. name: "Back",
  50699. image: {
  50700. source: "./media/characters/fey/back.svg",
  50701. extra: 1079/1008,
  50702. bottom: 5/1084
  50703. }
  50704. },
  50705. dressed: {
  50706. height: math.unit(7 + 6/12, "feet"),
  50707. name: "Dressed",
  50708. image: {
  50709. source: "./media/characters/fey/dressed.svg",
  50710. extra: 995/979,
  50711. bottom: 30/1025
  50712. }
  50713. },
  50714. },
  50715. [
  50716. {
  50717. name: "Normal",
  50718. height: math.unit(7 + 6/12, "feet"),
  50719. default: true
  50720. },
  50721. ]
  50722. ))
  50723. characterMakers.push(() => makeCharacter(
  50724. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  50725. {
  50726. standing: {
  50727. height: math.unit(17, "feet"),
  50728. name: "Standing",
  50729. image: {
  50730. source: "./media/characters/aster/standing.svg",
  50731. extra: 1798/1598,
  50732. bottom: 117/1915
  50733. }
  50734. },
  50735. },
  50736. [
  50737. {
  50738. name: "Normal",
  50739. height: math.unit(17, "feet"),
  50740. default: true
  50741. },
  50742. {
  50743. name: "Homewrecker",
  50744. height: math.unit(95, "feet")
  50745. },
  50746. {
  50747. name: "Planet Devourer",
  50748. height: math.unit(1008000, "miles")
  50749. },
  50750. ]
  50751. ))
  50752. characterMakers.push(() => makeCharacter(
  50753. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  50754. {
  50755. front: {
  50756. height: math.unit(6 + 5/12, "feet"),
  50757. weight: math.unit(265, "lb"),
  50758. name: "Front",
  50759. image: {
  50760. source: "./media/characters/devon-childs/front.svg",
  50761. extra: 1795/1721,
  50762. bottom: 41/1836
  50763. }
  50764. },
  50765. side: {
  50766. height: math.unit(6 + 5/12, "feet"),
  50767. weight: math.unit(265, "lb"),
  50768. name: "Side",
  50769. image: {
  50770. source: "./media/characters/devon-childs/side.svg",
  50771. extra: 1812/1738,
  50772. bottom: 30/1842
  50773. }
  50774. },
  50775. back: {
  50776. height: math.unit(6 + 5/12, "feet"),
  50777. weight: math.unit(265, "lb"),
  50778. name: "Back",
  50779. image: {
  50780. source: "./media/characters/devon-childs/back.svg",
  50781. extra: 1808/1735,
  50782. bottom: 23/1831
  50783. }
  50784. },
  50785. hand: {
  50786. height: math.unit(1.464, "feet"),
  50787. name: "Hand",
  50788. image: {
  50789. source: "./media/characters/devon-childs/hand.svg"
  50790. }
  50791. },
  50792. foot: {
  50793. height: math.unit(1.6, "feet"),
  50794. name: "Foot",
  50795. image: {
  50796. source: "./media/characters/devon-childs/foot.svg"
  50797. }
  50798. },
  50799. },
  50800. [
  50801. {
  50802. name: "Micro",
  50803. height: math.unit(7, "cm")
  50804. },
  50805. {
  50806. name: "Normal",
  50807. height: math.unit(6 + 5/12, "feet"),
  50808. default: true
  50809. },
  50810. {
  50811. name: "Macro",
  50812. height: math.unit(154, "feet")
  50813. },
  50814. ]
  50815. ))
  50816. characterMakers.push(() => makeCharacter(
  50817. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  50818. {
  50819. front: {
  50820. height: math.unit(6, "feet"),
  50821. weight: math.unit(180, "lb"),
  50822. name: "Front",
  50823. image: {
  50824. source: "./media/characters/lydemox-vir/front.svg",
  50825. extra: 1632/1435,
  50826. bottom: 58/1690
  50827. }
  50828. },
  50829. frontSFW: {
  50830. height: math.unit(6, "feet"),
  50831. weight: math.unit(180, "lb"),
  50832. name: "Front (SFW)",
  50833. image: {
  50834. source: "./media/characters/lydemox-vir/front-sfw.svg",
  50835. extra: 1632/1435,
  50836. bottom: 58/1690
  50837. }
  50838. },
  50839. back: {
  50840. height: math.unit(6, "feet"),
  50841. weight: math.unit(180, "lb"),
  50842. name: "Back",
  50843. image: {
  50844. source: "./media/characters/lydemox-vir/back.svg",
  50845. extra: 1593/1408,
  50846. bottom: 31/1624
  50847. }
  50848. },
  50849. paw: {
  50850. height: math.unit(1.85, "feet"),
  50851. name: "Paw",
  50852. image: {
  50853. source: "./media/characters/lydemox-vir/paw.svg"
  50854. }
  50855. },
  50856. dick: {
  50857. height: math.unit(1.8, "feet"),
  50858. name: "Dick",
  50859. image: {
  50860. source: "./media/characters/lydemox-vir/dick.svg"
  50861. }
  50862. },
  50863. },
  50864. [
  50865. {
  50866. name: "Macro",
  50867. height: math.unit(100, "feet"),
  50868. default: true
  50869. },
  50870. {
  50871. name: "Teramacro",
  50872. height: math.unit(1, "earth")
  50873. },
  50874. {
  50875. name: "Planetary",
  50876. height: math.unit(20, "earths")
  50877. },
  50878. ]
  50879. ))
  50880. characterMakers.push(() => makeCharacter(
  50881. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  50882. {
  50883. front: {
  50884. height: math.unit(15 + 8/12, "feet"),
  50885. weight: math.unit(1237, "kg"),
  50886. name: "Front",
  50887. image: {
  50888. source: "./media/characters/mia/front.svg",
  50889. extra: 1573/1446,
  50890. bottom: 58/1631
  50891. }
  50892. },
  50893. },
  50894. [
  50895. {
  50896. name: "Small",
  50897. height: math.unit(9 + 5/12, "feet")
  50898. },
  50899. {
  50900. name: "Normal",
  50901. height: math.unit(15 + 8/12, "feet"),
  50902. default: true
  50903. },
  50904. ]
  50905. ))
  50906. characterMakers.push(() => makeCharacter(
  50907. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  50908. {
  50909. front: {
  50910. height: math.unit(10 + 6/12, "feet"),
  50911. weight: math.unit(1.3, "tons"),
  50912. name: "Front",
  50913. image: {
  50914. source: "./media/characters/mr-graves/front.svg",
  50915. extra: 1779/1695,
  50916. bottom: 198/1977
  50917. }
  50918. },
  50919. },
  50920. [
  50921. {
  50922. name: "Normal",
  50923. height: math.unit(10 + 6 /12, "feet"),
  50924. default: true
  50925. },
  50926. ]
  50927. ))
  50928. characterMakers.push(() => makeCharacter(
  50929. { name: "Jess", species: ["human"], tags: ["anthro"] },
  50930. {
  50931. dressedFront: {
  50932. height: math.unit(5 + 8/12, "feet"),
  50933. weight: math.unit(125, "lb"),
  50934. name: "Dressed (Front)",
  50935. image: {
  50936. source: "./media/characters/jess/dressed-front.svg",
  50937. extra: 1176/1152,
  50938. bottom: 42/1218
  50939. }
  50940. },
  50941. dressedSide: {
  50942. height: math.unit(5 + 8/12, "feet"),
  50943. weight: math.unit(125, "lb"),
  50944. name: "Dressed (Side)",
  50945. image: {
  50946. source: "./media/characters/jess/dressed-side.svg",
  50947. extra: 1204/1190,
  50948. bottom: 6/1210
  50949. }
  50950. },
  50951. nudeFront: {
  50952. height: math.unit(5 + 8/12, "feet"),
  50953. weight: math.unit(125, "lb"),
  50954. name: "Nude (Front)",
  50955. image: {
  50956. source: "./media/characters/jess/nude-front.svg",
  50957. extra: 1176/1152,
  50958. bottom: 42/1218
  50959. }
  50960. },
  50961. nudeSide: {
  50962. height: math.unit(5 + 8/12, "feet"),
  50963. weight: math.unit(125, "lb"),
  50964. name: "Nude (Side)",
  50965. image: {
  50966. source: "./media/characters/jess/nude-side.svg",
  50967. extra: 1204/1190,
  50968. bottom: 6/1210
  50969. }
  50970. },
  50971. organsFront: {
  50972. height: math.unit(2.83799342105, "feet"),
  50973. name: "Organs (Front)",
  50974. image: {
  50975. source: "./media/characters/jess/organs-front.svg"
  50976. }
  50977. },
  50978. organsSide: {
  50979. height: math.unit(2.64225290474, "feet"),
  50980. name: "Organs (Side)",
  50981. image: {
  50982. source: "./media/characters/jess/organs-side.svg"
  50983. }
  50984. },
  50985. digestiveTractFront: {
  50986. height: math.unit(2.8106580871, "feet"),
  50987. name: "Digestive Tract (Front)",
  50988. image: {
  50989. source: "./media/characters/jess/digestive-tract-front.svg"
  50990. }
  50991. },
  50992. digestiveTractSide: {
  50993. height: math.unit(2.54365045014, "feet"),
  50994. name: "Digestive Tract (Side)",
  50995. image: {
  50996. source: "./media/characters/jess/digestive-tract-side.svg"
  50997. }
  50998. },
  50999. respiratorySystemFront: {
  51000. height: math.unit(1.11196233456, "feet"),
  51001. name: "Respiratory System (Front)",
  51002. image: {
  51003. source: "./media/characters/jess/respiratory-system-front.svg"
  51004. }
  51005. },
  51006. respiratorySystemSide: {
  51007. height: math.unit(0.89327966297, "feet"),
  51008. name: "Respiratory System (Side)",
  51009. image: {
  51010. source: "./media/characters/jess/respiratory-system-side.svg"
  51011. }
  51012. },
  51013. urinaryTractFront: {
  51014. height: math.unit(1.16126356186, "feet"),
  51015. name: "Urinary Tract (Front)",
  51016. image: {
  51017. source: "./media/characters/jess/urinary-tract-front.svg"
  51018. }
  51019. },
  51020. urinaryTractSide: {
  51021. height: math.unit(1.20910039627, "feet"),
  51022. name: "Urinary Tract (Side)",
  51023. image: {
  51024. source: "./media/characters/jess/urinary-tract-side.svg"
  51025. }
  51026. },
  51027. reproductiveOrgansFront: {
  51028. height: math.unit(0.48422591566, "feet"),
  51029. name: "Reproductive Organs (Front)",
  51030. image: {
  51031. source: "./media/characters/jess/reproductive-organs-front.svg"
  51032. }
  51033. },
  51034. reproductiveOrgansSide: {
  51035. height: math.unit(0.61553314481, "feet"),
  51036. name: "Reproductive Organs (Side)",
  51037. image: {
  51038. source: "./media/characters/jess/reproductive-organs-side.svg"
  51039. }
  51040. },
  51041. breastsFront: {
  51042. height: math.unit(0.47690395121, "feet"),
  51043. name: "Breasts (Front)",
  51044. image: {
  51045. source: "./media/characters/jess/breasts-front.svg"
  51046. }
  51047. },
  51048. breastsSide: {
  51049. height: math.unit(0.30556998307, "feet"),
  51050. name: "Breasts (Side)",
  51051. image: {
  51052. source: "./media/characters/jess/breasts-side.svg"
  51053. }
  51054. },
  51055. heartFront: {
  51056. height: math.unit(0.53011022622, "feet"),
  51057. name: "Heart (Front)",
  51058. image: {
  51059. source: "./media/characters/jess/heart-front.svg"
  51060. }
  51061. },
  51062. heartSide: {
  51063. height: math.unit(0.51790695213, "feet"),
  51064. name: "Heart (Side)",
  51065. image: {
  51066. source: "./media/characters/jess/heart-side.svg"
  51067. }
  51068. },
  51069. earsAndNoseFront: {
  51070. height: math.unit(0.29385483995, "feet"),
  51071. name: "Ears and Nose (Front)",
  51072. image: {
  51073. source: "./media/characters/jess/ears-and-nose-front.svg"
  51074. }
  51075. },
  51076. earsAndNoseSide: {
  51077. height: math.unit(0.18109658741, "feet"),
  51078. name: "Ears and Nose (Side)",
  51079. image: {
  51080. source: "./media/characters/jess/ears-and-nose-side.svg"
  51081. }
  51082. },
  51083. },
  51084. [
  51085. {
  51086. name: "Normal",
  51087. height: math.unit(5 + 8/12, "feet"),
  51088. default: true
  51089. },
  51090. ]
  51091. ))
  51092. characterMakers.push(() => makeCharacter(
  51093. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  51094. {
  51095. front: {
  51096. height: math.unit(6, "feet"),
  51097. weight: math.unit(6.64467e-7, "grams"),
  51098. name: "Front",
  51099. image: {
  51100. source: "./media/characters/wimpering/front.svg",
  51101. extra: 597/587,
  51102. bottom: 34/631
  51103. }
  51104. },
  51105. },
  51106. [
  51107. {
  51108. name: "Micro",
  51109. height: math.unit(0.4, "mm"),
  51110. default: true
  51111. },
  51112. ]
  51113. ))
  51114. characterMakers.push(() => makeCharacter(
  51115. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  51116. {
  51117. front: {
  51118. height: math.unit(5 + 2/12, "feet"),
  51119. weight: math.unit(110, "lb"),
  51120. name: "Front",
  51121. image: {
  51122. source: "./media/characters/keltre/front.svg",
  51123. extra: 1099/1057,
  51124. bottom: 22/1121
  51125. }
  51126. },
  51127. back: {
  51128. height: math.unit(5 + 2/12, "feet"),
  51129. weight: math.unit(110, "lb"),
  51130. name: "Back",
  51131. image: {
  51132. source: "./media/characters/keltre/back.svg",
  51133. extra: 1095/1053,
  51134. bottom: 17/1112
  51135. }
  51136. },
  51137. dressed: {
  51138. height: math.unit(5 + 2/12, "feet"),
  51139. weight: math.unit(110, "lb"),
  51140. name: "Dressed",
  51141. image: {
  51142. source: "./media/characters/keltre/dressed.svg",
  51143. extra: 1099/1057,
  51144. bottom: 22/1121
  51145. }
  51146. },
  51147. winter: {
  51148. height: math.unit(5 + 2/12, "feet"),
  51149. weight: math.unit(110, "lb"),
  51150. name: "Winter",
  51151. image: {
  51152. source: "./media/characters/keltre/winter.svg",
  51153. extra: 1099/1057,
  51154. bottom: 22/1121
  51155. }
  51156. },
  51157. head: {
  51158. height: math.unit(1.61 * 0.86, "feet"),
  51159. name: "Head",
  51160. image: {
  51161. source: "./media/characters/keltre/head.svg",
  51162. extra: 534/421,
  51163. bottom: 0/534
  51164. }
  51165. },
  51166. hand: {
  51167. height: math.unit(1.3 * 0.86, "feet"),
  51168. name: "Hand",
  51169. image: {
  51170. source: "./media/characters/keltre/hand.svg"
  51171. }
  51172. },
  51173. foot: {
  51174. height: math.unit(1.8 * 0.86, "feet"),
  51175. name: "Foot",
  51176. image: {
  51177. source: "./media/characters/keltre/foot.svg"
  51178. }
  51179. },
  51180. },
  51181. [
  51182. {
  51183. name: "Fine",
  51184. height: math.unit(1, "inch")
  51185. },
  51186. {
  51187. name: "Dimnutive",
  51188. height: math.unit(4, "inches")
  51189. },
  51190. {
  51191. name: "Tiny",
  51192. height: math.unit(1, "foot")
  51193. },
  51194. {
  51195. name: "Small",
  51196. height: math.unit(3, "feet")
  51197. },
  51198. {
  51199. name: "Normal",
  51200. height: math.unit(5 + 2/12, "feet"),
  51201. default: true
  51202. },
  51203. ]
  51204. ))
  51205. characterMakers.push(() => makeCharacter(
  51206. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  51207. {
  51208. front: {
  51209. height: math.unit(6 + 2/12, "feet"),
  51210. name: "Front",
  51211. image: {
  51212. source: "./media/characters/nox/front.svg",
  51213. extra: 1917/1830,
  51214. bottom: 74/1991
  51215. }
  51216. },
  51217. back: {
  51218. height: math.unit(6 + 2/12, "feet"),
  51219. name: "Back",
  51220. image: {
  51221. source: "./media/characters/nox/back.svg",
  51222. extra: 1896/1815,
  51223. bottom: 21/1917
  51224. }
  51225. },
  51226. head: {
  51227. height: math.unit(1.1, "feet"),
  51228. name: "Head",
  51229. image: {
  51230. source: "./media/characters/nox/head.svg",
  51231. extra: 874/704,
  51232. bottom: 0/874
  51233. }
  51234. },
  51235. tattoo: {
  51236. height: math.unit(0.729, "feet"),
  51237. name: "Tattoo",
  51238. image: {
  51239. source: "./media/characters/nox/tattoo.svg"
  51240. }
  51241. },
  51242. },
  51243. [
  51244. {
  51245. name: "Normal",
  51246. height: math.unit(6 + 2/12, "feet")
  51247. },
  51248. {
  51249. name: "Gigamacro",
  51250. height: math.unit(2, "earths"),
  51251. default: true
  51252. },
  51253. {
  51254. name: "Cosmic",
  51255. height: math.unit(867, "yottameters")
  51256. },
  51257. ]
  51258. ))
  51259. characterMakers.push(() => makeCharacter(
  51260. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  51261. {
  51262. front: {
  51263. height: math.unit(6, "feet"),
  51264. weight: math.unit(150, "lb"),
  51265. name: "Front",
  51266. image: {
  51267. source: "./media/characters/caspian/front.svg",
  51268. extra: 1443/1359,
  51269. bottom: 0/1443
  51270. }
  51271. },
  51272. back: {
  51273. height: math.unit(6, "feet"),
  51274. weight: math.unit(150, "lb"),
  51275. name: "Back",
  51276. image: {
  51277. source: "./media/characters/caspian/back.svg",
  51278. extra: 1379/1309,
  51279. bottom: 0/1379
  51280. }
  51281. },
  51282. head: {
  51283. height: math.unit(0.9, "feet"),
  51284. name: "Head",
  51285. image: {
  51286. source: "./media/characters/caspian/head.svg",
  51287. extra: 692/492,
  51288. bottom: 0/692
  51289. }
  51290. },
  51291. headAlt: {
  51292. height: math.unit(0.95, "feet"),
  51293. name: "Head (Alt)",
  51294. image: {
  51295. source: "./media/characters/caspian/head-alt.svg",
  51296. extra: 668/508,
  51297. bottom: 0/668
  51298. }
  51299. },
  51300. hand: {
  51301. height: math.unit(0.8, "feet"),
  51302. name: "Hand",
  51303. image: {
  51304. source: "./media/characters/caspian/hand.svg"
  51305. }
  51306. },
  51307. paw: {
  51308. height: math.unit(0.95, "feet"),
  51309. name: "Paw",
  51310. image: {
  51311. source: "./media/characters/caspian/paw.svg"
  51312. }
  51313. },
  51314. },
  51315. [
  51316. {
  51317. name: "Normal",
  51318. height: math.unit(162, "feet"),
  51319. default: true
  51320. },
  51321. ]
  51322. ))
  51323. characterMakers.push(() => makeCharacter(
  51324. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  51325. {
  51326. front: {
  51327. height: math.unit(6, "feet"),
  51328. name: "Front",
  51329. image: {
  51330. source: "./media/characters/myra-aisling/front.svg",
  51331. extra: 1268/1166,
  51332. bottom: 73/1341
  51333. }
  51334. },
  51335. back: {
  51336. height: math.unit(6, "feet"),
  51337. name: "Back",
  51338. image: {
  51339. source: "./media/characters/myra-aisling/back.svg",
  51340. extra: 1249/1149,
  51341. bottom: 79/1328
  51342. }
  51343. },
  51344. dressed: {
  51345. height: math.unit(6, "feet"),
  51346. name: "Dressed",
  51347. image: {
  51348. source: "./media/characters/myra-aisling/dressed.svg",
  51349. extra: 1290/1189,
  51350. bottom: 47/1337
  51351. }
  51352. },
  51353. hand: {
  51354. height: math.unit(1.1, "feet"),
  51355. name: "Hand",
  51356. image: {
  51357. source: "./media/characters/myra-aisling/hand.svg"
  51358. }
  51359. },
  51360. paw: {
  51361. height: math.unit(1.23, "feet"),
  51362. name: "Paw",
  51363. image: {
  51364. source: "./media/characters/myra-aisling/paw.svg"
  51365. }
  51366. },
  51367. },
  51368. [
  51369. {
  51370. name: "Normal",
  51371. height: math.unit(160, "feet"),
  51372. default: true
  51373. },
  51374. ]
  51375. ))
  51376. characterMakers.push(() => makeCharacter(
  51377. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  51378. {
  51379. front: {
  51380. height: math.unit(6, "feet"),
  51381. name: "Front",
  51382. image: {
  51383. source: "./media/characters/tenley-sidero/front.svg",
  51384. extra: 1365/1276,
  51385. bottom: 47/1412
  51386. }
  51387. },
  51388. back: {
  51389. height: math.unit(6, "feet"),
  51390. name: "Back",
  51391. image: {
  51392. source: "./media/characters/tenley-sidero/back.svg",
  51393. extra: 1383/1283,
  51394. bottom: 35/1418
  51395. }
  51396. },
  51397. dressed: {
  51398. height: math.unit(6, "feet"),
  51399. name: "Dressed",
  51400. image: {
  51401. source: "./media/characters/tenley-sidero/dressed.svg",
  51402. extra: 1364/1275,
  51403. bottom: 42/1406
  51404. }
  51405. },
  51406. head: {
  51407. height: math.unit(1.47, "feet"),
  51408. name: "Head",
  51409. image: {
  51410. source: "./media/characters/tenley-sidero/head.svg",
  51411. extra: 610/490,
  51412. bottom: 0/610
  51413. }
  51414. },
  51415. },
  51416. [
  51417. {
  51418. name: "Normal",
  51419. height: math.unit(154, "feet"),
  51420. default: true
  51421. },
  51422. ]
  51423. ))
  51424. characterMakers.push(() => makeCharacter(
  51425. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  51426. {
  51427. front: {
  51428. height: math.unit(5, "inches"),
  51429. name: "Front",
  51430. image: {
  51431. source: "./media/characters/mallory/front.svg",
  51432. extra: 1919/1678,
  51433. bottom: 29/1948
  51434. }
  51435. },
  51436. hand: {
  51437. height: math.unit(0.73, "inches"),
  51438. name: "Hand",
  51439. image: {
  51440. source: "./media/characters/mallory/hand.svg"
  51441. }
  51442. },
  51443. paw: {
  51444. height: math.unit(0.68, "inches"),
  51445. name: "Paw",
  51446. image: {
  51447. source: "./media/characters/mallory/paw.svg"
  51448. }
  51449. },
  51450. },
  51451. [
  51452. {
  51453. name: "Small",
  51454. height: math.unit(5, "inches"),
  51455. default: true
  51456. },
  51457. ]
  51458. ))
  51459. characterMakers.push(() => makeCharacter(
  51460. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  51461. {
  51462. naked: {
  51463. height: math.unit(6, "feet"),
  51464. name: "Naked",
  51465. image: {
  51466. source: "./media/characters/mab/naked.svg",
  51467. extra: 1855/1757,
  51468. bottom: 208/2063
  51469. }
  51470. },
  51471. outside: {
  51472. height: math.unit(6, "feet"),
  51473. name: "Outside",
  51474. image: {
  51475. source: "./media/characters/mab/outside.svg",
  51476. extra: 1855/1757,
  51477. bottom: 208/2063
  51478. }
  51479. },
  51480. party: {
  51481. height: math.unit(6, "feet"),
  51482. name: "Party",
  51483. image: {
  51484. source: "./media/characters/mab/party.svg",
  51485. extra: 1855/1757,
  51486. bottom: 208/2063
  51487. }
  51488. },
  51489. },
  51490. [
  51491. {
  51492. name: "Normal",
  51493. height: math.unit(165, "feet"),
  51494. default: true
  51495. },
  51496. ]
  51497. ))
  51498. characterMakers.push(() => makeCharacter(
  51499. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  51500. {
  51501. feral: {
  51502. height: math.unit(12, "feet"),
  51503. weight: math.unit(20000, "lb"),
  51504. name: "Side",
  51505. image: {
  51506. source: "./media/characters/winter/feral.svg",
  51507. extra: 1286/943,
  51508. bottom: 112/1398
  51509. },
  51510. form: "feral",
  51511. default: true
  51512. },
  51513. feralNsfw: {
  51514. height: math.unit(12, "feet"),
  51515. weight: math.unit(20000, "lb"),
  51516. name: "Side (NSFW)",
  51517. image: {
  51518. source: "./media/characters/winter/feral-nsfw.svg",
  51519. extra: 1286/943,
  51520. bottom: 112/1398
  51521. },
  51522. form: "feral"
  51523. },
  51524. dick: {
  51525. height: math.unit(3.79, "feet"),
  51526. name: "Dick",
  51527. image: {
  51528. source: "./media/characters/winter/dick.svg"
  51529. },
  51530. form: "feral"
  51531. },
  51532. anthro: {
  51533. height: math.unit(12, "feet"),
  51534. weight: math.unit(10, "tons"),
  51535. name: "Anthro",
  51536. image: {
  51537. source: "./media/characters/winter/anthro.svg",
  51538. extra: 1701/1553,
  51539. bottom: 64/1765
  51540. },
  51541. form: "anthro",
  51542. default: true
  51543. },
  51544. },
  51545. [
  51546. {
  51547. name: "Big",
  51548. height: math.unit(12, "feet"),
  51549. default: true,
  51550. form: "feral"
  51551. },
  51552. {
  51553. name: "Big",
  51554. height: math.unit(12, "feet"),
  51555. default: true,
  51556. form: "anthro"
  51557. },
  51558. ],
  51559. {
  51560. "feral": {
  51561. name: "Feral",
  51562. default: true
  51563. },
  51564. "anthro": {
  51565. name: "Anthro"
  51566. }
  51567. }
  51568. ))
  51569. characterMakers.push(() => makeCharacter(
  51570. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  51571. {
  51572. front: {
  51573. height: math.unit(4.1, "inches"),
  51574. name: "Front",
  51575. image: {
  51576. source: "./media/characters/alto/front.svg",
  51577. extra: 736/627,
  51578. bottom: 90/826
  51579. }
  51580. },
  51581. },
  51582. [
  51583. {
  51584. name: "Normal",
  51585. height: math.unit(4.1, "inches"),
  51586. default: true
  51587. },
  51588. ]
  51589. ))
  51590. characterMakers.push(() => makeCharacter(
  51591. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  51592. {
  51593. sitting: {
  51594. height: math.unit(3, "feet"),
  51595. name: "Sitting",
  51596. image: {
  51597. source: "./media/characters/ratstrid-v/sitting.svg",
  51598. extra: 355/310,
  51599. bottom: 136/491
  51600. }
  51601. },
  51602. },
  51603. [
  51604. {
  51605. name: "Normal",
  51606. height: math.unit(3, "feet"),
  51607. default: true
  51608. },
  51609. ]
  51610. ))
  51611. characterMakers.push(() => makeCharacter(
  51612. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  51613. {
  51614. back: {
  51615. height: math.unit(6, "feet"),
  51616. weight: math.unit(450, "lb"),
  51617. name: "Back",
  51618. image: {
  51619. source: "./media/characters/siz/back.svg",
  51620. extra: 1449/1274,
  51621. bottom: 13/1462
  51622. }
  51623. },
  51624. },
  51625. [
  51626. {
  51627. name: "Smallest",
  51628. height: math.unit(18 + 3/12, "feet")
  51629. },
  51630. {
  51631. name: "Modest",
  51632. height: math.unit(56 + 8/12, "feet"),
  51633. default: true
  51634. },
  51635. {
  51636. name: "Largest",
  51637. height: math.unit(3590, "feet")
  51638. },
  51639. ]
  51640. ))
  51641. characterMakers.push(() => makeCharacter(
  51642. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  51643. {
  51644. front: {
  51645. height: math.unit(5 + 9/12, "feet"),
  51646. weight: math.unit(150, "lb"),
  51647. name: "Front",
  51648. image: {
  51649. source: "./media/characters/ven/front.svg",
  51650. extra: 1372/1320,
  51651. bottom: 73/1445
  51652. }
  51653. },
  51654. side: {
  51655. height: math.unit(5 + 9/12, "feet"),
  51656. weight: math.unit(1150, "lb"),
  51657. name: "Side",
  51658. image: {
  51659. source: "./media/characters/ven/side.svg",
  51660. extra: 1119/1070,
  51661. bottom: 42/1161
  51662. },
  51663. default: true
  51664. },
  51665. },
  51666. [
  51667. {
  51668. name: "Normal",
  51669. height: math.unit(5 + 9/12, "feet"),
  51670. default: true
  51671. },
  51672. ]
  51673. ))
  51674. characterMakers.push(() => makeCharacter(
  51675. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  51676. {
  51677. front: {
  51678. height: math.unit(12, "feet"),
  51679. weight: math.unit(1000, "kg"),
  51680. name: "Front",
  51681. image: {
  51682. source: "./media/characters/maple/front.svg",
  51683. extra: 1193/1081,
  51684. bottom: 22/1215
  51685. }
  51686. },
  51687. },
  51688. [
  51689. {
  51690. name: "Compressed",
  51691. height: math.unit(7, "feet")
  51692. },
  51693. {
  51694. name: "Normal",
  51695. height: math.unit(12, "feet"),
  51696. default: true
  51697. },
  51698. ]
  51699. ))
  51700. characterMakers.push(() => makeCharacter(
  51701. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  51702. {
  51703. front: {
  51704. height: math.unit(9, "feet"),
  51705. weight: math.unit(1500, "lb"),
  51706. name: "Front",
  51707. image: {
  51708. source: "./media/characters/nora/front.svg",
  51709. extra: 1348/1286,
  51710. bottom: 218/1566
  51711. }
  51712. },
  51713. erect: {
  51714. height: math.unit(9, "feet"),
  51715. weight: math.unit(11500, "lb"),
  51716. name: "Erect",
  51717. image: {
  51718. source: "./media/characters/nora/erect.svg",
  51719. extra: 1488/1433,
  51720. bottom: 133/1621
  51721. }
  51722. },
  51723. },
  51724. [
  51725. {
  51726. name: "Normal",
  51727. height: math.unit(9, "feet"),
  51728. default: true
  51729. },
  51730. ]
  51731. ))
  51732. characterMakers.push(() => makeCharacter(
  51733. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  51734. {
  51735. front: {
  51736. height: math.unit(25, "feet"),
  51737. weight: math.unit(27500, "lb"),
  51738. name: "Front",
  51739. image: {
  51740. source: "./media/characters/north-caudin/front.svg",
  51741. extra: 1184/1082,
  51742. bottom: 23/1207
  51743. }
  51744. },
  51745. },
  51746. [
  51747. {
  51748. name: "Compressed",
  51749. height: math.unit(10, "feet")
  51750. },
  51751. {
  51752. name: "Normal",
  51753. height: math.unit(25, "feet"),
  51754. default: true
  51755. },
  51756. ]
  51757. ))
  51758. characterMakers.push(() => makeCharacter(
  51759. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  51760. {
  51761. front: {
  51762. height: math.unit(9, "feet"),
  51763. weight: math.unit(1250, "lb"),
  51764. name: "Front",
  51765. image: {
  51766. source: "./media/characters/merrian/front.svg",
  51767. extra: 2393/2304,
  51768. bottom: 40/2433
  51769. }
  51770. },
  51771. },
  51772. [
  51773. {
  51774. name: "Normal",
  51775. height: math.unit(9, "feet"),
  51776. default: true
  51777. },
  51778. ]
  51779. ))
  51780. characterMakers.push(() => makeCharacter(
  51781. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  51782. {
  51783. front: {
  51784. height: math.unit(9, "feet"),
  51785. weight: math.unit(1000, "lb"),
  51786. name: "Front",
  51787. image: {
  51788. source: "./media/characters/hazel/front.svg",
  51789. extra: 2351/2298,
  51790. bottom: 38/2389
  51791. }
  51792. },
  51793. },
  51794. [
  51795. {
  51796. name: "Normal",
  51797. height: math.unit(9, "feet"),
  51798. default: true
  51799. },
  51800. ]
  51801. ))
  51802. characterMakers.push(() => makeCharacter(
  51803. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  51804. {
  51805. front: {
  51806. height: math.unit(13, "feet"),
  51807. weight: math.unit(3200, "lb"),
  51808. name: "Front",
  51809. image: {
  51810. source: "./media/characters/emma/front.svg",
  51811. extra: 2263/2029,
  51812. bottom: 68/2331
  51813. }
  51814. },
  51815. },
  51816. [
  51817. {
  51818. name: "Normal",
  51819. height: math.unit(13, "feet"),
  51820. default: true
  51821. },
  51822. ]
  51823. ))
  51824. characterMakers.push(() => makeCharacter(
  51825. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  51826. {
  51827. front: {
  51828. height: math.unit(11 + 9/12, "feet"),
  51829. weight: math.unit(2500, "lb"),
  51830. name: "Front",
  51831. image: {
  51832. source: "./media/characters/ilumina/front.svg",
  51833. extra: 2248/2209,
  51834. bottom: 164/2412
  51835. }
  51836. },
  51837. },
  51838. [
  51839. {
  51840. name: "Normal",
  51841. height: math.unit(11 + 9/12, "feet"),
  51842. default: true
  51843. },
  51844. ]
  51845. ))
  51846. characterMakers.push(() => makeCharacter(
  51847. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  51848. {
  51849. front: {
  51850. height: math.unit(8 + 10/12, "feet"),
  51851. weight: math.unit(1350, "lb"),
  51852. name: "Front",
  51853. image: {
  51854. source: "./media/characters/moonshine/front.svg",
  51855. extra: 2395/2288,
  51856. bottom: 40/2435
  51857. }
  51858. },
  51859. },
  51860. [
  51861. {
  51862. name: "Normal",
  51863. height: math.unit(8 + 10/12, "feet"),
  51864. default: true
  51865. },
  51866. ]
  51867. ))
  51868. characterMakers.push(() => makeCharacter(
  51869. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  51870. {
  51871. front: {
  51872. height: math.unit(14, "feet"),
  51873. weight: math.unit(3400, "lb"),
  51874. name: "Front",
  51875. image: {
  51876. source: "./media/characters/aletia/front.svg",
  51877. extra: 1185/1052,
  51878. bottom: 21/1206
  51879. }
  51880. },
  51881. },
  51882. [
  51883. {
  51884. name: "Compressed",
  51885. height: math.unit(8, "feet")
  51886. },
  51887. {
  51888. name: "Normal",
  51889. height: math.unit(14, "feet"),
  51890. default: true
  51891. },
  51892. ]
  51893. ))
  51894. characterMakers.push(() => makeCharacter(
  51895. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  51896. {
  51897. front: {
  51898. height: math.unit(17, "feet"),
  51899. weight: math.unit(6500, "lb"),
  51900. name: "Front",
  51901. image: {
  51902. source: "./media/characters/deidra/front.svg",
  51903. extra: 1201/1081,
  51904. bottom: 16/1217
  51905. }
  51906. },
  51907. },
  51908. [
  51909. {
  51910. name: "Compressed",
  51911. height: math.unit(9 + 6/12, "feet")
  51912. },
  51913. {
  51914. name: "Normal",
  51915. height: math.unit(17, "feet"),
  51916. default: true
  51917. },
  51918. ]
  51919. ))
  51920. characterMakers.push(() => makeCharacter(
  51921. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  51922. {
  51923. front: {
  51924. height: math.unit(7 + 4/12, "feet"),
  51925. weight: math.unit(280, "lb"),
  51926. name: "Front",
  51927. image: {
  51928. source: "./media/characters/freki-yrmori/front.svg",
  51929. extra: 1286/1182,
  51930. bottom: 29/1315
  51931. }
  51932. },
  51933. maw: {
  51934. height: math.unit(0.9, "feet"),
  51935. name: "Maw",
  51936. image: {
  51937. source: "./media/characters/freki-yrmori/maw.svg"
  51938. }
  51939. },
  51940. },
  51941. [
  51942. {
  51943. name: "Normal",
  51944. height: math.unit(7 + 4/12, "feet"),
  51945. default: true
  51946. },
  51947. {
  51948. name: "Macro",
  51949. height: math.unit(38.5, "meters")
  51950. },
  51951. ]
  51952. ))
  51953. characterMakers.push(() => makeCharacter(
  51954. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  51955. {
  51956. side: {
  51957. height: math.unit(47.2, "meters"),
  51958. weight: math.unit(10000, "tons"),
  51959. name: "Side",
  51960. image: {
  51961. source: "./media/characters/aetherios/side.svg",
  51962. extra: 2363/642,
  51963. bottom: 221/2584
  51964. }
  51965. },
  51966. top: {
  51967. height: math.unit(240, "meters"),
  51968. weight: math.unit(10000, "tons"),
  51969. name: "Top",
  51970. image: {
  51971. source: "./media/characters/aetherios/top.svg"
  51972. }
  51973. },
  51974. bottom: {
  51975. height: math.unit(240, "meters"),
  51976. weight: math.unit(10000, "tons"),
  51977. name: "Bottom",
  51978. image: {
  51979. source: "./media/characters/aetherios/bottom.svg"
  51980. }
  51981. },
  51982. head: {
  51983. height: math.unit(38.6, "meters"),
  51984. name: "Head",
  51985. image: {
  51986. source: "./media/characters/aetherios/head.svg",
  51987. extra: 1335/1112,
  51988. bottom: 0/1335
  51989. }
  51990. },
  51991. front: {
  51992. height: math.unit(29, "meters"),
  51993. name: "Front",
  51994. image: {
  51995. source: "./media/characters/aetherios/front.svg",
  51996. extra: 1266/953,
  51997. bottom: 158/1424
  51998. }
  51999. },
  52000. maw: {
  52001. height: math.unit(16.37, "meters"),
  52002. name: "Maw",
  52003. image: {
  52004. source: "./media/characters/aetherios/maw.svg",
  52005. extra: 748/637,
  52006. bottom: 0/748
  52007. },
  52008. extraAttributes: {
  52009. preyCapacity: {
  52010. name: "Capacity",
  52011. power: 3,
  52012. type: "volume",
  52013. base: math.unit(1000, "people")
  52014. },
  52015. tongueSize: {
  52016. name: "Tongue Size",
  52017. power: 2,
  52018. type: "area",
  52019. base: math.unit(21, "m^2")
  52020. }
  52021. }
  52022. },
  52023. forepaw: {
  52024. height: math.unit(18, "meters"),
  52025. name: "Forepaw",
  52026. image: {
  52027. source: "./media/characters/aetherios/forepaw.svg"
  52028. }
  52029. },
  52030. hindpaw: {
  52031. height: math.unit(23, "meters"),
  52032. name: "Hindpaw",
  52033. image: {
  52034. source: "./media/characters/aetherios/hindpaw.svg"
  52035. }
  52036. },
  52037. genitals: {
  52038. height: math.unit(42, "meters"),
  52039. name: "Genitals",
  52040. image: {
  52041. source: "./media/characters/aetherios/genitals.svg"
  52042. }
  52043. },
  52044. },
  52045. [
  52046. {
  52047. name: "Normal",
  52048. height: math.unit(47.2, "meters"),
  52049. default: true
  52050. },
  52051. {
  52052. name: "Macro",
  52053. height: math.unit(160, "meters")
  52054. },
  52055. {
  52056. name: "Mega",
  52057. height: math.unit(1.87, "km")
  52058. },
  52059. {
  52060. name: "Giga",
  52061. height: math.unit(40000, "km")
  52062. },
  52063. {
  52064. name: "Stellar",
  52065. height: math.unit(158000000, "km")
  52066. },
  52067. {
  52068. name: "Cosmic",
  52069. height: math.unit(9.46e12, "km")
  52070. },
  52071. ]
  52072. ))
  52073. characterMakers.push(() => makeCharacter(
  52074. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  52075. {
  52076. front: {
  52077. height: math.unit(5 + 4/12, "feet"),
  52078. weight: math.unit(80, "lb"),
  52079. name: "Front",
  52080. image: {
  52081. source: "./media/characters/mizu-gieeg/front.svg",
  52082. extra: 850/709,
  52083. bottom: 52/902
  52084. }
  52085. },
  52086. back: {
  52087. height: math.unit(5 + 4/12, "feet"),
  52088. weight: math.unit(80, "lb"),
  52089. name: "Back",
  52090. image: {
  52091. source: "./media/characters/mizu-gieeg/back.svg",
  52092. extra: 882/745,
  52093. bottom: 25/907
  52094. }
  52095. },
  52096. },
  52097. [
  52098. {
  52099. name: "Normal",
  52100. height: math.unit(5 + 4/12, "feet"),
  52101. default: true
  52102. },
  52103. ]
  52104. ))
  52105. characterMakers.push(() => makeCharacter(
  52106. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  52107. {
  52108. front: {
  52109. height: math.unit(6, "feet"),
  52110. name: "Front",
  52111. image: {
  52112. source: "./media/characters/roselle-st-papier/front.svg",
  52113. extra: 1430/1280,
  52114. bottom: 37/1467
  52115. }
  52116. },
  52117. back: {
  52118. height: math.unit(6, "feet"),
  52119. name: "Back",
  52120. image: {
  52121. source: "./media/characters/roselle-st-papier/back.svg",
  52122. extra: 1491/1296,
  52123. bottom: 23/1514
  52124. }
  52125. },
  52126. ear: {
  52127. height: math.unit(1.26, "feet"),
  52128. name: "Ear",
  52129. image: {
  52130. source: "./media/characters/roselle-st-papier/ear.svg"
  52131. }
  52132. },
  52133. },
  52134. [
  52135. {
  52136. name: "Normal",
  52137. height: math.unit(150, "feet"),
  52138. default: true
  52139. },
  52140. ]
  52141. ))
  52142. characterMakers.push(() => makeCharacter(
  52143. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  52144. {
  52145. front: {
  52146. height: math.unit(1, "inches"),
  52147. name: "Front",
  52148. image: {
  52149. source: "./media/characters/valargent/front.svg",
  52150. extra: 1825/1694,
  52151. bottom: 62/1887
  52152. }
  52153. },
  52154. back: {
  52155. height: math.unit(1, "inches"),
  52156. name: "Back",
  52157. image: {
  52158. source: "./media/characters/valargent/back.svg",
  52159. extra: 1775/1682,
  52160. bottom: 88/1863
  52161. }
  52162. },
  52163. },
  52164. [
  52165. {
  52166. name: "Micro",
  52167. height: math.unit(1, "inch"),
  52168. default: true
  52169. },
  52170. ]
  52171. ))
  52172. characterMakers.push(() => makeCharacter(
  52173. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  52174. {
  52175. front: {
  52176. height: math.unit(3.4, "meters"),
  52177. name: "Front",
  52178. image: {
  52179. source: "./media/characters/zarina/front.svg",
  52180. extra: 1733/1425,
  52181. bottom: 93/1826
  52182. }
  52183. },
  52184. squatting: {
  52185. height: math.unit(2.14, "meters"),
  52186. name: "Squatting",
  52187. image: {
  52188. source: "./media/characters/zarina/squatting.svg",
  52189. extra: 1073/788,
  52190. bottom: 63/1136
  52191. }
  52192. },
  52193. back: {
  52194. height: math.unit(2.14, "meters"),
  52195. name: "Back",
  52196. image: {
  52197. source: "./media/characters/zarina/back.svg",
  52198. extra: 1128/885,
  52199. bottom: 0/1128
  52200. }
  52201. },
  52202. },
  52203. [
  52204. {
  52205. name: "Normal",
  52206. height: math.unit(3.4, "meters"),
  52207. default: true
  52208. },
  52209. {
  52210. name: "Big",
  52211. height: math.unit(5, "meters")
  52212. },
  52213. {
  52214. name: "Macro",
  52215. height: math.unit(110, "meters")
  52216. },
  52217. ]
  52218. ))
  52219. characterMakers.push(() => makeCharacter(
  52220. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  52221. {
  52222. front: {
  52223. height: math.unit(7, "feet"),
  52224. name: "Front",
  52225. image: {
  52226. source: "./media/characters/ventus-astro-fox/front.svg",
  52227. extra: 1792/1623,
  52228. bottom: 28/1820
  52229. }
  52230. },
  52231. back: {
  52232. height: math.unit(7, "feet"),
  52233. name: "Back",
  52234. image: {
  52235. source: "./media/characters/ventus-astro-fox/back.svg",
  52236. extra: 1789/1620,
  52237. bottom: 31/1820
  52238. }
  52239. },
  52240. outfit: {
  52241. height: math.unit(7, "feet"),
  52242. name: "Outfit",
  52243. image: {
  52244. source: "./media/characters/ventus-astro-fox/outfit.svg",
  52245. extra: 1054/925,
  52246. bottom: 15/1069
  52247. }
  52248. },
  52249. head: {
  52250. height: math.unit(1.12, "feet"),
  52251. name: "Head",
  52252. image: {
  52253. source: "./media/characters/ventus-astro-fox/head.svg",
  52254. extra: 866/504,
  52255. bottom: 0/866
  52256. }
  52257. },
  52258. hand: {
  52259. height: math.unit(1, "feet"),
  52260. name: "Hand",
  52261. image: {
  52262. source: "./media/characters/ventus-astro-fox/hand.svg"
  52263. }
  52264. },
  52265. paw: {
  52266. height: math.unit(1.5, "feet"),
  52267. name: "Paw",
  52268. image: {
  52269. source: "./media/characters/ventus-astro-fox/paw.svg"
  52270. }
  52271. },
  52272. },
  52273. [
  52274. {
  52275. name: "Normal",
  52276. height: math.unit(7, "feet"),
  52277. default: true
  52278. },
  52279. {
  52280. name: "Macro",
  52281. height: math.unit(200, "feet")
  52282. },
  52283. {
  52284. name: "Cosmic",
  52285. height: math.unit(3, "universes")
  52286. },
  52287. ]
  52288. ))
  52289. characterMakers.push(() => makeCharacter(
  52290. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  52291. {
  52292. front: {
  52293. height: math.unit(3, "meters"),
  52294. weight: math.unit(7000, "lb"),
  52295. name: "Front",
  52296. image: {
  52297. source: "./media/characters/core-t/front.svg",
  52298. extra: 5729/4941,
  52299. bottom: 1129/6858
  52300. }
  52301. },
  52302. },
  52303. [
  52304. {
  52305. name: "Big",
  52306. height: math.unit(3, "meters"),
  52307. default: true
  52308. },
  52309. ]
  52310. ))
  52311. characterMakers.push(() => makeCharacter(
  52312. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  52313. {
  52314. normal: {
  52315. height: math.unit(6 + 6/12, "feet"),
  52316. weight: math.unit(275, "lb"),
  52317. name: "Front",
  52318. image: {
  52319. source: "./media/characters/cadbunny/normal.svg",
  52320. extra: 1129/947,
  52321. bottom: 93/1222
  52322. },
  52323. default: true,
  52324. form: "normal"
  52325. },
  52326. gigantamax: {
  52327. height: math.unit(26, "feet"),
  52328. weight: math.unit(16000, "lb"),
  52329. name: "Front",
  52330. image: {
  52331. source: "./media/characters/cadbunny/gigantamax.svg",
  52332. extra: 1133/944,
  52333. bottom: 90/1223
  52334. },
  52335. default: true,
  52336. form: "gigantamax"
  52337. },
  52338. },
  52339. [
  52340. {
  52341. name: "Normal",
  52342. height: math.unit(6 + 6/12, "feet"),
  52343. default: true,
  52344. form: "normal"
  52345. },
  52346. {
  52347. name: "Small",
  52348. height: math.unit(26, "feet"),
  52349. default: true,
  52350. form: "gigantamax"
  52351. },
  52352. {
  52353. name: "Large",
  52354. height: math.unit(78, "feet"),
  52355. form: "gigantamax"
  52356. },
  52357. ],
  52358. {
  52359. "normal": {
  52360. name: "Normal",
  52361. default: true
  52362. },
  52363. "gigantamax": {
  52364. name: "Gigantamax"
  52365. }
  52366. }
  52367. ))
  52368. characterMakers.push(() => makeCharacter(
  52369. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  52370. {
  52371. anthroFront: {
  52372. height: math.unit(8, "feet"),
  52373. weight: math.unit(300, "lb"),
  52374. name: "Front",
  52375. image: {
  52376. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  52377. extra: 1272/1176,
  52378. bottom: 53/1325
  52379. },
  52380. form: "anthro",
  52381. default: true
  52382. },
  52383. feralSide: {
  52384. height: math.unit(4, "feet"),
  52385. weight: math.unit(250, "lb"),
  52386. name: "Side",
  52387. image: {
  52388. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  52389. extra: 731/621,
  52390. bottom: 0/731
  52391. },
  52392. form: "feral",
  52393. default: true
  52394. },
  52395. },
  52396. [
  52397. {
  52398. name: "Regular",
  52399. height: math.unit(8, "feet"),
  52400. form: "anthro"
  52401. },
  52402. {
  52403. name: "Macro",
  52404. height: math.unit(250, "feet"),
  52405. form: "anthro",
  52406. default: true
  52407. },
  52408. {
  52409. name: "Regular",
  52410. height: math.unit(4, "feet"),
  52411. form: "feral"
  52412. },
  52413. {
  52414. name: "Macro",
  52415. height: math.unit(125, "feet"),
  52416. form: "feral",
  52417. default: true
  52418. },
  52419. ],
  52420. {
  52421. "anthro": {
  52422. name: "Anthro",
  52423. default: true
  52424. },
  52425. "feral": {
  52426. name: "Feral",
  52427. },
  52428. }
  52429. ))
  52430. characterMakers.push(() => makeCharacter(
  52431. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  52432. {
  52433. front: {
  52434. height: math.unit(11 + 10/12, "feet"),
  52435. weight: math.unit(1587, "kg"),
  52436. name: "Front",
  52437. image: {
  52438. source: "./media/characters/maple-javira-dragon/front.svg",
  52439. extra: 1136/744,
  52440. bottom: 73/1209
  52441. }
  52442. },
  52443. side: {
  52444. height: math.unit(11 + 10/12, "feet"),
  52445. weight: math.unit(1587, "kg"),
  52446. name: "Side",
  52447. image: {
  52448. source: "./media/characters/maple-javira-dragon/side.svg",
  52449. extra: 712/505,
  52450. bottom: 17/729
  52451. }
  52452. },
  52453. head: {
  52454. height: math.unit(8.05, "feet"),
  52455. name: "Head",
  52456. image: {
  52457. source: "./media/characters/maple-javira-dragon/head.svg",
  52458. extra: 1420/1344,
  52459. bottom: 0/1420
  52460. }
  52461. },
  52462. },
  52463. [
  52464. {
  52465. name: "Normal",
  52466. height: math.unit(11 + 10/12, "feet"),
  52467. default: true
  52468. },
  52469. ]
  52470. ))
  52471. characterMakers.push(() => makeCharacter(
  52472. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  52473. {
  52474. front: {
  52475. height: math.unit(117, "cm"),
  52476. weight: math.unit(50, "kg"),
  52477. name: "Front",
  52478. image: {
  52479. source: "./media/characters/sonia-wyverntail/front.svg",
  52480. extra: 708/592,
  52481. bottom: 25/733
  52482. }
  52483. },
  52484. },
  52485. [
  52486. {
  52487. name: "Normal",
  52488. height: math.unit(117, "cm"),
  52489. default: true
  52490. },
  52491. ]
  52492. ))
  52493. characterMakers.push(() => makeCharacter(
  52494. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  52495. {
  52496. front: {
  52497. height: math.unit(6 + 5/12, "feet"),
  52498. name: "Front",
  52499. image: {
  52500. source: "./media/characters/micah/front.svg",
  52501. extra: 1758/1546,
  52502. bottom: 214/1972
  52503. }
  52504. },
  52505. },
  52506. [
  52507. {
  52508. name: "Normal",
  52509. height: math.unit(6 + 5/12, "feet"),
  52510. default: true
  52511. },
  52512. ]
  52513. ))
  52514. characterMakers.push(() => makeCharacter(
  52515. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  52516. {
  52517. front: {
  52518. height: math.unit(1.75, "meters"),
  52519. weight: math.unit(100, "kg"),
  52520. name: "Front",
  52521. image: {
  52522. source: "./media/characters/zarya/front.svg",
  52523. extra: 741/735,
  52524. bottom: 44/785
  52525. },
  52526. extraAttributes: {
  52527. "tailLength": {
  52528. name: "Tail Length",
  52529. power: 1,
  52530. type: "length",
  52531. base: math.unit(180, "cm")
  52532. },
  52533. "pawLength": {
  52534. name: "Paw Length",
  52535. power: 1,
  52536. type: "length",
  52537. base: math.unit(31, "cm")
  52538. },
  52539. }
  52540. },
  52541. side: {
  52542. height: math.unit(1.75, "meters"),
  52543. weight: math.unit(100, "kg"),
  52544. name: "Side",
  52545. image: {
  52546. source: "./media/characters/zarya/side.svg",
  52547. extra: 776/770,
  52548. bottom: 17/793
  52549. },
  52550. extraAttributes: {
  52551. "tailLength": {
  52552. name: "Tail Length",
  52553. power: 1,
  52554. type: "length",
  52555. base: math.unit(180, "cm")
  52556. },
  52557. "pawLength": {
  52558. name: "Paw Length",
  52559. power: 1,
  52560. type: "length",
  52561. base: math.unit(31, "cm")
  52562. },
  52563. }
  52564. },
  52565. back: {
  52566. height: math.unit(1.75, "meters"),
  52567. weight: math.unit(100, "kg"),
  52568. name: "Back",
  52569. image: {
  52570. source: "./media/characters/zarya/back.svg",
  52571. extra: 741/735,
  52572. bottom: 44/785
  52573. },
  52574. extraAttributes: {
  52575. "tailLength": {
  52576. name: "Tail Length",
  52577. power: 1,
  52578. type: "length",
  52579. base: math.unit(180, "cm")
  52580. },
  52581. "pawLength": {
  52582. name: "Paw Length",
  52583. power: 1,
  52584. type: "length",
  52585. base: math.unit(31, "cm")
  52586. },
  52587. }
  52588. },
  52589. frontNoTail: {
  52590. height: math.unit(1.75, "meters"),
  52591. weight: math.unit(100, "kg"),
  52592. name: "Front (No Tail)",
  52593. image: {
  52594. source: "./media/characters/zarya/front-no-tail.svg",
  52595. extra: 741/735,
  52596. bottom: 44/785
  52597. },
  52598. extraAttributes: {
  52599. "tailLength": {
  52600. name: "Tail Length",
  52601. power: 1,
  52602. type: "length",
  52603. base: math.unit(180, "cm")
  52604. },
  52605. "pawLength": {
  52606. name: "Paw Length",
  52607. power: 1,
  52608. type: "length",
  52609. base: math.unit(31, "cm")
  52610. },
  52611. }
  52612. },
  52613. dressed: {
  52614. height: math.unit(1.75, "meters"),
  52615. weight: math.unit(100, "kg"),
  52616. name: "Dressed",
  52617. image: {
  52618. source: "./media/characters/zarya/dressed.svg",
  52619. extra: 683/672,
  52620. bottom: 79/762
  52621. },
  52622. extraAttributes: {
  52623. "tailLength": {
  52624. name: "Tail Length",
  52625. power: 1,
  52626. type: "length",
  52627. base: math.unit(180, "cm")
  52628. },
  52629. "pawLength": {
  52630. name: "Paw Length",
  52631. power: 1,
  52632. type: "length",
  52633. base: math.unit(31, "cm")
  52634. },
  52635. }
  52636. },
  52637. },
  52638. [
  52639. {
  52640. name: "Micro",
  52641. height: math.unit(5, "cm")
  52642. },
  52643. {
  52644. name: "Normal",
  52645. height: math.unit(1.75, "meters"),
  52646. default: true
  52647. },
  52648. {
  52649. name: "Macro",
  52650. height: math.unit(122, "meters")
  52651. },
  52652. ]
  52653. ))
  52654. characterMakers.push(() => makeCharacter(
  52655. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  52656. {
  52657. front: {
  52658. height: math.unit(7.5, "feet"),
  52659. name: "Front",
  52660. image: {
  52661. source: "./media/characters/sven-hatisson/front.svg",
  52662. extra: 917/857,
  52663. bottom: 42/959
  52664. }
  52665. },
  52666. back: {
  52667. height: math.unit(7.5, "feet"),
  52668. name: "Back",
  52669. image: {
  52670. source: "./media/characters/sven-hatisson/back.svg",
  52671. extra: 903/856,
  52672. bottom: 15/918
  52673. }
  52674. },
  52675. },
  52676. [
  52677. {
  52678. name: "Base Height",
  52679. height: math.unit(7.5, "feet")
  52680. },
  52681. {
  52682. name: "Usual Height",
  52683. height: math.unit(13.5, "feet"),
  52684. default: true
  52685. },
  52686. {
  52687. name: "Smaller Macro",
  52688. height: math.unit(85, "feet")
  52689. },
  52690. {
  52691. name: "Moderate Macro",
  52692. height: math.unit(320, "feet")
  52693. },
  52694. {
  52695. name: "Large Macro",
  52696. height: math.unit(1000, "feet")
  52697. },
  52698. {
  52699. name: "Largest Size",
  52700. height: math.unit(2, "miles")
  52701. },
  52702. ]
  52703. ))
  52704. characterMakers.push(() => makeCharacter(
  52705. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  52706. {
  52707. side: {
  52708. height: math.unit(1.8, "meters"),
  52709. weight: math.unit(275, "kg"),
  52710. name: "Side",
  52711. image: {
  52712. source: "./media/characters/terra/side.svg",
  52713. extra: 1273/1147,
  52714. bottom: 0/1273
  52715. }
  52716. },
  52717. },
  52718. [
  52719. {
  52720. name: "Normal",
  52721. height: math.unit(16.2, "meters"),
  52722. default: true
  52723. },
  52724. ]
  52725. ))
  52726. characterMakers.push(() => makeCharacter(
  52727. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  52728. {
  52729. borzoiFront: {
  52730. height: math.unit(6 + 9/12, "feet"),
  52731. name: "Front",
  52732. image: {
  52733. source: "./media/characters/rae/borzoi-front.svg",
  52734. extra: 1161/1098,
  52735. bottom: 31/1192
  52736. },
  52737. form: "borzoi",
  52738. default: true
  52739. },
  52740. werewolfFront: {
  52741. height: math.unit(8 + 7/12, "feet"),
  52742. name: "Front",
  52743. image: {
  52744. source: "./media/characters/rae/werewolf-front.svg",
  52745. extra: 1411/1334,
  52746. bottom: 127/1538
  52747. },
  52748. form: "werewolf",
  52749. default: true
  52750. },
  52751. },
  52752. [
  52753. {
  52754. name: "Normal",
  52755. height: math.unit(6 + 9/12, "feet"),
  52756. default: true,
  52757. form: "borzoi"
  52758. },
  52759. {
  52760. name: "Normal",
  52761. height: math.unit(8 + 7/12, "feet"),
  52762. default: true,
  52763. form: "werewolf"
  52764. },
  52765. ],
  52766. {
  52767. "borzoi": {
  52768. name: "Borzoi",
  52769. default: true
  52770. },
  52771. "werewolf": {
  52772. name: "Werewolf",
  52773. },
  52774. }
  52775. ))
  52776. characterMakers.push(() => makeCharacter(
  52777. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  52778. {
  52779. front: {
  52780. height: math.unit(8 + 7/12, "feet"),
  52781. weight: math.unit(482, "lb"),
  52782. name: "Front",
  52783. image: {
  52784. source: "./media/characters/kit/front.svg",
  52785. extra: 1247/1103,
  52786. bottom: 41/1288
  52787. }
  52788. },
  52789. back: {
  52790. height: math.unit(8 + 7/12, "feet"),
  52791. weight: math.unit(482, "lb"),
  52792. name: "Back",
  52793. image: {
  52794. source: "./media/characters/kit/back.svg",
  52795. extra: 1252/1123,
  52796. bottom: 21/1273
  52797. }
  52798. },
  52799. paw: {
  52800. height: math.unit(1.46, "feet"),
  52801. name: "Paw",
  52802. image: {
  52803. source: "./media/characters/kit/paw.svg"
  52804. }
  52805. },
  52806. },
  52807. [
  52808. {
  52809. name: "Normal",
  52810. height: math.unit(2.61, "meters"),
  52811. default: true
  52812. },
  52813. {
  52814. name: "\"Tall\"",
  52815. height: math.unit(8.21, "meters")
  52816. },
  52817. {
  52818. name: "Tall",
  52819. height: math.unit(19.6, "meters")
  52820. },
  52821. {
  52822. name: "Very Tall",
  52823. height: math.unit(57.91, "meters")
  52824. },
  52825. {
  52826. name: "Semi-Macro",
  52827. height: math.unit(138.64, "meters")
  52828. },
  52829. {
  52830. name: "Macro",
  52831. height: math.unit(831.99, "meters")
  52832. },
  52833. {
  52834. name: "EX-Macro",
  52835. height: math.unit(96451121, "meters")
  52836. },
  52837. {
  52838. name: "S1-Omnipotent",
  52839. height: math.unit(4.42074e+9, "meters")
  52840. },
  52841. {
  52842. name: "S2-Omnipotent",
  52843. height: math.unit(9.42074e+17, "meters")
  52844. },
  52845. {
  52846. name: "Omnipotent",
  52847. height: math.unit(4.23112e+24, "meters")
  52848. },
  52849. {
  52850. name: "Hypergod",
  52851. height: math.unit(5.05176e+27, "meters")
  52852. },
  52853. {
  52854. name: "Hypergod-EX",
  52855. height: math.unit(9.45532e+49, "meters")
  52856. },
  52857. {
  52858. name: "Hypergod-SP",
  52859. height: math.unit(9.45532e+195, "meters")
  52860. },
  52861. ]
  52862. ))
  52863. characterMakers.push(() => makeCharacter(
  52864. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  52865. {
  52866. side: {
  52867. height: math.unit(0.6, "meters"),
  52868. weight: math.unit(24, "kg"),
  52869. name: "Side",
  52870. image: {
  52871. source: "./media/characters/celeste/side.svg",
  52872. extra: 810/517,
  52873. bottom: 53/863
  52874. }
  52875. },
  52876. },
  52877. [
  52878. {
  52879. name: "Velociraptor",
  52880. height: math.unit(0.6, "meters"),
  52881. default: true
  52882. },
  52883. {
  52884. name: "Utahraptor",
  52885. height: math.unit(1.8, "meters")
  52886. },
  52887. {
  52888. name: "Gallimimus",
  52889. height: math.unit(4.0, "meters")
  52890. },
  52891. {
  52892. name: "Large",
  52893. height: math.unit(20, "meters")
  52894. },
  52895. {
  52896. name: "Planetary",
  52897. height: math.unit(50, "megameters")
  52898. },
  52899. {
  52900. name: "Stellar",
  52901. height: math.unit(1.5, "gigameters")
  52902. },
  52903. {
  52904. name: "Galactic",
  52905. height: math.unit(100, "exameters")
  52906. },
  52907. ]
  52908. ))
  52909. characterMakers.push(() => makeCharacter(
  52910. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  52911. {
  52912. front: {
  52913. height: math.unit(6, "feet"),
  52914. weight: math.unit(210, "lb"),
  52915. name: "Front",
  52916. image: {
  52917. source: "./media/characters/glacia/front.svg",
  52918. extra: 958/901,
  52919. bottom: 45/1003
  52920. }
  52921. },
  52922. },
  52923. [
  52924. {
  52925. name: "Macro",
  52926. height: math.unit(1000, "meters"),
  52927. default: true
  52928. },
  52929. ]
  52930. ))
  52931. characterMakers.push(() => makeCharacter(
  52932. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  52933. {
  52934. front: {
  52935. height: math.unit(4, "meters"),
  52936. name: "Front",
  52937. image: {
  52938. source: "./media/characters/giri/front.svg",
  52939. extra: 966/894,
  52940. bottom: 21/987
  52941. }
  52942. },
  52943. },
  52944. [
  52945. {
  52946. name: "Normal",
  52947. height: math.unit(4, "meters"),
  52948. default: true
  52949. },
  52950. ]
  52951. ))
  52952. characterMakers.push(() => makeCharacter(
  52953. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  52954. {
  52955. back: {
  52956. height: math.unit(4, "feet"),
  52957. weight: math.unit(37, "lb"),
  52958. name: "Back",
  52959. image: {
  52960. source: "./media/characters/tin/back.svg",
  52961. extra: 845/780,
  52962. bottom: 28/873
  52963. }
  52964. },
  52965. },
  52966. [
  52967. {
  52968. name: "Normal",
  52969. height: math.unit(4, "feet"),
  52970. default: true
  52971. },
  52972. ]
  52973. ))
  52974. characterMakers.push(() => makeCharacter(
  52975. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  52976. {
  52977. front: {
  52978. height: math.unit(25, "feet"),
  52979. name: "Front",
  52980. image: {
  52981. source: "./media/characters/cadenza-vivace/front.svg",
  52982. extra: 1842/1578,
  52983. bottom: 30/1872
  52984. }
  52985. },
  52986. },
  52987. [
  52988. {
  52989. name: "Macro",
  52990. height: math.unit(25, "feet"),
  52991. default: true
  52992. },
  52993. ]
  52994. ))
  52995. characterMakers.push(() => makeCharacter(
  52996. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  52997. {
  52998. front: {
  52999. height: math.unit(10, "feet"),
  53000. weight: math.unit(625, "kg"),
  53001. name: "Front",
  53002. image: {
  53003. source: "./media/characters/zain/front.svg",
  53004. extra: 1682/1498,
  53005. bottom: 223/1905
  53006. }
  53007. },
  53008. back: {
  53009. height: math.unit(10, "feet"),
  53010. weight: math.unit(625, "kg"),
  53011. name: "Back",
  53012. image: {
  53013. source: "./media/characters/zain/back.svg",
  53014. extra: 1814/1657,
  53015. bottom: 152/1966
  53016. }
  53017. },
  53018. head: {
  53019. height: math.unit(10, "feet"),
  53020. weight: math.unit(625, "kg"),
  53021. name: "Head",
  53022. image: {
  53023. source: "./media/characters/zain/head.svg",
  53024. extra: 1059/762,
  53025. bottom: 0/1059
  53026. }
  53027. },
  53028. },
  53029. [
  53030. {
  53031. name: "Normal",
  53032. height: math.unit(10, "feet"),
  53033. default: true
  53034. },
  53035. ]
  53036. ))
  53037. characterMakers.push(() => makeCharacter(
  53038. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  53039. {
  53040. front: {
  53041. height: math.unit(6 + 5/12, "feet"),
  53042. weight: math.unit(750, "lb"),
  53043. name: "Front",
  53044. image: {
  53045. source: "./media/characters/ruchex/front.svg",
  53046. extra: 877/820,
  53047. bottom: 17/894
  53048. },
  53049. extraAttributes: {
  53050. "width": {
  53051. name: "Width",
  53052. power: 1,
  53053. type: "length",
  53054. base: math.unit(4.757, "feet")
  53055. },
  53056. }
  53057. },
  53058. },
  53059. [
  53060. {
  53061. name: "Normal",
  53062. height: math.unit(6 + 5/12, "feet"),
  53063. default: true
  53064. },
  53065. ]
  53066. ))
  53067. characterMakers.push(() => makeCharacter(
  53068. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  53069. {
  53070. dressedFront: {
  53071. height: math.unit(191, "cm"),
  53072. weight: math.unit(80, "kg"),
  53073. name: "Front",
  53074. image: {
  53075. source: "./media/characters/buster/dressed-front.svg",
  53076. extra: 1022/973,
  53077. bottom: 69/1091
  53078. }
  53079. },
  53080. dressedBack: {
  53081. height: math.unit(191, "cm"),
  53082. weight: math.unit(80, "kg"),
  53083. name: "Back",
  53084. image: {
  53085. source: "./media/characters/buster/dressed-back.svg",
  53086. extra: 1018/970,
  53087. bottom: 55/1073
  53088. }
  53089. },
  53090. nudeFront: {
  53091. height: math.unit(191, "cm"),
  53092. weight: math.unit(80, "kg"),
  53093. name: "Front (Nude)",
  53094. image: {
  53095. source: "./media/characters/buster/nude-front.svg",
  53096. extra: 1022/973,
  53097. bottom: 69/1091
  53098. }
  53099. },
  53100. nudeBack: {
  53101. height: math.unit(191, "cm"),
  53102. weight: math.unit(80, "kg"),
  53103. name: "Back (Nude)",
  53104. image: {
  53105. source: "./media/characters/buster/nude-back.svg",
  53106. extra: 1018/970,
  53107. bottom: 55/1073
  53108. }
  53109. },
  53110. dick: {
  53111. height: math.unit(2.59, "feet"),
  53112. name: "Dick",
  53113. image: {
  53114. source: "./media/characters/buster/dick.svg"
  53115. }
  53116. },
  53117. ass: {
  53118. height: math.unit(1.2, "feet"),
  53119. name: "Ass",
  53120. image: {
  53121. source: "./media/characters/buster/ass.svg"
  53122. }
  53123. },
  53124. },
  53125. [
  53126. {
  53127. name: "Normal",
  53128. height: math.unit(191, "cm"),
  53129. default: true
  53130. },
  53131. ]
  53132. ))
  53133. characterMakers.push(() => makeCharacter(
  53134. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  53135. {
  53136. side: {
  53137. height: math.unit(8.1, "feet"),
  53138. weight: math.unit(3500, "lb"),
  53139. name: "Side",
  53140. image: {
  53141. source: "./media/characters/sonya/side.svg",
  53142. extra: 1730/1317,
  53143. bottom: 86/1816
  53144. }
  53145. },
  53146. },
  53147. [
  53148. {
  53149. name: "Normal",
  53150. height: math.unit(8.1, "feet"),
  53151. default: true
  53152. },
  53153. ]
  53154. ))
  53155. characterMakers.push(() => makeCharacter(
  53156. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  53157. {
  53158. front: {
  53159. height: math.unit(6, "feet"),
  53160. weight: math.unit(150, "lb"),
  53161. name: "Front",
  53162. image: {
  53163. source: "./media/characters/cadence-andrysiak/front.svg",
  53164. extra: 1164/1121,
  53165. bottom: 60/1224
  53166. }
  53167. },
  53168. back: {
  53169. height: math.unit(6, "feet"),
  53170. weight: math.unit(150, "lb"),
  53171. name: "Back",
  53172. image: {
  53173. source: "./media/characters/cadence-andrysiak/back.svg",
  53174. extra: 1200/1165,
  53175. bottom: 9/1209
  53176. }
  53177. },
  53178. dressed: {
  53179. height: math.unit(6, "feet"),
  53180. weight: math.unit(150, "lb"),
  53181. name: "Dressed",
  53182. image: {
  53183. source: "./media/characters/cadence-andrysiak/dressed.svg",
  53184. extra: 1164/1121,
  53185. bottom: 60/1224
  53186. }
  53187. },
  53188. },
  53189. [
  53190. {
  53191. name: "Micro",
  53192. height: math.unit(1, "mm")
  53193. },
  53194. {
  53195. name: "Normal",
  53196. height: math.unit(6, "feet"),
  53197. default: true
  53198. },
  53199. ]
  53200. ))
  53201. characterMakers.push(() => makeCharacter(
  53202. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  53203. {
  53204. front: {
  53205. height: math.unit(60, "inches"),
  53206. weight: math.unit(16, "lb"),
  53207. preyCapacity: math.unit(80, "liters"),
  53208. name: "Front",
  53209. image: {
  53210. source: "./media/characters/penny-lynx/front.svg",
  53211. extra: 1959/1769,
  53212. bottom: 49/2008
  53213. }
  53214. },
  53215. },
  53216. [
  53217. {
  53218. name: "Nokia",
  53219. height: math.unit(2, "inches")
  53220. },
  53221. {
  53222. name: "Desktop",
  53223. height: math.unit(24, "inches")
  53224. },
  53225. {
  53226. name: "TV",
  53227. height: math.unit(60, "inches")
  53228. },
  53229. {
  53230. name: "Jumbotron",
  53231. height: math.unit(12, "feet")
  53232. },
  53233. {
  53234. name: "Billboard",
  53235. height: math.unit(48, "feet"),
  53236. default: true
  53237. },
  53238. {
  53239. name: "IMAX",
  53240. height: math.unit(96, "feet")
  53241. },
  53242. {
  53243. name: "SINGULARITY",
  53244. height: math.unit(864938, "miles")
  53245. },
  53246. ]
  53247. ))
  53248. characterMakers.push(() => makeCharacter(
  53249. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  53250. {
  53251. front: {
  53252. height: math.unit(5 + 4/12, "feet"),
  53253. weight: math.unit(230, "lb"),
  53254. name: "Front",
  53255. image: {
  53256. source: "./media/characters/sukebe/front.svg",
  53257. extra: 2130/2038,
  53258. bottom: 90/2220
  53259. }
  53260. },
  53261. back: {
  53262. height: math.unit(3.48, "feet"),
  53263. weight: math.unit(230, "lb"),
  53264. name: "Back",
  53265. image: {
  53266. source: "./media/characters/sukebe/back.svg",
  53267. extra: 1670/1604,
  53268. bottom: 0/1670
  53269. }
  53270. },
  53271. },
  53272. [
  53273. {
  53274. name: "Normal",
  53275. height: math.unit(5 + 4/12, "feet"),
  53276. default: true
  53277. },
  53278. ]
  53279. ))
  53280. characterMakers.push(() => makeCharacter(
  53281. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  53282. {
  53283. front: {
  53284. height: math.unit(6, "feet"),
  53285. name: "Front",
  53286. image: {
  53287. source: "./media/characters/nylla/front.svg",
  53288. extra: 1868/1699,
  53289. bottom: 97/1965
  53290. }
  53291. },
  53292. back: {
  53293. height: math.unit(6, "feet"),
  53294. name: "Back",
  53295. image: {
  53296. source: "./media/characters/nylla/back.svg",
  53297. extra: 1889/1712,
  53298. bottom: 93/1982
  53299. }
  53300. },
  53301. frontNsfw: {
  53302. height: math.unit(6, "feet"),
  53303. name: "Front (NSFW)",
  53304. image: {
  53305. source: "./media/characters/nylla/front-nsfw.svg",
  53306. extra: 1868/1699,
  53307. bottom: 97/1965
  53308. },
  53309. extraAttributes: {
  53310. "dickLength": {
  53311. name: "Dick Length",
  53312. power: 1,
  53313. type: "length",
  53314. base: math.unit(1.4, "feet")
  53315. },
  53316. "cumVolume": {
  53317. name: "Cum Volume",
  53318. power: 3,
  53319. type: "volume",
  53320. base: math.unit(100, "mL")
  53321. },
  53322. }
  53323. },
  53324. backNsfw: {
  53325. height: math.unit(6, "feet"),
  53326. name: "Back (NSFW)",
  53327. image: {
  53328. source: "./media/characters/nylla/back-nsfw.svg",
  53329. extra: 1889/1712,
  53330. bottom: 93/1982
  53331. }
  53332. },
  53333. maw: {
  53334. height: math.unit(2.10, "feet"),
  53335. name: "Maw",
  53336. image: {
  53337. source: "./media/characters/nylla/maw.svg"
  53338. }
  53339. },
  53340. paws: {
  53341. height: math.unit(2.06, "feet"),
  53342. name: "Paws",
  53343. image: {
  53344. source: "./media/characters/nylla/paws.svg"
  53345. }
  53346. },
  53347. muzzle: {
  53348. height: math.unit(0.61, "feet"),
  53349. name: "Muzzle",
  53350. image: {
  53351. source: "./media/characters/nylla/muzzle.svg"
  53352. }
  53353. },
  53354. sheath: {
  53355. height: math.unit(1.305, "feet"),
  53356. name: "Sheath",
  53357. image: {
  53358. source: "./media/characters/nylla/sheath.svg"
  53359. }
  53360. },
  53361. },
  53362. [
  53363. {
  53364. name: "Micro",
  53365. height: math.unit(7.5, "inches")
  53366. },
  53367. {
  53368. name: "Normal",
  53369. height: math.unit(7, "feet"),
  53370. default: true
  53371. },
  53372. {
  53373. name: "Macro",
  53374. height: math.unit(60, "feet")
  53375. },
  53376. {
  53377. name: "Mega",
  53378. height: math.unit(200, "feet")
  53379. },
  53380. ]
  53381. ))
  53382. characterMakers.push(() => makeCharacter(
  53383. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  53384. {
  53385. front: {
  53386. height: math.unit(10, "feet"),
  53387. weight: math.unit(2300, "lb"),
  53388. name: "Front",
  53389. image: {
  53390. source: "./media/characters/hunt3r/front.svg",
  53391. extra: 1909/1742,
  53392. bottom: 46/1955
  53393. }
  53394. },
  53395. },
  53396. [
  53397. {
  53398. name: "Normal",
  53399. height: math.unit(10, "feet"),
  53400. default: true
  53401. },
  53402. ]
  53403. ))
  53404. characterMakers.push(() => makeCharacter(
  53405. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  53406. {
  53407. dressed: {
  53408. height: math.unit(11, "feet"),
  53409. weight: math.unit(18500, "lb"),
  53410. preyCapacity: math.unit(9, "people"),
  53411. name: "Dressed",
  53412. image: {
  53413. source: "./media/characters/cylphis/dressed.svg",
  53414. extra: 1028/1003,
  53415. bottom: 75/1103
  53416. },
  53417. },
  53418. undressed: {
  53419. height: math.unit(11, "feet"),
  53420. weight: math.unit(18500, "lb"),
  53421. preyCapacity: math.unit(9, "people"),
  53422. name: "Undressed",
  53423. image: {
  53424. source: "./media/characters/cylphis/undressed.svg",
  53425. extra: 1028/1003,
  53426. bottom: 75/1103
  53427. }
  53428. },
  53429. full: {
  53430. height: math.unit(11, "feet"),
  53431. weight: math.unit(18500 + 150*9, "lb"),
  53432. preyCapacity: math.unit(9, "people"),
  53433. name: "Full",
  53434. image: {
  53435. source: "./media/characters/cylphis/full.svg",
  53436. extra: 1028/1003,
  53437. bottom: 75/1103
  53438. }
  53439. },
  53440. },
  53441. [
  53442. {
  53443. name: "Small",
  53444. height: math.unit(8, "feet")
  53445. },
  53446. {
  53447. name: "Normal",
  53448. height: math.unit(11, "feet"),
  53449. default: true
  53450. },
  53451. ]
  53452. ))
  53453. characterMakers.push(() => makeCharacter(
  53454. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  53455. {
  53456. front: {
  53457. height: math.unit(2 + 7/12, "feet"),
  53458. name: "Front",
  53459. image: {
  53460. source: "./media/characters/orishan/front.svg",
  53461. extra: 1058/1023,
  53462. bottom: 23/1081
  53463. }
  53464. },
  53465. back: {
  53466. height: math.unit(2 + 7/12, "feet"),
  53467. name: "Back",
  53468. image: {
  53469. source: "./media/characters/orishan/back.svg",
  53470. extra: 1058/1023,
  53471. bottom: 23/1081
  53472. }
  53473. },
  53474. },
  53475. [
  53476. {
  53477. name: "Micro",
  53478. height: math.unit(2, "cm")
  53479. },
  53480. {
  53481. name: "Normal",
  53482. height: math.unit(2 + 7/12, "feet"),
  53483. default: true
  53484. },
  53485. ]
  53486. ))
  53487. characterMakers.push(() => makeCharacter(
  53488. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  53489. {
  53490. front: {
  53491. height: math.unit(3, "meters"),
  53492. weight: math.unit(508, "kg"),
  53493. name: "Front",
  53494. image: {
  53495. source: "./media/characters/seranis/front.svg",
  53496. extra: 1478/1454,
  53497. bottom: 41/1519
  53498. }
  53499. },
  53500. },
  53501. [
  53502. {
  53503. name: "Normal",
  53504. height: math.unit(3, "meters"),
  53505. default: true
  53506. },
  53507. {
  53508. name: "Macro",
  53509. height: math.unit(108, "meters")
  53510. },
  53511. {
  53512. name: "Megamacro",
  53513. height: math.unit(1250, "meters")
  53514. },
  53515. ]
  53516. ))
  53517. characterMakers.push(() => makeCharacter(
  53518. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  53519. {
  53520. undressed: {
  53521. height: math.unit(5 + 3/12, "feet"),
  53522. name: "Undressed",
  53523. image: {
  53524. source: "./media/characters/ankou/undressed.svg",
  53525. extra: 1301/1213,
  53526. bottom: 87/1388
  53527. }
  53528. },
  53529. dressed: {
  53530. height: math.unit(5 + 3/12, "feet"),
  53531. name: "Dressed",
  53532. image: {
  53533. source: "./media/characters/ankou/dressed.svg",
  53534. extra: 1301/1213,
  53535. bottom: 87/1388
  53536. }
  53537. },
  53538. head: {
  53539. height: math.unit(1.61, "feet"),
  53540. name: "Head",
  53541. image: {
  53542. source: "./media/characters/ankou/head.svg"
  53543. }
  53544. },
  53545. },
  53546. [
  53547. {
  53548. name: "Normal",
  53549. height: math.unit(5 + 3/12, "feet"),
  53550. default: true
  53551. },
  53552. ]
  53553. ))
  53554. characterMakers.push(() => makeCharacter(
  53555. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  53556. {
  53557. side: {
  53558. height: math.unit(6 + 3/12, "feet"),
  53559. weight: math.unit(200, "kg"),
  53560. name: "Side",
  53561. image: {
  53562. source: "./media/characters/juniper-skunktaur/side.svg",
  53563. extra: 1574/1229,
  53564. bottom: 38/1612
  53565. }
  53566. },
  53567. front: {
  53568. height: math.unit(6 + 3/12, "feet"),
  53569. weight: math.unit(200, "kg"),
  53570. name: "Front",
  53571. image: {
  53572. source: "./media/characters/juniper-skunktaur/front.svg",
  53573. extra: 1337/1278,
  53574. bottom: 22/1359
  53575. }
  53576. },
  53577. back: {
  53578. height: math.unit(6 + 3/12, "feet"),
  53579. weight: math.unit(200, "kg"),
  53580. name: "Back",
  53581. image: {
  53582. source: "./media/characters/juniper-skunktaur/back.svg",
  53583. extra: 1618/1273,
  53584. bottom: 13/1631
  53585. }
  53586. },
  53587. top: {
  53588. height: math.unit(2.62, "feet"),
  53589. weight: math.unit(200, "kg"),
  53590. name: "Top",
  53591. image: {
  53592. source: "./media/characters/juniper-skunktaur/top.svg"
  53593. }
  53594. },
  53595. },
  53596. [
  53597. {
  53598. name: "Normal",
  53599. height: math.unit(6 + 3/12, "feet"),
  53600. default: true
  53601. },
  53602. ]
  53603. ))
  53604. characterMakers.push(() => makeCharacter(
  53605. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  53606. {
  53607. front: {
  53608. height: math.unit(20.5, "feet"),
  53609. name: "Front",
  53610. image: {
  53611. source: "./media/characters/rei/front.svg",
  53612. extra: 1349/1195,
  53613. bottom: 31/1380
  53614. }
  53615. },
  53616. back: {
  53617. height: math.unit(20.5, "feet"),
  53618. name: "Back",
  53619. image: {
  53620. source: "./media/characters/rei/back.svg",
  53621. extra: 1358/1204,
  53622. bottom: 22/1380
  53623. }
  53624. },
  53625. pawsDigi: {
  53626. height: math.unit(3.45, "feet"),
  53627. name: "Paws (Digi)",
  53628. image: {
  53629. source: "./media/characters/rei/paws-digi.svg"
  53630. }
  53631. },
  53632. pawsPlanti: {
  53633. height: math.unit(3.45, "feet"),
  53634. name: "Paws (Planti)",
  53635. image: {
  53636. source: "./media/characters/rei/paws-planti.svg"
  53637. }
  53638. },
  53639. },
  53640. [
  53641. {
  53642. name: "Normal",
  53643. height: math.unit(20.5, "feet"),
  53644. default: true
  53645. },
  53646. ]
  53647. ))
  53648. characterMakers.push(() => makeCharacter(
  53649. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  53650. {
  53651. front: {
  53652. height: math.unit(5 + 11/12, "feet"),
  53653. name: "Front",
  53654. image: {
  53655. source: "./media/characters/carina/front.svg",
  53656. extra: 1720/1449,
  53657. bottom: 14/1734
  53658. }
  53659. },
  53660. back: {
  53661. height: math.unit(5 + 11/12, "feet"),
  53662. name: "Back",
  53663. image: {
  53664. source: "./media/characters/carina/back.svg",
  53665. extra: 1493/1445,
  53666. bottom: 17/1510
  53667. }
  53668. },
  53669. paw: {
  53670. height: math.unit(0.92, "feet"),
  53671. name: "Paw",
  53672. image: {
  53673. source: "./media/characters/carina/paw.svg"
  53674. }
  53675. },
  53676. },
  53677. [
  53678. {
  53679. name: "Normal",
  53680. height: math.unit(5 + 11/12, "feet"),
  53681. default: true
  53682. },
  53683. ]
  53684. ))
  53685. characterMakers.push(() => makeCharacter(
  53686. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  53687. {
  53688. normal_front: {
  53689. height: math.unit(4.88, "meters"),
  53690. name: "Front",
  53691. image: {
  53692. source: "./media/characters/maya/normal-front.svg",
  53693. extra: 1222/1145,
  53694. bottom: 57/1279
  53695. },
  53696. form: "normal",
  53697. default: true
  53698. },
  53699. monstrous_front: {
  53700. height: math.unit(10, "meters"),
  53701. name: "Front",
  53702. image: {
  53703. source: "./media/characters/maya/monstrous-front.svg",
  53704. extra: 1523/1109,
  53705. bottom: 113/1636
  53706. },
  53707. form: "monstrous",
  53708. extraAttributes: {
  53709. "swallowSize": {
  53710. name: "Tailmaw Bite Size",
  53711. power: 3,
  53712. type: "volume",
  53713. base: math.unit(43000, "liters")
  53714. },
  53715. }
  53716. },
  53717. taur_front: {
  53718. height: math.unit(10, "meters"),
  53719. name: "Front",
  53720. image: {
  53721. source: "./media/characters/maya/taur-front.svg",
  53722. extra: 743/506,
  53723. bottom: 101/844
  53724. },
  53725. form: "taur",
  53726. },
  53727. },
  53728. [
  53729. {
  53730. name: "Normal",
  53731. height: math.unit(4.88, "meters"),
  53732. default: true,
  53733. form: "normal"
  53734. },
  53735. {
  53736. name: "Macro",
  53737. height: math.unit(38.1, "meters"),
  53738. form: "normal"
  53739. },
  53740. {
  53741. name: "Macro+",
  53742. height: math.unit(152.4, "meters"),
  53743. form: "normal"
  53744. },
  53745. {
  53746. name: "Macro++",
  53747. height: math.unit(16.09, "km"),
  53748. form: "normal"
  53749. },
  53750. {
  53751. name: "Mega-macro",
  53752. height: math.unit(700, "megameters"),
  53753. form: "normal"
  53754. },
  53755. {
  53756. name: "Satiated",
  53757. height: math.unit(10, "meters"),
  53758. default: true,
  53759. form: "monstrous"
  53760. },
  53761. {
  53762. name: "Hungry",
  53763. height: math.unit(75, "meters"),
  53764. form: "monstrous"
  53765. },
  53766. {
  53767. name: "Ravenous",
  53768. height: math.unit(500, "meters"),
  53769. form: "monstrous"
  53770. },
  53771. {
  53772. name: "\"Normal\"",
  53773. height: math.unit(10, "meters"),
  53774. form: "taur"
  53775. },
  53776. {
  53777. name: "Macro",
  53778. height: math.unit(50, "meters"),
  53779. form: "taur"
  53780. },
  53781. ],
  53782. {
  53783. "normal": {
  53784. name: "Normal",
  53785. default: true
  53786. },
  53787. "monstrous": {
  53788. name: "Monstrous",
  53789. },
  53790. "taur": {
  53791. name: "Taur",
  53792. },
  53793. }
  53794. ))
  53795. characterMakers.push(() => makeCharacter(
  53796. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  53797. {
  53798. front: {
  53799. height: math.unit(6 + 2/12, "feet"),
  53800. weight: math.unit(500, "lb"),
  53801. preyCapacity: math.unit(4, "people"),
  53802. name: "Front",
  53803. image: {
  53804. source: "./media/characters/yepir/front.svg"
  53805. }
  53806. },
  53807. side: {
  53808. height: math.unit(6 + 2/12, "feet"),
  53809. weight: math.unit(500, "lb"),
  53810. preyCapacity: math.unit(4, "people"),
  53811. name: "Side",
  53812. image: {
  53813. source: "./media/characters/yepir/side.svg"
  53814. }
  53815. },
  53816. paw: {
  53817. height: math.unit(1.05, "feet"),
  53818. name: "Paw",
  53819. image: {
  53820. source: "./media/characters/yepir/paw.svg"
  53821. }
  53822. },
  53823. },
  53824. [
  53825. {
  53826. name: "Normal",
  53827. height: math.unit(6 + 2/12, "feet"),
  53828. default: true
  53829. },
  53830. ]
  53831. ))
  53832. characterMakers.push(() => makeCharacter(
  53833. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  53834. {
  53835. front: {
  53836. height: math.unit(5 + 4/12, "feet"),
  53837. name: "Front",
  53838. image: {
  53839. source: "./media/characters/russec/front.svg",
  53840. extra: 1926/1626,
  53841. bottom: 72/1998
  53842. }
  53843. },
  53844. back: {
  53845. height: math.unit(5 + 4/12, "feet"),
  53846. name: "Back",
  53847. image: {
  53848. source: "./media/characters/russec/back.svg",
  53849. extra: 1910/1591,
  53850. bottom: 48/1958
  53851. }
  53852. },
  53853. },
  53854. [
  53855. {
  53856. name: "Small",
  53857. height: math.unit(5 + 4/12, "feet")
  53858. },
  53859. {
  53860. name: "Normal",
  53861. height: math.unit(72, "feet"),
  53862. default: true
  53863. },
  53864. ]
  53865. ))
  53866. characterMakers.push(() => makeCharacter(
  53867. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  53868. {
  53869. side: {
  53870. height: math.unit(12, "feet"),
  53871. name: "Side",
  53872. image: {
  53873. source: "./media/characters/cianus/side.svg",
  53874. extra: 808/526,
  53875. bottom: 61/869
  53876. }
  53877. },
  53878. },
  53879. [
  53880. {
  53881. name: "Normal",
  53882. height: math.unit(12, "feet"),
  53883. default: true
  53884. },
  53885. ]
  53886. ))
  53887. characterMakers.push(() => makeCharacter(
  53888. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  53889. {
  53890. front: {
  53891. height: math.unit(9 + 6/12, "feet"),
  53892. weight: math.unit(300, "lb"),
  53893. name: "Front",
  53894. image: {
  53895. source: "./media/characters/ahab/front.svg",
  53896. extra: 1897/1868,
  53897. bottom: 121/2018
  53898. }
  53899. },
  53900. frontNsfw: {
  53901. height: math.unit(9 + 6/12, "feet"),
  53902. weight: math.unit(300, "lb"),
  53903. name: "Front-nsfw",
  53904. image: {
  53905. source: "./media/characters/ahab/front-nsfw.svg",
  53906. extra: 1897/1868,
  53907. bottom: 121/2018
  53908. }
  53909. },
  53910. },
  53911. [
  53912. {
  53913. name: "Normal",
  53914. height: math.unit(9 + 6/12, "feet")
  53915. },
  53916. {
  53917. name: "Macro",
  53918. height: math.unit(657, "feet"),
  53919. default: true
  53920. },
  53921. ]
  53922. ))
  53923. characterMakers.push(() => makeCharacter(
  53924. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  53925. {
  53926. front: {
  53927. height: math.unit(2.69, "meters"),
  53928. weight: math.unit(132, "kg"),
  53929. name: "Front",
  53930. image: {
  53931. source: "./media/characters/aarkus/front.svg",
  53932. extra: 1400/1231,
  53933. bottom: 34/1434
  53934. }
  53935. },
  53936. back: {
  53937. height: math.unit(2.69, "meters"),
  53938. weight: math.unit(132, "kg"),
  53939. name: "Back",
  53940. image: {
  53941. source: "./media/characters/aarkus/back.svg",
  53942. extra: 1381/1218,
  53943. bottom: 30/1411
  53944. }
  53945. },
  53946. frontNsfw: {
  53947. height: math.unit(2.69, "meters"),
  53948. weight: math.unit(132, "kg"),
  53949. name: "Front (NSFW)",
  53950. image: {
  53951. source: "./media/characters/aarkus/front-nsfw.svg",
  53952. extra: 1400/1231,
  53953. bottom: 34/1434
  53954. }
  53955. },
  53956. foot: {
  53957. height: math.unit(1.45, "feet"),
  53958. name: "Foot",
  53959. image: {
  53960. source: "./media/characters/aarkus/foot.svg"
  53961. }
  53962. },
  53963. head: {
  53964. height: math.unit(2.85, "feet"),
  53965. name: "Head",
  53966. image: {
  53967. source: "./media/characters/aarkus/head.svg"
  53968. }
  53969. },
  53970. headAlt: {
  53971. height: math.unit(3.07, "feet"),
  53972. name: "Head (Alt)",
  53973. image: {
  53974. source: "./media/characters/aarkus/head-alt.svg"
  53975. }
  53976. },
  53977. mouth: {
  53978. height: math.unit(1.25, "feet"),
  53979. name: "Mouth",
  53980. image: {
  53981. source: "./media/characters/aarkus/mouth.svg"
  53982. }
  53983. },
  53984. dick: {
  53985. height: math.unit(1.77, "feet"),
  53986. name: "Dick",
  53987. image: {
  53988. source: "./media/characters/aarkus/dick.svg"
  53989. }
  53990. },
  53991. },
  53992. [
  53993. {
  53994. name: "Normal",
  53995. height: math.unit(2.69, "meters"),
  53996. default: true
  53997. },
  53998. {
  53999. name: "Macro",
  54000. height: math.unit(269, "meters")
  54001. },
  54002. {
  54003. name: "Macro+",
  54004. height: math.unit(672.5, "meters")
  54005. },
  54006. {
  54007. name: "Megamacro",
  54008. height: math.unit(2.017, "km")
  54009. },
  54010. ]
  54011. ))
  54012. characterMakers.push(() => makeCharacter(
  54013. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  54014. {
  54015. front: {
  54016. height: math.unit(23.47, "cm"),
  54017. weight: math.unit(600, "grams"),
  54018. name: "Front",
  54019. image: {
  54020. source: "./media/characters/diode/front.svg",
  54021. extra: 1778/1396,
  54022. bottom: 95/1873
  54023. }
  54024. },
  54025. side: {
  54026. height: math.unit(23.47, "cm"),
  54027. weight: math.unit(600, "grams"),
  54028. name: "Side",
  54029. image: {
  54030. source: "./media/characters/diode/side.svg",
  54031. extra: 1831/1404,
  54032. bottom: 86/1917
  54033. }
  54034. },
  54035. wings: {
  54036. height: math.unit(0.683, "feet"),
  54037. name: "Wings",
  54038. image: {
  54039. source: "./media/characters/diode/wings.svg"
  54040. }
  54041. },
  54042. },
  54043. [
  54044. {
  54045. name: "Normal",
  54046. height: math.unit(23.47, "cm"),
  54047. default: true
  54048. },
  54049. ]
  54050. ))
  54051. characterMakers.push(() => makeCharacter(
  54052. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  54053. {
  54054. front: {
  54055. height: math.unit(6 + 3/12, "feet"),
  54056. weight: math.unit(250, "lb"),
  54057. name: "Front",
  54058. image: {
  54059. source: "./media/characters/reika/front.svg",
  54060. extra: 1120/1078,
  54061. bottom: 86/1206
  54062. }
  54063. },
  54064. },
  54065. [
  54066. {
  54067. name: "Normal",
  54068. height: math.unit(6 + 3/12, "feet"),
  54069. default: true
  54070. },
  54071. ]
  54072. ))
  54073. characterMakers.push(() => makeCharacter(
  54074. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  54075. {
  54076. front: {
  54077. height: math.unit(16 + 8/12, "feet"),
  54078. weight: math.unit(9000, "lb"),
  54079. name: "Front",
  54080. image: {
  54081. source: "./media/characters/lokuto-takama/front.svg",
  54082. extra: 1774/1632,
  54083. bottom: 147/1921
  54084. },
  54085. extraAttributes: {
  54086. "bustWidth": {
  54087. name: "Bust Width",
  54088. power: 1,
  54089. type: "length",
  54090. base: math.unit(2.4, "meters")
  54091. },
  54092. "breastWeight": {
  54093. name: "Breast Weight",
  54094. power: 3,
  54095. type: "mass",
  54096. base: math.unit(1000, "kg")
  54097. },
  54098. }
  54099. },
  54100. },
  54101. [
  54102. {
  54103. name: "Normal",
  54104. height: math.unit(16 + 8/12, "feet"),
  54105. default: true
  54106. },
  54107. ]
  54108. ))
  54109. characterMakers.push(() => makeCharacter(
  54110. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  54111. {
  54112. front: {
  54113. height: math.unit(10, "cm"),
  54114. weight: math.unit(850, "grams"),
  54115. name: "Front",
  54116. image: {
  54117. source: "./media/characters/owak-bone/front.svg",
  54118. extra: 1965/1801,
  54119. bottom: 31/1996
  54120. }
  54121. },
  54122. },
  54123. [
  54124. {
  54125. name: "Normal",
  54126. height: math.unit(10, "cm"),
  54127. default: true
  54128. },
  54129. ]
  54130. ))
  54131. characterMakers.push(() => makeCharacter(
  54132. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  54133. {
  54134. front: {
  54135. height: math.unit(2 + 6/12, "feet"),
  54136. weight: math.unit(9, "lb"),
  54137. name: "Front",
  54138. image: {
  54139. source: "./media/characters/muffin/front.svg",
  54140. extra: 1220/1195,
  54141. bottom: 84/1304
  54142. }
  54143. },
  54144. },
  54145. [
  54146. {
  54147. name: "Normal",
  54148. height: math.unit(2 + 6/12, "feet"),
  54149. default: true
  54150. },
  54151. ]
  54152. ))
  54153. characterMakers.push(() => makeCharacter(
  54154. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  54155. {
  54156. front: {
  54157. height: math.unit(7, "feet"),
  54158. name: "Front",
  54159. image: {
  54160. source: "./media/characters/chimera/front.svg",
  54161. extra: 1752/1614,
  54162. bottom: 68/1820
  54163. }
  54164. },
  54165. },
  54166. [
  54167. {
  54168. name: "Normal",
  54169. height: math.unit(7, "feet")
  54170. },
  54171. {
  54172. name: "Gigamacro",
  54173. height: math.unit(2.9, "gigameters"),
  54174. default: true
  54175. },
  54176. {
  54177. name: "Universal",
  54178. height: math.unit(1.56e26, "yottameters")
  54179. },
  54180. ]
  54181. ))
  54182. characterMakers.push(() => makeCharacter(
  54183. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  54184. {
  54185. front: {
  54186. height: math.unit(3, "feet"),
  54187. weight: math.unit(20, "lb"),
  54188. name: "Front",
  54189. image: {
  54190. source: "./media/characters/kit-fennec-fox/front.svg",
  54191. extra: 1027/932,
  54192. bottom: 16/1043
  54193. }
  54194. },
  54195. back: {
  54196. height: math.unit(3, "feet"),
  54197. weight: math.unit(20, "lb"),
  54198. name: "Back",
  54199. image: {
  54200. source: "./media/characters/kit-fennec-fox/back.svg",
  54201. extra: 1027/932,
  54202. bottom: 16/1043
  54203. }
  54204. },
  54205. },
  54206. [
  54207. {
  54208. name: "Normal",
  54209. height: math.unit(3, "feet"),
  54210. default: true
  54211. },
  54212. ]
  54213. ))
  54214. characterMakers.push(() => makeCharacter(
  54215. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  54216. {
  54217. front: {
  54218. height: math.unit(167, "cm"),
  54219. name: "Front",
  54220. image: {
  54221. source: "./media/characters/blue-otter/front.svg",
  54222. extra: 1951/1920,
  54223. bottom: 31/1982
  54224. }
  54225. },
  54226. },
  54227. [
  54228. {
  54229. name: "Otter-Sized",
  54230. height: math.unit(100, "cm")
  54231. },
  54232. {
  54233. name: "Normal",
  54234. height: math.unit(167, "cm"),
  54235. default: true
  54236. },
  54237. ]
  54238. ))
  54239. characterMakers.push(() => makeCharacter(
  54240. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  54241. {
  54242. front: {
  54243. height: math.unit(4 + 4/12, "feet"),
  54244. name: "Front",
  54245. image: {
  54246. source: "./media/characters/maverick-leopard-gecko/front.svg",
  54247. extra: 1072/1067,
  54248. bottom: 117/1189
  54249. }
  54250. },
  54251. back: {
  54252. height: math.unit(4 + 4/12, "feet"),
  54253. name: "Back",
  54254. image: {
  54255. source: "./media/characters/maverick-leopard-gecko/back.svg",
  54256. extra: 1135/1129,
  54257. bottom: 57/1192
  54258. }
  54259. },
  54260. head: {
  54261. height: math.unit(1.77, "feet"),
  54262. name: "Head",
  54263. image: {
  54264. source: "./media/characters/maverick-leopard-gecko/head.svg"
  54265. }
  54266. },
  54267. },
  54268. [
  54269. {
  54270. name: "Normal",
  54271. height: math.unit(4 + 4/12, "feet"),
  54272. default: true
  54273. },
  54274. ]
  54275. ))
  54276. characterMakers.push(() => makeCharacter(
  54277. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  54278. {
  54279. front: {
  54280. height: math.unit(2, "inches"),
  54281. name: "Front",
  54282. image: {
  54283. source: "./media/characters/carley-hartford/front.svg",
  54284. extra: 1035/988,
  54285. bottom: 23/1058
  54286. }
  54287. },
  54288. back: {
  54289. height: math.unit(2, "inches"),
  54290. name: "Back",
  54291. image: {
  54292. source: "./media/characters/carley-hartford/back.svg",
  54293. extra: 1035/988,
  54294. bottom: 23/1058
  54295. }
  54296. },
  54297. dressed: {
  54298. height: math.unit(2, "inches"),
  54299. name: "Dressed",
  54300. image: {
  54301. source: "./media/characters/carley-hartford/dressed.svg",
  54302. extra: 651/620,
  54303. bottom: 0/651
  54304. }
  54305. },
  54306. },
  54307. [
  54308. {
  54309. name: "Micro",
  54310. height: math.unit(2, "inches"),
  54311. default: true
  54312. },
  54313. {
  54314. name: "Macro",
  54315. height: math.unit(6 + 3/12, "feet")
  54316. },
  54317. ]
  54318. ))
  54319. characterMakers.push(() => makeCharacter(
  54320. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  54321. {
  54322. front: {
  54323. height: math.unit(2 + 3/12, "feet"),
  54324. weight: math.unit(15 + 7/16, "lb"),
  54325. name: "Front",
  54326. image: {
  54327. source: "./media/characters/duke/front.svg",
  54328. extra: 910/815,
  54329. bottom: 30/940
  54330. }
  54331. },
  54332. },
  54333. [
  54334. {
  54335. name: "Normal",
  54336. height: math.unit(2 + 3/12, "feet"),
  54337. default: true
  54338. },
  54339. ]
  54340. ))
  54341. characterMakers.push(() => makeCharacter(
  54342. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  54343. {
  54344. front: {
  54345. height: math.unit(5 + 4/12, "feet"),
  54346. weight: math.unit(156, "lb"),
  54347. name: "Front",
  54348. image: {
  54349. source: "./media/characters/dein/front.svg",
  54350. extra: 855/815,
  54351. bottom: 48/903
  54352. }
  54353. },
  54354. side: {
  54355. height: math.unit(5 + 4/12, "feet"),
  54356. weight: math.unit(156, "lb"),
  54357. name: "side",
  54358. image: {
  54359. source: "./media/characters/dein/side.svg",
  54360. extra: 846/803,
  54361. bottom: 25/871
  54362. }
  54363. },
  54364. maw: {
  54365. height: math.unit(1.45, "feet"),
  54366. name: "Maw",
  54367. image: {
  54368. source: "./media/characters/dein/maw.svg"
  54369. }
  54370. },
  54371. },
  54372. [
  54373. {
  54374. name: "Ferret Sized",
  54375. height: math.unit(2 + 5/12, "feet")
  54376. },
  54377. {
  54378. name: "Normal",
  54379. height: math.unit(5 + 4/12, "feet"),
  54380. default: true
  54381. },
  54382. ]
  54383. ))
  54384. characterMakers.push(() => makeCharacter(
  54385. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  54386. {
  54387. front: {
  54388. height: math.unit(84 + 8/12, "feet"),
  54389. weight: math.unit(942180, "lb"),
  54390. name: "Front",
  54391. image: {
  54392. source: "./media/characters/daurine-arima/front.svg",
  54393. extra: 1989/1782,
  54394. bottom: 37/2026
  54395. }
  54396. },
  54397. side: {
  54398. height: math.unit(84 + 8/12, "feet"),
  54399. weight: math.unit(942180, "lb"),
  54400. name: "Side",
  54401. image: {
  54402. source: "./media/characters/daurine-arima/side.svg",
  54403. extra: 1997/1790,
  54404. bottom: 21/2018
  54405. }
  54406. },
  54407. back: {
  54408. height: math.unit(84 + 8/12, "feet"),
  54409. weight: math.unit(942180, "lb"),
  54410. name: "Back",
  54411. image: {
  54412. source: "./media/characters/daurine-arima/back.svg",
  54413. extra: 1992/1800,
  54414. bottom: 12/2004
  54415. }
  54416. },
  54417. head: {
  54418. height: math.unit(15.5, "feet"),
  54419. name: "Head",
  54420. image: {
  54421. source: "./media/characters/daurine-arima/head.svg"
  54422. }
  54423. },
  54424. headAlt: {
  54425. height: math.unit(19.19, "feet"),
  54426. name: "Head (Alt)",
  54427. image: {
  54428. source: "./media/characters/daurine-arima/head-alt.svg"
  54429. }
  54430. },
  54431. },
  54432. [
  54433. {
  54434. name: "Minimum height",
  54435. height: math.unit(8 + 10/12, "feet")
  54436. },
  54437. {
  54438. name: "Comfort height",
  54439. height: math.unit(19 + 6 /12, "feet")
  54440. },
  54441. {
  54442. name: "\"Normal\" height",
  54443. height: math.unit(28 + 10/12, "feet")
  54444. },
  54445. {
  54446. name: "Base height",
  54447. height: math.unit(84 + 8/12, "feet"),
  54448. default: true
  54449. },
  54450. {
  54451. name: "Mini-macro",
  54452. height: math.unit(2360, "feet")
  54453. },
  54454. {
  54455. name: "Macro",
  54456. height: math.unit(10, "miles")
  54457. },
  54458. {
  54459. name: "Goddess",
  54460. height: math.unit(9.99e40, "yottameters")
  54461. },
  54462. ]
  54463. ))
  54464. characterMakers.push(() => makeCharacter(
  54465. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  54466. {
  54467. front: {
  54468. height: math.unit(2.3, "meters"),
  54469. name: "Front",
  54470. image: {
  54471. source: "./media/characters/cilenomon/front.svg",
  54472. extra: 1963/1778,
  54473. bottom: 54/2017
  54474. }
  54475. },
  54476. },
  54477. [
  54478. {
  54479. name: "Normal",
  54480. height: math.unit(2.3, "meters"),
  54481. default: true
  54482. },
  54483. {
  54484. name: "Big",
  54485. height: math.unit(5, "meters")
  54486. },
  54487. {
  54488. name: "Macro",
  54489. height: math.unit(30, "meters")
  54490. },
  54491. {
  54492. name: "True",
  54493. height: math.unit(1, "universe")
  54494. },
  54495. ]
  54496. ))
  54497. characterMakers.push(() => makeCharacter(
  54498. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  54499. {
  54500. front: {
  54501. height: math.unit(5, "feet"),
  54502. name: "Front",
  54503. image: {
  54504. source: "./media/characters/sen-mink/front.svg",
  54505. extra: 1727/1675,
  54506. bottom: 35/1762
  54507. }
  54508. },
  54509. },
  54510. [
  54511. {
  54512. name: "Normal",
  54513. height: math.unit(5, "feet"),
  54514. default: true
  54515. },
  54516. ]
  54517. ))
  54518. characterMakers.push(() => makeCharacter(
  54519. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  54520. {
  54521. front: {
  54522. height: math.unit(5.42999, "feet"),
  54523. weight: math.unit(100, "lb"),
  54524. name: "Front",
  54525. image: {
  54526. source: "./media/characters/ophois/front.svg",
  54527. extra: 1429/1286,
  54528. bottom: 60/1489
  54529. }
  54530. },
  54531. },
  54532. [
  54533. {
  54534. name: "Normal",
  54535. height: math.unit(5.42999, "feet"),
  54536. default: true
  54537. },
  54538. ]
  54539. ))
  54540. characterMakers.push(() => makeCharacter(
  54541. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  54542. {
  54543. front: {
  54544. height: math.unit(2, "meters"),
  54545. name: "Front",
  54546. image: {
  54547. source: "./media/characters/riley/front.svg",
  54548. extra: 1779/1754,
  54549. bottom: 139/1918
  54550. }
  54551. },
  54552. },
  54553. [
  54554. {
  54555. name: "Normal",
  54556. height: math.unit(2, "meters"),
  54557. default: true
  54558. },
  54559. ]
  54560. ))
  54561. characterMakers.push(() => makeCharacter(
  54562. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  54563. {
  54564. front: {
  54565. height: math.unit(6 + 2/12, "feet"),
  54566. weight: math.unit(195, "lb"),
  54567. preyCapacity: math.unit(6, "people"),
  54568. name: "Front",
  54569. image: {
  54570. source: "./media/characters/shuken-flash/front.svg",
  54571. extra: 1905/1739,
  54572. bottom: 65/1970
  54573. }
  54574. },
  54575. back: {
  54576. height: math.unit(6 + 2/12, "feet"),
  54577. weight: math.unit(195, "lb"),
  54578. preyCapacity: math.unit(6, "people"),
  54579. name: "Back",
  54580. image: {
  54581. source: "./media/characters/shuken-flash/back.svg",
  54582. extra: 1912/1751,
  54583. bottom: 13/1925
  54584. }
  54585. },
  54586. },
  54587. [
  54588. {
  54589. name: "Normal",
  54590. height: math.unit(6 + 2/12, "feet"),
  54591. default: true
  54592. },
  54593. ]
  54594. ))
  54595. characterMakers.push(() => makeCharacter(
  54596. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  54597. {
  54598. front: {
  54599. height: math.unit(5 + 9/12, "feet"),
  54600. weight: math.unit(150, "lb"),
  54601. name: "Front",
  54602. image: {
  54603. source: "./media/characters/plat/front.svg",
  54604. extra: 1816/1703,
  54605. bottom: 43/1859
  54606. }
  54607. },
  54608. side: {
  54609. height: math.unit(5 + 9/12, "feet"),
  54610. weight: math.unit(300, "lb"),
  54611. name: "Side",
  54612. image: {
  54613. source: "./media/characters/plat/side.svg",
  54614. extra: 1824/1699,
  54615. bottom: 18/1842
  54616. }
  54617. },
  54618. },
  54619. [
  54620. {
  54621. name: "Normal",
  54622. height: math.unit(5 + 9/12, "feet"),
  54623. default: true
  54624. },
  54625. ]
  54626. ))
  54627. characterMakers.push(() => makeCharacter(
  54628. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  54629. {
  54630. front: {
  54631. height: math.unit(9, "feet"),
  54632. weight: math.unit(1800, "lb"),
  54633. name: "Front",
  54634. image: {
  54635. source: "./media/characters/elaine/front.svg",
  54636. extra: 1833/1354,
  54637. bottom: 25/1858
  54638. }
  54639. },
  54640. back: {
  54641. height: math.unit(8.8, "feet"),
  54642. weight: math.unit(1800, "lb"),
  54643. name: "Back",
  54644. image: {
  54645. source: "./media/characters/elaine/back.svg",
  54646. extra: 1641/1233,
  54647. bottom: 53/1694
  54648. }
  54649. },
  54650. },
  54651. [
  54652. {
  54653. name: "Normal",
  54654. height: math.unit(9, "feet"),
  54655. default: true
  54656. },
  54657. ]
  54658. ))
  54659. characterMakers.push(() => makeCharacter(
  54660. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  54661. {
  54662. front: {
  54663. height: math.unit(17 + 9/12, "feet"),
  54664. weight: math.unit(8000, "lb"),
  54665. name: "Front",
  54666. image: {
  54667. source: "./media/characters/vera-raven/front.svg",
  54668. extra: 1457/1412,
  54669. bottom: 121/1578
  54670. }
  54671. },
  54672. side: {
  54673. height: math.unit(17 + 9/12, "feet"),
  54674. weight: math.unit(8000, "lb"),
  54675. name: "Side",
  54676. image: {
  54677. source: "./media/characters/vera-raven/side.svg",
  54678. extra: 1510/1464,
  54679. bottom: 54/1564
  54680. }
  54681. },
  54682. },
  54683. [
  54684. {
  54685. name: "Normal",
  54686. height: math.unit(17 + 9/12, "feet"),
  54687. default: true
  54688. },
  54689. ]
  54690. ))
  54691. characterMakers.push(() => makeCharacter(
  54692. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  54693. {
  54694. dressed: {
  54695. height: math.unit(6 + 9/12, "feet"),
  54696. name: "Dressed",
  54697. image: {
  54698. source: "./media/characters/nakisha/dressed.svg",
  54699. extra: 1909/1757,
  54700. bottom: 48/1957
  54701. }
  54702. },
  54703. nude: {
  54704. height: math.unit(6 + 9/12, "feet"),
  54705. name: "Nude",
  54706. image: {
  54707. source: "./media/characters/nakisha/nude.svg",
  54708. extra: 1917/1765,
  54709. bottom: 34/1951
  54710. }
  54711. },
  54712. },
  54713. [
  54714. {
  54715. name: "Normal",
  54716. height: math.unit(6 + 9/12, "feet"),
  54717. default: true
  54718. },
  54719. ]
  54720. ))
  54721. characterMakers.push(() => makeCharacter(
  54722. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  54723. {
  54724. front: {
  54725. height: math.unit(87, "meters"),
  54726. name: "Front",
  54727. image: {
  54728. source: "./media/characters/serafin/front.svg",
  54729. extra: 1919/1776,
  54730. bottom: 65/1984
  54731. }
  54732. },
  54733. },
  54734. [
  54735. {
  54736. name: "Normal",
  54737. height: math.unit(87, "meters"),
  54738. default: true
  54739. },
  54740. ]
  54741. ))
  54742. characterMakers.push(() => makeCharacter(
  54743. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  54744. {
  54745. front: {
  54746. height: math.unit(6, "feet"),
  54747. weight: math.unit(200, "lb"),
  54748. name: "Front",
  54749. image: {
  54750. source: "./media/characters/poptart/front.svg",
  54751. extra: 615/583,
  54752. bottom: 23/638
  54753. }
  54754. },
  54755. back: {
  54756. height: math.unit(6, "feet"),
  54757. weight: math.unit(200, "lb"),
  54758. name: "Back",
  54759. image: {
  54760. source: "./media/characters/poptart/back.svg",
  54761. extra: 617/584,
  54762. bottom: 22/639
  54763. }
  54764. },
  54765. frontNsfw: {
  54766. height: math.unit(6, "feet"),
  54767. weight: math.unit(200, "lb"),
  54768. name: "Front (NSFW)",
  54769. image: {
  54770. source: "./media/characters/poptart/front-nsfw.svg",
  54771. extra: 615/583,
  54772. bottom: 23/638
  54773. }
  54774. },
  54775. backNsfw: {
  54776. height: math.unit(6, "feet"),
  54777. weight: math.unit(200, "lb"),
  54778. name: "Back (NSFW)",
  54779. image: {
  54780. source: "./media/characters/poptart/back-nsfw.svg",
  54781. extra: 617/584,
  54782. bottom: 22/639
  54783. }
  54784. },
  54785. hand: {
  54786. height: math.unit(1.14, "feet"),
  54787. name: "Hand",
  54788. image: {
  54789. source: "./media/characters/poptart/hand.svg"
  54790. }
  54791. },
  54792. foot: {
  54793. height: math.unit(1.5, "feet"),
  54794. name: "Foot",
  54795. image: {
  54796. source: "./media/characters/poptart/foot.svg"
  54797. }
  54798. },
  54799. },
  54800. [
  54801. {
  54802. name: "Normal",
  54803. height: math.unit(6, "feet"),
  54804. default: true
  54805. },
  54806. {
  54807. name: "Grande",
  54808. height: math.unit(350, "feet")
  54809. },
  54810. {
  54811. name: "Massif",
  54812. height: math.unit(967, "feet")
  54813. },
  54814. ]
  54815. ))
  54816. characterMakers.push(() => makeCharacter(
  54817. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  54818. {
  54819. hyenaSide: {
  54820. height: math.unit(120, "cm"),
  54821. weight: math.unit(120, "lb"),
  54822. name: "Side",
  54823. image: {
  54824. source: "./media/characters/trance/hyena-side.svg",
  54825. extra: 998/904,
  54826. bottom: 76/1074
  54827. }
  54828. },
  54829. },
  54830. [
  54831. {
  54832. name: "Normal",
  54833. height: math.unit(120, "cm"),
  54834. default: true
  54835. },
  54836. {
  54837. name: "Dire",
  54838. height: math.unit(230, "cm")
  54839. },
  54840. {
  54841. name: "Macro",
  54842. height: math.unit(37, "feet")
  54843. },
  54844. ]
  54845. ))
  54846. characterMakers.push(() => makeCharacter(
  54847. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  54848. {
  54849. front: {
  54850. height: math.unit(6 + 3/12, "feet"),
  54851. name: "Front",
  54852. image: {
  54853. source: "./media/characters/michael-berretta/front.svg",
  54854. extra: 515/494,
  54855. bottom: 20/535
  54856. }
  54857. },
  54858. back: {
  54859. height: math.unit(6 + 3/12, "feet"),
  54860. name: "Back",
  54861. image: {
  54862. source: "./media/characters/michael-berretta/back.svg",
  54863. extra: 520/497,
  54864. bottom: 21/541
  54865. }
  54866. },
  54867. frontNsfw: {
  54868. height: math.unit(6 + 3/12, "feet"),
  54869. name: "Front (NSFW)",
  54870. image: {
  54871. source: "./media/characters/michael-berretta/front-nsfw.svg",
  54872. extra: 515/494,
  54873. bottom: 20/535
  54874. }
  54875. },
  54876. dick: {
  54877. height: math.unit(1, "feet"),
  54878. name: "Dick",
  54879. image: {
  54880. source: "./media/characters/michael-berretta/dick.svg"
  54881. }
  54882. },
  54883. },
  54884. [
  54885. {
  54886. name: "Normal",
  54887. height: math.unit(6 + 3/12, "feet"),
  54888. default: true
  54889. },
  54890. {
  54891. name: "Big",
  54892. height: math.unit(12, "feet")
  54893. },
  54894. {
  54895. name: "Macro",
  54896. height: math.unit(187.5, "feet")
  54897. },
  54898. ]
  54899. ))
  54900. characterMakers.push(() => makeCharacter(
  54901. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  54902. {
  54903. front: {
  54904. height: math.unit(9 + 9/12, "feet"),
  54905. weight: math.unit(1244, "lb"),
  54906. name: "Front",
  54907. image: {
  54908. source: "./media/characters/stella-edgecomb/front.svg",
  54909. extra: 1835/1706,
  54910. bottom: 49/1884
  54911. }
  54912. },
  54913. pen: {
  54914. height: math.unit(0.95, "feet"),
  54915. name: "Pen",
  54916. image: {
  54917. source: "./media/characters/stella-edgecomb/pen.svg"
  54918. }
  54919. },
  54920. },
  54921. [
  54922. {
  54923. name: "Cozy Bear",
  54924. height: math.unit(0.5, "inches")
  54925. },
  54926. {
  54927. name: "Normal",
  54928. height: math.unit(9 + 9/12, "feet"),
  54929. default: true
  54930. },
  54931. {
  54932. name: "Giga Bear",
  54933. height: math.unit(1, "mile")
  54934. },
  54935. {
  54936. name: "Great Bear",
  54937. height: math.unit(53, "miles")
  54938. },
  54939. {
  54940. name: "Goddess Bear",
  54941. height: math.unit(40000, "miles")
  54942. },
  54943. {
  54944. name: "Sun Bear",
  54945. height: math.unit(900000, "miles")
  54946. },
  54947. ]
  54948. ))
  54949. characterMakers.push(() => makeCharacter(
  54950. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  54951. {
  54952. anthroFront: {
  54953. height: math.unit(556, "cm"),
  54954. weight: math.unit(2650, "kg"),
  54955. preyCapacity: math.unit(3, "people"),
  54956. name: "Front",
  54957. image: {
  54958. source: "./media/characters/ash´iika/front.svg",
  54959. extra: 710/673,
  54960. bottom: 15/725
  54961. },
  54962. form: "anthro",
  54963. default: true
  54964. },
  54965. anthroSide: {
  54966. height: math.unit(556, "cm"),
  54967. weight: math.unit(2650, "kg"),
  54968. preyCapacity: math.unit(3, "people"),
  54969. name: "Side",
  54970. image: {
  54971. source: "./media/characters/ash´iika/side.svg",
  54972. extra: 696/676,
  54973. bottom: 13/709
  54974. },
  54975. form: "anthro"
  54976. },
  54977. anthroDressed: {
  54978. height: math.unit(556, "cm"),
  54979. weight: math.unit(2650, "kg"),
  54980. preyCapacity: math.unit(3, "people"),
  54981. name: "Dressed",
  54982. image: {
  54983. source: "./media/characters/ash´iika/dressed.svg",
  54984. extra: 710/673,
  54985. bottom: 15/725
  54986. },
  54987. form: "anthro"
  54988. },
  54989. anthroHead: {
  54990. height: math.unit(3.5, "feet"),
  54991. name: "Head",
  54992. image: {
  54993. source: "./media/characters/ash´iika/head.svg",
  54994. extra: 348/291,
  54995. bottom: 45/393
  54996. },
  54997. form: "anthro"
  54998. },
  54999. feralSide: {
  55000. height: math.unit(870, "cm"),
  55001. weight: math.unit(17500, "kg"),
  55002. preyCapacity: math.unit(15, "people"),
  55003. name: "Side",
  55004. image: {
  55005. source: "./media/characters/ash´iika/feral.svg",
  55006. extra: 595/199,
  55007. bottom: 7/602
  55008. },
  55009. form: "feral",
  55010. default: true,
  55011. },
  55012. },
  55013. [
  55014. {
  55015. name: "Normal",
  55016. height: math.unit(556, "cm"),
  55017. default: true,
  55018. form: "anthro"
  55019. },
  55020. {
  55021. name: "Macro",
  55022. height: math.unit(88, "meters"),
  55023. form: "anthro"
  55024. },
  55025. {
  55026. name: "Normal",
  55027. height: math.unit(870, "cm"),
  55028. default: true,
  55029. form: "feral"
  55030. },
  55031. {
  55032. name: "Large",
  55033. height: math.unit(25, "meters"),
  55034. form: "feral"
  55035. },
  55036. ],
  55037. {
  55038. "anthro": {
  55039. name: "Anthro",
  55040. default: true
  55041. },
  55042. "feral": {
  55043. name: "Feral",
  55044. },
  55045. }
  55046. ))
  55047. characterMakers.push(() => makeCharacter(
  55048. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  55049. {
  55050. front: {
  55051. height: math.unit(10, "feet"),
  55052. weight: math.unit(800, "lb"),
  55053. name: "Front",
  55054. image: {
  55055. source: "./media/characters/yen/front.svg",
  55056. extra: 443/411,
  55057. bottom: 6/449
  55058. }
  55059. },
  55060. sleeping: {
  55061. height: math.unit(10, "feet"),
  55062. weight: math.unit(800, "lb"),
  55063. name: "Sleeping",
  55064. image: {
  55065. source: "./media/characters/yen/sleeping.svg",
  55066. extra: 470/422,
  55067. bottom: 0/470
  55068. }
  55069. },
  55070. head: {
  55071. height: math.unit(2.2, "feet"),
  55072. name: "Head",
  55073. image: {
  55074. source: "./media/characters/yen/head.svg"
  55075. }
  55076. },
  55077. headAlt: {
  55078. height: math.unit(2.1, "feet"),
  55079. name: "Head (Alt)",
  55080. image: {
  55081. source: "./media/characters/yen/head-alt.svg"
  55082. }
  55083. },
  55084. },
  55085. [
  55086. {
  55087. name: "Normal",
  55088. height: math.unit(10, "feet"),
  55089. default: true
  55090. },
  55091. ]
  55092. ))
  55093. characterMakers.push(() => makeCharacter(
  55094. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  55095. {
  55096. front: {
  55097. height: math.unit(12, "feet"),
  55098. name: "Front",
  55099. image: {
  55100. source: "./media/characters/citra/front.svg",
  55101. extra: 1950/1710,
  55102. bottom: 47/1997
  55103. }
  55104. },
  55105. },
  55106. [
  55107. {
  55108. name: "Normal",
  55109. height: math.unit(12, "feet"),
  55110. default: true
  55111. },
  55112. ]
  55113. ))
  55114. characterMakers.push(() => makeCharacter(
  55115. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  55116. {
  55117. side: {
  55118. height: math.unit(7 + 10/12, "feet"),
  55119. name: "Side",
  55120. image: {
  55121. source: "./media/characters/sholstim/side.svg",
  55122. extra: 786/682,
  55123. bottom: 40/826
  55124. }
  55125. },
  55126. },
  55127. [
  55128. {
  55129. name: "Normal",
  55130. height: math.unit(7 + 10/12, "feet"),
  55131. default: true
  55132. },
  55133. ]
  55134. ))
  55135. characterMakers.push(() => makeCharacter(
  55136. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  55137. {
  55138. front: {
  55139. height: math.unit(3.10, "meters"),
  55140. name: "Front",
  55141. image: {
  55142. source: "./media/characters/aggyn/front.svg",
  55143. extra: 1188/963,
  55144. bottom: 24/1212
  55145. }
  55146. },
  55147. },
  55148. [
  55149. {
  55150. name: "Normal",
  55151. height: math.unit(3.10, "meters"),
  55152. default: true
  55153. },
  55154. ]
  55155. ))
  55156. characterMakers.push(() => makeCharacter(
  55157. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  55158. {
  55159. front: {
  55160. height: math.unit(7 + 5/12, "feet"),
  55161. weight: math.unit(687, "lb"),
  55162. name: "Front",
  55163. image: {
  55164. source: "./media/characters/alsandair-hergenroether/front.svg",
  55165. extra: 1251/1186,
  55166. bottom: 75/1326
  55167. }
  55168. },
  55169. back: {
  55170. height: math.unit(7 + 5/12, "feet"),
  55171. weight: math.unit(687, "lb"),
  55172. name: "Back",
  55173. image: {
  55174. source: "./media/characters/alsandair-hergenroether/back.svg",
  55175. extra: 1290/1229,
  55176. bottom: 17/1307
  55177. }
  55178. },
  55179. },
  55180. [
  55181. {
  55182. name: "Max Compression",
  55183. height: math.unit(7 + 5/12, "feet"),
  55184. default: true
  55185. },
  55186. {
  55187. name: "\"Normal\"",
  55188. height: math.unit(2, "universes")
  55189. },
  55190. ]
  55191. ))
  55192. characterMakers.push(() => makeCharacter(
  55193. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  55194. {
  55195. front: {
  55196. height: math.unit(4 + 1/12, "feet"),
  55197. weight: math.unit(92, "lb"),
  55198. name: "Front",
  55199. image: {
  55200. source: "./media/characters/ie/front.svg",
  55201. extra: 1585/1352,
  55202. bottom: 91/1676
  55203. }
  55204. },
  55205. },
  55206. [
  55207. {
  55208. name: "Normal",
  55209. height: math.unit(4 + 1/12, "feet"),
  55210. default: true
  55211. },
  55212. ]
  55213. ))
  55214. characterMakers.push(() => makeCharacter(
  55215. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  55216. {
  55217. anthro: {
  55218. height: math.unit(6, "feet"),
  55219. weight: math.unit(150, "lb"),
  55220. name: "Front",
  55221. image: {
  55222. source: "./media/characters/willow/anthro.svg",
  55223. extra: 1073/986,
  55224. bottom: 34/1107
  55225. },
  55226. form: "anthro",
  55227. default: true
  55228. },
  55229. taur: {
  55230. height: math.unit(6, "feet"),
  55231. weight: math.unit(150, "lb"),
  55232. name: "Side",
  55233. image: {
  55234. source: "./media/characters/willow/taur.svg",
  55235. extra: 647/512,
  55236. bottom: 136/783
  55237. },
  55238. form: "taur",
  55239. default: true
  55240. },
  55241. },
  55242. [
  55243. {
  55244. name: "Humanoid",
  55245. height: math.unit(2.7, "meters"),
  55246. form: "anthro"
  55247. },
  55248. {
  55249. name: "Normal",
  55250. height: math.unit(9, "meters"),
  55251. form: "anthro",
  55252. default: true
  55253. },
  55254. {
  55255. name: "Humanoid",
  55256. height: math.unit(2.1, "meters"),
  55257. form: "taur"
  55258. },
  55259. {
  55260. name: "Normal",
  55261. height: math.unit(7, "meters"),
  55262. form: "taur",
  55263. default: true
  55264. },
  55265. ],
  55266. {
  55267. "anthro": {
  55268. name: "Anthro",
  55269. default: true
  55270. },
  55271. "taur": {
  55272. name: "Taur",
  55273. },
  55274. }
  55275. ))
  55276. characterMakers.push(() => makeCharacter(
  55277. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  55278. {
  55279. front: {
  55280. height: math.unit(2 + 5/12, "feet"),
  55281. name: "Front",
  55282. image: {
  55283. source: "./media/characters/kyan/front.svg",
  55284. extra: 460/334,
  55285. bottom: 23/483
  55286. },
  55287. extraAttributes: {
  55288. "toeLength": {
  55289. name: "Toe Length",
  55290. power: 1,
  55291. type: "length",
  55292. base: math.unit(7, "cm")
  55293. },
  55294. "toeclawLength": {
  55295. name: "Toeclaw Length",
  55296. power: 1,
  55297. type: "length",
  55298. base: math.unit(4.7, "cm")
  55299. },
  55300. "earHeight": {
  55301. name: "Ear Height",
  55302. power: 1,
  55303. type: "length",
  55304. base: math.unit(14.1, "cm")
  55305. },
  55306. }
  55307. },
  55308. paws: {
  55309. height: math.unit(0.45, "feet"),
  55310. name: "Paws",
  55311. image: {
  55312. source: "./media/characters/kyan/paws.svg",
  55313. extra: 581/581,
  55314. bottom: 114/695
  55315. }
  55316. },
  55317. },
  55318. [
  55319. {
  55320. name: "Normal",
  55321. height: math.unit(2 + 5/12, "feet"),
  55322. default: true
  55323. },
  55324. ]
  55325. ))
  55326. characterMakers.push(() => makeCharacter(
  55327. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  55328. {
  55329. front: {
  55330. height: math.unit(2 + 2/3, "feet"),
  55331. name: "Front",
  55332. image: {
  55333. source: "./media/characters/xazzon/front.svg",
  55334. extra: 1109/984,
  55335. bottom: 42/1151
  55336. }
  55337. },
  55338. back: {
  55339. height: math.unit(2 + 2/3, "feet"),
  55340. name: "Back",
  55341. image: {
  55342. source: "./media/characters/xazzon/back.svg",
  55343. extra: 1095/971,
  55344. bottom: 23/1118
  55345. }
  55346. },
  55347. },
  55348. [
  55349. {
  55350. name: "Normal",
  55351. height: math.unit(2 + 2/3, "feet"),
  55352. default: true
  55353. },
  55354. ]
  55355. ))
  55356. characterMakers.push(() => makeCharacter(
  55357. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  55358. {
  55359. front: {
  55360. height: math.unit(8, "feet"),
  55361. weight: math.unit(300, "lb"),
  55362. name: "Front",
  55363. image: {
  55364. source: "./media/characters/khyla-shadowsong/front.svg",
  55365. extra: 861/798,
  55366. bottom: 32/893
  55367. }
  55368. },
  55369. side: {
  55370. height: math.unit(8, "feet"),
  55371. weight: math.unit(300, "lb"),
  55372. name: "Side",
  55373. image: {
  55374. source: "./media/characters/khyla-shadowsong/side.svg",
  55375. extra: 790/750,
  55376. bottom: 87/877
  55377. }
  55378. },
  55379. back: {
  55380. height: math.unit(8, "feet"),
  55381. weight: math.unit(300, "lb"),
  55382. name: "Back",
  55383. image: {
  55384. source: "./media/characters/khyla-shadowsong/back.svg",
  55385. extra: 855/808,
  55386. bottom: 14/869
  55387. }
  55388. },
  55389. head: {
  55390. height: math.unit(2.7, "feet"),
  55391. name: "Head",
  55392. image: {
  55393. source: "./media/characters/khyla-shadowsong/head.svg"
  55394. }
  55395. },
  55396. },
  55397. [
  55398. {
  55399. name: "Micro",
  55400. height: math.unit(6, "inches")
  55401. },
  55402. {
  55403. name: "Normal",
  55404. height: math.unit(8, "feet"),
  55405. default: true
  55406. },
  55407. ]
  55408. ))
  55409. characterMakers.push(() => makeCharacter(
  55410. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  55411. {
  55412. hyperFront: {
  55413. height: math.unit(9 + 4/12, "feet"),
  55414. weight: math.unit(2000, "lb"),
  55415. name: "Front",
  55416. image: {
  55417. source: "./media/characters/tiden/hyper-front.svg",
  55418. extra: 400/382,
  55419. bottom: 6/406
  55420. },
  55421. form: "hyper",
  55422. },
  55423. regularFront: {
  55424. height: math.unit(7 + 10/12, "feet"),
  55425. weight: math.unit(470, "lb"),
  55426. name: "Front",
  55427. image: {
  55428. source: "./media/characters/tiden/regular-front.svg",
  55429. extra: 468/442,
  55430. bottom: 6/474
  55431. },
  55432. form: "regular",
  55433. },
  55434. },
  55435. [
  55436. {
  55437. name: "Normal",
  55438. height: math.unit(9 + 4/12, "feet"),
  55439. default: true,
  55440. form: "hyper"
  55441. },
  55442. {
  55443. name: "Normal",
  55444. height: math.unit(7 + 10/12, "feet"),
  55445. default: true,
  55446. form: "regular"
  55447. },
  55448. ],
  55449. {
  55450. "hyper": {
  55451. name: "Hyper",
  55452. default: true
  55453. },
  55454. "regular": {
  55455. name: "Regular",
  55456. },
  55457. }
  55458. ))
  55459. characterMakers.push(() => makeCharacter(
  55460. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  55461. {
  55462. side: {
  55463. height: math.unit(6, "feet"),
  55464. weight: math.unit(150, "lb"),
  55465. name: "Side",
  55466. image: {
  55467. source: "./media/characters/jason-crowe/side.svg",
  55468. extra: 1771/766,
  55469. bottom: 219/1990
  55470. }
  55471. },
  55472. },
  55473. [
  55474. {
  55475. name: "Pocket Gryphon",
  55476. height: math.unit(6, "cm")
  55477. },
  55478. {
  55479. name: "Raven",
  55480. height: math.unit(60, "cm")
  55481. },
  55482. {
  55483. name: "Normal",
  55484. height: math.unit(1, "meter"),
  55485. default: true
  55486. },
  55487. ]
  55488. ))
  55489. characterMakers.push(() => makeCharacter(
  55490. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  55491. {
  55492. front: {
  55493. height: math.unit(9 + 6/12, "feet"),
  55494. weight: math.unit(1100, "lb"),
  55495. name: "Front",
  55496. image: {
  55497. source: "./media/characters/django/front.svg",
  55498. extra: 1231/1136,
  55499. bottom: 34/1265
  55500. }
  55501. },
  55502. side: {
  55503. height: math.unit(9 + 6/12, "feet"),
  55504. weight: math.unit(1100, "lb"),
  55505. name: "Side",
  55506. image: {
  55507. source: "./media/characters/django/side.svg",
  55508. extra: 1267/1174,
  55509. bottom: 9/1276
  55510. }
  55511. },
  55512. },
  55513. [
  55514. {
  55515. name: "Normal",
  55516. height: math.unit(9 + 6/12, "feet"),
  55517. default: true
  55518. },
  55519. {
  55520. name: "Macro 1",
  55521. height: math.unit(50, "feet")
  55522. },
  55523. {
  55524. name: "Macro 2",
  55525. height: math.unit(500, "feet")
  55526. },
  55527. {
  55528. name: "Mega Macro",
  55529. height: math.unit(5300, "feet")
  55530. },
  55531. ]
  55532. ))
  55533. characterMakers.push(() => makeCharacter(
  55534. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  55535. {
  55536. frontSfw: {
  55537. height: math.unit(120, "cm"),
  55538. weight: math.unit(15, "kg"),
  55539. name: "Front (SFW)",
  55540. image: {
  55541. source: "./media/characters/eri/front-sfw.svg",
  55542. extra: 1014/939,
  55543. bottom: 37/1051
  55544. },
  55545. form: "moth",
  55546. },
  55547. frontNsfw: {
  55548. height: math.unit(120, "cm"),
  55549. weight: math.unit(15, "kg"),
  55550. name: "Front (NSFW)",
  55551. image: {
  55552. source: "./media/characters/eri/front-nsfw.svg",
  55553. extra: 1014/939,
  55554. bottom: 37/1051
  55555. },
  55556. form: "moth",
  55557. default: true
  55558. },
  55559. egg: {
  55560. height: math.unit(10, "cm"),
  55561. name: "Egg",
  55562. image: {
  55563. source: "./media/characters/eri/egg.svg"
  55564. },
  55565. form: "egg",
  55566. default: true
  55567. },
  55568. },
  55569. [
  55570. {
  55571. name: "Normal",
  55572. height: math.unit(120, "cm"),
  55573. default: true,
  55574. form: "moth"
  55575. },
  55576. {
  55577. name: "Normal",
  55578. height: math.unit(10, "cm"),
  55579. default: true,
  55580. form: "egg"
  55581. },
  55582. ],
  55583. {
  55584. "moth": {
  55585. name: "Moth",
  55586. default: true
  55587. },
  55588. "egg": {
  55589. name: "Egg",
  55590. },
  55591. }
  55592. ))
  55593. characterMakers.push(() => makeCharacter(
  55594. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  55595. {
  55596. front: {
  55597. height: math.unit(200, "feet"),
  55598. name: "Front",
  55599. image: {
  55600. source: "./media/characters/bishop-dowser/front.svg",
  55601. extra: 933/868,
  55602. bottom: 106/1039
  55603. }
  55604. },
  55605. },
  55606. [
  55607. {
  55608. name: "Giant",
  55609. height: math.unit(200, "feet"),
  55610. default: true
  55611. },
  55612. ]
  55613. ))
  55614. characterMakers.push(() => makeCharacter(
  55615. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  55616. {
  55617. front: {
  55618. height: math.unit(2, "meters"),
  55619. preyCapacity: math.unit(3, "people"),
  55620. name: "Front",
  55621. image: {
  55622. source: "./media/characters/fryra/front.svg",
  55623. extra: 1025/948,
  55624. bottom: 30/1055
  55625. },
  55626. extraAttributes: {
  55627. "breastVolume": {
  55628. name: "Breast Volume",
  55629. power: 3,
  55630. type: "volume",
  55631. base: math.unit(8, "liters")
  55632. },
  55633. }
  55634. },
  55635. back: {
  55636. height: math.unit(2, "meters"),
  55637. preyCapacity: math.unit(3, "people"),
  55638. name: "Back",
  55639. image: {
  55640. source: "./media/characters/fryra/back.svg",
  55641. extra: 993/938,
  55642. bottom: 38/1031
  55643. },
  55644. extraAttributes: {
  55645. "breastVolume": {
  55646. name: "Breast Volume",
  55647. power: 3,
  55648. type: "volume",
  55649. base: math.unit(8, "liters")
  55650. },
  55651. }
  55652. },
  55653. head: {
  55654. height: math.unit(1.33, "feet"),
  55655. name: "Head",
  55656. image: {
  55657. source: "./media/characters/fryra/head.svg"
  55658. }
  55659. },
  55660. maw: {
  55661. height: math.unit(0.56, "feet"),
  55662. name: "Maw",
  55663. image: {
  55664. source: "./media/characters/fryra/maw.svg"
  55665. }
  55666. },
  55667. },
  55668. [
  55669. {
  55670. name: "Micro",
  55671. height: math.unit(5, "cm")
  55672. },
  55673. {
  55674. name: "Normal",
  55675. height: math.unit(2, "meters"),
  55676. default: true
  55677. },
  55678. {
  55679. name: "Small Macro",
  55680. height: math.unit(8, "meters")
  55681. },
  55682. {
  55683. name: "Macro",
  55684. height: math.unit(50, "meters")
  55685. },
  55686. {
  55687. name: "Megamacro",
  55688. height: math.unit(1, "km")
  55689. },
  55690. {
  55691. name: "Planetary",
  55692. height: math.unit(300000, "km")
  55693. },
  55694. {
  55695. name: "Universal",
  55696. height: math.unit(250, "lightyears")
  55697. },
  55698. {
  55699. name: "Fabric of Reality",
  55700. height: math.unit(1000, "multiverses")
  55701. },
  55702. ]
  55703. ))
  55704. characterMakers.push(() => makeCharacter(
  55705. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  55706. {
  55707. frontDressed: {
  55708. height: math.unit(6 + 2/12, "feet"),
  55709. name: "Front (Dressed)",
  55710. image: {
  55711. source: "./media/characters/fiera/front-dressed.svg",
  55712. extra: 1883/1793,
  55713. bottom: 70/1953
  55714. }
  55715. },
  55716. backDressed: {
  55717. height: math.unit(6 + 2/12, "feet"),
  55718. name: "Back (Dressed)",
  55719. image: {
  55720. source: "./media/characters/fiera/back-dressed.svg",
  55721. extra: 1847/1780,
  55722. bottom: 70/1917
  55723. }
  55724. },
  55725. frontNude: {
  55726. height: math.unit(6 + 2/12, "feet"),
  55727. name: "Front (Nude)",
  55728. image: {
  55729. source: "./media/characters/fiera/front-nude.svg",
  55730. extra: 1875/1785,
  55731. bottom: 66/1941
  55732. }
  55733. },
  55734. backNude: {
  55735. height: math.unit(6 + 2/12, "feet"),
  55736. name: "Back (Nude)",
  55737. image: {
  55738. source: "./media/characters/fiera/back-nude.svg",
  55739. extra: 1855/1788,
  55740. bottom: 44/1899
  55741. }
  55742. },
  55743. maw: {
  55744. height: math.unit(1.3, "feet"),
  55745. name: "Maw",
  55746. image: {
  55747. source: "./media/characters/fiera/maw.svg"
  55748. }
  55749. },
  55750. paw: {
  55751. height: math.unit(1, "feet"),
  55752. name: "Paw",
  55753. image: {
  55754. source: "./media/characters/fiera/paw.svg"
  55755. }
  55756. },
  55757. shoe: {
  55758. height: math.unit(1.05, "feet"),
  55759. name: "Shoe",
  55760. image: {
  55761. source: "./media/characters/fiera/shoe.svg"
  55762. }
  55763. },
  55764. },
  55765. [
  55766. {
  55767. name: "Normal",
  55768. height: math.unit(6 + 2/12, "feet"),
  55769. default: true
  55770. },
  55771. {
  55772. name: "Size Difference",
  55773. height: math.unit(13, "feet")
  55774. },
  55775. {
  55776. name: "Macro",
  55777. height: math.unit(60, "feet")
  55778. },
  55779. {
  55780. name: "Mega Macro",
  55781. height: math.unit(200, "feet")
  55782. },
  55783. ]
  55784. ))
  55785. characterMakers.push(() => makeCharacter(
  55786. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  55787. {
  55788. back: {
  55789. height: math.unit(6, "feet"),
  55790. name: "Back",
  55791. image: {
  55792. source: "./media/characters/flare/back.svg",
  55793. extra: 1883/1765,
  55794. bottom: 32/1915
  55795. }
  55796. },
  55797. },
  55798. [
  55799. {
  55800. name: "Normal",
  55801. height: math.unit(6 + 2/12, "feet"),
  55802. default: true
  55803. },
  55804. {
  55805. name: "Size Difference",
  55806. height: math.unit(13, "feet")
  55807. },
  55808. {
  55809. name: "Macro",
  55810. height: math.unit(60, "feet")
  55811. },
  55812. {
  55813. name: "Macro 2",
  55814. height: math.unit(100, "feet")
  55815. },
  55816. {
  55817. name: "Mega Macro",
  55818. height: math.unit(200, "feet")
  55819. },
  55820. ]
  55821. ))
  55822. characterMakers.push(() => makeCharacter(
  55823. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  55824. {
  55825. front: {
  55826. height: math.unit(2.2, "m"),
  55827. weight: math.unit(300, "kg"),
  55828. name: "Front",
  55829. image: {
  55830. source: "./media/characters/hanna/front.svg",
  55831. extra: 1696/1502,
  55832. bottom: 206/1902
  55833. }
  55834. },
  55835. },
  55836. [
  55837. {
  55838. name: "Humanoid",
  55839. height: math.unit(2.2, "meters")
  55840. },
  55841. {
  55842. name: "Normal",
  55843. height: math.unit(4.8, "meters"),
  55844. default: true
  55845. },
  55846. ]
  55847. ))
  55848. characterMakers.push(() => makeCharacter(
  55849. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  55850. {
  55851. front: {
  55852. height: math.unit(2.8, "meters"),
  55853. name: "Front",
  55854. image: {
  55855. source: "./media/characters/argo/front.svg",
  55856. extra: 731/518,
  55857. bottom: 84/815
  55858. }
  55859. },
  55860. },
  55861. [
  55862. {
  55863. name: "Normal",
  55864. height: math.unit(3, "meters"),
  55865. default: true
  55866. },
  55867. ]
  55868. ))
  55869. characterMakers.push(() => makeCharacter(
  55870. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  55871. {
  55872. side: {
  55873. height: math.unit(3.8, "meters"),
  55874. name: "Side",
  55875. image: {
  55876. source: "./media/characters/sybil/side.svg",
  55877. extra: 382/361,
  55878. bottom: 25/407
  55879. }
  55880. },
  55881. },
  55882. [
  55883. {
  55884. name: "Normal",
  55885. height: math.unit(3.8, "meters"),
  55886. default: true
  55887. },
  55888. ]
  55889. ))
  55890. characterMakers.push(() => makeCharacter(
  55891. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  55892. {
  55893. side: {
  55894. height: math.unit(6, "meters"),
  55895. name: "Side",
  55896. image: {
  55897. source: "./media/characters/plum/side.svg",
  55898. extra: 858/755,
  55899. bottom: 45/903
  55900. },
  55901. form: "taur",
  55902. default: true
  55903. },
  55904. back: {
  55905. height: math.unit(6.3, "meters"),
  55906. name: "Back",
  55907. image: {
  55908. source: "./media/characters/plum/back.svg",
  55909. extra: 887/813,
  55910. bottom: 32/919
  55911. },
  55912. form: "taur",
  55913. },
  55914. feral: {
  55915. height: math.unit(5.5, "meter"),
  55916. name: "Front",
  55917. image: {
  55918. source: "./media/characters/plum/feral.svg",
  55919. extra: 568/403,
  55920. bottom: 51/619
  55921. },
  55922. form: "feral",
  55923. default: true
  55924. },
  55925. head: {
  55926. height: math.unit(1.46, "meter"),
  55927. name: "Head",
  55928. image: {
  55929. source: "./media/characters/plum/head.svg"
  55930. },
  55931. form: "taur"
  55932. },
  55933. tailTop: {
  55934. height: math.unit(5.6, "meter"),
  55935. name: "Tail (Top)",
  55936. image: {
  55937. source: "./media/characters/plum/tail-top.svg"
  55938. },
  55939. form: "taur",
  55940. },
  55941. tailBottom: {
  55942. height: math.unit(5.6, "meter"),
  55943. name: "Tail (Bottom)",
  55944. image: {
  55945. source: "./media/characters/plum/tail-bottom.svg"
  55946. },
  55947. form: "taur",
  55948. },
  55949. feralHead: {
  55950. height: math.unit(2.56549521, "meter"),
  55951. name: "Head",
  55952. image: {
  55953. source: "./media/characters/plum/head.svg"
  55954. },
  55955. form: "feral"
  55956. },
  55957. feralTailTop: {
  55958. height: math.unit(5.44728435, "meter"),
  55959. name: "Tail (Top)",
  55960. image: {
  55961. source: "./media/characters/plum/tail-top.svg"
  55962. },
  55963. form: "feral",
  55964. },
  55965. feralTailBottom: {
  55966. height: math.unit(5.44728435, "meter"),
  55967. name: "Tail (Bottom)",
  55968. image: {
  55969. source: "./media/characters/plum/tail-bottom.svg"
  55970. },
  55971. form: "feral",
  55972. },
  55973. },
  55974. [
  55975. {
  55976. name: "Normal",
  55977. height: math.unit(6, "meters"),
  55978. default: true,
  55979. form: "taur"
  55980. },
  55981. {
  55982. name: "Normal",
  55983. height: math.unit(5.5, "meters"),
  55984. default: true,
  55985. form: "feral"
  55986. },
  55987. ],
  55988. {
  55989. "taur": {
  55990. name: "Taur",
  55991. default: true
  55992. },
  55993. "feral": {
  55994. name: "Feral",
  55995. },
  55996. }
  55997. ))
  55998. characterMakers.push(() => makeCharacter(
  55999. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  56000. {
  56001. front: {
  56002. height: math.unit(6, "feet"),
  56003. weight: math.unit(115, "lb"),
  56004. name: "Front",
  56005. image: {
  56006. source: "./media/characters/celeste-kitsune/front.svg",
  56007. extra: 393/366,
  56008. bottom: 7/400
  56009. }
  56010. },
  56011. side: {
  56012. height: math.unit(6, "feet"),
  56013. weight: math.unit(115, "lb"),
  56014. name: "Side",
  56015. image: {
  56016. source: "./media/characters/celeste-kitsune/side.svg",
  56017. extra: 818/765,
  56018. bottom: 40/858
  56019. }
  56020. },
  56021. },
  56022. [
  56023. {
  56024. name: "Megamacro",
  56025. height: math.unit(1500, "miles"),
  56026. default: true
  56027. },
  56028. ]
  56029. ))
  56030. characterMakers.push(() => makeCharacter(
  56031. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  56032. {
  56033. front: {
  56034. height: math.unit(8, "meters"),
  56035. name: "Front",
  56036. image: {
  56037. source: "./media/characters/io/front.svg",
  56038. extra: 865/722,
  56039. bottom: 58/923
  56040. }
  56041. },
  56042. back: {
  56043. height: math.unit(8, "meters"),
  56044. name: "Back",
  56045. image: {
  56046. source: "./media/characters/io/back.svg",
  56047. extra: 920/776,
  56048. bottom: 42/962
  56049. }
  56050. },
  56051. head: {
  56052. height: math.unit(5.09, "meters"),
  56053. name: "Head",
  56054. image: {
  56055. source: "./media/characters/io/head.svg"
  56056. }
  56057. },
  56058. hand: {
  56059. height: math.unit(1.6, "meters"),
  56060. name: "Hand",
  56061. image: {
  56062. source: "./media/characters/io/hand.svg"
  56063. }
  56064. },
  56065. foot: {
  56066. height: math.unit(2.4, "meters"),
  56067. name: "Foot",
  56068. image: {
  56069. source: "./media/characters/io/foot.svg"
  56070. }
  56071. },
  56072. },
  56073. [
  56074. {
  56075. name: "Normal",
  56076. height: math.unit(8, "meters"),
  56077. default: true
  56078. },
  56079. ]
  56080. ))
  56081. characterMakers.push(() => makeCharacter(
  56082. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  56083. {
  56084. side: {
  56085. height: math.unit(6 + 3/12, "feet"),
  56086. weight: math.unit(225, "lb"),
  56087. name: "Side",
  56088. image: {
  56089. source: "./media/characters/silas/side.svg",
  56090. extra: 703/653,
  56091. bottom: 23/726
  56092. },
  56093. extraAttributes: {
  56094. "pawLength": {
  56095. name: "Paw Length",
  56096. power: 1,
  56097. type: "length",
  56098. base: math.unit(12, "inches")
  56099. },
  56100. "pawWidth": {
  56101. name: "Paw Width",
  56102. power: 1,
  56103. type: "length",
  56104. base: math.unit(4.5, "inches")
  56105. },
  56106. "pawArea": {
  56107. name: "Paw Area",
  56108. power: 2,
  56109. type: "area",
  56110. base: math.unit(12 * 4.5, "inches^2")
  56111. },
  56112. }
  56113. },
  56114. },
  56115. [
  56116. {
  56117. name: "Normal",
  56118. height: math.unit(6 + 3/12, "feet"),
  56119. default: true
  56120. },
  56121. ]
  56122. ))
  56123. characterMakers.push(() => makeCharacter(
  56124. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  56125. {
  56126. back: {
  56127. height: math.unit(1.6, "meters"),
  56128. weight: math.unit(150, "lb"),
  56129. name: "Back",
  56130. image: {
  56131. source: "./media/characters/zari/back.svg",
  56132. extra: 424/411,
  56133. bottom: 32/456
  56134. },
  56135. extraAttributes: {
  56136. "bladderCapacity": {
  56137. name: "Bladder Size",
  56138. power: 3,
  56139. type: "volume",
  56140. base: math.unit(500, "mL")
  56141. },
  56142. "bladderFlow": {
  56143. name: "Flow Rate",
  56144. power: 3,
  56145. type: "volume",
  56146. base: math.unit(25, "mL")
  56147. },
  56148. }
  56149. },
  56150. },
  56151. [
  56152. {
  56153. name: "Normal",
  56154. height: math.unit(1.6, "meters"),
  56155. default: true
  56156. },
  56157. ]
  56158. ))
  56159. characterMakers.push(() => makeCharacter(
  56160. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  56161. {
  56162. front: {
  56163. height: math.unit(25, "feet"),
  56164. weight: math.unit(5, "tons"),
  56165. name: "Front",
  56166. image: {
  56167. source: "./media/characters/charlie-human/front.svg",
  56168. extra: 1870/1740,
  56169. bottom: 102/1972
  56170. },
  56171. extraAttributes: {
  56172. "dickLength": {
  56173. name: "Dick Length",
  56174. power: 1,
  56175. type: "length",
  56176. base: math.unit(9, "feet")
  56177. },
  56178. }
  56179. },
  56180. back: {
  56181. height: math.unit(25, "feet"),
  56182. weight: math.unit(5, "tons"),
  56183. name: "Back",
  56184. image: {
  56185. source: "./media/characters/charlie-human/back.svg",
  56186. extra: 1858/1733,
  56187. bottom: 105/1963
  56188. },
  56189. extraAttributes: {
  56190. "dickLength": {
  56191. name: "Dick Length",
  56192. power: 1,
  56193. type: "length",
  56194. base: math.unit(9, "feet")
  56195. },
  56196. }
  56197. },
  56198. },
  56199. [
  56200. {
  56201. name: "\"Normal\"",
  56202. height: math.unit(6 + 4/12, "feet")
  56203. },
  56204. {
  56205. name: "Big",
  56206. height: math.unit(25, "feet"),
  56207. default: true
  56208. },
  56209. ]
  56210. ))
  56211. characterMakers.push(() => makeCharacter(
  56212. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  56213. {
  56214. front: {
  56215. height: math.unit(6 + 4/12, "feet"),
  56216. weight: math.unit(320, "lb"),
  56217. name: "Front",
  56218. image: {
  56219. source: "./media/characters/ookitsu/front.svg",
  56220. extra: 1160/976,
  56221. bottom: 38/1198
  56222. }
  56223. },
  56224. frontNsfw: {
  56225. height: math.unit(6 + 4/12, "feet"),
  56226. weight: math.unit(320, "lb"),
  56227. name: "Front (NSFW)",
  56228. image: {
  56229. source: "./media/characters/ookitsu/front-nsfw.svg",
  56230. extra: 1160/976,
  56231. bottom: 38/1198
  56232. }
  56233. },
  56234. back: {
  56235. height: math.unit(6 + 4/12, "feet"),
  56236. weight: math.unit(320, "lb"),
  56237. name: "Back",
  56238. image: {
  56239. source: "./media/characters/ookitsu/back.svg",
  56240. extra: 1030/975,
  56241. bottom: 70/1100
  56242. }
  56243. },
  56244. head: {
  56245. height: math.unit(1.79, "feet"),
  56246. name: "Head",
  56247. image: {
  56248. source: "./media/characters/ookitsu/head.svg"
  56249. }
  56250. },
  56251. hand: {
  56252. height: math.unit(0.92, "feet"),
  56253. name: "Hand",
  56254. image: {
  56255. source: "./media/characters/ookitsu/hand.svg"
  56256. }
  56257. },
  56258. tails: {
  56259. height: math.unit(3.3, "feet"),
  56260. name: "Tails",
  56261. image: {
  56262. source: "./media/characters/ookitsu/tails.svg"
  56263. }
  56264. },
  56265. dick: {
  56266. height: math.unit(1.10833, "feet"),
  56267. name: "Dick",
  56268. image: {
  56269. source: "./media/characters/ookitsu/dick.svg"
  56270. }
  56271. },
  56272. },
  56273. [
  56274. {
  56275. name: "Normal",
  56276. height: math.unit(6 + 4/12, "feet"),
  56277. default: true
  56278. },
  56279. {
  56280. name: "Macro",
  56281. height: math.unit(30, "feet")
  56282. },
  56283. ]
  56284. ))
  56285. characterMakers.push(() => makeCharacter(
  56286. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  56287. {
  56288. anthroFront: {
  56289. height: math.unit(6, "feet"),
  56290. weight: math.unit(250, "lb"),
  56291. name: "Front",
  56292. image: {
  56293. source: "./media/characters/jhusky/anthro-front.svg",
  56294. extra: 474/439,
  56295. bottom: 7/481
  56296. },
  56297. form: "anthro",
  56298. default: true
  56299. },
  56300. taurSideSfw: {
  56301. height: math.unit(6 + 4/12, "feet"),
  56302. weight: math.unit(500, "lb"),
  56303. name: "Side (SFW)",
  56304. image: {
  56305. source: "./media/characters/jhusky/taur-side-sfw.svg",
  56306. extra: 1741/1629,
  56307. bottom: 196/1937
  56308. },
  56309. form: "taur",
  56310. default: true
  56311. },
  56312. taurSideNsfw: {
  56313. height: math.unit(6 + 4/12, "feet"),
  56314. weight: math.unit(500, "lb"),
  56315. name: "Taur (NSFW)",
  56316. image: {
  56317. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  56318. extra: 1741/1629,
  56319. bottom: 196/1937
  56320. },
  56321. form: "taur",
  56322. },
  56323. },
  56324. [
  56325. {
  56326. name: "Huge",
  56327. height: math.unit(500, "feet"),
  56328. form: "anthro"
  56329. },
  56330. {
  56331. name: "Macro",
  56332. height: math.unit(1000, "feet"),
  56333. default: true,
  56334. form: "anthro"
  56335. },
  56336. {
  56337. name: "Megamacro",
  56338. height: math.unit(10000, "feet"),
  56339. form: "anthro"
  56340. },
  56341. {
  56342. name: "Huge",
  56343. height: math.unit(528, "feet"),
  56344. form: "taur"
  56345. },
  56346. {
  56347. name: "Macro",
  56348. height: math.unit(1056, "feet"),
  56349. default: true,
  56350. form: "taur"
  56351. },
  56352. {
  56353. name: "Megamacro",
  56354. height: math.unit(10556, "feet"),
  56355. form: "taur"
  56356. },
  56357. ],
  56358. {
  56359. "anthro": {
  56360. name: "Anthro",
  56361. default: true
  56362. },
  56363. "taur": {
  56364. name: "Taur",
  56365. },
  56366. }
  56367. ))
  56368. characterMakers.push(() => makeCharacter(
  56369. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  56370. {
  56371. front: {
  56372. height: math.unit(8, "feet"),
  56373. weight: math.unit(500, "lb"),
  56374. name: "Front",
  56375. image: {
  56376. source: "./media/characters/armail/front.svg",
  56377. extra: 1753/1669,
  56378. bottom: 155/1908
  56379. }
  56380. },
  56381. back: {
  56382. height: math.unit(8, "feet"),
  56383. weight: math.unit(500, "lb"),
  56384. name: "Back",
  56385. image: {
  56386. source: "./media/characters/armail/back.svg",
  56387. extra: 1872/1803,
  56388. bottom: 63/1935
  56389. }
  56390. },
  56391. },
  56392. [
  56393. {
  56394. name: "Micro",
  56395. height: math.unit(0.25, "feet")
  56396. },
  56397. {
  56398. name: "Normal",
  56399. height: math.unit(8, "feet"),
  56400. default: true
  56401. },
  56402. {
  56403. name: "Mini-macro",
  56404. height: math.unit(30, "feet")
  56405. },
  56406. {
  56407. name: "Macro",
  56408. height: math.unit(400, "feet")
  56409. },
  56410. {
  56411. name: "Mega-macro",
  56412. height: math.unit(6000, "feet")
  56413. },
  56414. ]
  56415. ))
  56416. characterMakers.push(() => makeCharacter(
  56417. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  56418. {
  56419. front: {
  56420. height: math.unit(6 + 7/12, "feet"),
  56421. weight: math.unit(210, "lb"),
  56422. name: "Front",
  56423. image: {
  56424. source: "./media/characters/wilfred-t-buxton/front.svg",
  56425. extra: 1068/882,
  56426. bottom: 28/1096
  56427. }
  56428. },
  56429. },
  56430. [
  56431. {
  56432. name: "Normal",
  56433. height: math.unit(6 + 7/12, "feet"),
  56434. default: true
  56435. },
  56436. ]
  56437. ))
  56438. characterMakers.push(() => makeCharacter(
  56439. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  56440. {
  56441. front: {
  56442. height: math.unit(5 + 2/12, "feet"),
  56443. weight: math.unit(120, "lb"),
  56444. name: "Front",
  56445. image: {
  56446. source: "./media/characters/leighton-marrow/front.svg",
  56447. extra: 441/409,
  56448. bottom: 37/478
  56449. }
  56450. },
  56451. },
  56452. [
  56453. {
  56454. name: "Normal",
  56455. height: math.unit(5 + 2/12, "feet"),
  56456. default: true
  56457. },
  56458. ]
  56459. ))
  56460. characterMakers.push(() => makeCharacter(
  56461. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  56462. {
  56463. front: {
  56464. height: math.unit(4, "meters"),
  56465. weight: math.unit(1200, "kg"),
  56466. name: "Front",
  56467. image: {
  56468. source: "./media/characters/licos/front.svg",
  56469. extra: 1727/1604,
  56470. bottom: 101/1828
  56471. },
  56472. form: "anthro",
  56473. default: true
  56474. },
  56475. taur_side: {
  56476. height: math.unit(20, "meters"),
  56477. weight: math.unit(1100000, "kg"),
  56478. name: "Side",
  56479. image: {
  56480. source: "./media/characters/licos/taur.svg",
  56481. extra: 1158/1091,
  56482. bottom: 80/1238
  56483. },
  56484. form: "taur",
  56485. default: true
  56486. },
  56487. },
  56488. [
  56489. {
  56490. name: "Normal",
  56491. height: math.unit(4, "meters"),
  56492. default: true,
  56493. form: "anthro"
  56494. },
  56495. {
  56496. name: "Normal",
  56497. height: math.unit(20, "meters"),
  56498. default: true,
  56499. form: "taur"
  56500. },
  56501. ],
  56502. {
  56503. "anthro": {
  56504. name: "Anthro",
  56505. default: true
  56506. },
  56507. "taur": {
  56508. name: "Taur",
  56509. },
  56510. }
  56511. ))
  56512. characterMakers.push(() => makeCharacter(
  56513. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  56514. {
  56515. front: {
  56516. height: math.unit(10 + 3/12, "feet"),
  56517. name: "Front",
  56518. image: {
  56519. source: "./media/characters/theo-monkey/front.svg",
  56520. extra: 1735/1658,
  56521. bottom: 73/1808
  56522. }
  56523. },
  56524. back: {
  56525. height: math.unit(10 + 3/12, "feet"),
  56526. name: "Back",
  56527. image: {
  56528. source: "./media/characters/theo-monkey/back.svg",
  56529. extra: 1742/1664,
  56530. bottom: 33/1775
  56531. }
  56532. },
  56533. head: {
  56534. height: math.unit(2.29, "feet"),
  56535. name: "Head",
  56536. image: {
  56537. source: "./media/characters/theo-monkey/head.svg"
  56538. }
  56539. },
  56540. handPalm: {
  56541. height: math.unit(1.73, "feet"),
  56542. name: "Hand (Palm)",
  56543. image: {
  56544. source: "./media/characters/theo-monkey/hand-palm.svg"
  56545. }
  56546. },
  56547. handBack: {
  56548. height: math.unit(1.63, "feet"),
  56549. name: "Hand (Back)",
  56550. image: {
  56551. source: "./media/characters/theo-monkey/hand-back.svg"
  56552. }
  56553. },
  56554. footSole: {
  56555. height: math.unit(2.15, "feet"),
  56556. name: "Foot (Sole)",
  56557. image: {
  56558. source: "./media/characters/theo-monkey/foot-sole.svg"
  56559. }
  56560. },
  56561. footSide: {
  56562. height: math.unit(1.6, "feet"),
  56563. name: "Foot (Side)",
  56564. image: {
  56565. source: "./media/characters/theo-monkey/foot-side.svg"
  56566. }
  56567. },
  56568. },
  56569. [
  56570. {
  56571. name: "Normal",
  56572. height: math.unit(10 + 3/12, "feet"),
  56573. default: true
  56574. },
  56575. ]
  56576. ))
  56577. characterMakers.push(() => makeCharacter(
  56578. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  56579. {
  56580. front: {
  56581. height: math.unit(11, "feet"),
  56582. weight: math.unit(3000, "lb"),
  56583. preyCapacity: math.unit(10, "people"),
  56584. name: "Front",
  56585. image: {
  56586. source: "./media/characters/brook/front.svg",
  56587. extra: 909/835,
  56588. bottom: 108/1017
  56589. }
  56590. },
  56591. back: {
  56592. height: math.unit(11, "feet"),
  56593. weight: math.unit(3000, "lb"),
  56594. preyCapacity: math.unit(10, "people"),
  56595. name: "Back",
  56596. image: {
  56597. source: "./media/characters/brook/back.svg",
  56598. extra: 976/916,
  56599. bottom: 34/1010
  56600. }
  56601. },
  56602. backAlt: {
  56603. height: math.unit(11, "feet"),
  56604. weight: math.unit(3000, "lb"),
  56605. preyCapacity: math.unit(10, "people"),
  56606. name: "Back (Alt)",
  56607. image: {
  56608. source: "./media/characters/brook/back-alt.svg",
  56609. extra: 1283/1213,
  56610. bottom: 35/1318
  56611. }
  56612. },
  56613. bust: {
  56614. height: math.unit(9.0859030837, "feet"),
  56615. weight: math.unit(3000, "lb"),
  56616. preyCapacity: math.unit(10, "people"),
  56617. name: "Bust",
  56618. image: {
  56619. source: "./media/characters/brook/bust.svg",
  56620. extra: 2043/1923,
  56621. bottom: 0/2043
  56622. }
  56623. },
  56624. },
  56625. [
  56626. {
  56627. name: "Small",
  56628. height: math.unit(11, "feet"),
  56629. default: true
  56630. },
  56631. {
  56632. name: "Towering",
  56633. height: math.unit(5, "km")
  56634. },
  56635. {
  56636. name: "Enormous",
  56637. height: math.unit(25, "earths")
  56638. },
  56639. ]
  56640. ))
  56641. characterMakers.push(() => makeCharacter(
  56642. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  56643. {
  56644. front: {
  56645. height: math.unit(4, "feet"),
  56646. weight: math.unit(150, "lb"),
  56647. name: "Front",
  56648. image: {
  56649. source: "./media/characters/squishi/front.svg",
  56650. extra: 1428/1271,
  56651. bottom: 30/1458
  56652. },
  56653. extraAttributes: {
  56654. "pawSize": {
  56655. name: "Paw Size",
  56656. power: 1,
  56657. type: "length",
  56658. base: math.unit(14, "ShoeSizeMensUS"),
  56659. defaultUnit: "ShoeSizeMensUS"
  56660. },
  56661. }
  56662. },
  56663. side: {
  56664. height: math.unit(4, "feet"),
  56665. weight: math.unit(150, "lb"),
  56666. name: "Side",
  56667. image: {
  56668. source: "./media/characters/squishi/side.svg",
  56669. extra: 1428/1271,
  56670. bottom: 30/1458
  56671. },
  56672. extraAttributes: {
  56673. "pawSize": {
  56674. name: "Paw Size",
  56675. power: 1,
  56676. type: "length",
  56677. base: math.unit(14, "ShoeSizeMensUS"),
  56678. defaultUnit: "ShoeSizeMensUS"
  56679. },
  56680. }
  56681. },
  56682. back: {
  56683. height: math.unit(4, "feet"),
  56684. weight: math.unit(150, "lb"),
  56685. name: "Back",
  56686. image: {
  56687. source: "./media/characters/squishi/back.svg",
  56688. extra: 1428/1271,
  56689. bottom: 30/1458
  56690. },
  56691. extraAttributes: {
  56692. "pawSize": {
  56693. name: "Paw Size",
  56694. power: 1,
  56695. type: "length",
  56696. base: math.unit(14, "ShoeSizeMensUS"),
  56697. defaultUnit: "ShoeSizeMensUS"
  56698. },
  56699. }
  56700. },
  56701. },
  56702. [
  56703. {
  56704. name: "Normal",
  56705. height: math.unit(4, "feet"),
  56706. default: true
  56707. },
  56708. ]
  56709. ))
  56710. characterMakers.push(() => makeCharacter(
  56711. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  56712. {
  56713. front: {
  56714. height: math.unit(7 + 8/12, "feet"),
  56715. weight: math.unit(333, "lb"),
  56716. name: "Front",
  56717. image: {
  56718. source: "./media/characters/vincent-vasroc/front.svg",
  56719. extra: 1962/1860,
  56720. bottom: 41/2003
  56721. }
  56722. },
  56723. back: {
  56724. height: math.unit(7 + 8/12, "feet"),
  56725. weight: math.unit(333, "lb"),
  56726. name: "Back",
  56727. image: {
  56728. source: "./media/characters/vincent-vasroc/back.svg",
  56729. extra: 1952/1815,
  56730. bottom: 33/1985
  56731. }
  56732. },
  56733. paw: {
  56734. height: math.unit(1.24, "feet"),
  56735. name: "Paw",
  56736. image: {
  56737. source: "./media/characters/vincent-vasroc/paw.svg"
  56738. }
  56739. },
  56740. ear: {
  56741. height: math.unit(0.75, "feet"),
  56742. name: "Ear",
  56743. image: {
  56744. source: "./media/characters/vincent-vasroc/ear.svg"
  56745. }
  56746. },
  56747. },
  56748. [
  56749. {
  56750. name: "Nano",
  56751. height: math.unit(92, "micrometers")
  56752. },
  56753. {
  56754. name: "Normal",
  56755. height: math.unit(7 + 8/12, "feet"),
  56756. default: true
  56757. },
  56758. ]
  56759. ))
  56760. characterMakers.push(() => makeCharacter(
  56761. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  56762. {
  56763. frontNsfw: {
  56764. height: math.unit(40, "feet"),
  56765. weight: math.unit(58, "tons"),
  56766. name: "Front (NSFW)",
  56767. image: {
  56768. source: "./media/characters/ru-kahn/front-nsfw.svg",
  56769. extra: 1265/965,
  56770. bottom: 155/1420
  56771. }
  56772. },
  56773. frontSfw: {
  56774. height: math.unit(40, "feet"),
  56775. weight: math.unit(58, "tons"),
  56776. name: "Front (SFW)",
  56777. image: {
  56778. source: "./media/characters/ru-kahn/front-sfw.svg",
  56779. extra: 1265/965,
  56780. bottom: 80/1345
  56781. }
  56782. },
  56783. },
  56784. [
  56785. {
  56786. name: "Small",
  56787. height: math.unit(4, "feet")
  56788. },
  56789. {
  56790. name: "Normal",
  56791. height: math.unit(40, "feet"),
  56792. default: true
  56793. },
  56794. {
  56795. name: "Macro",
  56796. height: math.unit(400, "feet")
  56797. },
  56798. ]
  56799. ))
  56800. characterMakers.push(() => makeCharacter(
  56801. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  56802. {
  56803. frontNude: {
  56804. height: math.unit(6 + 5/12, "feet"),
  56805. name: "Front (Nude)",
  56806. image: {
  56807. source: "./media/characters/sylvie-laforge/front-nude.svg",
  56808. extra: 1369/1366,
  56809. bottom: 68/1437
  56810. }
  56811. },
  56812. frontDressed: {
  56813. height: math.unit(6 + 5/12, "feet"),
  56814. name: "Front (Dressed)",
  56815. image: {
  56816. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  56817. extra: 1369/1366,
  56818. bottom: 68/1437
  56819. }
  56820. },
  56821. },
  56822. [
  56823. {
  56824. name: "Normal",
  56825. height: math.unit(6 + 5/12, "feet"),
  56826. default: true
  56827. },
  56828. {
  56829. name: "Maximum",
  56830. height: math.unit(1930, "feet")
  56831. },
  56832. ]
  56833. ))
  56834. characterMakers.push(() => makeCharacter(
  56835. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  56836. {
  56837. front: {
  56838. height: math.unit(5 + 6/12, "feet"),
  56839. name: "Front",
  56840. image: {
  56841. source: "./media/characters/kaja/front.svg",
  56842. extra: 1874/1514,
  56843. bottom: 117/1991
  56844. }
  56845. },
  56846. },
  56847. [
  56848. {
  56849. name: "Normal",
  56850. height: math.unit(5 + 6/12, "feet"),
  56851. default: true
  56852. },
  56853. ]
  56854. ))
  56855. characterMakers.push(() => makeCharacter(
  56856. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  56857. {
  56858. front: {
  56859. height: math.unit(5 + 9/12, "feet"),
  56860. weight: math.unit(200, "lb"),
  56861. name: "Front",
  56862. image: {
  56863. source: "./media/characters/mark-smith/front.svg",
  56864. extra: 1004/943,
  56865. bottom: 58/1062
  56866. }
  56867. },
  56868. back: {
  56869. height: math.unit(5 + 9/12, "feet"),
  56870. weight: math.unit(200, "lb"),
  56871. name: "Back",
  56872. image: {
  56873. source: "./media/characters/mark-smith/back.svg",
  56874. extra: 1023/953,
  56875. bottom: 24/1047
  56876. }
  56877. },
  56878. head: {
  56879. height: math.unit(1.82, "feet"),
  56880. name: "Head",
  56881. image: {
  56882. source: "./media/characters/mark-smith/head.svg"
  56883. }
  56884. },
  56885. hand: {
  56886. height: math.unit(1.4, "feet"),
  56887. name: "Hand",
  56888. image: {
  56889. source: "./media/characters/mark-smith/hand.svg"
  56890. }
  56891. },
  56892. paw: {
  56893. height: math.unit(1.69, "feet"),
  56894. name: "Paw",
  56895. image: {
  56896. source: "./media/characters/mark-smith/paw.svg"
  56897. }
  56898. },
  56899. },
  56900. [
  56901. {
  56902. name: "Micro",
  56903. height: math.unit(0.25, "inches")
  56904. },
  56905. {
  56906. name: "Normal",
  56907. height: math.unit(5 + 9/12, "feet"),
  56908. default: true
  56909. },
  56910. {
  56911. name: "Macro",
  56912. height: math.unit(500, "feet")
  56913. },
  56914. ]
  56915. ))
  56916. characterMakers.push(() => makeCharacter(
  56917. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  56918. {
  56919. frontNude: {
  56920. height: math.unit(6, "feet"),
  56921. name: "Front (Nude)",
  56922. image: {
  56923. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  56924. extra: 1384/1321,
  56925. bottom: 57/1441
  56926. }
  56927. },
  56928. frontDressed: {
  56929. height: math.unit(6, "feet"),
  56930. name: "Front (Dressed)",
  56931. image: {
  56932. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  56933. extra: 1384/1321,
  56934. bottom: 57/1441
  56935. }
  56936. },
  56937. },
  56938. [
  56939. {
  56940. name: "Normal",
  56941. height: math.unit(6, "feet"),
  56942. default: true
  56943. },
  56944. {
  56945. name: "Maximum",
  56946. height: math.unit(1776, "feet")
  56947. },
  56948. ]
  56949. ))
  56950. characterMakers.push(() => makeCharacter(
  56951. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  56952. {
  56953. front: {
  56954. height: math.unit(2 + 4/12, "feet"),
  56955. weight: math.unit(350, "lb"),
  56956. name: "Front",
  56957. image: {
  56958. source: "./media/characters/devos/front.svg",
  56959. extra: 958/852,
  56960. bottom: 143/1101
  56961. }
  56962. },
  56963. },
  56964. [
  56965. {
  56966. name: "Base",
  56967. height: math.unit(2 + 4/12, "feet"),
  56968. default: true
  56969. },
  56970. ]
  56971. ))
  56972. characterMakers.push(() => makeCharacter(
  56973. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  56974. {
  56975. front: {
  56976. height: math.unit(9 + 2/12, "feet"),
  56977. name: "Front",
  56978. image: {
  56979. source: "./media/characters/hiveheart/front.svg",
  56980. extra: 394/364,
  56981. bottom: 65/459
  56982. }
  56983. },
  56984. back: {
  56985. height: math.unit(9 + 2/12, "feet"),
  56986. name: "Back",
  56987. image: {
  56988. source: "./media/characters/hiveheart/back.svg",
  56989. extra: 374/357,
  56990. bottom: 63/437
  56991. }
  56992. },
  56993. },
  56994. [
  56995. {
  56996. name: "Base",
  56997. height: math.unit(9 + 2/12, "feet"),
  56998. default: true
  56999. },
  57000. ]
  57001. ))
  57002. characterMakers.push(() => makeCharacter(
  57003. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  57004. {
  57005. front: {
  57006. height: math.unit(2.5, "inches"),
  57007. weight: math.unit(0.6, "oz"),
  57008. name: "Front",
  57009. image: {
  57010. source: "./media/characters/bryn/front.svg",
  57011. extra: 1484/1119,
  57012. bottom: 66/1550
  57013. }
  57014. },
  57015. back: {
  57016. height: math.unit(2.5, "inches"),
  57017. weight: math.unit(0.6, "oz"),
  57018. name: "Back",
  57019. image: {
  57020. source: "./media/characters/bryn/back.svg",
  57021. extra: 1472/1170,
  57022. bottom: 32/1504
  57023. }
  57024. },
  57025. wings: {
  57026. height: math.unit(2.5, "inches"),
  57027. weight: math.unit(0.6, "oz"),
  57028. name: "Wings",
  57029. image: {
  57030. source: "./media/characters/bryn/wings.svg",
  57031. extra: 567/448,
  57032. bottom: 10/577
  57033. }
  57034. },
  57035. dressed: {
  57036. height: math.unit(2.5, "inches"),
  57037. weight: math.unit(0.6, "oz"),
  57038. name: "Dressed",
  57039. image: {
  57040. source: "./media/characters/bryn/dressed.svg",
  57041. extra: 719/589,
  57042. bottom: 54/773
  57043. }
  57044. },
  57045. head: {
  57046. height: math.unit(1.75, "inches"),
  57047. name: "Head",
  57048. image: {
  57049. source: "./media/characters/bryn/head.svg"
  57050. }
  57051. },
  57052. foot: {
  57053. height: math.unit(0.4, "inches"),
  57054. name: "Foot",
  57055. image: {
  57056. source: "./media/characters/bryn/foot.svg"
  57057. }
  57058. },
  57059. },
  57060. [
  57061. {
  57062. name: "Normal",
  57063. height: math.unit(2.5, "inches"),
  57064. default: true
  57065. },
  57066. ]
  57067. ))
  57068. characterMakers.push(() => makeCharacter(
  57069. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  57070. {
  57071. side: {
  57072. height: math.unit(7, "feet"),
  57073. weight: math.unit(657, "kg"),
  57074. name: "Side",
  57075. image: {
  57076. source: "./media/characters/delta/side.svg",
  57077. extra: 781/212,
  57078. bottom: 7/788
  57079. },
  57080. extraAttributes: {
  57081. "wingspan": {
  57082. name: "Wingspan",
  57083. power: 1,
  57084. type: "length",
  57085. base: math.unit(48, "feet")
  57086. },
  57087. "length": {
  57088. name: "Length",
  57089. power: 1,
  57090. type: "length",
  57091. base: math.unit(21, "feet")
  57092. },
  57093. "pawSize": {
  57094. name: "Paw Size",
  57095. power: 2,
  57096. type: "area",
  57097. base: math.unit(1.5*1.4, "feet^2")
  57098. },
  57099. }
  57100. },
  57101. },
  57102. [
  57103. {
  57104. name: "Normal",
  57105. height: math.unit(6, "feet"),
  57106. default: true
  57107. },
  57108. ]
  57109. ))
  57110. characterMakers.push(() => makeCharacter(
  57111. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  57112. {
  57113. front: {
  57114. height: math.unit(6, "feet"),
  57115. name: "Front",
  57116. image: {
  57117. source: "./media/characters/pyrow/front.svg",
  57118. extra: 513/486,
  57119. bottom: 14/527
  57120. }
  57121. },
  57122. frontWing: {
  57123. height: math.unit(6, "feet"),
  57124. name: "Front (Wing)",
  57125. image: {
  57126. source: "./media/characters/pyrow/front-wing.svg",
  57127. extra: 539/383,
  57128. bottom: 20/559
  57129. }
  57130. },
  57131. back: {
  57132. height: math.unit(6, "feet"),
  57133. name: "Back",
  57134. image: {
  57135. source: "./media/characters/pyrow/back.svg",
  57136. extra: 500/473,
  57137. bottom: 9/509
  57138. }
  57139. },
  57140. },
  57141. [
  57142. {
  57143. name: "Normal",
  57144. height: math.unit(6, "feet"),
  57145. default: true
  57146. },
  57147. ]
  57148. ))
  57149. characterMakers.push(() => makeCharacter(
  57150. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  57151. {
  57152. front: {
  57153. height: math.unit(5, "meters"),
  57154. weight: math.unit(3, "tonnes"),
  57155. name: "Front",
  57156. image: {
  57157. source: "./media/characters/velikan/front.svg",
  57158. extra: 867/744,
  57159. bottom: 71/938
  57160. },
  57161. extraAttributes: {
  57162. "shoeSize": {
  57163. name: "Shoe Size",
  57164. power: 1,
  57165. type: "length",
  57166. base: math.unit(135, "ShoeSizeUK"),
  57167. defaultUnit: "ShoeSizeUK"
  57168. },
  57169. }
  57170. },
  57171. },
  57172. [
  57173. {
  57174. name: "Normal",
  57175. height: math.unit(5, "meters"),
  57176. default: true
  57177. },
  57178. {
  57179. name: "Macro",
  57180. height: math.unit(1, "km")
  57181. },
  57182. {
  57183. name: "Mega Macro",
  57184. height: math.unit(100, "km")
  57185. },
  57186. {
  57187. name: "Giga Macro",
  57188. height: math.unit(2, "megameters")
  57189. },
  57190. {
  57191. name: "Planetary",
  57192. height: math.unit(22, "megameters")
  57193. },
  57194. {
  57195. name: "Solar",
  57196. height: math.unit(8, "gigameters")
  57197. },
  57198. {
  57199. name: "Cosmic",
  57200. height: math.unit(10, "zettameters")
  57201. },
  57202. {
  57203. name: "Omni",
  57204. height: math.unit(9e260, "multiverses")
  57205. },
  57206. ]
  57207. ))
  57208. characterMakers.push(() => makeCharacter(
  57209. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  57210. {
  57211. front: {
  57212. height: math.unit(4 + 3/12, "feet"),
  57213. weight: math.unit(90, "lb"),
  57214. name: "Front",
  57215. image: {
  57216. source: "./media/characters/sabiki/front.svg",
  57217. extra: 1662/1423,
  57218. bottom: 65/1727
  57219. }
  57220. },
  57221. },
  57222. [
  57223. {
  57224. name: "Normal",
  57225. height: math.unit(4 + 3/12, "feet"),
  57226. default: true
  57227. },
  57228. ]
  57229. ))
  57230. characterMakers.push(() => makeCharacter(
  57231. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  57232. {
  57233. frontSfw: {
  57234. height: math.unit(2, "mm"),
  57235. name: "Front (SFW)",
  57236. image: {
  57237. source: "./media/characters/carmel/front-sfw.svg",
  57238. extra: 1131/1006,
  57239. bottom: 66/1197
  57240. }
  57241. },
  57242. frontNsfw: {
  57243. height: math.unit(2, "mm"),
  57244. name: "Front (NSFW)",
  57245. image: {
  57246. source: "./media/characters/carmel/front-nsfw.svg",
  57247. extra: 1131/1006,
  57248. bottom: 66/1197
  57249. }
  57250. },
  57251. foot: {
  57252. height: math.unit(0.3, "mm"),
  57253. name: "Foot",
  57254. image: {
  57255. source: "./media/characters/carmel/foot.svg"
  57256. }
  57257. },
  57258. tongue: {
  57259. height: math.unit(0.71, "mm"),
  57260. name: "Tongue",
  57261. image: {
  57262. source: "./media/characters/carmel/tongue.svg"
  57263. }
  57264. },
  57265. dick: {
  57266. height: math.unit(0.085, "mm"),
  57267. name: "Dick",
  57268. image: {
  57269. source: "./media/characters/carmel/dick.svg"
  57270. }
  57271. },
  57272. },
  57273. [
  57274. {
  57275. name: "Micro",
  57276. height: math.unit(2, "mm"),
  57277. default: true
  57278. },
  57279. {
  57280. name: "Normal",
  57281. height: math.unit(4 + 8/12, "feet")
  57282. },
  57283. {
  57284. name: "Mega Macro",
  57285. height: math.unit(250, "feet")
  57286. },
  57287. {
  57288. name: "BIGGER",
  57289. height: math.unit(1000, "feet")
  57290. },
  57291. {
  57292. name: "BIGGEST",
  57293. height: math.unit(2, "miles")
  57294. },
  57295. ]
  57296. ))
  57297. characterMakers.push(() => makeCharacter(
  57298. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  57299. {
  57300. front: {
  57301. height: math.unit(6.5, "feet"),
  57302. weight: math.unit(198, "lb"),
  57303. name: "Front",
  57304. image: {
  57305. source: "./media/characters/tamani/anthro.svg",
  57306. extra: 930/890,
  57307. bottom: 34/964
  57308. },
  57309. form: "anthro",
  57310. default: true
  57311. },
  57312. side: {
  57313. height: math.unit(6, "feet"),
  57314. weight: math.unit(198*2, "lb"),
  57315. name: "Side",
  57316. image: {
  57317. source: "./media/characters/tamani/feral.svg",
  57318. extra: 559/519,
  57319. bottom: 43/602
  57320. },
  57321. form: "feral"
  57322. },
  57323. },
  57324. [
  57325. {
  57326. name: "Normal",
  57327. height: math.unit(6.5, "feet"),
  57328. default: true,
  57329. form: "anthro"
  57330. },
  57331. {
  57332. name: "Normal",
  57333. height: math.unit(6, "feet"),
  57334. default: true,
  57335. form: "feral"
  57336. },
  57337. ],
  57338. {
  57339. "anthro": {
  57340. name: "Anthro",
  57341. default: true
  57342. },
  57343. "feral": {
  57344. name: "Feral",
  57345. },
  57346. }
  57347. ))
  57348. characterMakers.push(() => makeCharacter(
  57349. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  57350. {
  57351. front: {
  57352. height: math.unit(4 + 1/12, "feet"),
  57353. weight: math.unit(114, "lb"),
  57354. name: "Front",
  57355. image: {
  57356. source: "./media/characters/dex/front.svg",
  57357. extra: 787/680,
  57358. bottom: 18/805
  57359. }
  57360. },
  57361. side: {
  57362. height: math.unit(4 + 1/12, "feet"),
  57363. weight: math.unit(114, "lb"),
  57364. name: "Side",
  57365. image: {
  57366. source: "./media/characters/dex/side.svg",
  57367. extra: 785/680,
  57368. bottom: 12/797
  57369. }
  57370. },
  57371. back: {
  57372. height: math.unit(4 + 1/12, "feet"),
  57373. weight: math.unit(114, "lb"),
  57374. name: "Back",
  57375. image: {
  57376. source: "./media/characters/dex/back.svg",
  57377. extra: 785/681,
  57378. bottom: 17/802
  57379. }
  57380. },
  57381. loungewear: {
  57382. height: math.unit(4 + 1/12, "feet"),
  57383. weight: math.unit(114, "lb"),
  57384. name: "Loungewear",
  57385. image: {
  57386. source: "./media/characters/dex/loungewear.svg",
  57387. extra: 787/680,
  57388. bottom: 18/805
  57389. }
  57390. },
  57391. workout: {
  57392. height: math.unit(4 + 1/12, "feet"),
  57393. weight: math.unit(114, "lb"),
  57394. name: "Workout",
  57395. image: {
  57396. source: "./media/characters/dex/workout.svg",
  57397. extra: 787/680,
  57398. bottom: 18/805
  57399. }
  57400. },
  57401. schoolUniform: {
  57402. height: math.unit(4 + 1/12, "feet"),
  57403. weight: math.unit(114, "lb"),
  57404. name: "School-uniform",
  57405. image: {
  57406. source: "./media/characters/dex/school-uniform.svg",
  57407. extra: 787/680,
  57408. bottom: 18/805
  57409. }
  57410. },
  57411. maw: {
  57412. height: math.unit(0.55, "feet"),
  57413. name: "Maw",
  57414. image: {
  57415. source: "./media/characters/dex/maw.svg"
  57416. }
  57417. },
  57418. paw: {
  57419. height: math.unit(0.87, "feet"),
  57420. name: "Paw",
  57421. image: {
  57422. source: "./media/characters/dex/paw.svg"
  57423. }
  57424. },
  57425. bust: {
  57426. height: math.unit(1.67, "feet"),
  57427. name: "Bust",
  57428. image: {
  57429. source: "./media/characters/dex/bust.svg"
  57430. }
  57431. },
  57432. },
  57433. [
  57434. {
  57435. name: "Normal",
  57436. height: math.unit(4 + 1/12, "feet"),
  57437. default: true
  57438. },
  57439. ]
  57440. ))
  57441. characterMakers.push(() => makeCharacter(
  57442. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  57443. {
  57444. front: {
  57445. height: math.unit(4 + 3/12, "feet"),
  57446. weight: math.unit(60, "lb"),
  57447. name: "Front",
  57448. image: {
  57449. source: "./media/characters/silke/front.svg",
  57450. extra: 1334/1122,
  57451. bottom: 21/1355
  57452. }
  57453. },
  57454. back: {
  57455. height: math.unit(4 + 3/12, "feet"),
  57456. weight: math.unit(60, "lb"),
  57457. name: "Back",
  57458. image: {
  57459. source: "./media/characters/silke/back.svg",
  57460. extra: 1328/1092,
  57461. bottom: 16/1344
  57462. }
  57463. },
  57464. dressed: {
  57465. height: math.unit(4 + 3/12, "feet"),
  57466. weight: math.unit(60, "lb"),
  57467. name: "Dressed",
  57468. image: {
  57469. source: "./media/characters/silke/dressed.svg",
  57470. extra: 1334/1122,
  57471. bottom: 43/1377
  57472. }
  57473. },
  57474. },
  57475. [
  57476. {
  57477. name: "Normal",
  57478. height: math.unit(4 + 3/12, "feet"),
  57479. default: true
  57480. },
  57481. ]
  57482. ))
  57483. characterMakers.push(() => makeCharacter(
  57484. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  57485. {
  57486. front: {
  57487. height: math.unit(1.58, "meters"),
  57488. weight: math.unit(47, "kg"),
  57489. name: "Front",
  57490. image: {
  57491. source: "./media/characters/wireshark/front.svg",
  57492. extra: 883/838,
  57493. bottom: 66/949
  57494. }
  57495. },
  57496. },
  57497. [
  57498. {
  57499. name: "Normal",
  57500. height: math.unit(1.58, "meters"),
  57501. default: true
  57502. },
  57503. ]
  57504. ))
  57505. characterMakers.push(() => makeCharacter(
  57506. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  57507. {
  57508. front: {
  57509. height: math.unit(6, "meters"),
  57510. weight: math.unit(15000, "kg"),
  57511. name: "Front",
  57512. image: {
  57513. source: "./media/characters/gallagher/front.svg",
  57514. extra: 532/493,
  57515. bottom: 0/532
  57516. }
  57517. },
  57518. },
  57519. [
  57520. {
  57521. name: "Normal",
  57522. height: math.unit(6, "meters"),
  57523. default: true
  57524. },
  57525. ]
  57526. ))
  57527. characterMakers.push(() => makeCharacter(
  57528. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  57529. {
  57530. front: {
  57531. height: math.unit(2.4, "meters"),
  57532. weight: math.unit(270, "kg"),
  57533. name: "Front",
  57534. image: {
  57535. source: "./media/characters/alice/front.svg",
  57536. extra: 950/900,
  57537. bottom: 36/986
  57538. }
  57539. },
  57540. side: {
  57541. height: math.unit(2.4, "meters"),
  57542. weight: math.unit(270, "kg"),
  57543. name: "Side",
  57544. image: {
  57545. source: "./media/characters/alice/side.svg",
  57546. extra: 921/876,
  57547. bottom: 19/940
  57548. }
  57549. },
  57550. dressed: {
  57551. height: math.unit(2.4, "meters"),
  57552. weight: math.unit(270, "kg"),
  57553. name: "Dressed",
  57554. image: {
  57555. source: "./media/characters/alice/dressed.svg",
  57556. extra: 905/850,
  57557. bottom: 81/986
  57558. }
  57559. },
  57560. fishnet: {
  57561. height: math.unit(2.4, "meters"),
  57562. weight: math.unit(270, "kg"),
  57563. name: "Fishnet",
  57564. image: {
  57565. source: "./media/characters/alice/fishnet.svg",
  57566. extra: 905/850,
  57567. bottom: 81/986
  57568. }
  57569. },
  57570. },
  57571. [
  57572. {
  57573. name: "Normal",
  57574. height: math.unit(2.4, "meters"),
  57575. default: true
  57576. },
  57577. ]
  57578. ))
  57579. characterMakers.push(() => makeCharacter(
  57580. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  57581. {
  57582. front: {
  57583. height: math.unit(175.25, "feet"),
  57584. name: "Front",
  57585. image: {
  57586. source: "./media/characters/fio/front.svg",
  57587. extra: 1883/1591,
  57588. bottom: 34/1917
  57589. }
  57590. },
  57591. },
  57592. [
  57593. {
  57594. name: "Normal",
  57595. height: math.unit(175.25, "cm"),
  57596. default: true
  57597. },
  57598. ]
  57599. ))
  57600. characterMakers.push(() => makeCharacter(
  57601. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  57602. {
  57603. side: {
  57604. height: math.unit(6, "meters"),
  57605. weight: math.unit(3400, "kg"),
  57606. preyCapacity: math.unit(1700, "liters"),
  57607. name: "Side",
  57608. image: {
  57609. source: "./media/characters/hass/side.svg",
  57610. extra: 1058/997,
  57611. bottom: 177/1235
  57612. }
  57613. },
  57614. feeding: {
  57615. height: math.unit(6*0.63, "meters"),
  57616. weight: math.unit(3400, "kg"),
  57617. preyCapacity: math.unit(1700, "liters"),
  57618. name: "Feeding",
  57619. image: {
  57620. source: "./media/characters/hass/feeding.svg",
  57621. extra: 689/579,
  57622. bottom: 146/835
  57623. }
  57624. },
  57625. guts: {
  57626. height: math.unit(6, "meters"),
  57627. weight: math.unit(3400, "kg"),
  57628. name: "Guts",
  57629. image: {
  57630. source: "./media/characters/hass/guts.svg",
  57631. extra: 1223/1198,
  57632. bottom: 182/1405
  57633. }
  57634. },
  57635. dickFront: {
  57636. height: math.unit(1.4, "meters"),
  57637. name: "Dick (Front)",
  57638. image: {
  57639. source: "./media/characters/hass/dick-front.svg"
  57640. }
  57641. },
  57642. dickSide: {
  57643. height: math.unit(1.3, "meters"),
  57644. name: "Dick (Side)",
  57645. image: {
  57646. source: "./media/characters/hass/dick-side.svg"
  57647. }
  57648. },
  57649. dickBack: {
  57650. height: math.unit(1.4, "meters"),
  57651. name: "Dick (Back)",
  57652. image: {
  57653. source: "./media/characters/hass/dick-back.svg"
  57654. }
  57655. },
  57656. },
  57657. [
  57658. {
  57659. name: "Normal",
  57660. height: math.unit(6, "meters"),
  57661. default: true
  57662. },
  57663. ]
  57664. ))
  57665. characterMakers.push(() => makeCharacter(
  57666. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  57667. {
  57668. front: {
  57669. height: math.unit(4, "feet"),
  57670. weight: math.unit(60, "lb"),
  57671. name: "Front",
  57672. image: {
  57673. source: "./media/characters/hickory-finnegan/front.svg",
  57674. extra: 444/411,
  57675. bottom: 10/454
  57676. }
  57677. },
  57678. side: {
  57679. height: math.unit(4, "feet"),
  57680. weight: math.unit(60, "lb"),
  57681. name: "Side",
  57682. image: {
  57683. source: "./media/characters/hickory-finnegan/side.svg",
  57684. extra: 444/411,
  57685. bottom: 10/454
  57686. }
  57687. },
  57688. back: {
  57689. height: math.unit(4, "feet"),
  57690. weight: math.unit(60, "lb"),
  57691. name: "Back",
  57692. image: {
  57693. source: "./media/characters/hickory-finnegan/back.svg",
  57694. extra: 444/411,
  57695. bottom: 10/454
  57696. }
  57697. },
  57698. },
  57699. [
  57700. {
  57701. name: "Normal",
  57702. height: math.unit(4, "feet"),
  57703. default: true
  57704. },
  57705. ]
  57706. ))
  57707. characterMakers.push(() => makeCharacter(
  57708. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  57709. {
  57710. snivy_front: {
  57711. height: math.unit(2, "feet"),
  57712. weight: math.unit(17.9, "lb"),
  57713. name: "Front",
  57714. image: {
  57715. source: "./media/characters/robin-phox/snivy-front.svg",
  57716. extra: 569/504,
  57717. bottom: 33/602
  57718. },
  57719. form: "snivy",
  57720. default: true
  57721. },
  57722. snivy_frontNsfw: {
  57723. height: math.unit(2, "feet"),
  57724. weight: math.unit(17.9, "lb"),
  57725. name: "Front (NSFW)",
  57726. image: {
  57727. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  57728. extra: 569/504,
  57729. bottom: 33/602
  57730. },
  57731. form: "snivy",
  57732. },
  57733. snivy_back: {
  57734. height: math.unit(2, "feet"),
  57735. weight: math.unit(17.9, "lb"),
  57736. name: "Back",
  57737. image: {
  57738. source: "./media/characters/robin-phox/snivy-back.svg",
  57739. extra: 577/508,
  57740. bottom: 21/598
  57741. },
  57742. form: "snivy",
  57743. },
  57744. snivy_foot: {
  57745. height: math.unit(0.68, "feet"),
  57746. name: "Foot",
  57747. image: {
  57748. source: "./media/characters/robin-phox/snivy-foot.svg"
  57749. },
  57750. form: "snivy",
  57751. },
  57752. snivy_sole: {
  57753. height: math.unit(0.68, "feet"),
  57754. name: "Sole",
  57755. image: {
  57756. source: "./media/characters/robin-phox/snivy-sole.svg"
  57757. },
  57758. form: "snivy",
  57759. },
  57760. yoshi_front: {
  57761. height: math.unit(6, "feet"),
  57762. weight: math.unit(150, "lb"),
  57763. name: "Front",
  57764. image: {
  57765. source: "./media/characters/robin-phox/yoshi-front.svg",
  57766. extra: 890/792,
  57767. bottom: 29/919
  57768. },
  57769. form: "yoshi",
  57770. default: true
  57771. },
  57772. yoshi_frontNsfw: {
  57773. height: math.unit(6, "feet"),
  57774. weight: math.unit(150, "lb"),
  57775. name: "Front (NSFW)",
  57776. image: {
  57777. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  57778. extra: 890/792,
  57779. bottom: 29/919
  57780. },
  57781. form: "yoshi",
  57782. },
  57783. yoshi_back: {
  57784. height: math.unit(6, "feet"),
  57785. weight: math.unit(150, "lb"),
  57786. name: "Back",
  57787. image: {
  57788. source: "./media/characters/robin-phox/yoshi-back.svg",
  57789. extra: 890/792,
  57790. bottom: 29/919
  57791. },
  57792. form: "yoshi",
  57793. },
  57794. yoshi_foot: {
  57795. height: math.unit(1.5, "feet"),
  57796. name: "Foot",
  57797. image: {
  57798. source: "./media/characters/robin-phox/yoshi-foot.svg"
  57799. },
  57800. form: "yoshi",
  57801. },
  57802. delphox_front: {
  57803. height: math.unit(4 + 11/12, "feet"),
  57804. weight: math.unit(86, "lb"),
  57805. name: "Front",
  57806. image: {
  57807. source: "./media/characters/robin-phox/delphox-front.svg",
  57808. extra: 1266/1069,
  57809. bottom: 32/1298
  57810. },
  57811. form: "delphox",
  57812. default: true
  57813. },
  57814. delphox_frontNsfw: {
  57815. height: math.unit(4 + 11/12, "feet"),
  57816. weight: math.unit(86, "lb"),
  57817. name: "Front (NSFW)",
  57818. image: {
  57819. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  57820. extra: 1266/1069,
  57821. bottom: 32/1298
  57822. },
  57823. form: "delphox",
  57824. },
  57825. delphox_back: {
  57826. height: math.unit(4 + 11/12, "feet"),
  57827. weight: math.unit(86, "lb"),
  57828. name: "Back",
  57829. image: {
  57830. source: "./media/characters/robin-phox/delphox-back.svg",
  57831. extra: 1269/1083,
  57832. bottom: 15/1284
  57833. },
  57834. form: "delphox",
  57835. },
  57836. mienshao_front: {
  57837. height: math.unit(4 + 7/12, "feet"),
  57838. weight: math.unit(78.3, "lb"),
  57839. name: "Front",
  57840. image: {
  57841. source: "./media/characters/robin-phox/mienshao-front.svg",
  57842. extra: 1052/970,
  57843. bottom: 108/1160
  57844. },
  57845. form: "mienshao",
  57846. default: true
  57847. },
  57848. mienshao_frontNsfw: {
  57849. height: math.unit(4 + 7/12, "feet"),
  57850. weight: math.unit(78.3, "lb"),
  57851. name: "Front (NSFW)",
  57852. image: {
  57853. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  57854. extra: 1052/970,
  57855. bottom: 108/1160
  57856. },
  57857. form: "mienshao",
  57858. },
  57859. mienshao_back: {
  57860. height: math.unit(4 + 7/12, "feet"),
  57861. weight: math.unit(78.3, "lb"),
  57862. name: "Back",
  57863. image: {
  57864. source: "./media/characters/robin-phox/mienshao-back.svg",
  57865. extra: 1102/982,
  57866. bottom: 32/1134
  57867. },
  57868. form: "mienshao",
  57869. },
  57870. inteleon_front: {
  57871. height: math.unit(6 + 3/12, "feet"),
  57872. weight: math.unit(99.6, "lb"),
  57873. name: "Front",
  57874. image: {
  57875. source: "./media/characters/robin-phox/inteleon-front.svg",
  57876. extra: 910/799,
  57877. bottom: 76/986
  57878. },
  57879. form: "inteleon",
  57880. default: true
  57881. },
  57882. inteleon_frontNsfw: {
  57883. height: math.unit(6 + 3/12, "feet"),
  57884. weight: math.unit(99.6, "lb"),
  57885. name: "Front (NSFW)",
  57886. image: {
  57887. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  57888. extra: 910/799,
  57889. bottom: 76/986
  57890. },
  57891. form: "inteleon",
  57892. },
  57893. inteleon_back: {
  57894. height: math.unit(6 + 3/12, "feet"),
  57895. weight: math.unit(99.6, "lb"),
  57896. name: "Back",
  57897. image: {
  57898. source: "./media/characters/robin-phox/inteleon-back.svg",
  57899. extra: 907/796,
  57900. bottom: 25/932
  57901. },
  57902. form: "inteleon",
  57903. },
  57904. reshiram_front: {
  57905. height: math.unit(10 + 6/12, "feet"),
  57906. weight: math.unit(727.5, "lb"),
  57907. name: "Front",
  57908. image: {
  57909. source: "./media/characters/robin-phox/reshiram-front.svg",
  57910. extra: 1198/940,
  57911. bottom: 123/1321
  57912. },
  57913. form: "reshiram",
  57914. },
  57915. reshiram_frontNsfw: {
  57916. height: math.unit(10 + 6/12, "feet"),
  57917. weight: math.unit(727.5, "lb"),
  57918. name: "Front-nsfw",
  57919. image: {
  57920. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  57921. extra: 1198/940,
  57922. bottom: 123/1321
  57923. },
  57924. form: "reshiram",
  57925. },
  57926. reshiram_back: {
  57927. height: math.unit(10 + 6/12, "feet"),
  57928. weight: math.unit(727.5, "lb"),
  57929. name: "Back",
  57930. image: {
  57931. source: "./media/characters/robin-phox/reshiram-back.svg",
  57932. extra: 1024/904,
  57933. bottom: 85/1109
  57934. },
  57935. form: "reshiram",
  57936. },
  57937. samurott_front: {
  57938. height: math.unit(8, "feet"),
  57939. weight: math.unit(208.6, "lb"),
  57940. name: "Front",
  57941. image: {
  57942. source: "./media/characters/robin-phox/samurott-front.svg",
  57943. extra: 1048/984,
  57944. bottom: 100/1148
  57945. },
  57946. form: "samurott",
  57947. },
  57948. samurott_frontNsfw: {
  57949. height: math.unit(8, "feet"),
  57950. weight: math.unit(208.6, "lb"),
  57951. name: "Front-nsfw",
  57952. image: {
  57953. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  57954. extra: 1048/984,
  57955. bottom: 100/1148
  57956. },
  57957. form: "samurott",
  57958. },
  57959. samurott_back: {
  57960. height: math.unit(8, "feet"),
  57961. weight: math.unit(208.6, "lb"),
  57962. name: "Back",
  57963. image: {
  57964. source: "./media/characters/robin-phox/samurott-back.svg",
  57965. extra: 1110/1042,
  57966. bottom: 12/1122
  57967. },
  57968. form: "samurott",
  57969. },
  57970. samurott_feral: {
  57971. height: math.unit(4 + 11/12, "feet"),
  57972. weight: math.unit(208.6, "lb"),
  57973. name: "Feral",
  57974. image: {
  57975. source: "./media/characters/robin-phox/samurott-feral.svg",
  57976. extra: 766/681,
  57977. bottom: 108/874
  57978. },
  57979. form: "samurott",
  57980. },
  57981. },
  57982. [
  57983. {
  57984. name: "Normal",
  57985. height: math.unit(2, "feet"),
  57986. default: true,
  57987. form: "snivy"
  57988. },
  57989. {
  57990. name: "Normal",
  57991. height: math.unit(6, "feet"),
  57992. default: true,
  57993. form: "yoshi"
  57994. },
  57995. {
  57996. name: "Normal",
  57997. height: math.unit(4 + 11/12, "feet"),
  57998. default: true,
  57999. form: "delphox"
  58000. },
  58001. {
  58002. name: "Normal",
  58003. height: math.unit(4 + 7/12, "feet"),
  58004. default: true,
  58005. form: "mienshao"
  58006. },
  58007. {
  58008. name: "Normal",
  58009. height: math.unit(6 + 3/12, "feet"),
  58010. default: true,
  58011. form: "inteleon"
  58012. },
  58013. {
  58014. name: "Normal",
  58015. height: math.unit(10 + 6/12, "feet"),
  58016. default: true,
  58017. form: "reshiram"
  58018. },
  58019. {
  58020. name: "Normal",
  58021. height: math.unit(8, "feet"),
  58022. default: true,
  58023. form: "samurott"
  58024. },
  58025. {
  58026. name: "Macro",
  58027. height: math.unit(500, "feet"),
  58028. allForms: true
  58029. },
  58030. {
  58031. name: "Mega Macro",
  58032. height: math.unit(10, "earths"),
  58033. allForms: true
  58034. },
  58035. {
  58036. name: "Giga Macro",
  58037. height: math.unit(1, "galaxy"),
  58038. allForms: true
  58039. },
  58040. {
  58041. name: "Godly Macro",
  58042. height: math.unit(1e10, "multiverses"),
  58043. allForms: true
  58044. },
  58045. ],
  58046. {
  58047. "snivy": {
  58048. name: "Snivy",
  58049. default: true
  58050. },
  58051. "yoshi": {
  58052. name: "Yoshi",
  58053. },
  58054. "delphox": {
  58055. name: "Delphox",
  58056. },
  58057. "mienshao": {
  58058. name: "Mienshao",
  58059. },
  58060. "inteleon": {
  58061. name: "Inteleon",
  58062. },
  58063. "reshiram": {
  58064. name: "Reshiram",
  58065. },
  58066. "samurott": {
  58067. name: "Samurott",
  58068. },
  58069. }
  58070. ))
  58071. characterMakers.push(() => makeCharacter(
  58072. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  58073. {
  58074. front: {
  58075. height: math.unit(4, "feet"),
  58076. name: "Front",
  58077. image: {
  58078. source: "./media/characters/ash-leung/front.svg",
  58079. extra: 1916/1792,
  58080. bottom: 50/1966
  58081. }
  58082. },
  58083. },
  58084. [
  58085. {
  58086. name: "Atomic",
  58087. height: math.unit(1, "angstrom")
  58088. },
  58089. {
  58090. name: "Microscopic",
  58091. height: math.unit(4000, "angstroms")
  58092. },
  58093. {
  58094. name: "Speck",
  58095. height: math.unit(1, "mm")
  58096. },
  58097. {
  58098. name: "Small",
  58099. height: math.unit(1, "inch")
  58100. },
  58101. {
  58102. name: "Normal",
  58103. height: math.unit(4, "feet"),
  58104. default: true
  58105. },
  58106. ]
  58107. ))
  58108. characterMakers.push(() => makeCharacter(
  58109. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  58110. {
  58111. frontDressed: {
  58112. height: math.unit(2.08, "meters"),
  58113. weight: math.unit(175, "lb"),
  58114. name: "Front (Dressed)",
  58115. image: {
  58116. source: "./media/characters/carie/front-dressed.svg",
  58117. extra: 456/417,
  58118. bottom: 7/463
  58119. }
  58120. },
  58121. backDressed: {
  58122. height: math.unit(2.08, "meters"),
  58123. weight: math.unit(175, "lb"),
  58124. name: "Back (Dressed)",
  58125. image: {
  58126. source: "./media/characters/carie/back-dressed.svg",
  58127. extra: 455/414,
  58128. bottom: 11/466
  58129. }
  58130. },
  58131. front: {
  58132. height: math.unit(2, "meters"),
  58133. weight: math.unit(175, "lb"),
  58134. name: "Front",
  58135. image: {
  58136. source: "./media/characters/carie/front.svg",
  58137. extra: 438/399,
  58138. bottom: 12/450
  58139. }
  58140. },
  58141. back: {
  58142. height: math.unit(2, "meters"),
  58143. weight: math.unit(175, "lb"),
  58144. name: "Back",
  58145. image: {
  58146. source: "./media/characters/carie/back.svg",
  58147. extra: 438/397,
  58148. bottom: 7/445
  58149. }
  58150. },
  58151. },
  58152. [
  58153. {
  58154. name: "Normal",
  58155. height: math.unit(2.08, "meters"),
  58156. default: true
  58157. },
  58158. {
  58159. name: "Macro",
  58160. height: math.unit(2.08e3, "meters")
  58161. },
  58162. {
  58163. name: "Mega Macro",
  58164. height: math.unit(2.08e6, "meters")
  58165. },
  58166. {
  58167. name: "Giga Macro",
  58168. height: math.unit(2.08e9, "meters")
  58169. },
  58170. {
  58171. name: "Tera Macro",
  58172. height: math.unit(2.08e12, "meters")
  58173. },
  58174. {
  58175. name: "Peta Macro",
  58176. height: math.unit(2.08e15, "meters")
  58177. },
  58178. {
  58179. name: "Exa Macro",
  58180. height: math.unit(2.08e18, "meters")
  58181. },
  58182. {
  58183. name: "Zetta Macro",
  58184. height: math.unit(2.08e21, "meters")
  58185. },
  58186. {
  58187. name: "Yotta Macro",
  58188. height: math.unit(2.08e24, "meters")
  58189. },
  58190. ]
  58191. ))
  58192. characterMakers.push(() => makeCharacter(
  58193. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  58194. {
  58195. front: {
  58196. height: math.unit(5 + 2/12, "feet"),
  58197. weight: math.unit(120, "lb"),
  58198. name: "Front",
  58199. image: {
  58200. source: "./media/characters/sai-bree/front.svg",
  58201. extra: 1843/1702,
  58202. bottom: 91/1934
  58203. }
  58204. },
  58205. back: {
  58206. height: math.unit(5 + 2/12, "feet"),
  58207. weight: math.unit(120, "lb"),
  58208. name: "Back",
  58209. image: {
  58210. source: "./media/characters/sai-bree/back.svg",
  58211. extra: 1809/1637,
  58212. bottom: 56/1865
  58213. }
  58214. },
  58215. },
  58216. [
  58217. {
  58218. name: "Normal",
  58219. height: math.unit(5 + 2/12, "feet"),
  58220. default: true
  58221. },
  58222. {
  58223. name: "Macro",
  58224. height: math.unit(500, "feet")
  58225. },
  58226. ]
  58227. ))
  58228. characterMakers.push(() => makeCharacter(
  58229. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  58230. {
  58231. side: {
  58232. height: math.unit(0.77, "meters"),
  58233. weight: math.unit(120, "lb"),
  58234. name: "Side",
  58235. image: {
  58236. source: "./media/characters/davwyn/side.svg",
  58237. extra: 1557/1225,
  58238. bottom: 131/1688
  58239. }
  58240. },
  58241. front: {
  58242. height: math.unit(0.835410, "meters"),
  58243. weight: math.unit(120, "lb"),
  58244. name: "Front",
  58245. image: {
  58246. source: "./media/characters/davwyn/front.svg",
  58247. extra: 870/843,
  58248. bottom: 175/1045
  58249. }
  58250. },
  58251. },
  58252. [
  58253. {
  58254. name: "Minidrake",
  58255. height: math.unit(0.77/4, "meters")
  58256. },
  58257. {
  58258. name: "Normal",
  58259. height: math.unit(0.77, "meters"),
  58260. default: true
  58261. },
  58262. ]
  58263. ))
  58264. characterMakers.push(() => makeCharacter(
  58265. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  58266. {
  58267. front: {
  58268. height: math.unit(10 + 3/12, "feet"),
  58269. weight: math.unit(2857, "lb"),
  58270. name: "Front",
  58271. image: {
  58272. source: "./media/characters/balans/front.svg",
  58273. extra: 427/402,
  58274. bottom: 26/453
  58275. }
  58276. },
  58277. side: {
  58278. height: math.unit(10 + 3/12, "feet"),
  58279. weight: math.unit(2857, "lb"),
  58280. name: "Side",
  58281. image: {
  58282. source: "./media/characters/balans/side.svg",
  58283. extra: 397/371,
  58284. bottom: 17/414
  58285. }
  58286. },
  58287. back: {
  58288. height: math.unit(10 + 3/12, "feet"),
  58289. weight: math.unit(2857, "lb"),
  58290. name: "Back",
  58291. image: {
  58292. source: "./media/characters/balans/back.svg",
  58293. extra: 408/381,
  58294. bottom: 14/422
  58295. }
  58296. },
  58297. hand: {
  58298. height: math.unit(1.15, "feet"),
  58299. name: "Hand",
  58300. image: {
  58301. source: "./media/characters/balans/hand.svg"
  58302. }
  58303. },
  58304. footRest: {
  58305. height: math.unit(3.1, "feet"),
  58306. name: "Foot (Rest)",
  58307. image: {
  58308. source: "./media/characters/balans/foot-rest.svg"
  58309. }
  58310. },
  58311. footActive: {
  58312. height: math.unit(3.5, "feet"),
  58313. name: "Foot (Active)",
  58314. image: {
  58315. source: "./media/characters/balans/foot-active.svg"
  58316. }
  58317. },
  58318. },
  58319. [
  58320. {
  58321. name: "Normal",
  58322. height: math.unit(10 + 3/12, "feet"),
  58323. default: true
  58324. },
  58325. ]
  58326. ))
  58327. characterMakers.push(() => makeCharacter(
  58328. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  58329. {
  58330. side: {
  58331. height: math.unit(9, "meters"),
  58332. weight: math.unit(114, "tonnes"),
  58333. name: "Side",
  58334. image: {
  58335. source: "./media/characters/eldkveikir/side.svg",
  58336. extra: 1927/338,
  58337. bottom: 42/1969
  58338. }
  58339. },
  58340. sitting: {
  58341. height: math.unit(13.4, "meters"),
  58342. weight: math.unit(114, "tonnes"),
  58343. name: "Sitting",
  58344. image: {
  58345. source: "./media/characters/eldkveikir/sitting.svg",
  58346. extra: 1108/963,
  58347. bottom: 610/1718
  58348. }
  58349. },
  58350. maw: {
  58351. height: math.unit(8.36, "meters"),
  58352. name: "Maw",
  58353. image: {
  58354. source: "./media/characters/eldkveikir/maw.svg"
  58355. }
  58356. },
  58357. hand: {
  58358. height: math.unit(4.84, "meters"),
  58359. name: "Hand",
  58360. image: {
  58361. source: "./media/characters/eldkveikir/hand.svg"
  58362. }
  58363. },
  58364. foot: {
  58365. height: math.unit(6.9, "meters"),
  58366. name: "Foot",
  58367. image: {
  58368. source: "./media/characters/eldkveikir/foot.svg"
  58369. }
  58370. },
  58371. genitals: {
  58372. height: math.unit(9.6, "meters"),
  58373. name: "Genitals",
  58374. image: {
  58375. source: "./media/characters/eldkveikir/genitals.svg"
  58376. }
  58377. },
  58378. },
  58379. [
  58380. {
  58381. name: "Normal",
  58382. height: math.unit(9, "meters"),
  58383. default: true
  58384. },
  58385. ]
  58386. ))
  58387. characterMakers.push(() => makeCharacter(
  58388. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  58389. {
  58390. front: {
  58391. height: math.unit(14, "feet"),
  58392. weight: math.unit(4100, "lb"),
  58393. name: "Front",
  58394. image: {
  58395. source: "./media/characters/arrow/front.svg",
  58396. extra: 330/318,
  58397. bottom: 56/386
  58398. }
  58399. },
  58400. },
  58401. [
  58402. {
  58403. name: "Normal",
  58404. height: math.unit(14, "feet"),
  58405. default: true
  58406. },
  58407. {
  58408. name: "Minimacro",
  58409. height: math.unit(63, "feet")
  58410. },
  58411. {
  58412. name: "Macro",
  58413. height: math.unit(630, "feet")
  58414. },
  58415. {
  58416. name: "Megamacro",
  58417. height: math.unit(12600, "feet")
  58418. },
  58419. {
  58420. name: "Gigamacro",
  58421. height: math.unit(18000, "miles")
  58422. },
  58423. ]
  58424. ))
  58425. characterMakers.push(() => makeCharacter(
  58426. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  58427. {
  58428. front: {
  58429. height: math.unit(10, "feet"),
  58430. weight: math.unit(2.4, "tons"),
  58431. name: "Front",
  58432. image: {
  58433. source: "./media/characters/3yk-k0-unit/front.svg",
  58434. extra: 573/561,
  58435. bottom: 33/606
  58436. }
  58437. },
  58438. back: {
  58439. height: math.unit(10, "feet"),
  58440. weight: math.unit(2.4, "tons"),
  58441. name: "Back",
  58442. image: {
  58443. source: "./media/characters/3yk-k0-unit/back.svg",
  58444. extra: 614/573,
  58445. bottom: 32/646
  58446. }
  58447. },
  58448. maw: {
  58449. height: math.unit(2.15, "feet"),
  58450. name: "Maw",
  58451. image: {
  58452. source: "./media/characters/3yk-k0-unit/maw.svg"
  58453. }
  58454. },
  58455. },
  58456. [
  58457. {
  58458. name: "Normal",
  58459. height: math.unit(10, "feet"),
  58460. default: true
  58461. },
  58462. ]
  58463. ))
  58464. characterMakers.push(() => makeCharacter(
  58465. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  58466. {
  58467. front: {
  58468. height: math.unit(8 + 8/12, "feet"),
  58469. name: "Front",
  58470. image: {
  58471. source: "./media/characters/nemo/front.svg",
  58472. extra: 1308/1217,
  58473. bottom: 57/1365
  58474. }
  58475. },
  58476. },
  58477. [
  58478. {
  58479. name: "Normal",
  58480. height: math.unit(8 + 8/12, "feet"),
  58481. default: true
  58482. },
  58483. ]
  58484. ))
  58485. characterMakers.push(() => makeCharacter(
  58486. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  58487. {
  58488. front: {
  58489. height: math.unit(8, "feet"),
  58490. weight: math.unit(760, "lb"),
  58491. name: "Front",
  58492. image: {
  58493. source: "./media/characters/rexx/front.svg",
  58494. extra: 786/750,
  58495. bottom: 17/803
  58496. },
  58497. extraAttributes: {
  58498. "pawLength": {
  58499. name: "Paw Length",
  58500. power: 1,
  58501. type: "length",
  58502. base: math.unit(27, "inches")
  58503. },
  58504. }
  58505. },
  58506. },
  58507. [
  58508. {
  58509. name: "Micro",
  58510. height: math.unit(2, "inches")
  58511. },
  58512. {
  58513. name: "Normal",
  58514. height: math.unit(8, "feet"),
  58515. default: true
  58516. },
  58517. {
  58518. name: "Macro",
  58519. height: math.unit(150, "feet")
  58520. },
  58521. ]
  58522. ))
  58523. characterMakers.push(() => makeCharacter(
  58524. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  58525. {
  58526. front: {
  58527. height: math.unit(18, "feet"),
  58528. weight: math.unit(1975, "lb"),
  58529. name: "Front",
  58530. image: {
  58531. source: "./media/characters/draco/front.svg",
  58532. extra: 1325/1241,
  58533. bottom: 83/1408
  58534. }
  58535. },
  58536. back: {
  58537. height: math.unit(18, "feet"),
  58538. weight: math.unit(1975, "lb"),
  58539. name: "Back",
  58540. image: {
  58541. source: "./media/characters/draco/back.svg",
  58542. extra: 1332/1250,
  58543. bottom: 43/1375
  58544. }
  58545. },
  58546. dick: {
  58547. height: math.unit(7.5, "feet"),
  58548. name: "Dick",
  58549. image: {
  58550. source: "./media/characters/draco/dick.svg"
  58551. }
  58552. },
  58553. },
  58554. [
  58555. {
  58556. name: "Normal",
  58557. height: math.unit(18, "feet"),
  58558. default: true
  58559. },
  58560. ]
  58561. ))
  58562. characterMakers.push(() => makeCharacter(
  58563. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  58564. {
  58565. front: {
  58566. height: math.unit(3.2, "meters"),
  58567. name: "Front",
  58568. image: {
  58569. source: "./media/characters/harriett/front.svg",
  58570. extra: 1966/1915,
  58571. bottom: 9/1975
  58572. }
  58573. },
  58574. },
  58575. [
  58576. {
  58577. name: "Normal",
  58578. height: math.unit(3.2, "meters"),
  58579. default: true
  58580. },
  58581. ]
  58582. ))
  58583. characterMakers.push(() => makeCharacter(
  58584. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  58585. {
  58586. standing: {
  58587. height: math.unit(180, "cm"),
  58588. weight: math.unit(185, "lb"),
  58589. name: "Standing",
  58590. image: {
  58591. source: "./media/characters/serpentus/standing.svg",
  58592. extra: 882/878,
  58593. bottom: 16/898
  58594. }
  58595. },
  58596. sitting: {
  58597. height: math.unit(0.8, "meter"),
  58598. weight: math.unit(155, "lb"),
  58599. name: "Sitting",
  58600. image: {
  58601. source: "./media/characters/serpentus/sitting.svg",
  58602. extra: 293/290,
  58603. bottom: 140/433
  58604. }
  58605. },
  58606. },
  58607. [
  58608. {
  58609. name: "Normal",
  58610. height: math.unit(1.8, "meter"),
  58611. default: true
  58612. },
  58613. ]
  58614. ))
  58615. characterMakers.push(() => makeCharacter(
  58616. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  58617. {
  58618. front: {
  58619. height: math.unit(5.7174385736, "feet"),
  58620. name: "Front",
  58621. image: {
  58622. source: "./media/characters/nova-polecat/front.svg",
  58623. extra: 1317/1216,
  58624. bottom: 92/1409
  58625. }
  58626. },
  58627. },
  58628. [
  58629. {
  58630. name: "Normal",
  58631. height: math.unit(5.7174385736, "feet"),
  58632. default: true
  58633. },
  58634. ]
  58635. ))
  58636. characterMakers.push(() => makeCharacter(
  58637. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  58638. {
  58639. front: {
  58640. height: math.unit(5 + 4/12, "feet"),
  58641. weight: math.unit(250, "lb"),
  58642. name: "Front",
  58643. image: {
  58644. source: "./media/characters/mook/front.svg",
  58645. extra: 1088/1037,
  58646. bottom: 132/1220
  58647. }
  58648. },
  58649. back: {
  58650. height: math.unit(5 + 1/12, "feet"),
  58651. weight: math.unit(250, "lb"),
  58652. name: "Back",
  58653. image: {
  58654. source: "./media/characters/mook/back.svg",
  58655. extra: 1184/905,
  58656. bottom: 96/1280
  58657. }
  58658. },
  58659. head: {
  58660. height: math.unit(1.85, "feet"),
  58661. name: "Head",
  58662. image: {
  58663. source: "./media/characters/mook/head.svg"
  58664. }
  58665. },
  58666. hand: {
  58667. height: math.unit(1.9, "feet"),
  58668. name: "Hand",
  58669. image: {
  58670. source: "./media/characters/mook/hand.svg"
  58671. }
  58672. },
  58673. palm: {
  58674. height: math.unit(1.84, "feet"),
  58675. name: "Palm",
  58676. image: {
  58677. source: "./media/characters/mook/palm.svg"
  58678. }
  58679. },
  58680. foot: {
  58681. height: math.unit(1.44, "feet"),
  58682. name: "Foot",
  58683. image: {
  58684. source: "./media/characters/mook/foot.svg"
  58685. }
  58686. },
  58687. sole: {
  58688. height: math.unit(1.44, "feet"),
  58689. name: "Sole",
  58690. image: {
  58691. source: "./media/characters/mook/sole.svg"
  58692. }
  58693. },
  58694. },
  58695. [
  58696. {
  58697. name: "Normal",
  58698. height: math.unit(5 + 4/12, "feet"),
  58699. default: true
  58700. },
  58701. {
  58702. name: "Big",
  58703. height: math.unit(12, "feet")
  58704. },
  58705. ]
  58706. ))
  58707. characterMakers.push(() => makeCharacter(
  58708. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  58709. {
  58710. front: {
  58711. height: math.unit(6 + 10/12, "feet"),
  58712. weight: math.unit(233, "lb"),
  58713. name: "Front",
  58714. image: {
  58715. source: "./media/characters/kayla/front.svg",
  58716. extra: 1850/1775,
  58717. bottom: 65/1915
  58718. }
  58719. },
  58720. },
  58721. [
  58722. {
  58723. name: "Normal",
  58724. height: math.unit(6 + 10/12, "feet"),
  58725. default: true
  58726. },
  58727. {
  58728. name: "Amazonian",
  58729. height: math.unit(12 + 5/12, "feet")
  58730. },
  58731. {
  58732. name: "Mini Giantess",
  58733. height: math.unit(26, "feet")
  58734. },
  58735. {
  58736. name: "Giantess",
  58737. height: math.unit(200, "feet")
  58738. },
  58739. {
  58740. name: "Mega Giantess",
  58741. height: math.unit(2500, "feet")
  58742. },
  58743. {
  58744. name: "City Sized",
  58745. height: math.unit(50, "miles")
  58746. },
  58747. {
  58748. name: "Country Sized",
  58749. height: math.unit(500, "miles")
  58750. },
  58751. {
  58752. name: "Continent Sized",
  58753. height: math.unit(2500, "miles")
  58754. },
  58755. {
  58756. name: "Planet Sized",
  58757. height: math.unit(10000, "miles")
  58758. },
  58759. {
  58760. name: "Star Sized",
  58761. height: math.unit(5e6, "miles")
  58762. },
  58763. {
  58764. name: "Solar System Sized",
  58765. height: math.unit(125, "AU")
  58766. },
  58767. {
  58768. name: "Galaxy Sized",
  58769. height: math.unit(300e3, "lightyears")
  58770. },
  58771. {
  58772. name: "Universe Sized",
  58773. height: math.unit(200e9, "lightyears")
  58774. },
  58775. {
  58776. name: "Multiverse Sized",
  58777. height: math.unit(20, "exauniverses")
  58778. },
  58779. {
  58780. name: "Mother of Existence",
  58781. height: math.unit(1e6, "yottauniverses")
  58782. },
  58783. ]
  58784. ))
  58785. characterMakers.push(() => makeCharacter(
  58786. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  58787. {
  58788. side: {
  58789. height: math.unit(9.5, "meters"),
  58790. name: "Side",
  58791. image: {
  58792. source: "./media/characters/kulve-ragnarok/side.svg",
  58793. extra: 364/326,
  58794. bottom: 50/414
  58795. }
  58796. },
  58797. },
  58798. [
  58799. {
  58800. name: "Normal",
  58801. height: math.unit(9.5, "meters"),
  58802. default: true
  58803. },
  58804. ]
  58805. ))
  58806. characterMakers.push(() => makeCharacter(
  58807. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  58808. {
  58809. front: {
  58810. height: math.unit(8 + 9/12, "feet"),
  58811. name: "Front",
  58812. image: {
  58813. source: "./media/characters/atlas-goat/front.svg",
  58814. extra: 1462/1323,
  58815. bottom: 12/1474
  58816. }
  58817. },
  58818. },
  58819. [
  58820. {
  58821. name: "Normal",
  58822. height: math.unit(8 + 9/12, "feet"),
  58823. default: true
  58824. },
  58825. {
  58826. name: "Skyline",
  58827. height: math.unit(845, "feet")
  58828. },
  58829. {
  58830. name: "Orbital",
  58831. height: math.unit(93000, "miles")
  58832. },
  58833. {
  58834. name: "Constellation",
  58835. height: math.unit(27000, "lightyears")
  58836. },
  58837. ]
  58838. ))
  58839. characterMakers.push(() => makeCharacter(
  58840. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  58841. {
  58842. side: {
  58843. height: math.unit(1.8, "meters"),
  58844. weight: math.unit(120, "kg"),
  58845. name: "Side",
  58846. image: {
  58847. source: "./media/characters/xie-ling/side.svg",
  58848. extra: 646/574,
  58849. bottom: 44/690
  58850. }
  58851. },
  58852. },
  58853. [
  58854. {
  58855. name: "Tiny",
  58856. height: math.unit(1.80, "meters")
  58857. },
  58858. {
  58859. name: "Small",
  58860. height: math.unit(6, "meters")
  58861. },
  58862. {
  58863. name: "Medium",
  58864. height: math.unit(15, "meters")
  58865. },
  58866. {
  58867. name: "Normal",
  58868. height: math.unit(30, "meters"),
  58869. default: true
  58870. },
  58871. {
  58872. name: "Above Normal",
  58873. height: math.unit(60, "meters")
  58874. },
  58875. {
  58876. name: "Big",
  58877. height: math.unit(220, "meters")
  58878. },
  58879. {
  58880. name: "Giant",
  58881. height: math.unit(2.2, "km")
  58882. },
  58883. {
  58884. name: "Macro",
  58885. height: math.unit(25, "km")
  58886. },
  58887. {
  58888. name: "Mega Macro",
  58889. height: math.unit(350, "km")
  58890. },
  58891. {
  58892. name: "Mega Macro+",
  58893. height: math.unit(5000, "km")
  58894. },
  58895. {
  58896. name: "Goddess",
  58897. height: math.unit(3, "multiverses")
  58898. },
  58899. ]
  58900. ))
  58901. characterMakers.push(() => makeCharacter(
  58902. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  58903. {
  58904. frontSfw: {
  58905. height: math.unit(5 + 11/12, "feet"),
  58906. weight: math.unit(210, "lb"),
  58907. name: "Front",
  58908. image: {
  58909. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  58910. extra: 1928/1821,
  58911. bottom: 45/1973
  58912. }
  58913. },
  58914. backSfw: {
  58915. height: math.unit(5 + 11/12, "feet"),
  58916. weight: math.unit(210, "lb"),
  58917. name: "Back",
  58918. image: {
  58919. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  58920. extra: 1920/1813,
  58921. bottom: 34/1954
  58922. }
  58923. },
  58924. frontNsfw: {
  58925. height: math.unit(5 + 11/12, "feet"),
  58926. weight: math.unit(210, "lb"),
  58927. name: "Front (NSFW)",
  58928. image: {
  58929. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  58930. extra: 1928/1821,
  58931. bottom: 45/1973
  58932. }
  58933. },
  58934. backNsfw: {
  58935. height: math.unit(5 + 11/12, "feet"),
  58936. weight: math.unit(210, "lb"),
  58937. name: "Back (NSFW)",
  58938. image: {
  58939. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  58940. extra: 1920/1813,
  58941. bottom: 34/1954
  58942. }
  58943. },
  58944. },
  58945. [
  58946. {
  58947. name: "Normal",
  58948. height: math.unit(5 + 11/12, "feet"),
  58949. default: true
  58950. },
  58951. {
  58952. name: "Goddess",
  58953. height: math.unit(20 + 3/12, "feet")
  58954. },
  58955. {
  58956. name: "Breaker of Man",
  58957. height: math.unit(329 + 9/12, "feet")
  58958. },
  58959. {
  58960. name: "Solar Justice",
  58961. height: math.unit(0.6, "solarradii")
  58962. },
  58963. {
  58964. name: "She Who Judges",
  58965. height: math.unit(1, "universe")
  58966. },
  58967. ]
  58968. ))
  58969. characterMakers.push(() => makeCharacter(
  58970. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  58971. {
  58972. casual_front: {
  58973. height: math.unit(6 + 1/12, "feet"),
  58974. weight: math.unit(190, "lb"),
  58975. preyCapacity: math.unit(1, "people"),
  58976. name: "Front",
  58977. image: {
  58978. source: "./media/characters/managarmr/casual-front.svg",
  58979. extra: 411/381,
  58980. bottom: 15/426
  58981. },
  58982. extraAttributes: {
  58983. "pawSize": {
  58984. name: "Paw Size",
  58985. power: 1,
  58986. type: "length",
  58987. base: math.unit(0.2, "meters")
  58988. },
  58989. },
  58990. form: "casual",
  58991. },
  58992. casual_back: {
  58993. height: math.unit(6 + 1/12, "feet"),
  58994. weight: math.unit(190, "lb"),
  58995. preyCapacity: math.unit(1, "people"),
  58996. name: "Back",
  58997. image: {
  58998. source: "./media/characters/managarmr/casual-back.svg",
  58999. extra: 413/383,
  59000. bottom: 13/426
  59001. },
  59002. extraAttributes: {
  59003. "pawSize": {
  59004. name: "Paw Size",
  59005. power: 1,
  59006. type: "length",
  59007. base: math.unit(0.2, "meters")
  59008. },
  59009. },
  59010. form: "casual",
  59011. },
  59012. base_front: {
  59013. height: math.unit(7, "feet"),
  59014. weight: math.unit(210, "lb"),
  59015. preyCapacity: math.unit(2, "people"),
  59016. name: "Front",
  59017. image: {
  59018. source: "./media/characters/managarmr/base-front.svg",
  59019. extra: 580/485,
  59020. bottom: 32/612
  59021. },
  59022. extraAttributes: {
  59023. "wingspan": {
  59024. name: "Wingspan",
  59025. power: 1,
  59026. type: "length",
  59027. base: math.unit(4, "meters")
  59028. },
  59029. "pawSize": {
  59030. name: "Paw Size",
  59031. power: 1,
  59032. type: "length",
  59033. base: math.unit(0.2, "meters")
  59034. },
  59035. },
  59036. form: "base",
  59037. },
  59038. "true-divine_front": {
  59039. height: math.unit(40, "feet"),
  59040. weight: math.unit(39000, "lb"),
  59041. preyCapacity: math.unit(375, "people"),
  59042. name: "Front",
  59043. image: {
  59044. source: "./media/characters/managarmr/true-divine-front.svg",
  59045. extra: 725/573,
  59046. bottom: 120/845
  59047. },
  59048. extraAttributes: {
  59049. "wingspan": {
  59050. name: "Wingspan",
  59051. power: 1,
  59052. type: "length",
  59053. base: math.unit(20, "meters")
  59054. },
  59055. "pawSize": {
  59056. name: "Paw Size",
  59057. power: 1,
  59058. type: "length",
  59059. base: math.unit(1.5, "meters")
  59060. },
  59061. },
  59062. form: "true-divine",
  59063. },
  59064. },
  59065. [
  59066. {
  59067. name: "Normal",
  59068. height: math.unit(6 + 1/12, "feet"),
  59069. form: "casual",
  59070. default: true
  59071. },
  59072. {
  59073. name: "Normal",
  59074. height: math.unit(7, "feet"),
  59075. form: "base",
  59076. default: true
  59077. },
  59078. ],
  59079. {
  59080. "casual": {
  59081. name: "Casual",
  59082. default: true
  59083. },
  59084. "base": {
  59085. name: "Base",
  59086. },
  59087. "true-divine": {
  59088. name: "True Divine",
  59089. },
  59090. }
  59091. ))
  59092. characterMakers.push(() => makeCharacter(
  59093. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  59094. {
  59095. front: {
  59096. height: math.unit(1.8, "meters"),
  59097. weight: math.unit(110, "kg"),
  59098. name: "Front",
  59099. image: {
  59100. source: "./media/characters/mystra/front.svg",
  59101. extra: 529/442,
  59102. bottom: 31/560
  59103. }
  59104. },
  59105. frontLewd: {
  59106. height: math.unit(1.8, "meters"),
  59107. weight: math.unit(110, "kg"),
  59108. name: "Front (Lewd)",
  59109. image: {
  59110. source: "./media/characters/mystra/front-lewd.svg",
  59111. extra: 529/442,
  59112. bottom: 31/560
  59113. }
  59114. },
  59115. head: {
  59116. height: math.unit(1.63, "feet"),
  59117. name: "Head",
  59118. image: {
  59119. source: "./media/characters/mystra/head.svg"
  59120. }
  59121. },
  59122. paw: {
  59123. height: math.unit(1.9, "feet"),
  59124. name: "Paw",
  59125. image: {
  59126. source: "./media/characters/mystra/paw.svg"
  59127. }
  59128. },
  59129. },
  59130. [
  59131. {
  59132. name: "Incognito",
  59133. height: math.unit(2.3, "meters")
  59134. },
  59135. {
  59136. name: "Small Macro",
  59137. height: math.unit(300, "meters")
  59138. },
  59139. {
  59140. name: "Small Mega",
  59141. height: math.unit(2, "km")
  59142. },
  59143. {
  59144. name: "Mega",
  59145. height: math.unit(30, "km")
  59146. },
  59147. {
  59148. name: "Small Giga",
  59149. height: math.unit(100, "km")
  59150. },
  59151. {
  59152. name: "Giga",
  59153. height: math.unit(1000, "km"),
  59154. default: true
  59155. },
  59156. {
  59157. name: "Continental",
  59158. height: math.unit(5000, "km")
  59159. },
  59160. {
  59161. name: "Terra",
  59162. height: math.unit(20000, "km")
  59163. },
  59164. {
  59165. name: "Solar",
  59166. height: math.unit(2e6, "km")
  59167. },
  59168. {
  59169. name: "Galactic",
  59170. height: math.unit(528502, "lightyears")
  59171. },
  59172. {
  59173. name: "Universal",
  59174. height: math.unit(20, "universes")
  59175. },
  59176. ]
  59177. ))
  59178. characterMakers.push(() => makeCharacter(
  59179. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  59180. {
  59181. front: {
  59182. height: math.unit(2, "meters"),
  59183. weight: math.unit(140, "kg"),
  59184. name: "Front",
  59185. image: {
  59186. source: "./media/characters/caleb/front.svg",
  59187. extra: 873/817,
  59188. bottom: 47/920
  59189. }
  59190. },
  59191. back: {
  59192. height: math.unit(2, "meters"),
  59193. weight: math.unit(140, "kg"),
  59194. name: "Back",
  59195. image: {
  59196. source: "./media/characters/caleb/back.svg",
  59197. extra: 877/828,
  59198. bottom: 24/901
  59199. }
  59200. },
  59201. snakeTail: {
  59202. height: math.unit(1.44, "feet"),
  59203. name: "Snake Tail",
  59204. image: {
  59205. source: "./media/characters/caleb/snake-tail.svg"
  59206. }
  59207. },
  59208. dick: {
  59209. height: math.unit(2.6, "feet"),
  59210. name: "Dick",
  59211. image: {
  59212. source: "./media/characters/caleb/dick.svg"
  59213. }
  59214. },
  59215. },
  59216. [
  59217. {
  59218. name: "Incognito",
  59219. height: math.unit(3, "meters")
  59220. },
  59221. {
  59222. name: "Home Size",
  59223. height: math.unit(200, "meters"),
  59224. default: true
  59225. },
  59226. {
  59227. name: "Macro",
  59228. height: math.unit(500, "meters")
  59229. },
  59230. {
  59231. name: "Big Macro",
  59232. height: math.unit(5, "km")
  59233. },
  59234. {
  59235. name: "Giga",
  59236. height: math.unit(250, "km")
  59237. },
  59238. {
  59239. name: "Giga+",
  59240. height: math.unit(5000, "km")
  59241. },
  59242. {
  59243. name: "Small Terra",
  59244. height: math.unit(35e3, "km")
  59245. },
  59246. {
  59247. name: "Terra",
  59248. height: math.unit(2e6, "km")
  59249. },
  59250. {
  59251. name: "Terra+",
  59252. height: math.unit(1.5e6, "km")
  59253. },
  59254. ]
  59255. ))
  59256. characterMakers.push(() => makeCharacter(
  59257. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  59258. {
  59259. front: {
  59260. height: math.unit(2, "meters"),
  59261. weight: math.unit(120, "kg"),
  59262. name: "Front",
  59263. image: {
  59264. source: "./media/characters/gilirian/front.svg",
  59265. extra: 805/737,
  59266. bottom: 13/818
  59267. }
  59268. },
  59269. side: {
  59270. height: math.unit(2, "meters"),
  59271. weight: math.unit(120, "kg"),
  59272. name: "Side",
  59273. image: {
  59274. source: "./media/characters/gilirian/side.svg",
  59275. extra: 810/746,
  59276. bottom: 6/816
  59277. }
  59278. },
  59279. back: {
  59280. height: math.unit(2, "meters"),
  59281. weight: math.unit(120, "kg"),
  59282. name: "Back",
  59283. image: {
  59284. source: "./media/characters/gilirian/back.svg",
  59285. extra: 815/745,
  59286. bottom: 15/830
  59287. }
  59288. },
  59289. frontNsfw: {
  59290. height: math.unit(2, "meters"),
  59291. weight: math.unit(120, "kg"),
  59292. name: "Front (NSFW)",
  59293. image: {
  59294. source: "./media/characters/gilirian/front-nsfw.svg",
  59295. extra: 805/737,
  59296. bottom: 13/818
  59297. }
  59298. },
  59299. sideNsfw: {
  59300. height: math.unit(2, "meters"),
  59301. weight: math.unit(120, "kg"),
  59302. name: "Side (NSFW)",
  59303. image: {
  59304. source: "./media/characters/gilirian/side-nsfw.svg",
  59305. extra: 810/746,
  59306. bottom: 6/816
  59307. }
  59308. },
  59309. },
  59310. [
  59311. {
  59312. name: "Incognito",
  59313. height: math.unit(2, "meters"),
  59314. default: true
  59315. },
  59316. {
  59317. name: "Macro",
  59318. height: math.unit(250, "meters")
  59319. },
  59320. {
  59321. name: "Big Macro",
  59322. height: math.unit(1500, "meters")
  59323. },
  59324. {
  59325. name: "Mega",
  59326. height: math.unit(40, "km")
  59327. },
  59328. {
  59329. name: "Giga",
  59330. height: math.unit(300, "km")
  59331. },
  59332. {
  59333. name: "Extra Giga",
  59334. height: math.unit(5000, "km")
  59335. },
  59336. {
  59337. name: "Small Terra",
  59338. height: math.unit(10e3, "km")
  59339. },
  59340. {
  59341. name: "Terra",
  59342. height: math.unit(3e5, "km")
  59343. },
  59344. {
  59345. name: "Galactic",
  59346. height: math.unit(369950, "lightyears")
  59347. },
  59348. ]
  59349. ))
  59350. characterMakers.push(() => makeCharacter(
  59351. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  59352. {
  59353. front: {
  59354. height: math.unit(2.5, "meters"),
  59355. weight: math.unit(230, "lb"),
  59356. name: "Front",
  59357. image: {
  59358. source: "./media/characters/tarken/front.svg",
  59359. extra: 764/720,
  59360. bottom: 49/813
  59361. }
  59362. },
  59363. back: {
  59364. height: math.unit(2.5, "meters"),
  59365. weight: math.unit(230, "lb"),
  59366. name: "Back",
  59367. image: {
  59368. source: "./media/characters/tarken/back.svg",
  59369. extra: 756/720,
  59370. bottom: 35/791
  59371. }
  59372. },
  59373. frontNsfw: {
  59374. height: math.unit(2.5, "meters"),
  59375. weight: math.unit(230, "lb"),
  59376. name: "Front (NSFW)",
  59377. image: {
  59378. source: "./media/characters/tarken/front-nsfw.svg",
  59379. extra: 764/720,
  59380. bottom: 49/813
  59381. }
  59382. },
  59383. backNsfw: {
  59384. height: math.unit(2.5, "meters"),
  59385. weight: math.unit(230, "lb"),
  59386. name: "Back (NSFW)",
  59387. image: {
  59388. source: "./media/characters/tarken/back-nsfw.svg",
  59389. extra: 756/720,
  59390. bottom: 35/791
  59391. }
  59392. },
  59393. head: {
  59394. height: math.unit(2.22, "feet"),
  59395. name: "Head",
  59396. image: {
  59397. source: "./media/characters/tarken/head.svg"
  59398. }
  59399. },
  59400. tail: {
  59401. height: math.unit(5.25, "feet"),
  59402. name: "Tail",
  59403. image: {
  59404. source: "./media/characters/tarken/tail.svg"
  59405. }
  59406. },
  59407. dick: {
  59408. height: math.unit(1.95, "feet"),
  59409. name: "Dick",
  59410. image: {
  59411. source: "./media/characters/tarken/dick.svg"
  59412. }
  59413. },
  59414. hand: {
  59415. height: math.unit(1.78, "feet"),
  59416. name: "Hand",
  59417. image: {
  59418. source: "./media/characters/tarken/hand.svg"
  59419. }
  59420. },
  59421. beam: {
  59422. height: math.unit(1.5, "feet"),
  59423. name: "Beam",
  59424. image: {
  59425. source: "./media/characters/tarken/beam.svg"
  59426. }
  59427. },
  59428. },
  59429. [
  59430. {
  59431. name: "Original Size",
  59432. height: math.unit(2.5, "meters")
  59433. },
  59434. {
  59435. name: "Macro",
  59436. height: math.unit(150, "meters"),
  59437. default: true
  59438. },
  59439. {
  59440. name: "Macro+",
  59441. height: math.unit(300, "meters")
  59442. },
  59443. {
  59444. name: "Mega",
  59445. height: math.unit(2, "km")
  59446. },
  59447. {
  59448. name: "Mega+",
  59449. height: math.unit(35, "km")
  59450. },
  59451.  {
  59452. name: "Mega++",
  59453. height: math.unit(60, "km")
  59454. },
  59455. {
  59456. name: "Giga",
  59457. height: math.unit(200, "km")
  59458. },
  59459. {
  59460. name: "Giga+",
  59461. height: math.unit(2500, "km")
  59462. },
  59463. {
  59464. name: "Giga++",
  59465. height: math.unit(6600, "km")
  59466. },
  59467. {
  59468. name: "Terra",
  59469. height: math.unit(20000, "km")
  59470. },
  59471. {
  59472. name: "Terra+",
  59473. height: math.unit(300000, "km")
  59474. },
  59475. ]
  59476. ))
  59477. characterMakers.push(() => makeCharacter(
  59478. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  59479. {
  59480. magpie_dressed: {
  59481. height: math.unit(1.7, "meters"),
  59482. weight: math.unit(70, "kg"),
  59483. name: "Dressed",
  59484. image: {
  59485. source: "./media/characters/otreus/magpie-dressed.svg",
  59486. extra: 691/672,
  59487. bottom: 116/807
  59488. },
  59489. form: "magpie",
  59490. default: true
  59491. },
  59492. magpie_nude: {
  59493. height: math.unit(1.7, "meters"),
  59494. weight: math.unit(70, "kg"),
  59495. name: "Nude",
  59496. image: {
  59497. source: "./media/characters/otreus/magpie-nude.svg",
  59498. extra: 691/672,
  59499. bottom: 116/807
  59500. },
  59501. form: "magpie",
  59502. },
  59503. magpie_dressedLewd: {
  59504. height: math.unit(1.7, "meters"),
  59505. weight: math.unit(70, "kg"),
  59506. name: "Dressed (Lewd)",
  59507. image: {
  59508. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  59509. extra: 691/672,
  59510. bottom: 116/807
  59511. },
  59512. form: "magpie",
  59513. },
  59514. magpie_nudeLewd: {
  59515. height: math.unit(1.7, "meters"),
  59516. weight: math.unit(70, "kg"),
  59517. name: "Nude (Lewd)",
  59518. image: {
  59519. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  59520. extra: 691/672,
  59521. bottom: 116/807
  59522. },
  59523. form: "magpie",
  59524. },
  59525. magpie_leftFoot: {
  59526. height: math.unit(1.58, "feet"),
  59527. name: "Left Foot",
  59528. image: {
  59529. source: "./media/characters/otreus/magpie-left-foot.svg"
  59530. },
  59531. form: "magpie",
  59532. },
  59533. magpie_rightFoot: {
  59534. height: math.unit(1.58, "feet"),
  59535. name: "Right Foot",
  59536. image: {
  59537. source: "./media/characters/otreus/magpie-right-foot.svg"
  59538. },
  59539. form: "magpie",
  59540. },
  59541. magpie_wingspan: {
  59542. height: math.unit(2, "meters"),
  59543. weight: math.unit(70, "kg"),
  59544. name: "Wingspan",
  59545. image: {
  59546. source: "./media/characters/otreus/magpie-wingspan.svg"
  59547. },
  59548. extraAttributes: {
  59549. "wingspan": {
  59550. name: "Wingspan",
  59551. power: 1,
  59552. type: "length",
  59553. base: math.unit(3.35, "meters")
  59554. },
  59555. },
  59556. form: "magpie",
  59557. },
  59558. hippogriff_dressed: {
  59559. height: math.unit(1.7, "meters"),
  59560. weight: math.unit(70, "kg"),
  59561. name: "Dressed",
  59562. image: {
  59563. source: "./media/characters/otreus/hippogriff-dressed.svg",
  59564. extra: 710/689,
  59565. bottom: 67/777
  59566. },
  59567. form: "hippogriff",
  59568. default: true
  59569. },
  59570. hippogriff_nude: {
  59571. height: math.unit(1.7, "meters"),
  59572. weight: math.unit(70, "kg"),
  59573. name: "Nude",
  59574. image: {
  59575. source: "./media/characters/otreus/hippogriff-nude.svg",
  59576. extra: 710/689,
  59577. bottom: 67/777
  59578. },
  59579. form: "hippogriff",
  59580. },
  59581. hippogriff_dressedLewd: {
  59582. height: math.unit(1.7, "meters"),
  59583. weight: math.unit(70, "kg"),
  59584. name: "Dressed (Lewd)",
  59585. image: {
  59586. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  59587. extra: 710/689,
  59588. bottom: 67/777
  59589. },
  59590. form: "hippogriff",
  59591. },
  59592. hippogriff_nudeLewd: {
  59593. height: math.unit(1.7, "meters"),
  59594. weight: math.unit(70, "kg"),
  59595. name: "Nude (Lewd)",
  59596. image: {
  59597. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  59598. extra: 710/689,
  59599. bottom: 67/777
  59600. },
  59601. form: "hippogriff",
  59602. },
  59603. },
  59604. [
  59605. {
  59606. name: "Original Size",
  59607. height: math.unit(1.7, "meters"),
  59608. allForms: true
  59609. },
  59610. {
  59611. name: "Incognito Size",
  59612. height: math.unit(2, "meters"),
  59613. allForms: true
  59614. },
  59615. {
  59616. name: "Mega",
  59617. height: math.unit(2, "km"),
  59618. allForms: true
  59619. },
  59620. {
  59621. name: "Mega+",
  59622. height: math.unit(40, "km"),
  59623. allForms: true
  59624. },
  59625. {
  59626. name: "Giga",
  59627. height: math.unit(250, "km"),
  59628. allForms: true
  59629. },
  59630. {
  59631. name: "Giga+",
  59632. height: math.unit(3000, "km"),
  59633. allForms: true
  59634. },
  59635. {
  59636. name: "Terra",
  59637. height: math.unit(20000, "km"),
  59638. allForms: true
  59639. },
  59640. {
  59641. name: "Solar (Home Size)",
  59642. height: math.unit(3e6, "km"),
  59643. allForms: true,
  59644. default: true
  59645. },
  59646. ],
  59647. {
  59648. "magpie": {
  59649. name: "Magpie",
  59650. default: true
  59651. },
  59652. "hippogriff": {
  59653. name: "Hippogriff",
  59654. },
  59655. }
  59656. ))
  59657. characterMakers.push(() => makeCharacter(
  59658. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  59659. {
  59660. frontDressed: {
  59661. height: math.unit(1.8, "meters"),
  59662. weight: math.unit(90, "kg"),
  59663. name: "Front (Dressed)",
  59664. image: {
  59665. source: "./media/characters/thalia/front-dressed.svg",
  59666. extra: 478/402,
  59667. bottom: 55/533
  59668. }
  59669. },
  59670. backDressed: {
  59671. height: math.unit(1.8, "meters"),
  59672. weight: math.unit(90, "kg"),
  59673. name: "Back (Dressed)",
  59674. image: {
  59675. source: "./media/characters/thalia/back-dressed.svg",
  59676. extra: 500/424,
  59677. bottom: 15/515
  59678. }
  59679. },
  59680. frontNude: {
  59681. height: math.unit(1.8, "meters"),
  59682. weight: math.unit(90, "kg"),
  59683. name: "Front (Nude)",
  59684. image: {
  59685. source: "./media/characters/thalia/front-nude.svg",
  59686. extra: 478/402,
  59687. bottom: 55/533
  59688. }
  59689. },
  59690. backNude: {
  59691. height: math.unit(1.8, "meters"),
  59692. weight: math.unit(90, "kg"),
  59693. name: "Back (Nude)",
  59694. image: {
  59695. source: "./media/characters/thalia/back-nude.svg",
  59696. extra: 500/424,
  59697. bottom: 15/515
  59698. }
  59699. },
  59700. },
  59701. [
  59702. {
  59703. name: "Incognito",
  59704. height: math.unit(3, "meters")
  59705. },
  59706. {
  59707. name: "Macro",
  59708. height: math.unit(500, "meters")
  59709. },
  59710. {
  59711. name: "Mega",
  59712. height: math.unit(5, "km")
  59713. },
  59714. {
  59715. name: "Mega+",
  59716. height: math.unit(30, "km")
  59717. },
  59718. {
  59719. name: "Giga",
  59720. height: math.unit(350, "km")
  59721. },
  59722. {
  59723. name: "Giga+",
  59724. height: math.unit(4000, "km")
  59725. },
  59726. {
  59727. name: "Terra",
  59728. height: math.unit(35000, "km")
  59729. },
  59730. {
  59731. name: "Original Size",
  59732. height: math.unit(130000, "km")
  59733. },
  59734. {
  59735. name: "Solar (Home Size)",
  59736. height: math.unit(4e6, "km"),
  59737. default: true
  59738. },
  59739. ]
  59740. ))
  59741. characterMakers.push(() => makeCharacter(
  59742. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  59743. {
  59744. front: {
  59745. height: math.unit(1.8, "meters"),
  59746. weight: math.unit(95, "kg"),
  59747. name: "Front",
  59748. image: {
  59749. source: "./media/characters/shango/front.svg",
  59750. extra: 1925/1774,
  59751. bottom: 67/1992
  59752. }
  59753. },
  59754. back: {
  59755. height: math.unit(1.8, "meters"),
  59756. weight: math.unit(95, "kg"),
  59757. name: "Back",
  59758. image: {
  59759. source: "./media/characters/shango/back.svg",
  59760. extra: 1915/1766,
  59761. bottom: 52/1967
  59762. }
  59763. },
  59764. frontLewd: {
  59765. height: math.unit(1.8, "meters"),
  59766. weight: math.unit(95, "kg"),
  59767. name: "Front (Lewd)",
  59768. image: {
  59769. source: "./media/characters/shango/front-lewd.svg",
  59770. extra: 1925/1774,
  59771. bottom: 67/1992
  59772. }
  59773. },
  59774. backLewd: {
  59775. height: math.unit(1.8, "meters"),
  59776. weight: math.unit(95, "kg"),
  59777. name: "Back (Lewd)",
  59778. image: {
  59779. source: "./media/characters/shango/back-lewd.svg",
  59780. extra: 1915/1766,
  59781. bottom: 52/1967
  59782. }
  59783. },
  59784. maw: {
  59785. height: math.unit(1.64, "feet"),
  59786. name: "Maw",
  59787. image: {
  59788. source: "./media/characters/shango/maw.svg"
  59789. }
  59790. },
  59791. dick: {
  59792. height: math.unit(2.14, "feet"),
  59793. name: "Dick",
  59794. image: {
  59795. source: "./media/characters/shango/dick.svg"
  59796. }
  59797. },
  59798. },
  59799. [
  59800. {
  59801. name: "Incognito",
  59802. height: math.unit(1.8, "meters")
  59803. },
  59804. {
  59805. name: "Home Size",
  59806. height: math.unit(60, "meters"),
  59807. default: true
  59808. },
  59809. {
  59810. name: "Macro",
  59811. height: math.unit(450, "meters")
  59812. },
  59813. {
  59814. name: "Mega",
  59815. height: math.unit(6, "km")
  59816. },
  59817. {
  59818. name: "Mega+",
  59819. height: math.unit(35, "km")
  59820. },
  59821. {
  59822. name: "Giga",
  59823. height: math.unit(500, "km")
  59824. },
  59825. {
  59826. name: "Giga+",
  59827. height: math.unit(5000, "km")
  59828. },
  59829. {
  59830. name: "Terra",
  59831. height: math.unit(60000, "km")
  59832. },
  59833. {
  59834. name: "Terra+",
  59835. height: math.unit(400000, "km")
  59836. },
  59837. ]
  59838. ))
  59839. characterMakers.push(() => makeCharacter(
  59840. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  59841. {
  59842. front: {
  59843. height: math.unit(2, "meters"),
  59844. weight: math.unit(95, "kg"),
  59845. name: "Front",
  59846. image: {
  59847. source: "./media/characters/osiris-gryphon/front.svg",
  59848. extra: 1508/1313,
  59849. bottom: 87/1595
  59850. }
  59851. },
  59852. back: {
  59853. height: math.unit(2, "meters"),
  59854. weight: math.unit(95, "kg"),
  59855. name: "Back",
  59856. image: {
  59857. source: "./media/characters/osiris-gryphon/back.svg",
  59858. extra: 1436/1309,
  59859. bottom: 64/1500
  59860. }
  59861. },
  59862. frontLewd: {
  59863. height: math.unit(2, "meters"),
  59864. weight: math.unit(95, "kg"),
  59865. name: "Front-lewd",
  59866. image: {
  59867. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  59868. extra: 1508/1313,
  59869. bottom: 87/1595
  59870. }
  59871. },
  59872. wing: {
  59873. height: math.unit(6.3333, "feet"),
  59874. name: "Wing",
  59875. image: {
  59876. source: "./media/characters/osiris-gryphon/wing.svg"
  59877. }
  59878. },
  59879. },
  59880. [
  59881. {
  59882. name: "Incognito",
  59883. height: math.unit(2, "meters")
  59884. },
  59885. {
  59886. name: "Home Size",
  59887. height: math.unit(30, "meters"),
  59888. default: true
  59889. },
  59890. {
  59891. name: "Macro",
  59892. height: math.unit(100, "meters")
  59893. },
  59894. {
  59895. name: "Macro+",
  59896. height: math.unit(350, "meters")
  59897. },
  59898. {
  59899. name: "Mega",
  59900. height: math.unit(40, "km")
  59901. },
  59902. {
  59903. name: "Giga",
  59904. height: math.unit(300, "km")
  59905. },
  59906. {
  59907. name: "Giga+",
  59908. height: math.unit(2000, "km")
  59909. },
  59910. {
  59911. name: "Terra",
  59912. height: math.unit(30000, "km")
  59913. },
  59914. ]
  59915. ))
  59916. characterMakers.push(() => makeCharacter(
  59917. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  59918. {
  59919. front: {
  59920. height: math.unit(2.5, "meters"),
  59921. weight: math.unit(200, "kg"),
  59922. name: "Front",
  59923. image: {
  59924. source: "./media/characters/atlas-dragon/front.svg",
  59925. extra: 745/462,
  59926. bottom: 36/781
  59927. }
  59928. },
  59929. back: {
  59930. height: math.unit(2.5, "meters"),
  59931. weight: math.unit(200, "kg"),
  59932. name: "Back",
  59933. image: {
  59934. source: "./media/characters/atlas-dragon/back.svg",
  59935. extra: 848/822,
  59936. bottom: 57/905
  59937. }
  59938. },
  59939. frontLewd: {
  59940. height: math.unit(2.5, "meters"),
  59941. weight: math.unit(200, "kg"),
  59942. name: "Front (Lewd)",
  59943. image: {
  59944. source: "./media/characters/atlas-dragon/front-lewd.svg",
  59945. extra: 745/462,
  59946. bottom: 36/781
  59947. }
  59948. },
  59949. backLewd: {
  59950. height: math.unit(2.5, "meters"),
  59951. weight: math.unit(200, "kg"),
  59952. name: "Back (Lewd)",
  59953. image: {
  59954. source: "./media/characters/atlas-dragon/back-lewd.svg",
  59955. extra: 848/822,
  59956. bottom: 57/905
  59957. }
  59958. },
  59959. },
  59960. [
  59961. {
  59962. name: "Incognito",
  59963. height: math.unit(2.5, "meters")
  59964. },
  59965. {
  59966. name: "Small Macro",
  59967. height: math.unit(50, "meters")
  59968. },
  59969. {
  59970. name: "Macro",
  59971. height: math.unit(350, "meters")
  59972. },
  59973. {
  59974. name: "Mega",
  59975. height: math.unit(5.5, "kilometers")
  59976. },
  59977. {
  59978. name: "Mega+",
  59979. height: math.unit(50, "km")
  59980. },
  59981. {
  59982. name: "Giga",
  59983. height: math.unit(350, "km")
  59984. },
  59985. {
  59986. name: "Giga+",
  59987. height: math.unit(2000, "km")
  59988. },
  59989. {
  59990. name: "Giga++",
  59991. height: math.unit(6500, "km")
  59992. },
  59993. {
  59994. name: "Terra",
  59995. height: math.unit(30000, "km")
  59996. },
  59997. {
  59998. name: "Terra+",
  59999. height: math.unit(250000, "km")
  60000. },
  60001. {
  60002. name: "True Size",
  60003. height: math.unit(100, "multiverses"),
  60004. default: true
  60005. },
  60006. ]
  60007. ))
  60008. characterMakers.push(() => makeCharacter(
  60009. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  60010. {
  60011. front: {
  60012. height: math.unit(1.8, "m"),
  60013. weight: math.unit(120, "kg"),
  60014. name: "Front",
  60015. image: {
  60016. source: "./media/characters/chey/front.svg",
  60017. extra: 1359/1270,
  60018. bottom: 18/1377
  60019. }
  60020. },
  60021. arm: {
  60022. height: math.unit(2.05, "feet"),
  60023. name: "Arm",
  60024. image: {
  60025. source: "./media/characters/chey/arm.svg"
  60026. }
  60027. },
  60028. head: {
  60029. height: math.unit(1.89, "feet"),
  60030. name: "Head",
  60031. image: {
  60032. source: "./media/characters/chey/head.svg"
  60033. }
  60034. },
  60035. },
  60036. [
  60037. {
  60038. name: "Original Size",
  60039. height: math.unit(5, "cm")
  60040. },
  60041. {
  60042. name: "Incognito Size",
  60043. height: math.unit(2.4, "m")
  60044. },
  60045. {
  60046. name: "Home Size",
  60047. height: math.unit(200, "meters"),
  60048. default: true
  60049. },
  60050. {
  60051. name: "Mega",
  60052. height: math.unit(2, "km")
  60053. },
  60054. {
  60055. name: "Giga (Preferred Size)",
  60056. height: math.unit(2000, "km")
  60057. },
  60058. {
  60059. name: "Giga+",
  60060. height: math.unit(6000, "km")
  60061. },
  60062. {
  60063. name: "Terra",
  60064. height: math.unit(17000, "km")
  60065. },
  60066. {
  60067. name: "Terra+",
  60068. height: math.unit(75000, "km")
  60069. },
  60070. {
  60071. name: "Terra++",
  60072. height: math.unit(225000, "km")
  60073. },
  60074. ]
  60075. ))
  60076. characterMakers.push(() => makeCharacter(
  60077. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  60078. {
  60079. side: {
  60080. height: math.unit(7.8, "meters"),
  60081. name: "Side",
  60082. image: {
  60083. source: "./media/characters/ragnarok/side.svg",
  60084. extra: 725/621,
  60085. bottom: 72/797
  60086. }
  60087. },
  60088. },
  60089. [
  60090. {
  60091. name: "Normal",
  60092. height: math.unit(7.8, "meters"),
  60093. default: true
  60094. },
  60095. ]
  60096. ))
  60097. characterMakers.push(() => makeCharacter(
  60098. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  60099. {
  60100. hyena_front: {
  60101. height: math.unit(2.1, "meters"),
  60102. weight: math.unit(110, "kg"),
  60103. name: "Front",
  60104. image: {
  60105. source: "./media/characters/nima/hyena-front.svg",
  60106. extra: 1904/1796,
  60107. bottom: 67/1971
  60108. },
  60109. form: "hyena",
  60110. },
  60111. hyena_back: {
  60112. height: math.unit(2.1, "meters"),
  60113. weight: math.unit(110, "kg"),
  60114. name: "Back",
  60115. image: {
  60116. source: "./media/characters/nima/hyena-back.svg",
  60117. extra: 1964/1884,
  60118. bottom: 35/1999
  60119. },
  60120. form: "hyena",
  60121. },
  60122. shark_front: {
  60123. height: math.unit(1.95, "meters"),
  60124. weight: math.unit(110, "kg"),
  60125. name: "Front",
  60126. image: {
  60127. source: "./media/characters/nima/shark-front.svg",
  60128. extra: 2238/2013,
  60129. bottom: 0/223
  60130. },
  60131. form: "shark",
  60132. },
  60133. paw: {
  60134. height: math.unit(1, "feet"),
  60135. name: "Paw",
  60136. image: {
  60137. source: "./media/characters/nima/paw.svg"
  60138. }
  60139. },
  60140. circlet: {
  60141. height: math.unit(0.3, "feet"),
  60142. name: "Circlet",
  60143. image: {
  60144. source: "./media/characters/nima/circlet.svg"
  60145. }
  60146. },
  60147. necklace: {
  60148. height: math.unit(1.2, "feet"),
  60149. name: "Necklace",
  60150. image: {
  60151. source: "./media/characters/nima/necklace.svg"
  60152. }
  60153. },
  60154. bracelet: {
  60155. height: math.unit(0.51, "feet"),
  60156. name: "Bracelet",
  60157. image: {
  60158. source: "./media/characters/nima/bracelet.svg"
  60159. }
  60160. },
  60161. armband: {
  60162. height: math.unit(1.3, "feet"),
  60163. name: "Armband",
  60164. image: {
  60165. source: "./media/characters/nima/armband.svg"
  60166. }
  60167. },
  60168. },
  60169. [
  60170. {
  60171. name: "Incognito",
  60172. height: math.unit(2.1, "meters"),
  60173. allForms: true
  60174. },
  60175. {
  60176. name: "Small Macro",
  60177. height: math.unit(50, "meters"),
  60178. allForms: true
  60179. },
  60180. {
  60181. name: "Macro",
  60182. height: math.unit(200, "meters"),
  60183. allForms: true
  60184. },
  60185. {
  60186. name: "Mega",
  60187. height: math.unit(2.5, "km"),
  60188. allForms: true
  60189. },
  60190. {
  60191. name: "Mega+",
  60192. height: math.unit(30, "km"),
  60193. allForms: true
  60194. },
  60195. {
  60196. name: "Giga (Home Size)",
  60197. height: math.unit(400, "km"),
  60198. allForms: true,
  60199. default: true
  60200. },
  60201. {
  60202. name: "Giga+",
  60203. height: math.unit(2500, "km"),
  60204. allForms: true
  60205. },
  60206. {
  60207. name: "Giga++",
  60208. height: math.unit(8000, "km"),
  60209. allForms: true
  60210. },
  60211. {
  60212. name: "Terra",
  60213. height: math.unit(20000, "km"),
  60214. allForms: true
  60215. },
  60216. {
  60217. name: "Terra+",
  60218. height: math.unit(70000, "km"),
  60219. allForms: true
  60220. },
  60221. {
  60222. name: "Terra++",
  60223. height: math.unit(600000, "km"),
  60224. allForms: true
  60225. },
  60226. {
  60227. name: "Galactic",
  60228. height: math.unit(40, "galaxies"),
  60229. allForms: true
  60230. },
  60231. {
  60232. name: "Universal",
  60233. height: math.unit(40, "universes"),
  60234. allForms: true
  60235. },
  60236. ],
  60237. {
  60238. "hyena": {
  60239. name: "Hyena",
  60240. default: true
  60241. },
  60242. "shark": {
  60243. name: "Shark",
  60244. },
  60245. }
  60246. ))
  60247. characterMakers.push(() => makeCharacter(
  60248. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  60249. {
  60250. anthro_front: {
  60251. height: math.unit(1.5, "meters"),
  60252. name: "Front",
  60253. image: {
  60254. source: "./media/characters/adelaide/anthro-front.svg",
  60255. extra: 860/783,
  60256. bottom: 60/920
  60257. },
  60258. form: "anthro",
  60259. default: true
  60260. },
  60261. hand: {
  60262. height: math.unit(0.65, "feet"),
  60263. name: "Hand",
  60264. image: {
  60265. source: "./media/characters/adelaide/hand.svg"
  60266. },
  60267. form: "anthro"
  60268. },
  60269. foot: {
  60270. height: math.unit(1.38 * 259 / 314, "feet"),
  60271. name: "Foot",
  60272. image: {
  60273. source: "./media/characters/adelaide/foot.svg",
  60274. extra: 259/259,
  60275. bottom: 55/314
  60276. },
  60277. form: "anthro"
  60278. },
  60279. feather: {
  60280. height: math.unit(0.85, "feet"),
  60281. name: "Feather",
  60282. image: {
  60283. source: "./media/characters/adelaide/feather.svg"
  60284. },
  60285. form: "anthro"
  60286. },
  60287. feral_side: {
  60288. height: math.unit(1, "meters"),
  60289. name: "Side",
  60290. image: {
  60291. source: "./media/characters/adelaide/feral-side.svg",
  60292. extra: 550/467,
  60293. bottom: 37/587
  60294. },
  60295. form: "feral",
  60296. default: true
  60297. },
  60298. feral_hand: {
  60299. height: math.unit(0.58, "feet"),
  60300. name: "Hand",
  60301. image: {
  60302. source: "./media/characters/adelaide/hand.svg"
  60303. },
  60304. form: "feral"
  60305. },
  60306. feral_foot: {
  60307. height: math.unit(1.2 * 259 / 314, "feet"),
  60308. name: "Foot",
  60309. image: {
  60310. source: "./media/characters/adelaide/foot.svg",
  60311. extra: 259/259,
  60312. bottom: 55/314
  60313. },
  60314. form: "feral"
  60315. },
  60316. feral_feather: {
  60317. height: math.unit(0.63, "feet"),
  60318. name: "Feather",
  60319. image: {
  60320. source: "./media/characters/adelaide/feather.svg"
  60321. },
  60322. form: "feral"
  60323. },
  60324. },
  60325. [
  60326. {
  60327. name: "Normal",
  60328. height: math.unit(1.5, "meters"),
  60329. form: "anthro",
  60330. default: true
  60331. },
  60332. {
  60333. name: "Normal",
  60334. height: math.unit(1, "meters"),
  60335. form: "feral",
  60336. default: true
  60337. },
  60338. ],
  60339. {
  60340. "anthro": {
  60341. name: "Anthro",
  60342. default: true
  60343. },
  60344. "feral": {
  60345. name: "Feral",
  60346. },
  60347. }
  60348. ))
  60349. characterMakers.push(() => makeCharacter(
  60350. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  60351. {
  60352. front: {
  60353. height: math.unit(2.5, "meters"),
  60354. name: "Front",
  60355. image: {
  60356. source: "./media/characters/goa/front.svg",
  60357. extra: 1109/1013,
  60358. bottom: 150/1259
  60359. }
  60360. },
  60361. },
  60362. [
  60363. {
  60364. name: "Normal",
  60365. height: math.unit(2.5, "meters"),
  60366. default: true
  60367. },
  60368. ]
  60369. ))
  60370. characterMakers.push(() => makeCharacter(
  60371. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  60372. {
  60373. front: {
  60374. height: math.unit(2, "meters"),
  60375. weight: math.unit(100, "kg"),
  60376. name: "Front",
  60377. image: {
  60378. source: "./media/characters/kiki-weavile/front.svg",
  60379. extra: 357/332,
  60380. bottom: 60/417
  60381. }
  60382. },
  60383. },
  60384. [
  60385. {
  60386. name: "Normal",
  60387. height: math.unit(2, "meters"),
  60388. default: true
  60389. },
  60390. ]
  60391. ))
  60392. characterMakers.push(() => makeCharacter(
  60393. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  60394. {
  60395. side: {
  60396. height: math.unit(1.6, "meters"),
  60397. name: "Side",
  60398. image: {
  60399. source: "./media/characters/liza/side.svg",
  60400. extra: 943/915,
  60401. bottom: 72/1015
  60402. }
  60403. },
  60404. },
  60405. [
  60406. {
  60407. name: "Normal",
  60408. height: math.unit(1.6, "meters"),
  60409. default: true
  60410. },
  60411. ]
  60412. ))
  60413. characterMakers.push(() => makeCharacter(
  60414. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  60415. {
  60416. side: {
  60417. height: math.unit(2.5, "meters"),
  60418. preyCapacity: math.unit(1, "people"),
  60419. name: "Side",
  60420. image: {
  60421. source: "./media/characters/persephone-sweetbreath/side.svg",
  60422. extra: 796/700,
  60423. bottom: 44/840
  60424. }
  60425. },
  60426. sideVore: {
  60427. height: math.unit(2.5, "meters"),
  60428. preyCapacity: math.unit(1, "people"),
  60429. name: "Side (Full)",
  60430. image: {
  60431. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  60432. extra: 796/700,
  60433. bottom: 44/840
  60434. }
  60435. },
  60436. },
  60437. [
  60438. {
  60439. name: "Normal",
  60440. height: math.unit(2.5, "meters"),
  60441. default: true
  60442. },
  60443. ]
  60444. ))
  60445. characterMakers.push(() => makeCharacter(
  60446. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  60447. {
  60448. front: {
  60449. height: math.unit(32, "meters"),
  60450. name: "Front",
  60451. image: {
  60452. source: "./media/characters/pierce/front.svg",
  60453. extra: 1695/1475,
  60454. bottom: 185/1880
  60455. }
  60456. },
  60457. side: {
  60458. height: math.unit(32, "meters"),
  60459. name: "Side",
  60460. image: {
  60461. source: "./media/characters/pierce/side.svg",
  60462. extra: 974/859,
  60463. bottom: 43/1017
  60464. }
  60465. },
  60466. frontWingless: {
  60467. height: math.unit(32, "meters"),
  60468. name: "Front (Wingless)",
  60469. image: {
  60470. source: "./media/characters/pierce/front-wingless.svg",
  60471. extra: 1695/1475,
  60472. bottom: 185/1880
  60473. }
  60474. },
  60475. sideWingless: {
  60476. height: math.unit(32, "meters"),
  60477. name: "Side (Wingless)",
  60478. image: {
  60479. source: "./media/characters/pierce/side-wingless.svg",
  60480. extra: 974/859,
  60481. bottom: 43/1017
  60482. }
  60483. },
  60484. maw: {
  60485. height: math.unit(19.3, "meters"),
  60486. name: "Maw",
  60487. image: {
  60488. source: "./media/characters/pierce/maw.svg"
  60489. }
  60490. },
  60491. },
  60492. [
  60493. {
  60494. name: "Small",
  60495. height: math.unit(8.5, "meters")
  60496. },
  60497. {
  60498. name: "Normal",
  60499. height: math.unit(32, "meters"),
  60500. default: true
  60501. },
  60502. ]
  60503. ))
  60504. characterMakers.push(() => makeCharacter(
  60505. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  60506. {
  60507. front: {
  60508. height: math.unit(2.3, "meters"),
  60509. weight: math.unit(165, "kg"),
  60510. name: "Front",
  60511. image: {
  60512. source: "./media/characters/shira/front.svg",
  60513. extra: 924/919,
  60514. bottom: 17/941
  60515. },
  60516. form: "cobra",
  60517. default: true
  60518. },
  60519. back: {
  60520. height: math.unit(2.3, "meters"),
  60521. weight: math.unit(165, "kg"),
  60522. name: "Back",
  60523. image: {
  60524. source: "./media/characters/shira/back.svg",
  60525. extra: 928/922,
  60526. bottom: 18/946
  60527. },
  60528. form: "cobra"
  60529. },
  60530. frontLewd: {
  60531. height: math.unit(2.3, "meters"),
  60532. weight: math.unit(165, "kg"),
  60533. name: "Front (Lewd)",
  60534. image: {
  60535. source: "./media/characters/shira/front-lewd.svg",
  60536. extra: 924/919,
  60537. bottom: 17/941
  60538. },
  60539. form: "cobra"
  60540. },
  60541. backLewd: {
  60542. height: math.unit(2.3, "meters"),
  60543. weight: math.unit(165, "kg"),
  60544. name: "Back (Lewd)",
  60545. image: {
  60546. source: "./media/characters/shira/back-lewd.svg",
  60547. extra: 928/922,
  60548. bottom: 18/946
  60549. },
  60550. form: "cobra"
  60551. },
  60552. maw: {
  60553. height: math.unit(1.14, "feet"),
  60554. name: "Maw",
  60555. image: {
  60556. source: "./media/characters/shira/maw.svg"
  60557. },
  60558. form: "cobra"
  60559. },
  60560. magma_front: {
  60561. height: math.unit(2.3, "meters"),
  60562. weight: math.unit(165, "kg"),
  60563. name: "Front",
  60564. image: {
  60565. source: "./media/characters/shira/magma-front.svg",
  60566. extra: 1870/1693,
  60567. bottom: 24/1894
  60568. },
  60569. form: "magma",
  60570. },
  60571. magma_back: {
  60572. height: math.unit(2.3, "meters"),
  60573. weight: math.unit(165, "kg"),
  60574. name: "Back",
  60575. image: {
  60576. source: "./media/characters/shira/magma-back.svg",
  60577. extra: 1918/1756,
  60578. bottom: 46/1964
  60579. },
  60580. form: "magma",
  60581. },
  60582. },
  60583. [
  60584. {
  60585. name: "Incognito",
  60586. height: math.unit(2.3, "meters"),
  60587. allForms: true
  60588. },
  60589. {
  60590. name: "Home Size",
  60591. height: math.unit(150, "meters"),
  60592. default: true,
  60593. allForms: true
  60594. },
  60595. {
  60596. name: "Macro",
  60597. height: math.unit(2, "km"),
  60598. allForms: true
  60599. },
  60600. {
  60601. name: "Mega",
  60602. height: math.unit(30, "km"),
  60603. allForms: true
  60604. },
  60605. {
  60606. name: "Giga",
  60607. height: math.unit(450, "km"),
  60608. allForms: true
  60609. },
  60610. {
  60611. name: "Giga+",
  60612. height: math.unit(3000, "km"),
  60613. allForms: true
  60614. },
  60615. {
  60616. name: "Giga++",
  60617. height: math.unit(6000, "km"),
  60618. allForms: true
  60619. },
  60620. {
  60621. name: "Terra",
  60622. height: math.unit(80000, "km"),
  60623. allForms: true
  60624. },
  60625. {
  60626. name: "Terra+",
  60627. height: math.unit(350000, "km"),
  60628. allForms: true
  60629. },
  60630. {
  60631. name: "Solar",
  60632. height: math.unit(1e6, "km"),
  60633. allForms: true
  60634. },
  60635. ],
  60636. {
  60637. "cobra": {
  60638. name: "Cobra",
  60639. default: true
  60640. },
  60641. "magma": {
  60642. name: "Magma Dragon",
  60643. },
  60644. }
  60645. ))
  60646. characterMakers.push(() => makeCharacter(
  60647. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  60648. {
  60649. front: {
  60650. height: math.unit(2, "meters"),
  60651. weight: math.unit(160, "kg"),
  60652. name: "Front",
  60653. image: {
  60654. source: "./media/characters/daxerios/front.svg",
  60655. extra: 1334/1277,
  60656. bottom: 45/1379
  60657. }
  60658. },
  60659. frontLewd: {
  60660. height: math.unit(2, "meters"),
  60661. weight: math.unit(160, "kg"),
  60662. name: "Front (Lewd)",
  60663. image: {
  60664. source: "./media/characters/daxerios/front-lewd.svg",
  60665. extra: 1334/1277,
  60666. bottom: 45/1379
  60667. }
  60668. },
  60669. dick: {
  60670. height: math.unit(2.35, "feet"),
  60671. name: "Dick",
  60672. image: {
  60673. source: "./media/characters/daxerios/dick.svg"
  60674. }
  60675. },
  60676. },
  60677. [
  60678. {
  60679. name: "\"Small\"",
  60680. height: math.unit(5, "meters")
  60681. },
  60682. {
  60683. name: "Original Size",
  60684. height: math.unit(500, "meters"),
  60685. default: true
  60686. },
  60687. {
  60688. name: "Mega",
  60689. height: math.unit(2, "km")
  60690. },
  60691. {
  60692. name: "Mega+",
  60693. height: math.unit(35, "km")
  60694. },
  60695. {
  60696. name: "Giga",
  60697. height: math.unit(250, "km")
  60698. },
  60699. {
  60700. name: "Giga+",
  60701. height: math.unit(3000, "km")
  60702. },
  60703. {
  60704. name: "Terra",
  60705. height: math.unit(25000, "km")
  60706. },
  60707. {
  60708. name: "Terra+",
  60709. height: math.unit(300000, "km")
  60710. },
  60711. {
  60712. name: "Solar",
  60713. height: math.unit(1e6, "km")
  60714. },
  60715. ]
  60716. ))
  60717. characterMakers.push(() => makeCharacter(
  60718. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  60719. {
  60720. front: {
  60721. height: math.unit(8 + 4/12, "feet"),
  60722. weight: math.unit(464, "lb"),
  60723. name: "Front",
  60724. image: {
  60725. source: "./media/characters/caveat/front.svg",
  60726. extra: 1861/1678,
  60727. bottom: 40/1901
  60728. }
  60729. },
  60730. },
  60731. [
  60732. {
  60733. name: "Normal",
  60734. height: math.unit(8 + 4/12, "feet"),
  60735. default: true
  60736. },
  60737. ]
  60738. ))
  60739. characterMakers.push(() => makeCharacter(
  60740. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  60741. {
  60742. front: {
  60743. height: math.unit(12, "feet"),
  60744. weight: math.unit(1800, "lb"),
  60745. name: "Front",
  60746. image: {
  60747. source: "./media/characters/centbair/front.svg",
  60748. extra: 781/663,
  60749. bottom: 25/806
  60750. }
  60751. },
  60752. frontNsfw: {
  60753. height: math.unit(12, "feet"),
  60754. weight: math.unit(1800, "lb"),
  60755. name: "Front (NSFW)",
  60756. image: {
  60757. source: "./media/characters/centbair/front-nsfw.svg",
  60758. extra: 781/663,
  60759. bottom: 25/806
  60760. }
  60761. },
  60762. back: {
  60763. height: math.unit(12, "feet"),
  60764. weight: math.unit(1800, "lb"),
  60765. name: "Back",
  60766. image: {
  60767. source: "./media/characters/centbair/back.svg",
  60768. extra: 808/761,
  60769. bottom: 19/827
  60770. }
  60771. },
  60772. dick: {
  60773. height: math.unit(6.5, "feet"),
  60774. name: "Dick",
  60775. image: {
  60776. source: "./media/characters/centbair/dick.svg"
  60777. }
  60778. },
  60779. slit: {
  60780. height: math.unit(3.25, "feet"),
  60781. name: "Slit",
  60782. image: {
  60783. source: "./media/characters/centbair/slit.svg"
  60784. }
  60785. },
  60786. },
  60787. [
  60788. {
  60789. name: "Normal",
  60790. height: math.unit(12, "feet"),
  60791. default: true
  60792. },
  60793. ]
  60794. ))
  60795. characterMakers.push(() => makeCharacter(
  60796. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  60797. {
  60798. front: {
  60799. height: math.unit(5 + 7/12, "feet"),
  60800. name: "Front",
  60801. image: {
  60802. source: "./media/characters/andy/front.svg",
  60803. extra: 634/588,
  60804. bottom: 36/670
  60805. },
  60806. extraAttributes: {
  60807. "pawLength": {
  60808. name: "Paw Length",
  60809. power: 1,
  60810. type: "length",
  60811. base: math.unit(1, "feet")
  60812. },
  60813. }
  60814. },
  60815. side: {
  60816. height: math.unit(5 + 7/12, "feet"),
  60817. name: "Side",
  60818. image: {
  60819. source: "./media/characters/andy/side.svg",
  60820. extra: 641/596,
  60821. bottom: 34/675
  60822. },
  60823. extraAttributes: {
  60824. "pawLength": {
  60825. name: "Paw Length",
  60826. power: 1,
  60827. type: "length",
  60828. base: math.unit(1, "feet")
  60829. },
  60830. }
  60831. },
  60832. back: {
  60833. height: math.unit(5 + 7/12, "feet"),
  60834. name: "Back",
  60835. image: {
  60836. source: "./media/characters/andy/back.svg",
  60837. extra: 618/583,
  60838. bottom: 39/657
  60839. },
  60840. extraAttributes: {
  60841. "pawLength": {
  60842. name: "Paw Length",
  60843. power: 1,
  60844. type: "length",
  60845. base: math.unit(1, "feet")
  60846. },
  60847. }
  60848. },
  60849. paw: {
  60850. height: math.unit(1.13, "feet"),
  60851. name: "Paw",
  60852. image: {
  60853. source: "./media/characters/andy/paw.svg"
  60854. }
  60855. },
  60856. },
  60857. [
  60858. {
  60859. name: "Micro",
  60860. height: math.unit(4, "inches")
  60861. },
  60862. {
  60863. name: "Normal",
  60864. height: math.unit(5 + 7/12, "feet"),
  60865. default: true
  60866. },
  60867. {
  60868. name: "Macro",
  60869. height: math.unit(390.42, "feet")
  60870. },
  60871. ]
  60872. ))
  60873. characterMakers.push(() => makeCharacter(
  60874. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  60875. {
  60876. front: {
  60877. height: math.unit(7, "feet"),
  60878. weight: math.unit(250, "lb"),
  60879. name: "Front",
  60880. image: {
  60881. source: "./media/characters/vix-titan/front.svg",
  60882. extra: 460/428,
  60883. bottom: 15/475
  60884. },
  60885. extraAttributes: {
  60886. "pawWidth": {
  60887. name: "Paw Width",
  60888. power: 1,
  60889. type: "length",
  60890. base: math.unit(0.75, "feet")
  60891. },
  60892. }
  60893. },
  60894. },
  60895. [
  60896. {
  60897. name: "Normal",
  60898. height: math.unit(7, "feet"),
  60899. default: true
  60900. },
  60901. {
  60902. name: "Giant",
  60903. height: math.unit(1500, "feet")
  60904. },
  60905. {
  60906. name: "Mega",
  60907. height: math.unit(10, "miles")
  60908. },
  60909. {
  60910. name: "Giga",
  60911. height: math.unit(150, "miles")
  60912. },
  60913. {
  60914. name: "Tera",
  60915. height: math.unit(144000, "miles")
  60916. },
  60917. ]
  60918. ))
  60919. characterMakers.push(() => makeCharacter(
  60920. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  60921. {
  60922. front: {
  60923. height: math.unit(6 + 2/12, "feet"),
  60924. name: "Front",
  60925. image: {
  60926. source: "./media/characters/reiku/front.svg",
  60927. extra: 1910/1757,
  60928. bottom: 103/2013
  60929. },
  60930. extraAttributes: {
  60931. "thighThickness": {
  60932. name: "Thigh Thickness",
  60933. power: 1,
  60934. type: "length",
  60935. base: math.unit(1.12, "feet")
  60936. },
  60937. "assThickness": {
  60938. name: "Ass Thickness",
  60939. power: 1,
  60940. type: "length",
  60941. base: math.unit(1.12*2, "feet")
  60942. },
  60943. }
  60944. },
  60945. side: {
  60946. height: math.unit(6 + 2/12, "feet"),
  60947. name: "Side",
  60948. image: {
  60949. source: "./media/characters/reiku/side.svg",
  60950. extra: 1846/1748,
  60951. bottom: 99/1945
  60952. },
  60953. extraAttributes: {
  60954. "thighThickness": {
  60955. name: "Thigh Thickness",
  60956. power: 1,
  60957. type: "length",
  60958. base: math.unit(1.12, "feet")
  60959. },
  60960. "assThickness": {
  60961. name: "Ass Thickness",
  60962. power: 1,
  60963. type: "length",
  60964. base: math.unit(1.12*2, "feet")
  60965. },
  60966. }
  60967. },
  60968. back: {
  60969. height: math.unit(6 + 2/12, "feet"),
  60970. name: "Back",
  60971. image: {
  60972. source: "./media/characters/reiku/back.svg",
  60973. extra: 1941/1786,
  60974. bottom: 34/1975
  60975. },
  60976. extraAttributes: {
  60977. "thighThickness": {
  60978. name: "Thigh Thickness",
  60979. power: 1,
  60980. type: "length",
  60981. base: math.unit(1.12, "feet")
  60982. },
  60983. "assThickness": {
  60984. name: "Ass Thickness",
  60985. power: 1,
  60986. type: "length",
  60987. base: math.unit(1.12*2, "feet")
  60988. },
  60989. }
  60990. },
  60991. head: {
  60992. height: math.unit(1.8, "feet"),
  60993. name: "Head",
  60994. image: {
  60995. source: "./media/characters/reiku/head.svg"
  60996. }
  60997. },
  60998. tailTop: {
  60999. height: math.unit(8.4, "feet"),
  61000. name: "Tail (Top)",
  61001. image: {
  61002. source: "./media/characters/reiku/tail-top.svg"
  61003. }
  61004. },
  61005. tailBottom: {
  61006. height: math.unit(8.4, "feet"),
  61007. name: "Tail (Bottom)",
  61008. image: {
  61009. source: "./media/characters/reiku/tail-bottom.svg"
  61010. }
  61011. },
  61012. foot: {
  61013. height: math.unit(2.6, "feet"),
  61014. name: "Foot",
  61015. image: {
  61016. source: "./media/characters/reiku/foot.svg"
  61017. }
  61018. },
  61019. footCurled: {
  61020. height: math.unit(2.3, "feet"),
  61021. name: "Foot (Curled)",
  61022. image: {
  61023. source: "./media/characters/reiku/foot-curled.svg"
  61024. }
  61025. },
  61026. footSide: {
  61027. height: math.unit(1.26, "feet"),
  61028. name: "Foot (Side)",
  61029. image: {
  61030. source: "./media/characters/reiku/foot-side.svg"
  61031. }
  61032. },
  61033. },
  61034. [
  61035. {
  61036. name: "Normal",
  61037. height: math.unit(6 + 2/12, "feet"),
  61038. default: true
  61039. },
  61040. ]
  61041. ))
  61042. characterMakers.push(() => makeCharacter(
  61043. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  61044. {
  61045. front: {
  61046. height: math.unit(7, "feet"),
  61047. weight: math.unit(500, "kg"),
  61048. name: "Front",
  61049. image: {
  61050. source: "./media/characters/cialda/front.svg",
  61051. extra: 912/745,
  61052. bottom: 55/967
  61053. }
  61054. },
  61055. },
  61056. [
  61057. {
  61058. name: "Normal",
  61059. height: math.unit(7, "feet"),
  61060. default: true
  61061. },
  61062. ]
  61063. ))
  61064. characterMakers.push(() => makeCharacter(
  61065. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  61066. {
  61067. side: {
  61068. height: math.unit(6, "feet"),
  61069. weight: math.unit(600, "lb"),
  61070. preyCapacity: math.unit(25, "liters"),
  61071. name: "Side",
  61072. image: {
  61073. source: "./media/characters/darkkin/side.svg",
  61074. extra: 1597/1447,
  61075. bottom: 101/1698
  61076. }
  61077. },
  61078. },
  61079. [
  61080. {
  61081. name: "Canon Height",
  61082. height: math.unit(568, "feet"),
  61083. default: true
  61084. },
  61085. ]
  61086. ))
  61087. characterMakers.push(() => makeCharacter(
  61088. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  61089. {
  61090. front: {
  61091. height: math.unit(6, "feet"),
  61092. weight: math.unit(1500, "lb"),
  61093. preyCapacity: math.unit(3, "people"),
  61094. name: "Front",
  61095. image: {
  61096. source: "./media/characters/livnia/front.svg",
  61097. extra: 934/932,
  61098. bottom: 83/1017
  61099. }
  61100. },
  61101. back: {
  61102. height: math.unit(6, "feet"),
  61103. weight: math.unit(1500, "lb"),
  61104. preyCapacity: math.unit(3, "people"),
  61105. name: "Back",
  61106. image: {
  61107. source: "./media/characters/livnia/back.svg",
  61108. extra: 916/915,
  61109. bottom: 58/974
  61110. }
  61111. },
  61112. head: {
  61113. height: math.unit(1.53, "feet"),
  61114. name: "Head",
  61115. image: {
  61116. source: "./media/characters/livnia/head.svg"
  61117. }
  61118. },
  61119. maw: {
  61120. height: math.unit(0.78, "feet"),
  61121. name: "Maw",
  61122. image: {
  61123. source: "./media/characters/livnia/maw.svg"
  61124. }
  61125. },
  61126. genitals: {
  61127. height: math.unit(0.35, "feet"),
  61128. name: "Genitals",
  61129. image: {
  61130. source: "./media/characters/livnia/genitals.svg"
  61131. }
  61132. },
  61133. },
  61134. [
  61135. {
  61136. name: "Normal",
  61137. height: math.unit(1000, "feet"),
  61138. default: true
  61139. },
  61140. ]
  61141. ))
  61142. characterMakers.push(() => makeCharacter(
  61143. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  61144. {
  61145. front: {
  61146. height: math.unit(4, "feet"),
  61147. weight: math.unit(73, "lb"),
  61148. name: "Front",
  61149. image: {
  61150. source: "./media/characters/hayaku/front.svg",
  61151. extra: 1011/888,
  61152. bottom: 33/1044
  61153. }
  61154. },
  61155. back: {
  61156. height: math.unit(4, "feet"),
  61157. weight: math.unit(73, "lb"),
  61158. name: "Back",
  61159. image: {
  61160. source: "./media/characters/hayaku/back.svg",
  61161. extra: 1040/930,
  61162. bottom: 20/1060
  61163. }
  61164. },
  61165. },
  61166. [
  61167. {
  61168. name: "Normal",
  61169. height: math.unit(4, "feet"),
  61170. default: true
  61171. },
  61172. ]
  61173. ))
  61174. characterMakers.push(() => makeCharacter(
  61175. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  61176. {
  61177. front: {
  61178. height: math.unit(6 + 7/12, "feet"),
  61179. weight: math.unit(300, "lb"),
  61180. name: "Front",
  61181. image: {
  61182. source: "./media/characters/athena-bryzant/front.svg",
  61183. extra: 870/835,
  61184. bottom: 33/903
  61185. }
  61186. },
  61187. back: {
  61188. height: math.unit(6 + 7/12, "feet"),
  61189. weight: math.unit(300, "lb"),
  61190. name: "Back",
  61191. image: {
  61192. source: "./media/characters/athena-bryzant/back.svg",
  61193. extra: 858/823,
  61194. bottom: 30/888
  61195. }
  61196. },
  61197. head: {
  61198. height: math.unit(2.38, "feet"),
  61199. name: "Head",
  61200. image: {
  61201. source: "./media/characters/athena-bryzant/head.svg"
  61202. }
  61203. },
  61204. wings: {
  61205. height: math.unit(2.85, "feet"),
  61206. name: "Wings",
  61207. image: {
  61208. source: "./media/characters/athena-bryzant/wings.svg"
  61209. }
  61210. },
  61211. },
  61212. [
  61213. {
  61214. name: "Normal",
  61215. height: math.unit(6 + 7/12, "feet"),
  61216. default: true
  61217. },
  61218. {
  61219. name: "Big",
  61220. height: math.unit(8, "feet")
  61221. },
  61222. {
  61223. name: "Very Big",
  61224. height: math.unit(11, "feet")
  61225. },
  61226. ]
  61227. ))
  61228. characterMakers.push(() => makeCharacter(
  61229. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  61230. {
  61231. side: {
  61232. height: math.unit(3, "meters"),
  61233. weight: math.unit(7500, "kg"),
  61234. preyCapacity: math.unit(1e12, "people"),
  61235. name: "Side",
  61236. image: {
  61237. source: "./media/characters/zel-kesh/side.svg",
  61238. extra: 910/407,
  61239. bottom: 147/1057
  61240. }
  61241. },
  61242. },
  61243. [
  61244. {
  61245. name: "Normal",
  61246. height: math.unit(3, "meters"),
  61247. default: true
  61248. },
  61249. ]
  61250. ))
  61251. characterMakers.push(() => makeCharacter(
  61252. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  61253. {
  61254. front: {
  61255. height: math.unit(2, "meters"),
  61256. weight: math.unit(95, "kg"),
  61257. name: "Front",
  61258. image: {
  61259. source: "./media/characters/kane-fox/front.svg",
  61260. extra: 945/888,
  61261. bottom: 27/972
  61262. }
  61263. },
  61264. back: {
  61265. height: math.unit(2, "meters"),
  61266. weight: math.unit(95, "kg"),
  61267. name: "Back",
  61268. image: {
  61269. source: "./media/characters/kane-fox/back.svg",
  61270. extra: 959/914,
  61271. bottom: 15/974
  61272. }
  61273. },
  61274. frontLewd: {
  61275. height: math.unit(2, "meters"),
  61276. weight: math.unit(95, "kg"),
  61277. name: "Front (Lewd)",
  61278. image: {
  61279. source: "./media/characters/kane-fox/front-lewd.svg",
  61280. extra: 945/888,
  61281. bottom: 27/972
  61282. }
  61283. },
  61284. },
  61285. [
  61286. {
  61287. name: "Home Size",
  61288. height: math.unit(2, "meters"),
  61289. default: true
  61290. },
  61291. {
  61292. name: "Macro",
  61293. height: math.unit(200, "meters")
  61294. },
  61295. {
  61296. name: "Small Mega",
  61297. height: math.unit(3, "km")
  61298. },
  61299. {
  61300. name: "Mega",
  61301. height: math.unit(50, "km")
  61302. },
  61303. {
  61304. name: "Giga",
  61305. height: math.unit(200, "km")
  61306. },
  61307. {
  61308. name: "Giga+",
  61309. height: math.unit(2500, "km")
  61310. },
  61311. {
  61312. name: "Terra",
  61313. height: math.unit(70000, "km")
  61314. },
  61315. {
  61316. name: "Terra+",
  61317. height: math.unit(150000, "km")
  61318. },
  61319. {
  61320. name: "Terra++",
  61321. height: math.unit(400000, "km")
  61322. },
  61323. ]
  61324. ))
  61325. characterMakers.push(() => makeCharacter(
  61326. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  61327. {
  61328. otter_front: {
  61329. height: math.unit(1.8, "meters"),
  61330. weight: math.unit(90, "kg"),
  61331. name: "Front",
  61332. image: {
  61333. source: "./media/characters/ayranus/otter-front.svg",
  61334. extra: 468/452,
  61335. bottom: 43/511
  61336. },
  61337. form: "otter",
  61338. },
  61339. otter_frontLewd: {
  61340. height: math.unit(1.8, "meters"),
  61341. weight: math.unit(90, "kg"),
  61342. name: "Front (Lewd)",
  61343. image: {
  61344. source: "./media/characters/ayranus/otter-front-lewd.svg",
  61345. extra: 468/452,
  61346. bottom: 43/511
  61347. },
  61348. form: "otter",
  61349. },
  61350. lionbat_front: {
  61351. height: math.unit(1.8, "meters"),
  61352. weight: math.unit(90, "kg"),
  61353. name: "Front (Lewd)",
  61354. image: {
  61355. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  61356. extra: 797/740,
  61357. bottom: 78/875
  61358. },
  61359. form: "lionbat",
  61360. },
  61361. paw: {
  61362. height: math.unit(1.5, "feet"),
  61363. name: "Paw",
  61364. image: {
  61365. source: "./media/characters/ayranus/paw.svg"
  61366. },
  61367. },
  61368. },
  61369. [
  61370. {
  61371. name: "Incognito",
  61372. height: math.unit(1.8, "meters"),
  61373. allForms: true
  61374. },
  61375. {
  61376. name: "Macro",
  61377. height: math.unit(60, "meters"),
  61378. allForms: true
  61379. },
  61380. {
  61381. name: "Macro+",
  61382. height: math.unit(200, "meters"),
  61383. allForms: true
  61384. },
  61385. {
  61386. name: "Mega",
  61387. height: math.unit(35, "km"),
  61388. allForms: true
  61389. },
  61390. {
  61391. name: "Giga",
  61392. height: math.unit(220, "km"),
  61393. allForms: true
  61394. },
  61395. {
  61396. name: "Giga+",
  61397. height: math.unit(1500, "km"),
  61398. allForms: true
  61399. },
  61400. {
  61401. name: "Terra",
  61402. height: math.unit(13000, "km"),
  61403. allForms: true
  61404. },
  61405. {
  61406. name: "Terra+",
  61407. height: math.unit(500000, "km"),
  61408. allForms: true
  61409. },
  61410. {
  61411. name: "Galactic",
  61412. height: math.unit(486080, "parsecs"),
  61413. default: true,
  61414. allForms: true
  61415. },
  61416. ],
  61417. {
  61418. "otter": {
  61419. name: "Otter",
  61420. default: true
  61421. },
  61422. "lionbat": {
  61423. name: "Lionbat",
  61424. },
  61425. }
  61426. ))
  61427. characterMakers.push(() => makeCharacter(
  61428. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  61429. {
  61430. front: {
  61431. height: math.unit(7 + 4/12, "feet"),
  61432. weight: math.unit(400, "lb"),
  61433. name: "Front",
  61434. image: {
  61435. source: "./media/characters/proxy/front.svg",
  61436. extra: 1605/1542,
  61437. bottom: 55/1660
  61438. }
  61439. },
  61440. side: {
  61441. height: math.unit(7 + 4/12, "feet"),
  61442. weight: math.unit(400, "lb"),
  61443. name: "Side",
  61444. image: {
  61445. source: "./media/characters/proxy/side.svg",
  61446. extra: 794/759,
  61447. bottom: 6/800
  61448. }
  61449. },
  61450. hand: {
  61451. height: math.unit(1.54, "feet"),
  61452. name: "Hand",
  61453. image: {
  61454. source: "./media/characters/proxy/hand.svg"
  61455. }
  61456. },
  61457. paw: {
  61458. height: math.unit(1.53, "feet"),
  61459. name: "Paw",
  61460. image: {
  61461. source: "./media/characters/proxy/paw.svg"
  61462. }
  61463. },
  61464. maw: {
  61465. height: math.unit(1.9, "feet"),
  61466. name: "Maw",
  61467. image: {
  61468. source: "./media/characters/proxy/maw.svg"
  61469. }
  61470. },
  61471. },
  61472. [
  61473. {
  61474. name: "Normal",
  61475. height: math.unit(7 + 4/12, "feet"),
  61476. default: true
  61477. },
  61478. ]
  61479. ))
  61480. characterMakers.push(() => makeCharacter(
  61481. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  61482. {
  61483. front: {
  61484. height: math.unit(4, "meters"),
  61485. name: "Front",
  61486. image: {
  61487. source: "./media/characters/crocozilla/front.svg",
  61488. extra: 1790/1742,
  61489. bottom: 78/1868
  61490. }
  61491. },
  61492. },
  61493. [
  61494. {
  61495. name: "Normal",
  61496. height: math.unit(4, "meters"),
  61497. default: true
  61498. },
  61499. ]
  61500. ))
  61501. characterMakers.push(() => makeCharacter(
  61502. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  61503. {
  61504. front: {
  61505. height: math.unit(1.8, "meters"),
  61506. weight: math.unit(120, "kg"),
  61507. name: "Front",
  61508. image: {
  61509. source: "./media/characters/kurz/front.svg",
  61510. extra: 1960/1824,
  61511. bottom: 41/2001
  61512. }
  61513. },
  61514. back: {
  61515. height: math.unit(1.8, "meters"),
  61516. weight: math.unit(120, "kg"),
  61517. name: "Back",
  61518. image: {
  61519. source: "./media/characters/kurz/back.svg",
  61520. extra: 1906/1787,
  61521. bottom: 60/1966
  61522. }
  61523. },
  61524. frontLewd: {
  61525. height: math.unit(1.8, "meters"),
  61526. weight: math.unit(120, "kg"),
  61527. name: "Front (Lewd)",
  61528. image: {
  61529. source: "./media/characters/kurz/front-lewd.svg",
  61530. extra: 1960/1824,
  61531. bottom: 41/2001
  61532. }
  61533. },
  61534. maw: {
  61535. height: math.unit(0.69, "meters"),
  61536. name: "Maw",
  61537. image: {
  61538. source: "./media/characters/kurz/maw.svg"
  61539. }
  61540. },
  61541. },
  61542. [
  61543. {
  61544. name: "Original Size",
  61545. height: math.unit(1.8, "meters")
  61546. },
  61547. {
  61548. name: "Incognito Size",
  61549. height: math.unit(2.4, "meters"),
  61550. default: true
  61551. },
  61552. {
  61553. name: "Macro",
  61554. height: math.unit(30, "meters")
  61555. },
  61556. {
  61557. name: "Macro+",
  61558. height: math.unit(250, "meters")
  61559. },
  61560. {
  61561. name: "Mega",
  61562. height: math.unit(2, "km")
  61563. },
  61564. {
  61565. name: "Mega+",
  61566. height: math.unit(35, "km")
  61567. },
  61568. {
  61569. name: "Mega++",
  61570. height: math.unit(75, "km")
  61571. },
  61572. {
  61573. name: "Giga",
  61574. height: math.unit(250, "km")
  61575. },
  61576. {
  61577. name: "Terra",
  61578. height: math.unit(15000, "km")
  61579. },
  61580. {
  61581. name: "Terra+",
  61582. height: math.unit(2250000, "km")
  61583. },
  61584. ]
  61585. ))
  61586. characterMakers.push(() => makeCharacter(
  61587. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  61588. {
  61589. front: {
  61590. height: math.unit(16 + 3/12, "feet"),
  61591. weight: math.unit(3575, "lb"),
  61592. name: "Front",
  61593. image: {
  61594. source: "./media/characters/nikita/front.svg",
  61595. extra: 1064/955,
  61596. bottom: 47/1111
  61597. }
  61598. },
  61599. },
  61600. [
  61601. {
  61602. name: "Normal",
  61603. height: math.unit(16 + 3/12, "feet"),
  61604. default: true
  61605. },
  61606. {
  61607. name: "Big",
  61608. height: math.unit(21, "feet")
  61609. },
  61610. {
  61611. name: "Biggest",
  61612. height: math.unit(50, "feet")
  61613. },
  61614. ]
  61615. ))
  61616. characterMakers.push(() => makeCharacter(
  61617. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  61618. {
  61619. front: {
  61620. height: math.unit(1.92, "m"),
  61621. weight: math.unit(76, "kg"),
  61622. name: "Front",
  61623. image: {
  61624. source: "./media/characters/kyara/front.svg",
  61625. extra: 1550/1438,
  61626. bottom: 139/1689
  61627. }
  61628. },
  61629. back: {
  61630. height: math.unit(1.92, "m"),
  61631. weight: math.unit(76, "kg"),
  61632. name: "Back",
  61633. image: {
  61634. source: "./media/characters/kyara/back.svg",
  61635. extra: 1523/1427,
  61636. bottom: 83/1606
  61637. }
  61638. },
  61639. head: {
  61640. height: math.unit(1.22, "feet"),
  61641. name: "Head",
  61642. image: {
  61643. source: "./media/characters/kyara/head.svg"
  61644. }
  61645. },
  61646. maw: {
  61647. height: math.unit(0.73, "feet"),
  61648. name: "Maw",
  61649. image: {
  61650. source: "./media/characters/kyara/maw.svg"
  61651. }
  61652. },
  61653. paws: {
  61654. height: math.unit(0.95, "feet"),
  61655. name: "Paws",
  61656. image: {
  61657. source: "./media/characters/kyara/paws.svg"
  61658. }
  61659. },
  61660. },
  61661. [
  61662. {
  61663. name: "Normal",
  61664. height: math.unit(1.92, "meters"),
  61665. default: true
  61666. },
  61667. {
  61668. name: "Mini Macro",
  61669. height: math.unit(192, "meters")
  61670. },
  61671. {
  61672. name: "Macro",
  61673. height: math.unit(480, "meters")
  61674. },
  61675. {
  61676. name: "Mega Macro",
  61677. height: math.unit(1440, "meters")
  61678. },
  61679. ]
  61680. ))
  61681. characterMakers.push(() => makeCharacter(
  61682. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  61683. {
  61684. front: {
  61685. height: math.unit(6, "feet"),
  61686. weight: math.unit(160, "lbs"),
  61687. preyCapacity: math.unit(0.05, "people"),
  61688. name: "Front",
  61689. image: {
  61690. source: "./media/characters/layla-amari/front.svg",
  61691. extra: 1922/1723,
  61692. bottom: 90/2012
  61693. }
  61694. },
  61695. back: {
  61696. height: math.unit(6, "feet"),
  61697. weight: math.unit(160, "lbs"),
  61698. preyCapacity: math.unit(0.05, "people"),
  61699. name: "Back",
  61700. image: {
  61701. source: "./media/characters/layla-amari/back.svg",
  61702. extra: 1917/1718,
  61703. bottom: 50/1967
  61704. }
  61705. },
  61706. frontDressed: {
  61707. height: math.unit(6, "feet"),
  61708. weight: math.unit(160, "lbs"),
  61709. preyCapacity: math.unit(0.05, "people"),
  61710. name: "Front (Dressed)",
  61711. image: {
  61712. source: "./media/characters/layla-amari/front-dressed.svg",
  61713. extra: 1922/1723,
  61714. bottom: 90/2012
  61715. }
  61716. },
  61717. face: {
  61718. height: math.unit(0.93, "feet"),
  61719. name: "Face",
  61720. image: {
  61721. source: "./media/characters/layla-amari/face.svg"
  61722. }
  61723. },
  61724. hand: {
  61725. height: math.unit(0.66 , "feet"),
  61726. name: "Hand",
  61727. image: {
  61728. source: "./media/characters/layla-amari/hand.svg"
  61729. }
  61730. },
  61731. foot: {
  61732. height: math.unit(1, "feet"),
  61733. name: "Foot",
  61734. image: {
  61735. source: "./media/characters/layla-amari/foot.svg"
  61736. }
  61737. },
  61738. necklace: {
  61739. height: math.unit(0.32, "feet"),
  61740. name: "Necklace",
  61741. image: {
  61742. source: "./media/characters/layla-amari/necklace.svg"
  61743. }
  61744. },
  61745. nipple: {
  61746. height: math.unit(0.2, "feet"),
  61747. name: "Nipple",
  61748. image: {
  61749. source: "./media/characters/layla-amari/nipple.svg"
  61750. }
  61751. },
  61752. slit: {
  61753. height: math.unit(0.26, "feet"),
  61754. name: "Slit",
  61755. image: {
  61756. source: "./media/characters/layla-amari/slit.svg"
  61757. }
  61758. },
  61759. },
  61760. [
  61761. {
  61762. name: "Natural",
  61763. height: math.unit(825, "feet"),
  61764. default: true
  61765. },
  61766. {
  61767. name: "Enhanced",
  61768. height: math.unit(8250, "feet")
  61769. },
  61770. {
  61771. name: "Apparent Size",
  61772. height: math.unit(9.04363e+8, "meters")
  61773. },
  61774. ]
  61775. ))
  61776. characterMakers.push(() => makeCharacter(
  61777. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  61778. {
  61779. front: {
  61780. height: math.unit(1.3, "meters"),
  61781. name: "Front",
  61782. image: {
  61783. source: "./media/characters/percy/front.svg",
  61784. extra: 1444/1289,
  61785. bottom: 54/1498
  61786. }
  61787. },
  61788. },
  61789. [
  61790. {
  61791. name: "Normal",
  61792. height: math.unit(1.3, "meters"),
  61793. default: true
  61794. },
  61795. ]
  61796. ))
  61797. characterMakers.push(() => makeCharacter(
  61798. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  61799. {
  61800. side: {
  61801. height: math.unit(10, "meters"),
  61802. name: "Side",
  61803. image: {
  61804. source: "./media/characters/grev/side.svg",
  61805. extra: 653/266,
  61806. bottom: 77/730
  61807. }
  61808. },
  61809. head: {
  61810. height: math.unit(16.2, "m"),
  61811. name: "Head",
  61812. image: {
  61813. source: "./media/characters/grev/head.svg"
  61814. }
  61815. },
  61816. dick: {
  61817. height: math.unit(2.8135932034, "m"),
  61818. name: "Dick",
  61819. image: {
  61820. source: "./media/characters/grev/dick.svg"
  61821. }
  61822. },
  61823. },
  61824. [
  61825. {
  61826. name: "Friend-Sized",
  61827. height: math.unit(80, "cm")
  61828. },
  61829. {
  61830. name: "Normal",
  61831. height: math.unit(10, "meters"),
  61832. default: true
  61833. },
  61834. {
  61835. name: "Macro",
  61836. height: math.unit(200, "meters")
  61837. },
  61838. ]
  61839. ))
  61840. characterMakers.push(() => makeCharacter(
  61841. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  61842. {
  61843. front: {
  61844. height: math.unit(19.75, "feet"),
  61845. weight: math.unit(20000, "lb"),
  61846. name: "Front",
  61847. image: {
  61848. source: "./media/characters/azuuca/front.svg",
  61849. extra: 1593/1511,
  61850. bottom: 55/1648
  61851. }
  61852. },
  61853. },
  61854. [
  61855. {
  61856. name: "Normal",
  61857. height: math.unit(19.75, "feet"),
  61858. default: true
  61859. },
  61860. ]
  61861. ))
  61862. characterMakers.push(() => makeCharacter(
  61863. { name: "Valuria", species: ["vesempress"], tags: ["anthro"] },
  61864. {
  61865. front: {
  61866. height: math.unit(15, "feet"),
  61867. weight: math.unit(1500, "lb"),
  61868. name: "Front",
  61869. image: {
  61870. source: "./media/characters/valuria/front.svg",
  61871. extra: 1588/1486,
  61872. bottom: 31/1619
  61873. }
  61874. },
  61875. },
  61876. [
  61877. {
  61878. name: "Normal",
  61879. height: math.unit(15, "feet"),
  61880. default: true
  61881. },
  61882. {
  61883. name: "Small",
  61884. height: math.unit(500, "feet")
  61885. },
  61886. {
  61887. name: "Macro",
  61888. height: math.unit(4000, "feet")
  61889. },
  61890. {
  61891. name: "Mega Macro",
  61892. height: math.unit(2000, "miles")
  61893. },
  61894. {
  61895. name: "Giga Macro",
  61896. height: math.unit(3e6, "miles")
  61897. },
  61898. ]
  61899. ))
  61900. characterMakers.push(() => makeCharacter(
  61901. { name: "Terigaia", species: ["gaelterranian"], tags: ["anthro"] },
  61902. {
  61903. front: {
  61904. height: math.unit(3500, "solarradii"),
  61905. name: "Front",
  61906. image: {
  61907. source: "./media/characters/terigaia/front.svg",
  61908. extra: 1531/1451,
  61909. bottom: 98/1629
  61910. }
  61911. },
  61912. },
  61913. [
  61914. {
  61915. name: "Normal",
  61916. height: math.unit(3500, "solarradii"),
  61917. default: true
  61918. },
  61919. ]
  61920. ))
  61921. characterMakers.push(() => makeCharacter(
  61922. { name: "Blair (Blaziken)", species: ["blaziken"], tags: ["anthro"] },
  61923. {
  61924. front: {
  61925. height: math.unit(9.34, "feet"),
  61926. weight: math.unit(600, "lb"),
  61927. name: "Front",
  61928. image: {
  61929. source: "./media/characters/blair-blaziken/front.svg",
  61930. extra: 1557/1462,
  61931. bottom: 55/1612
  61932. }
  61933. },
  61934. },
  61935. [
  61936. {
  61937. name: "Normal",
  61938. height: math.unit(9.34, "feet"),
  61939. default: true
  61940. },
  61941. ]
  61942. ))
  61943. characterMakers.push(() => makeCharacter(
  61944. { name: "Braxia", species: ["pistrogre", "human"], tags: ["anthro"] },
  61945. {
  61946. pistrogre_front: {
  61947. height: math.unit(10, "feet"),
  61948. weight: math.unit(10, "tons"),
  61949. name: "Front",
  61950. image: {
  61951. source: "./media/characters/braxia/pistrogre-front.svg",
  61952. extra: 1531/1334,
  61953. bottom: 114/1645
  61954. },
  61955. form: "pistrogre",
  61956. default: true
  61957. },
  61958. human_front: {
  61959. height: math.unit(10, "feet"),
  61960. weight: math.unit(10, "tons"),
  61961. name: "Front",
  61962. image: {
  61963. source: "./media/characters/braxia/human-front.svg",
  61964. extra: 1574/1501,
  61965. bottom: 37/1611
  61966. },
  61967. form: "human",
  61968. default: true
  61969. },
  61970. },
  61971. [
  61972. {
  61973. name: "Normal",
  61974. height: math.unit(10, "feet"),
  61975. default: true,
  61976. allForms: true
  61977. },
  61978. {
  61979. name: "Macro",
  61980. height: math.unit(1000, "feet"),
  61981. allForms: true
  61982. },
  61983. {
  61984. name: "Mega Macro",
  61985. height: math.unit(100, "miles"),
  61986. allForms: true
  61987. },
  61988. {
  61989. name: "Cosmic",
  61990. height: math.unit(1000000, "lightyears"),
  61991. allForms: true
  61992. },
  61993. {
  61994. name: "ϐѮԆԬӁꭍϞԢ",
  61995. height: math.unit(1000, "multiverses"),
  61996. allForms: true
  61997. },
  61998. ],
  61999. {
  62000. "pistrogre": {
  62001. name: "Pistrogre",
  62002. default: true
  62003. },
  62004. "human": {
  62005. name: "Human",
  62006. },
  62007. }
  62008. ))
  62009. characterMakers.push(() => makeCharacter(
  62010. { name: "Kiriga Yato", species: ["zorgoia"], tags: ["anthro"] },
  62011. {
  62012. front: {
  62013. height: math.unit(6 + 1/12, "feet"),
  62014. weight: math.unit(280, "lb"),
  62015. name: "Front",
  62016. image: {
  62017. source: "./media/characters/kiriga-yato/front.svg",
  62018. extra: 445/394,
  62019. bottom: 11/456
  62020. }
  62021. },
  62022. },
  62023. [
  62024. {
  62025. name: "Descended",
  62026. height: math.unit(3, "feet")
  62027. },
  62028. {
  62029. name: "Average",
  62030. height: math.unit(6 + 1/12, "feet"),
  62031. default: true
  62032. },
  62033. {
  62034. name: "Ascended",
  62035. height: math.unit(9 + 2/12, "feet")
  62036. },
  62037. ]
  62038. ))
  62039. characterMakers.push(() => makeCharacter(
  62040. { name: "Kylie", species: ["giraffe"], tags: ["anthro"] },
  62041. {
  62042. front: {
  62043. height: math.unit(6, "feet"),
  62044. weight: math.unit(150, "lb"),
  62045. name: "Front",
  62046. image: {
  62047. source: "./media/characters/kylie/front.svg",
  62048. extra: 1114/1046,
  62049. bottom: 65/1179
  62050. },
  62051. extraAttributes: {
  62052. "hoofSize": {
  62053. name: "Hoof Size",
  62054. power: 2,
  62055. type: "area",
  62056. base: math.unit(0.034, "m^2")
  62057. },
  62058. "footSize": {
  62059. name: "Foot Size",
  62060. power: 2,
  62061. type: "area",
  62062. base: math.unit(0.75, "m^2")
  62063. },
  62064. }
  62065. },
  62066. side: {
  62067. height: math.unit(6, "feet"),
  62068. weight: math.unit(150, "lb"),
  62069. name: "Side",
  62070. image: {
  62071. source: "./media/characters/kylie/side.svg",
  62072. extra: 1178/1110,
  62073. bottom: 21/1199
  62074. },
  62075. extraAttributes: {
  62076. "hoofSize": {
  62077. name: "Hoof Size",
  62078. power: 2,
  62079. type: "area",
  62080. base: math.unit(0.034, "m^2")
  62081. },
  62082. "footSize": {
  62083. name: "Foot Size",
  62084. power: 2,
  62085. type: "area",
  62086. base: math.unit(0.75, "m^2")
  62087. },
  62088. }
  62089. },
  62090. back: {
  62091. height: math.unit(6, "feet"),
  62092. weight: math.unit(150, "lb"),
  62093. name: "Back",
  62094. image: {
  62095. source: "./media/characters/kylie/back.svg",
  62096. extra: 1115/1047,
  62097. bottom: 66/1181
  62098. },
  62099. extraAttributes: {
  62100. "hoofSize": {
  62101. name: "Hoof Size",
  62102. power: 2,
  62103. type: "area",
  62104. base: math.unit(0.034, "m^2")
  62105. },
  62106. "footSize": {
  62107. name: "Foot Size",
  62108. power: 2,
  62109. type: "area",
  62110. base: math.unit(0.75, "m^2")
  62111. },
  62112. }
  62113. },
  62114. head: {
  62115. height: math.unit(1.85, "feet"),
  62116. name: "Head",
  62117. image: {
  62118. source: "./media/characters/kylie/head.svg"
  62119. }
  62120. },
  62121. },
  62122. [
  62123. {
  62124. name: "Normal",
  62125. height: math.unit(90, "meters"),
  62126. default: true
  62127. },
  62128. ]
  62129. ))
  62130. characterMakers.push(() => makeCharacter(
  62131. { name: "Sabado", species: ["suicune"], tags: ["anthro"] },
  62132. {
  62133. front: {
  62134. height: math.unit(245, "feet"),
  62135. weight: math.unit(400000, "lb"),
  62136. name: "Front",
  62137. image: {
  62138. source: "./media/characters/sabado/front.svg",
  62139. extra: 1309/1164,
  62140. bottom: 29/1338
  62141. }
  62142. },
  62143. },
  62144. [
  62145. {
  62146. name: "Normal",
  62147. height: math.unit(245, "feet"),
  62148. default: true
  62149. },
  62150. ]
  62151. ))
  62152. characterMakers.push(() => makeCharacter(
  62153. { name: "Zechal", species: ["shark", "dragon", "deity"], tags: ["anthro"] },
  62154. {
  62155. shark_front: {
  62156. height: math.unit(2, "meters"),
  62157. weight: math.unit(200, "kg"),
  62158. name: "Front",
  62159. image: {
  62160. source: "./media/characters/zechal/shark-front.svg",
  62161. extra: 969/925,
  62162. bottom: 74/1043
  62163. },
  62164. form: "shark",
  62165. },
  62166. shark_back: {
  62167. height: math.unit(2, "meters"),
  62168. weight: math.unit(200, "kg"),
  62169. name: "Back",
  62170. image: {
  62171. source: "./media/characters/zechal/shark-back.svg",
  62172. extra: 994/949,
  62173. bottom: 176/1170
  62174. },
  62175. form: "shark",
  62176. },
  62177. shark_frontLewd: {
  62178. height: math.unit(2, "meters"),
  62179. weight: math.unit(200, "kg"),
  62180. name: "Front (Lewd)",
  62181. image: {
  62182. source: "./media/characters/zechal/shark-front-lewd.svg",
  62183. extra: 969/925,
  62184. bottom: 74/1043
  62185. },
  62186. form: "shark",
  62187. },
  62188. shark_side: {
  62189. height: math.unit(1.56, "meters"),
  62190. weight: math.unit(200, "kg"),
  62191. name: "Side",
  62192. image: {
  62193. source: "./media/characters/zechal/shark-side.svg"
  62194. },
  62195. form: "shark",
  62196. },
  62197. dragon_front: {
  62198. height: math.unit(2, "meters"),
  62199. weight: math.unit(200, "kg"),
  62200. name: "Front",
  62201. image: {
  62202. source: "./media/characters/zechal/dragon-front.svg",
  62203. extra: 1041/925,
  62204. bottom: 74/1115
  62205. },
  62206. form: "dragon",
  62207. },
  62208. dragon_back: {
  62209. height: math.unit(2, "meters"),
  62210. weight: math.unit(200, "kg"),
  62211. name: "Back",
  62212. image: {
  62213. source: "./media/characters/zechal/dragon-back.svg",
  62214. extra: 1061/949,
  62215. bottom: 176/1237
  62216. },
  62217. form: "dragon",
  62218. },
  62219. dragon_frontLewd: {
  62220. height: math.unit(2, "meters"),
  62221. weight: math.unit(200, "kg"),
  62222. name: "Front (Lewd)",
  62223. image: {
  62224. source: "./media/characters/zechal/dragon-front-lewd.svg",
  62225. extra: 1041/925,
  62226. bottom: 74/1115
  62227. },
  62228. form: "dragon",
  62229. },
  62230. dragon_side: {
  62231. height: math.unit(1.56, "meters"),
  62232. weight: math.unit(200, "kg"),
  62233. name: "Side",
  62234. image: {
  62235. source: "./media/characters/zechal/dragon-side.svg"
  62236. },
  62237. form: "dragon",
  62238. },
  62239. foot: {
  62240. height: math.unit(0.5, "meters"),
  62241. name: "Foot",
  62242. image: {
  62243. source: "./media/characters/zechal/foot.svg"
  62244. }
  62245. },
  62246. sheathFront: {
  62247. height: math.unit(0.45, "meters"),
  62248. name: "Sheath (Front)",
  62249. image: {
  62250. source: "./media/characters/zechal/sheath-front.svg"
  62251. }
  62252. },
  62253. sheathSide: {
  62254. height: math.unit(0.45, "meters"),
  62255. name: "Sheath (Side)",
  62256. image: {
  62257. source: "./media/characters/zechal/sheath-side.svg"
  62258. }
  62259. },
  62260. },
  62261. [
  62262. {
  62263. name: "Incognito",
  62264. height: math.unit(2, "meters"),
  62265. allForms: true
  62266. },
  62267. {
  62268. name: "Small Rampage",
  62269. height: math.unit(25, "meters"),
  62270. allForms: true
  62271. },
  62272. {
  62273. name: "Home Size",
  62274. height: math.unit(250, "meters"),
  62275. allForms: true,
  62276. default: true
  62277. },
  62278. {
  62279. name: "Macro+",
  62280. height: math.unit(700, "meters"),
  62281. allForms: true
  62282. },
  62283. {
  62284. name: "Small Mega",
  62285. height: math.unit(3, "km"),
  62286. allForms: true
  62287. },
  62288. {
  62289. name: "Mega",
  62290. height: math.unit(15, "km"),
  62291. allForms: true
  62292. },
  62293. {
  62294. name: "Giga",
  62295. height: math.unit(300, "km"),
  62296. allForms: true
  62297. },
  62298. {
  62299. name: "Giga+",
  62300. height: math.unit(1750, "km"),
  62301. allForms: true
  62302. },
  62303. {
  62304. name: "Continental",
  62305. height: math.unit(5000, "km"),
  62306. allForms: true
  62307. },
  62308. {
  62309. name: "Terra",
  62310. height: math.unit(20000, "km"),
  62311. allForms: true
  62312. },
  62313. {
  62314. name: "Terra+",
  62315. height: math.unit(300000, "km"),
  62316. allForms: true
  62317. },
  62318. {
  62319. name: "Solar",
  62320. height: math.unit(40000000, "km"),
  62321. allForms: true
  62322. },
  62323. {
  62324. name: "Galactic",
  62325. height: math.unit(810133, "parsecs"),
  62326. allForms: true
  62327. },
  62328. {
  62329. name: "Universal",
  62330. height: math.unit(25, "universes"),
  62331. allForms: true
  62332. },
  62333. ],
  62334. {
  62335. "shark": {
  62336. name: "Shark",
  62337. default: true
  62338. },
  62339. "dragon": {
  62340. name: "Dragon",
  62341. },
  62342. }
  62343. ))
  62344. characterMakers.push(() => makeCharacter(
  62345. { name: "Sergis", species: ["komodo-dragon", "deity"], tags: ["anthro"] },
  62346. {
  62347. front: {
  62348. height: math.unit(2.2, "meters"),
  62349. weight: math.unit(150, "kg"),
  62350. name: "Front",
  62351. image: {
  62352. source: "./media/characters/sergis/front.svg",
  62353. extra: 1314/1312,
  62354. bottom: 112/1426
  62355. }
  62356. },
  62357. back: {
  62358. height: math.unit(2.2, "meters"),
  62359. weight: math.unit(150, "kg"),
  62360. name: "Back",
  62361. image: {
  62362. source: "./media/characters/sergis/back.svg",
  62363. extra: 1335/1333,
  62364. bottom: 19/1354
  62365. }
  62366. },
  62367. frontLewd: {
  62368. height: math.unit(2.2, "meters"),
  62369. weight: math.unit(150, "kg"),
  62370. name: "Front (Lewd)",
  62371. image: {
  62372. source: "./media/characters/sergis/front-lewd.svg",
  62373. extra: 1314/1312,
  62374. bottom: 112/1426
  62375. }
  62376. },
  62377. frontDressed: {
  62378. height: math.unit(2.2, "meters"),
  62379. weight: math.unit(150, "kg"),
  62380. name: "Front (Dressed)",
  62381. image: {
  62382. source: "./media/characters/sergis/front-dressed.svg",
  62383. extra: 1330/1328,
  62384. bottom: 95/1425
  62385. }
  62386. },
  62387. frontDressedLewd: {
  62388. height: math.unit(2.2, "meters"),
  62389. weight: math.unit(150, "kg"),
  62390. name: "Front (Dressed, Lewd)",
  62391. image: {
  62392. source: "./media/characters/sergis/front-dressed-lewd.svg",
  62393. extra: 1330/1328,
  62394. bottom: 95/1425
  62395. }
  62396. },
  62397. maw: {
  62398. height: math.unit(0.48, "meters"),
  62399. name: "Maw",
  62400. image: {
  62401. source: "./media/characters/sergis/maw.svg"
  62402. }
  62403. },
  62404. sheath: {
  62405. height: math.unit(0.38, "meters"),
  62406. name: "Sheath",
  62407. image: {
  62408. source: "./media/characters/sergis/sheath.svg"
  62409. }
  62410. },
  62411. },
  62412. [
  62413. {
  62414. name: "Incognito Size",
  62415. height: math.unit(2.2, "meters")
  62416. },
  62417. {
  62418. name: "Small Macro",
  62419. height: math.unit(40, "meters")
  62420. },
  62421. {
  62422. name: "Macro",
  62423. height: math.unit(150, "meters")
  62424. },
  62425. {
  62426. name: "Macro+",
  62427. height: math.unit(300, "meters")
  62428. },
  62429. {
  62430. name: "Mega",
  62431. height: math.unit(2.5, "km")
  62432. },
  62433. {
  62434. name: "Mega+",
  62435. height: math.unit(30, "km")
  62436. },
  62437. {
  62438. name: "Home Size",
  62439. height: math.unit(300, "km"),
  62440. default: true
  62441. },
  62442. {
  62443. name: "Giga+",
  62444. height: math.unit(1000, "km")
  62445. },
  62446. {
  62447. name: "Giga++",
  62448. height: math.unit(6000, "km")
  62449. },
  62450. {
  62451. name: "Terra",
  62452. height: math.unit(70000, "km")
  62453. },
  62454. {
  62455. name: "Terra+",
  62456. height: math.unit(200000, "km")
  62457. },
  62458. {
  62459. name: "Galactic",
  62460. height: math.unit(634200, "lightyears")
  62461. },
  62462. ]
  62463. ))
  62464. characterMakers.push(() => makeCharacter(
  62465. { name: "Spade", species: ["demon", "mouse"], tags: ["anthro"] },
  62466. {
  62467. standard: {
  62468. height: math.unit(1 + 5/12, "feet"),
  62469. name: "Standard",
  62470. image: {
  62471. source: "./media/characters/spade/standard.svg",
  62472. extra: 1794/1703,
  62473. bottom: 115/1909
  62474. }
  62475. },
  62476. disguised: {
  62477. height: math.unit(1 + 5/12, "feet"),
  62478. name: "Disguised",
  62479. image: {
  62480. source: "./media/characters/spade/disguised.svg",
  62481. extra: 1794/1700,
  62482. bottom: 98/1892
  62483. }
  62484. },
  62485. },
  62486. [
  62487. {
  62488. name: "Normal",
  62489. height: math.unit(1 + 5/12, "feet"),
  62490. default: true
  62491. },
  62492. ]
  62493. ))
  62494. characterMakers.push(() => makeCharacter(
  62495. { name: "Zeanlain", species: ["harpy-eagle"], tags: ["anthro"] },
  62496. {
  62497. frontNsfw: {
  62498. height: math.unit(5, "meters"),
  62499. weight: math.unit(2000, "kg"),
  62500. preyCapacity: math.unit(5, "people"),
  62501. name: "Front (NSFW)",
  62502. image: {
  62503. source: "./media/characters/zeanlain/front-nsfw.svg",
  62504. extra: 1087/938,
  62505. bottom: 93/1180
  62506. },
  62507. extraAttributes: {
  62508. "wingspan": {
  62509. name: "Wingspan",
  62510. power: 1,
  62511. type: "length",
  62512. base: math.unit(10, "meters")
  62513. },
  62514. "footSize": {
  62515. name: "Foot Size",
  62516. power: 1,
  62517. type: "length",
  62518. base: math.unit(0.68, "meters")
  62519. },
  62520. "cockLength": {
  62521. name: "Cock Length",
  62522. power: 1,
  62523. type: "length",
  62524. base: math.unit(1.69, "meters")
  62525. },
  62526. "ballVolume": {
  62527. name: "Ball Volume",
  62528. power: 3,
  62529. type: "volume",
  62530. base: math.unit(0.028, "m^3")
  62531. },
  62532. }
  62533. },
  62534. front: {
  62535. height: math.unit(5, "meters"),
  62536. weight: math.unit(2000, "kg"),
  62537. preyCapacity: math.unit(3, "people"),
  62538. name: "Front",
  62539. image: {
  62540. source: "./media/characters/zeanlain/front.svg",
  62541. extra: 1087/938,
  62542. bottom: 93/1180
  62543. },
  62544. extraAttributes: {
  62545. "wingspan": {
  62546. name: "Wingspan",
  62547. power: 1,
  62548. type: "length",
  62549. base: math.unit(10, "meters")
  62550. },
  62551. "footSize": {
  62552. name: "Foot Size",
  62553. power: 1,
  62554. type: "length",
  62555. base: math.unit(0.68, "meters")
  62556. },
  62557. }
  62558. },
  62559. },
  62560. [
  62561. {
  62562. name: "Normal",
  62563. height: math.unit(5, "meters"),
  62564. default: true
  62565. },
  62566. ]
  62567. ))
  62568. characterMakers.push(() => makeCharacter(
  62569. { name: "Airamis", species: ["aeromorph", "dragon"], tags: ["anthro"] },
  62570. {
  62571. front: {
  62572. height: math.unit(10, "meters"),
  62573. weight: math.unit(250000, "kg"),
  62574. name: "Front",
  62575. image: {
  62576. source: "./media/characters/airamis/front.svg",
  62577. extra: 865/835,
  62578. bottom: 13/878
  62579. }
  62580. },
  62581. },
  62582. [
  62583. {
  62584. name: "Normal",
  62585. height: math.unit(10, "meters"),
  62586. default: true
  62587. },
  62588. ]
  62589. ))
  62590. characterMakers.push(() => makeCharacter(
  62591. { name: "Corra Tourmaline", species: ["vaporeon"], tags: ["anthro"] },
  62592. {
  62593. front: {
  62594. height: math.unit(3 + 3/12, "feet"),
  62595. weight: math.unit(75, "lb"),
  62596. name: "Front",
  62597. image: {
  62598. source: "./media/characters/corra-tourmaline/front.svg",
  62599. extra: 1037/864,
  62600. bottom: 39/1076
  62601. }
  62602. },
  62603. back: {
  62604. height: math.unit(3 + 3/12, "feet"),
  62605. weight: math.unit(75, "lb"),
  62606. name: "Back",
  62607. image: {
  62608. source: "./media/characters/corra-tourmaline/back.svg",
  62609. extra: 1022/849,
  62610. bottom: 26/1048
  62611. }
  62612. },
  62613. dressed: {
  62614. height: math.unit(3 + 3/12, "feet"),
  62615. weight: math.unit(75, "lb"),
  62616. name: "Dressed",
  62617. image: {
  62618. source: "./media/characters/corra-tourmaline/dressed.svg",
  62619. extra: 1037/864,
  62620. bottom: 39/1076
  62621. }
  62622. },
  62623. beans: {
  62624. height: math.unit(0.37, "feet"),
  62625. name: "Beans",
  62626. image: {
  62627. source: "./media/characters/corra-tourmaline/beans.svg"
  62628. }
  62629. },
  62630. },
  62631. [
  62632. {
  62633. name: "Normal",
  62634. height: math.unit(3 + 3/12, "feet"),
  62635. default: true
  62636. },
  62637. {
  62638. name: "Macro",
  62639. height: math.unit(32, "feet")
  62640. },
  62641. ]
  62642. ))
  62643. characterMakers.push(() => makeCharacter(
  62644. { name: "Maki Kawa", species: ["sabertooth-tiger", "serval"], tags: ["anthro"] },
  62645. {
  62646. front: {
  62647. height: math.unit(6 + 2/12, "feet"),
  62648. weight: math.unit(203, "lb"),
  62649. name: "Front",
  62650. image: {
  62651. source: "./media/characters/maki-kawa/front.svg",
  62652. extra: 950/890,
  62653. bottom: 62/1012
  62654. }
  62655. },
  62656. back: {
  62657. height: math.unit(6 + 2/12, "feet"),
  62658. weight: math.unit(203, "lb"),
  62659. name: "Back",
  62660. image: {
  62661. source: "./media/characters/maki-kawa/back.svg",
  62662. extra: 953/878,
  62663. bottom: 49/1002
  62664. }
  62665. },
  62666. frontBarista: {
  62667. height: math.unit(6 + 2/12, "feet"),
  62668. weight: math.unit(203, "lb"),
  62669. name: "Front (Barista)",
  62670. image: {
  62671. source: "./media/characters/maki-kawa/front-barista.svg",
  62672. extra: 943/883,
  62673. bottom: 69/1012
  62674. }
  62675. },
  62676. backBarista: {
  62677. height: math.unit(6 + 2/12, "feet"),
  62678. weight: math.unit(203, "lb"),
  62679. name: "Back (Barista)",
  62680. image: {
  62681. source: "./media/characters/maki-kawa/back-barista.svg",
  62682. extra: 953/878,
  62683. bottom: 49/1002
  62684. }
  62685. },
  62686. frontWrestler: {
  62687. height: math.unit(6 + 2/12, "feet"),
  62688. weight: math.unit(203, "lb"),
  62689. name: "Front (Wrestler)",
  62690. image: {
  62691. source: "./media/characters/maki-kawa/front-wrestler.svg",
  62692. extra: 950/890,
  62693. bottom: 62/1012
  62694. }
  62695. },
  62696. backWrestler: {
  62697. height: math.unit(6 + 2/12, "feet"),
  62698. weight: math.unit(203, "lb"),
  62699. name: "Back (Wrestler)",
  62700. image: {
  62701. source: "./media/characters/maki-kawa/back-wrestler.svg",
  62702. extra: 953/878,
  62703. bottom: 49/1002
  62704. }
  62705. },
  62706. headFront: {
  62707. height: math.unit(1.64, "feet"),
  62708. name: "Head (Front)",
  62709. image: {
  62710. source: "./media/characters/maki-kawa/head-front.svg"
  62711. }
  62712. },
  62713. headSide: {
  62714. height: math.unit(1.59, "feet"),
  62715. name: "Head (Side)",
  62716. image: {
  62717. source: "./media/characters/maki-kawa/head-side.svg"
  62718. }
  62719. },
  62720. paw: {
  62721. height: math.unit(0.9, "feet"),
  62722. name: "Paw",
  62723. image: {
  62724. source: "./media/characters/maki-kawa/paw.svg"
  62725. }
  62726. },
  62727. },
  62728. [
  62729. {
  62730. name: "Normal",
  62731. height: math.unit(6 + 2/12, "feet"),
  62732. default: true
  62733. },
  62734. {
  62735. name: "Macro",
  62736. height: math.unit(617, "feet")
  62737. },
  62738. ]
  62739. ))
  62740. characterMakers.push(() => makeCharacter(
  62741. { name: "Lennox", species: ["wolf"], tags: ["anthro"] },
  62742. {
  62743. front: {
  62744. height: math.unit(10, "feet"),
  62745. weight: math.unit(1500, "lb"),
  62746. name: "Front",
  62747. image: {
  62748. source: "./media/characters/lennox/front.svg",
  62749. extra: 1623/1496,
  62750. bottom: 18/1641
  62751. }
  62752. },
  62753. back: {
  62754. height: math.unit(10, "feet"),
  62755. weight: math.unit(1500, "lb"),
  62756. name: "Back",
  62757. image: {
  62758. source: "./media/characters/lennox/back.svg",
  62759. extra: 1641/1481,
  62760. bottom: 13/1654
  62761. }
  62762. },
  62763. maw: {
  62764. height: math.unit(2.94, "feet"),
  62765. name: "Maw",
  62766. image: {
  62767. source: "./media/characters/lennox/maw.svg"
  62768. }
  62769. },
  62770. },
  62771. [
  62772. {
  62773. name: "Micro",
  62774. height: math.unit(1, "inch")
  62775. },
  62776. {
  62777. name: "Normal",
  62778. height: math.unit(10, "feet"),
  62779. default: true
  62780. },
  62781. {
  62782. name: "Macro",
  62783. height: math.unit(200, "feet")
  62784. },
  62785. ]
  62786. ))
  62787. characterMakers.push(() => makeCharacter(
  62788. { name: "Vyse Iron-Thunder", species: ["luxray", "shiny"], tags: ["anthro"] },
  62789. {
  62790. frontDressed: {
  62791. height: math.unit(15 + 7/12, "feet"),
  62792. weight: math.unit(5000, "lb"),
  62793. name: "Front (Dressed)",
  62794. image: {
  62795. source: "./media/characters/vyse-iron-thunder/front-dressed.svg",
  62796. extra: 1136/1023,
  62797. bottom: 51/1187
  62798. }
  62799. },
  62800. backDressed: {
  62801. height: math.unit(15 + 7/12, "feet"),
  62802. weight: math.unit(5000, "lb"),
  62803. name: "Back (Dressed)",
  62804. image: {
  62805. source: "./media/characters/vyse-iron-thunder/back-dressed.svg",
  62806. extra: 2359/2143,
  62807. bottom: 103/2462
  62808. }
  62809. },
  62810. front: {
  62811. height: math.unit(15 + 7/12, "feet"),
  62812. weight: math.unit(5000, "lb"),
  62813. name: "Front",
  62814. image: {
  62815. source: "./media/characters/vyse-iron-thunder/front.svg",
  62816. extra: 1136/1023,
  62817. bottom: 51/1187
  62818. }
  62819. },
  62820. hand: {
  62821. height: math.unit(2.36, "feet"),
  62822. name: "Hand",
  62823. image: {
  62824. source: "./media/characters/vyse-iron-thunder/hand.svg"
  62825. }
  62826. },
  62827. foot: {
  62828. height: math.unit(1.72, "feet"),
  62829. name: "Foot",
  62830. image: {
  62831. source: "./media/characters/vyse-iron-thunder/foot.svg"
  62832. }
  62833. },
  62834. mouth: {
  62835. height: math.unit(2, "feet"),
  62836. name: "Mouth",
  62837. image: {
  62838. source: "./media/characters/vyse-iron-thunder/mouth.svg"
  62839. }
  62840. },
  62841. eye: {
  62842. height: math.unit(0.58, "feet"),
  62843. name: "Eye",
  62844. image: {
  62845. source: "./media/characters/vyse-iron-thunder/eye.svg"
  62846. }
  62847. },
  62848. },
  62849. [
  62850. {
  62851. name: "Normal",
  62852. height: math.unit(15 + 7/12, "feet"),
  62853. default: true
  62854. },
  62855. {
  62856. name: "Macro",
  62857. height: math.unit(157, "feet")
  62858. },
  62859. {
  62860. name: "Macro+",
  62861. height: math.unit(1570, "feet")
  62862. },
  62863. {
  62864. name: "Macro++",
  62865. height: math.unit(15700, "feet")
  62866. },
  62867. {
  62868. name: "Macro+++",
  62869. height: math.unit(157000, "feet")
  62870. },
  62871. {
  62872. name: "Macro++++",
  62873. height: math.unit(1570000, "feet")
  62874. },
  62875. ]
  62876. ))
  62877. characterMakers.push(() => makeCharacter(
  62878. { name: "Moonbeam", species: ["latex", "wolf"], tags: ["feral"] },
  62879. {
  62880. side: {
  62881. height: math.unit(6, "feet"),
  62882. weight: math.unit(115, "lb"),
  62883. name: "Side",
  62884. image: {
  62885. source: "./media/characters/moonbeam/side.svg",
  62886. extra: 839/485,
  62887. bottom: 60/899
  62888. }
  62889. },
  62890. },
  62891. [
  62892. {
  62893. name: "Normal",
  62894. height: math.unit(6, "feet"),
  62895. default: true
  62896. },
  62897. ]
  62898. ))
  62899. characterMakers.push(() => makeCharacter(
  62900. { name: "Baltica", species: ["orca"], tags: ["anthro"] },
  62901. {
  62902. front: {
  62903. height: math.unit(3500, "miles"),
  62904. weight: math.unit(1659, "petatonnes"),
  62905. name: "Front",
  62906. image: {
  62907. source: "./media/characters/baltica/front.svg",
  62908. extra: 429/428,
  62909. bottom: 41/470
  62910. }
  62911. },
  62912. back: {
  62913. height: math.unit(3500, "miles"),
  62914. weight: math.unit(1659, "petatonnes"),
  62915. name: "Back",
  62916. image: {
  62917. source: "./media/characters/baltica/back.svg",
  62918. extra: 452/451,
  62919. bottom: 8/460
  62920. }
  62921. },
  62922. },
  62923. [
  62924. {
  62925. name: "Gigamacro",
  62926. height: math.unit(3500, "miles"),
  62927. default: true
  62928. },
  62929. ]
  62930. ))
  62931. characterMakers.push(() => makeCharacter(
  62932. { name: "Shadow (Wolf)", species: ["wolf", "demi"], tags: ["anthro"] },
  62933. {
  62934. front: {
  62935. height: math.unit(6 + 10/12, "feet"),
  62936. weight: math.unit(200, "lb"),
  62937. name: "Front",
  62938. image: {
  62939. source: "./media/characters/shadow-wolf/front.svg",
  62940. extra: 1931/1760,
  62941. bottom: 88/2019
  62942. }
  62943. },
  62944. },
  62945. [
  62946. {
  62947. name: "Normal",
  62948. height: math.unit(6 + 10/12, "feet"),
  62949. default: true
  62950. },
  62951. ]
  62952. ))
  62953. characterMakers.push(() => makeCharacter(
  62954. { name: "Quincy (Praying Mantis)", species: ["praying-mantis"], tags: ["anthro"] },
  62955. {
  62956. front: {
  62957. height: math.unit(5 + 10/12, "feet"),
  62958. name: "Front",
  62959. image: {
  62960. source: "./media/characters/quincy-praying-mantis/front.svg",
  62961. extra: 1055/891,
  62962. bottom: 92/1147
  62963. }
  62964. },
  62965. soles: {
  62966. height: math.unit(0.85, "feet"),
  62967. name: "Soles",
  62968. image: {
  62969. source: "./media/characters/quincy-praying-mantis/soles.svg",
  62970. extra: 429/324,
  62971. bottom: 89/518
  62972. },
  62973. extraAttributes: {
  62974. "shoeSize": {
  62975. name: "Shoe Size",
  62976. power: 1,
  62977. type: "length",
  62978. base: math.unit(23, "ShoeSizeMensUS"),
  62979. defaultUnit: "ShoeSizeMensUS"
  62980. },
  62981. }
  62982. },
  62983. foot: {
  62984. height: math.unit(0.72, "feet"),
  62985. name: "Foot",
  62986. image: {
  62987. source: "./media/characters/quincy-praying-mantis/foot.svg",
  62988. extra: 349/349,
  62989. bottom: 76/425
  62990. }
  62991. },
  62992. },
  62993. [
  62994. {
  62995. name: "Normal",
  62996. height: math.unit(5 + 10/12, "feet"),
  62997. default: true
  62998. },
  62999. ]
  63000. ))
  63001. characterMakers.push(() => makeCharacter(
  63002. { name: "Christopher Redwood", species: ["gray-wolf"], tags: ["anthro"] },
  63003. {
  63004. front: {
  63005. height: math.unit(6, "feet"),
  63006. name: "Front",
  63007. image: {
  63008. source: "./media/characters/christopher-redwood/front.svg",
  63009. extra: 1402/1341,
  63010. bottom: 23/1425
  63011. }
  63012. },
  63013. back: {
  63014. height: math.unit(6, "feet"),
  63015. name: "Back",
  63016. image: {
  63017. source: "./media/characters/christopher-redwood/back.svg",
  63018. extra: 1406/1345,
  63019. bottom: 36/1442
  63020. }
  63021. },
  63022. head: {
  63023. height: math.unit(1.685, "feet"),
  63024. name: "Head",
  63025. image: {
  63026. source: "./media/characters/christopher-redwood/head.svg"
  63027. }
  63028. },
  63029. },
  63030. [
  63031. {
  63032. name: "Normal",
  63033. height: math.unit(6, "feet"),
  63034. default: true
  63035. },
  63036. ]
  63037. ))
  63038. characterMakers.push(() => makeCharacter(
  63039. { name: "Kara (Fox)", species: ["fox"], tags: ["anthro"] },
  63040. {
  63041. front: {
  63042. height: math.unit(1.9, "meters"),
  63043. weight: math.unit(140, "lb"),
  63044. name: "Front",
  63045. image: {
  63046. source: "./media/characters/kara-fox/front.svg",
  63047. extra: 766/711,
  63048. bottom: 41/807
  63049. }
  63050. },
  63051. back: {
  63052. height: math.unit(1.9, "meters"),
  63053. weight: math.unit(140, "lb"),
  63054. name: "Back",
  63055. image: {
  63056. source: "./media/characters/kara-fox/back.svg",
  63057. extra: 766/596,
  63058. bottom: 29/795
  63059. }
  63060. },
  63061. maw: {
  63062. height: math.unit(0.78, "feet"),
  63063. name: "Maw",
  63064. image: {
  63065. source: "./media/characters/kara-fox/maw.svg"
  63066. }
  63067. },
  63068. pawpads: {
  63069. height: math.unit(0.96, "feet"),
  63070. name: "Pawpads",
  63071. image: {
  63072. source: "./media/characters/kara-fox/pawpads.svg"
  63073. }
  63074. },
  63075. },
  63076. [
  63077. {
  63078. name: "Normal",
  63079. height: math.unit(1.9, "meters"),
  63080. default: true
  63081. },
  63082. {
  63083. name: "Giantess",
  63084. height: math.unit(80, "meters")
  63085. },
  63086. ]
  63087. ))
  63088. characterMakers.push(() => makeCharacter(
  63089. { name: "Naomi (Espeon)", species: ["espeon"], tags: ["anthro"] },
  63090. {
  63091. front: {
  63092. height: math.unit(12, "feet"),
  63093. name: "Front",
  63094. image: {
  63095. source: "./media/characters/naomi-espeon/front.svg",
  63096. extra: 892/797,
  63097. bottom: 5/897
  63098. }
  63099. },
  63100. back: {
  63101. height: math.unit(12, "feet"),
  63102. name: "Back",
  63103. image: {
  63104. source: "./media/characters/naomi-espeon/back.svg",
  63105. extra: 890/785,
  63106. bottom: 12/902
  63107. }
  63108. },
  63109. },
  63110. [
  63111. {
  63112. name: "Normal",
  63113. height: math.unit(12, "feet"),
  63114. default: true
  63115. },
  63116. ]
  63117. ))
  63118. characterMakers.push(() => makeCharacter(
  63119. { name: "Asher Heulfyrn", species: ["skullwolf"], tags: ["anthro", "taur"] },
  63120. {
  63121. anthro_front: {
  63122. height: math.unit(8, "feet"),
  63123. weight: math.unit(625, "lb"),
  63124. name: "Front",
  63125. image: {
  63126. source: "./media/characters/asher-heulfyrn/anthro-front.svg",
  63127. extra: 638/574,
  63128. bottom: 73/711
  63129. },
  63130. form: "anthro",
  63131. default: true
  63132. },
  63133. anthro_back: {
  63134. height: math.unit(8, "feet"),
  63135. weight: math.unit(625, "lb"),
  63136. name: "Back",
  63137. image: {
  63138. source: "./media/characters/asher-heulfyrn/anthro-back.svg",
  63139. extra: 674/614,
  63140. bottom: 7/681
  63141. },
  63142. form: "anthro",
  63143. },
  63144. taur_side: {
  63145. height: math.unit(16, "feet"),
  63146. weight: math.unit(4.5, "tons"),
  63147. name: "Side",
  63148. image: {
  63149. source: "./media/characters/asher-heulfyrn/taur-side.svg",
  63150. extra: 704/646,
  63151. bottom: 132/836
  63152. },
  63153. form: "taur",
  63154. default: true
  63155. },
  63156. },
  63157. [
  63158. {
  63159. name: "Normal",
  63160. height: math.unit(8, "feet"),
  63161. default: true,
  63162. form: "anthro"
  63163. },
  63164. {
  63165. name: "Normal",
  63166. height: math.unit(16, "feet"),
  63167. default: true,
  63168. form: "taur"
  63169. },
  63170. ],
  63171. {
  63172. "anthro": {
  63173. name: "Anthro",
  63174. default: true
  63175. },
  63176. "taur": {
  63177. name: "Taur",
  63178. },
  63179. }
  63180. ))
  63181. characterMakers.push(() => makeCharacter(
  63182. { name: "Amelie", species: ["ferrin"], tags: ["anthro"] },
  63183. {
  63184. front: {
  63185. height: math.unit(190, "cm"),
  63186. weight: math.unit(110, "kg"),
  63187. name: "Front",
  63188. image: {
  63189. source: "./media/characters/amelie/front.svg",
  63190. extra: 530/442,
  63191. bottom: 35/565
  63192. }
  63193. },
  63194. },
  63195. [
  63196. {
  63197. name: "Normal",
  63198. height: math.unit(190, "cm"),
  63199. default: true
  63200. },
  63201. ]
  63202. ))
  63203. characterMakers.push(() => makeCharacter(
  63204. { name: "Valence", species: ["skulldragon"], tags: ["anthro"] },
  63205. {
  63206. front: {
  63207. height: math.unit(21, "feet"),
  63208. weight: math.unit(30000, "lb"),
  63209. name: "Front",
  63210. image: {
  63211. source: "./media/characters/valence/front.svg",
  63212. extra: 1430/1306,
  63213. bottom: 51/1481
  63214. }
  63215. },
  63216. },
  63217. [
  63218. {
  63219. name: "Normal",
  63220. height: math.unit(21, "feet"),
  63221. default: true
  63222. },
  63223. ]
  63224. ))
  63225. characterMakers.push(() => makeCharacter(
  63226. { name: "Aurora Adkins", species: ["rusty-spotted-cat"], tags: ["anthro"] },
  63227. {
  63228. front: {
  63229. height: math.unit(5 + 9/12, "feet"),
  63230. weight: math.unit(170, "lb"),
  63231. name: "Front",
  63232. image: {
  63233. source: "./media/characters/aurora-adkins/front.svg",
  63234. extra: 1141/1089,
  63235. bottom: 41/1182
  63236. }
  63237. },
  63238. },
  63239. [
  63240. {
  63241. name: "Tiny",
  63242. height: math.unit(7, "mm")
  63243. },
  63244. {
  63245. name: "Small",
  63246. height: math.unit(3.4, "inches")
  63247. },
  63248. {
  63249. name: "Normal",
  63250. height: math.unit(5 + 9/12, "feet"),
  63251. default: true
  63252. },
  63253. {
  63254. name: "Big",
  63255. height: math.unit(31, "feet")
  63256. },
  63257. {
  63258. name: "Giant",
  63259. height: math.unit(300, "feet")
  63260. },
  63261. ]
  63262. ))
  63263. characterMakers.push(() => makeCharacter(
  63264. { name: "Cyber", species: ["maned-wolf", "lynx", "deity"], tags: ["anthro"] },
  63265. {
  63266. front: {
  63267. height: math.unit(5 + 6/12, "feet"),
  63268. weight: math.unit(210, "lb"),
  63269. name: "Front",
  63270. image: {
  63271. source: "./media/characters/cyber/front.svg",
  63272. extra: 1968/1798,
  63273. bottom: 10/1978
  63274. },
  63275. extraAttributes: {
  63276. "shoeSize": {
  63277. name: "Shoe Size",
  63278. power: 1,
  63279. type: "length",
  63280. base: math.unit(30, "ShoeSizeMensUS")
  63281. },
  63282. }
  63283. },
  63284. },
  63285. [
  63286. {
  63287. name: "Normal",
  63288. height: math.unit(5 + 6/12, "feet"),
  63289. default: true
  63290. },
  63291. ]
  63292. ))
  63293. characterMakers.push(() => makeCharacter(
  63294. { name: "Sapphire Wairimea", species: ["elf"], tags: ["anthro"] },
  63295. {
  63296. front: {
  63297. height: math.unit(6 + 6/12, "feet"),
  63298. weight: math.unit(140, "lb"),
  63299. name: "Front",
  63300. image: {
  63301. source: "./media/characters/sapphire-wairimea/front.svg",
  63302. extra: 475/458,
  63303. bottom: 14/489
  63304. }
  63305. },
  63306. },
  63307. [
  63308. {
  63309. name: "Normal",
  63310. height: math.unit(6 + 6/12, "feet")
  63311. },
  63312. {
  63313. name: "Macro",
  63314. height: math.unit(132, "feet"),
  63315. default: true
  63316. },
  63317. ]
  63318. ))
  63319. characterMakers.push(() => makeCharacter(
  63320. { name: "Cirkazi", species: ["elf"], tags: ["anthro"] },
  63321. {
  63322. front: {
  63323. height: math.unit(1.6, "meters"),
  63324. weight: math.unit(100, "lb"),
  63325. name: "Front",
  63326. image: {
  63327. source: "./media/characters/cirkazi/front.svg",
  63328. extra: 489/477,
  63329. bottom: 0/489
  63330. }
  63331. },
  63332. },
  63333. [
  63334. {
  63335. name: "Normal",
  63336. height: math.unit(1.6, "meters")
  63337. },
  63338. {
  63339. name: "Macro",
  63340. height: math.unit(800, "feet"),
  63341. default: true
  63342. },
  63343. ]
  63344. ))
  63345. characterMakers.push(() => makeCharacter(
  63346. { name: "Corrin Cavelli", species: ["human"], tags: ["anthro"] },
  63347. {
  63348. front: {
  63349. height: math.unit(5 + 10/12, "feet"),
  63350. weight: math.unit(145, "lb"),
  63351. name: "Front",
  63352. image: {
  63353. source: "./media/characters/corrin-cavelli/front.svg",
  63354. extra: 483/464,
  63355. bottom: 6/489
  63356. }
  63357. },
  63358. },
  63359. [
  63360. {
  63361. name: "Human",
  63362. height: math.unit(5 + 10/12, "feet")
  63363. },
  63364. {
  63365. name: "Giant",
  63366. height: math.unit(210, "feet"),
  63367. default: true
  63368. },
  63369. ]
  63370. ))
  63371. characterMakers.push(() => makeCharacter(
  63372. { name: "Lori Lopez", species: ["human"], tags: ["anthro"] },
  63373. {
  63374. back: {
  63375. height: math.unit(5 + 6/12, "feet"),
  63376. weight: math.unit(115, "lb"),
  63377. name: "Back",
  63378. image: {
  63379. source: "./media/characters/lori-lopez/back.svg",
  63380. extra: 483/474,
  63381. bottom: 6/489
  63382. }
  63383. },
  63384. },
  63385. [
  63386. {
  63387. name: "Human",
  63388. height: math.unit(5 + 6/12, "feet")
  63389. },
  63390. {
  63391. name: "Macro",
  63392. height: math.unit(198, "feet"),
  63393. default: true
  63394. },
  63395. ]
  63396. ))
  63397. characterMakers.push(() => makeCharacter(
  63398. { name: "Sylvia Beauregard", species: ["human"], tags: ["anthro"] },
  63399. {
  63400. front: {
  63401. height: math.unit(6, "feet"),
  63402. weight: math.unit(220, "lb"),
  63403. name: "Front",
  63404. image: {
  63405. source: "./media/characters/sylvia-beauregard/front.svg",
  63406. extra: 483/479,
  63407. bottom: 6/489
  63408. }
  63409. },
  63410. },
  63411. [
  63412. {
  63413. name: "Macro",
  63414. height: math.unit(2071, "feet"),
  63415. default: true
  63416. },
  63417. ]
  63418. ))
  63419. characterMakers.push(() => makeCharacter(
  63420. { name: "Akiko Takahashi", species: ["human"], tags: ["anthro"] },
  63421. {
  63422. back: {
  63423. height: math.unit(5 + 6/12, "feet"),
  63424. weight: math.unit(160, "lb"),
  63425. name: "Back",
  63426. image: {
  63427. source: "./media/characters/akiko-takahashi/back.svg",
  63428. extra: 459/454,
  63429. bottom: 27/486
  63430. }
  63431. },
  63432. },
  63433. [
  63434. {
  63435. name: "Human",
  63436. height: math.unit(5 + 6/12, "feet")
  63437. },
  63438. {
  63439. name: "Macro",
  63440. height: math.unit(198, "feet"),
  63441. default: true
  63442. },
  63443. {
  63444. name: "Megamacro",
  63445. height: math.unit(7128, "feet")
  63446. },
  63447. ]
  63448. ))
  63449. characterMakers.push(() => makeCharacter(
  63450. { name: "Velvet Garza", species: ["human"], tags: ["anthro"] },
  63451. {
  63452. front: {
  63453. height: math.unit(6, "feet"),
  63454. weight: math.unit(140, "lb"),
  63455. name: "Front",
  63456. image: {
  63457. source: "./media/characters/velvet-garza/front.svg",
  63458. extra: 480/462,
  63459. bottom: 7/487
  63460. }
  63461. },
  63462. },
  63463. [
  63464. {
  63465. name: "Macro",
  63466. height: math.unit(37, "feet"),
  63467. default: true
  63468. },
  63469. ]
  63470. ))
  63471. characterMakers.push(() => makeCharacter(
  63472. { name: "Gaia", species: ["deity", "human"], tags: ["anthro"] },
  63473. {
  63474. front: {
  63475. height: math.unit(7 + 6/12, "feet"),
  63476. weight: math.unit(400, "lb"),
  63477. name: "Front",
  63478. image: {
  63479. source: "./media/characters/gaia/front.svg",
  63480. extra: 474/463,
  63481. bottom: 13/487
  63482. }
  63483. },
  63484. },
  63485. [
  63486. {
  63487. name: "MiniMacro",
  63488. height: math.unit(7 + 6/12, "feet")
  63489. },
  63490. {
  63491. name: "GigaMacro",
  63492. height: math.unit(14500, "feet"),
  63493. default: true
  63494. },
  63495. ]
  63496. ))
  63497. characterMakers.push(() => makeCharacter(
  63498. { name: "Tim", species: ["rabbit"], tags: ["anthro"] },
  63499. {
  63500. front: {
  63501. height: math.unit(6, "feet"),
  63502. weight: math.unit(150, "lb"),
  63503. name: "Front",
  63504. image: {
  63505. source: "./media/characters/tim/front.svg",
  63506. extra: 1878/1743,
  63507. bottom: 9/1887
  63508. }
  63509. },
  63510. frontDressed: {
  63511. height: math.unit(6, "feet"),
  63512. weight: math.unit(150, "lb"),
  63513. name: "Front (Dressed)",
  63514. image: {
  63515. source: "./media/characters/tim/front-dressed.svg",
  63516. extra: 1765/1485,
  63517. bottom: 48/1813
  63518. }
  63519. },
  63520. backDressed: {
  63521. height: math.unit(6, "feet"),
  63522. weight: math.unit(150, "lb"),
  63523. name: "Back (Dressed)",
  63524. image: {
  63525. source: "./media/characters/tim/back-dressed.svg",
  63526. extra: 1750/1465,
  63527. bottom: 25/1775
  63528. }
  63529. },
  63530. dick: {
  63531. height: math.unit(1.5, "feet"),
  63532. weight: math.unit(6, "lb"),
  63533. name: "Dick",
  63534. image: {
  63535. source: "./media/characters/tim/dick.svg"
  63536. }
  63537. },
  63538. hand: {
  63539. height: math.unit(0.522, "feet"),
  63540. name: "Hand",
  63541. image: {
  63542. source: "./media/characters/tim/hand.svg"
  63543. }
  63544. },
  63545. palm: {
  63546. height: math.unit(0.48, "feet"),
  63547. name: "Palm",
  63548. image: {
  63549. source: "./media/characters/tim/palm.svg"
  63550. }
  63551. },
  63552. paw: {
  63553. height: math.unit(0.9, "feet"),
  63554. name: "Paw",
  63555. image: {
  63556. source: "./media/characters/tim/paw.svg"
  63557. }
  63558. },
  63559. sole: {
  63560. height: math.unit(0.88, "feet"),
  63561. name: "Sole",
  63562. image: {
  63563. source: "./media/characters/tim/sole.svg"
  63564. }
  63565. },
  63566. },
  63567. [
  63568. {
  63569. name: "Macro",
  63570. height: math.unit(1000, "feet")
  63571. },
  63572. {
  63573. name: "Megamacro",
  63574. height: math.unit(10000, "feet"),
  63575. default: true
  63576. },
  63577. {
  63578. name: "Megamacro+",
  63579. height: math.unit(50000, "feet")
  63580. },
  63581. {
  63582. name: "Gigamacro",
  63583. height: math.unit(150000, "km")
  63584. },
  63585. ]
  63586. ))
  63587. characterMakers.push(() => makeCharacter(
  63588. { name: "Abel Delreoux", species: ["maine-coon"], tags: ["anthro"] },
  63589. {
  63590. front: {
  63591. height: math.unit(5 + 8/12, "feet"),
  63592. weight: math.unit(170, "lb"),
  63593. name: "Front",
  63594. image: {
  63595. source: "./media/characters/abel-delreoux/front.svg",
  63596. extra: 1615/1500,
  63597. bottom: 82/1697
  63598. }
  63599. },
  63600. back: {
  63601. height: math.unit(5 + 8/12, "feet"),
  63602. weight: math.unit(170, "lb"),
  63603. name: "Back",
  63604. image: {
  63605. source: "./media/characters/abel-delreoux/back.svg",
  63606. extra: 1644/1534,
  63607. bottom: 24/1668
  63608. }
  63609. },
  63610. casual: {
  63611. height: math.unit(5 + 8/12, "feet"),
  63612. weight: math.unit(170, "lb"),
  63613. name: "Casual",
  63614. image: {
  63615. source: "./media/characters/abel-delreoux/casual.svg",
  63616. extra: 1716/1598,
  63617. bottom: 29/1745
  63618. }
  63619. },
  63620. sleepy: {
  63621. height: math.unit(5 + 8/12, "feet"),
  63622. weight: math.unit(170, "lb"),
  63623. name: "Sleepy",
  63624. image: {
  63625. source: "./media/characters/abel-delreoux/sleepy.svg",
  63626. extra: 1649/1573,
  63627. bottom: 22/1671
  63628. }
  63629. },
  63630. fem: {
  63631. height: math.unit(5 + 8/12, "feet"),
  63632. weight: math.unit(170, "lb"),
  63633. name: "Fem",
  63634. image: {
  63635. source: "./media/characters/abel-delreoux/fem.svg",
  63636. extra: 1680/1564,
  63637. bottom: 17/1697
  63638. }
  63639. },
  63640. hand: {
  63641. height: math.unit(0.78, "feet"),
  63642. name: "Hand",
  63643. image: {
  63644. source: "./media/characters/abel-delreoux/hand.svg"
  63645. }
  63646. },
  63647. paw: {
  63648. height: math.unit(0.78, "feet"),
  63649. name: "Paw",
  63650. image: {
  63651. source: "./media/characters/abel-delreoux/paw.svg"
  63652. }
  63653. },
  63654. },
  63655. [
  63656. {
  63657. name: "Normal",
  63658. height: math.unit(5 + 8/12, "feet"),
  63659. default: true
  63660. },
  63661. ]
  63662. ))
  63663. characterMakers.push(() => makeCharacter(
  63664. { name: "Meus", species: ["phoenix"], tags: ["anthro"] },
  63665. {
  63666. front: {
  63667. height: math.unit(6, "feet"),
  63668. weight: math.unit(159, "lb"),
  63669. name: "Front",
  63670. image: {
  63671. source: "./media/characters/meus/front.svg",
  63672. extra: 938/843,
  63673. bottom: 37/975
  63674. }
  63675. },
  63676. back: {
  63677. height: math.unit(6, "feet"),
  63678. weight: math.unit(159, "lb"),
  63679. name: "Back",
  63680. image: {
  63681. source: "./media/characters/meus/back.svg",
  63682. extra: 967/873,
  63683. bottom: 12/979
  63684. }
  63685. },
  63686. },
  63687. [
  63688. {
  63689. name: "Micro",
  63690. height: math.unit(2, "inches")
  63691. },
  63692. {
  63693. name: "Mini",
  63694. height: math.unit(6, "inches")
  63695. },
  63696. {
  63697. name: "Normal",
  63698. height: math.unit(6, "feet"),
  63699. default: true
  63700. },
  63701. {
  63702. name: "Macro",
  63703. height: math.unit(84, "feet")
  63704. },
  63705. ]
  63706. ))
  63707. characterMakers.push(() => makeCharacter(
  63708. { name: "Yamato", species: ["kobold"], tags: ["anthro"] },
  63709. {
  63710. front: {
  63711. height: math.unit(60, "cm"),
  63712. weight: math.unit(18, "kg"),
  63713. name: "Front",
  63714. image: {
  63715. source: "./media/characters/yamato/front.svg",
  63716. extra: 733/688,
  63717. bottom: 29/762
  63718. }
  63719. },
  63720. },
  63721. [
  63722. {
  63723. name: "Micro",
  63724. height: math.unit(6, "cm")
  63725. },
  63726. {
  63727. name: "Normal",
  63728. height: math.unit(60, "cm"),
  63729. default: true
  63730. },
  63731. ]
  63732. ))
  63733. characterMakers.push(() => makeCharacter(
  63734. { name: "Barus", species: ["deity"], tags: ["anthro"] },
  63735. {
  63736. front: {
  63737. height: math.unit(9, "feet"),
  63738. weight: math.unit(518, "lb"),
  63739. name: "Front",
  63740. image: {
  63741. source: "./media/characters/barus/front.svg",
  63742. extra: 1877/1795,
  63743. bottom: 55/1932
  63744. }
  63745. },
  63746. },
  63747. [
  63748. {
  63749. name: "Base Height",
  63750. height: math.unit(9, "feet"),
  63751. default: true
  63752. },
  63753. {
  63754. name: "Large",
  63755. height: math.unit(18, "feet")
  63756. },
  63757. {
  63758. name: "Giant",
  63759. height: math.unit(100, "feet")
  63760. },
  63761. {
  63762. name: "Huge",
  63763. height: math.unit(500, "feet")
  63764. },
  63765. {
  63766. name: "Enormous",
  63767. height: math.unit(300, "meters")
  63768. },
  63769. {
  63770. name: "Deity Among Man",
  63771. height: math.unit(3000, "meters")
  63772. },
  63773. ]
  63774. ))
  63775. characterMakers.push(() => makeCharacter(
  63776. { name: "Yari", species: ["sergal"], tags: ["anthro"] },
  63777. {
  63778. front: {
  63779. height: math.unit(1.7, "meters"),
  63780. name: "Front",
  63781. image: {
  63782. source: "./media/characters/yari/front.svg",
  63783. extra: 1210/1125,
  63784. bottom: 283/1493
  63785. }
  63786. },
  63787. back: {
  63788. height: math.unit(1.7, "meters"),
  63789. name: "Back",
  63790. image: {
  63791. source: "./media/characters/yari/back.svg",
  63792. extra: 1240/1195,
  63793. bottom: 180/1420
  63794. }
  63795. },
  63796. head: {
  63797. height: math.unit(1.26, "feet"),
  63798. name: "Head",
  63799. image: {
  63800. source: "./media/characters/yari/head.svg"
  63801. }
  63802. },
  63803. },
  63804. [
  63805. {
  63806. name: "Nano",
  63807. height: math.unit(0.5, "mm")
  63808. },
  63809. {
  63810. name: "Micro",
  63811. height: math.unit(3, "inches")
  63812. },
  63813. {
  63814. name: "Short",
  63815. height: math.unit(1.5, "meters")
  63816. },
  63817. {
  63818. name: "Norm",
  63819. height: math.unit(1.7, "meters"),
  63820. default: true
  63821. },
  63822. ]
  63823. ))
  63824. characterMakers.push(() => makeCharacter(
  63825. { name: "Salem", species: ["mouse"], tags: ["anthro"] },
  63826. {
  63827. front: {
  63828. height: math.unit(5 + 2/12, "feet"),
  63829. weight: math.unit(110, "lb"),
  63830. name: "Front",
  63831. image: {
  63832. source: "./media/characters/salem/front.svg",
  63833. extra: 1895/1800,
  63834. bottom: 23/1918
  63835. }
  63836. },
  63837. back: {
  63838. height: math.unit(5 + 2/12, "feet"),
  63839. weight: math.unit(110, "lb"),
  63840. name: "Back",
  63841. image: {
  63842. source: "./media/characters/salem/back.svg",
  63843. extra: 1875/1802,
  63844. bottom: 20/1895
  63845. }
  63846. },
  63847. head: {
  63848. height: math.unit(1, "feet"),
  63849. name: "Head",
  63850. image: {
  63851. source: "./media/characters/salem/head.svg"
  63852. }
  63853. },
  63854. paw: {
  63855. height: math.unit(0.59, "feet"),
  63856. name: "Paw",
  63857. image: {
  63858. source: "./media/characters/salem/paw.svg"
  63859. }
  63860. },
  63861. beans: {
  63862. height: math.unit(0.66, "feet"),
  63863. name: "Beans",
  63864. image: {
  63865. source: "./media/characters/salem/beans.svg"
  63866. }
  63867. },
  63868. eye: {
  63869. height: math.unit(0.224, "feet"),
  63870. name: "Eye",
  63871. image: {
  63872. source: "./media/characters/salem/eye.svg"
  63873. }
  63874. },
  63875. semiferal: {
  63876. height: math.unit(2.3, "feet"),
  63877. name: "Semiferal",
  63878. image: {
  63879. source: "./media/characters/salem/semiferal.svg",
  63880. extra: 914/839,
  63881. bottom: 32/946
  63882. }
  63883. },
  63884. },
  63885. [
  63886. {
  63887. name: "Micro",
  63888. height: math.unit(4, "inches")
  63889. },
  63890. {
  63891. name: "Normal",
  63892. height: math.unit(5 + 2/12, "feet"),
  63893. default: true
  63894. },
  63895. {
  63896. name: "Macro",
  63897. height: math.unit(108, "feet")
  63898. },
  63899. {
  63900. name: "Macro+",
  63901. height: math.unit(1500, "feet")
  63902. },
  63903. ]
  63904. ))
  63905. characterMakers.push(() => makeCharacter(
  63906. { name: "Kii", species: ["dragon", "dog"], tags: ["anthro"] },
  63907. {
  63908. front: {
  63909. height: math.unit(7 + 6/12, "feet"),
  63910. weight: math.unit(600, "kg"),
  63911. preyCapacity: math.unit(10, "people"),
  63912. name: "Front",
  63913. image: {
  63914. source: "./media/characters/kii/front.svg",
  63915. extra: 3296/3087,
  63916. bottom: 130/3426
  63917. }
  63918. },
  63919. },
  63920. [
  63921. {
  63922. name: "Normal",
  63923. height: math.unit(7 + 6/12, "feet"),
  63924. default: true
  63925. },
  63926. ]
  63927. ))
  63928. characterMakers.push(() => makeCharacter(
  63929. { name: "Taffy", species: ["saltwater-crocodile"], tags: ["anthro"] },
  63930. {
  63931. front: {
  63932. height: math.unit(2, "meters"),
  63933. weight: math.unit(200, "lb"),
  63934. name: "Front",
  63935. image: {
  63936. source: "./media/characters/taffy/front.svg",
  63937. extra: 1666/1618,
  63938. bottom: 157/1823
  63939. }
  63940. },
  63941. back: {
  63942. height: math.unit(2, "meters"),
  63943. weight: math.unit(200, "lb"),
  63944. name: "Back",
  63945. image: {
  63946. source: "./media/characters/taffy/back.svg",
  63947. extra: 1635/1583,
  63948. bottom: 153/1788
  63949. }
  63950. },
  63951. },
  63952. [
  63953. {
  63954. name: "Normal",
  63955. height: math.unit(2, "meters"),
  63956. default: true
  63957. },
  63958. ]
  63959. ))
  63960. characterMakers.push(() => makeCharacter(
  63961. { name: "Barley", species: ["eastern-grey-kangaroo"], tags: ["anthro"] },
  63962. {
  63963. front: {
  63964. height: math.unit(1.55, "meters"),
  63965. weight: math.unit(60, "kg"),
  63966. name: "Front",
  63967. image: {
  63968. source: "./media/characters/barley/front.svg",
  63969. extra: 1520/1340,
  63970. bottom: 47/1567
  63971. }
  63972. },
  63973. back: {
  63974. height: math.unit(1.55, "meters"),
  63975. weight: math.unit(60, "kg"),
  63976. name: "Back",
  63977. image: {
  63978. source: "./media/characters/barley/back.svg",
  63979. extra: 1543/1341,
  63980. bottom: 12/1555
  63981. }
  63982. },
  63983. feet: {
  63984. height: math.unit(2.18, "feet"),
  63985. name: "Feet",
  63986. image: {
  63987. source: "./media/characters/barley/feet.svg"
  63988. }
  63989. },
  63990. },
  63991. [
  63992. {
  63993. name: "Normal",
  63994. height: math.unit(1.55, "meters"),
  63995. default: true
  63996. },
  63997. ]
  63998. ))
  63999. characterMakers.push(() => makeCharacter(
  64000. { name: "Lydia Lopez", species: ["shark"], tags: ["anthro"] },
  64001. {
  64002. dressed: {
  64003. height: math.unit(6, "feet"),
  64004. name: "Dressed",
  64005. image: {
  64006. source: "./media/characters/lydia-lopez/dressed.svg",
  64007. extra: 1319/1277,
  64008. bottom: 90/1409
  64009. }
  64010. },
  64011. nude: {
  64012. height: math.unit(6, "feet"),
  64013. name: "Nude",
  64014. image: {
  64015. source: "./media/characters/lydia-lopez/nude.svg",
  64016. extra: 1319/1277,
  64017. bottom: 90/1409
  64018. }
  64019. },
  64020. },
  64021. [
  64022. {
  64023. name: "Normal",
  64024. height: math.unit(6, "feet"),
  64025. default: true
  64026. },
  64027. {
  64028. name: "Maximum",
  64029. height: math.unit(2101, "feet")
  64030. },
  64031. ]
  64032. ))
  64033. characterMakers.push(() => makeCharacter(
  64034. { name: "Kira (Slime)", species: ["slime"], tags: ["goo"] },
  64035. {
  64036. front: {
  64037. height: math.unit(5 + 4/12, "feet"),
  64038. weight: math.unit(250, "lb"),
  64039. volume: math.unit(20, "gallons"),
  64040. name: "Front",
  64041. image: {
  64042. source: "./media/characters/kira-slime/front.svg",
  64043. extra: 442/403,
  64044. bottom: 18/460
  64045. }
  64046. },
  64047. frontNsfw: {
  64048. height: math.unit(5 + 4/12, "feet"),
  64049. weight: math.unit(250, "lb"),
  64050. volume: math.unit(20, "gallons"),
  64051. name: "Front (NSFW)",
  64052. image: {
  64053. source: "./media/characters/kira-slime/front-nsfw.svg",
  64054. extra: 442/403,
  64055. bottom: 18/460
  64056. }
  64057. },
  64058. },
  64059. [
  64060. {
  64061. name: "Droplet",
  64062. height: math.unit(0.0464452, "feet")
  64063. },
  64064. {
  64065. name: "Pint",
  64066. height: math.unit(0.9824, "feet")
  64067. },
  64068. {
  64069. name: "Bucket",
  64070. height: math.unit(2.83, "feet")
  64071. },
  64072. {
  64073. name: "Normal",
  64074. height: math.unit(5 + 4/12, "feet"),
  64075. default: true
  64076. },
  64077. {
  64078. name: "Tub",
  64079. height: math.unit(8.46614, "feet")
  64080. },
  64081. {
  64082. name: "Pool",
  64083. height: math.unit(31.1895, "feet")
  64084. },
  64085. {
  64086. name: "Pond",
  64087. height: math.unit(170.349, "feet")
  64088. },
  64089. {
  64090. name: "Lake",
  64091. height: math.unit(289334, "feet")
  64092. },
  64093. {
  64094. name: "Ocean",
  64095. height: math.unit(1.11940e+7, "feet")
  64096. },
  64097. ]
  64098. ))
  64099. characterMakers.push(() => makeCharacter(
  64100. { name: "Holiday", species: ["fennec-fox", "deer"], tags: ["anthro"] },
  64101. {
  64102. front: {
  64103. height: math.unit(5 + 6/12, "feet"),
  64104. weight: math.unit(120, "lb"),
  64105. name: "Front",
  64106. image: {
  64107. source: "./media/characters/holiday/front.svg",
  64108. extra: 456/403,
  64109. bottom: 4/460
  64110. }
  64111. },
  64112. back: {
  64113. height: math.unit(5 + 6/12, "feet"),
  64114. weight: math.unit(120, "lb"),
  64115. name: "Back",
  64116. image: {
  64117. source: "./media/characters/holiday/back.svg",
  64118. extra: 450/404,
  64119. bottom: 12/462
  64120. }
  64121. },
  64122. head: {
  64123. height: math.unit(2.3, "feet"),
  64124. name: "Head",
  64125. image: {
  64126. source: "./media/characters/holiday/head.svg"
  64127. }
  64128. },
  64129. },
  64130. [
  64131. {
  64132. name: "Normal",
  64133. height: math.unit(5 + 6/12, "feet"),
  64134. default: true
  64135. },
  64136. {
  64137. name: "Macro",
  64138. height: math.unit(6574.25, "feet")
  64139. },
  64140. ]
  64141. ))
  64142. characterMakers.push(() => makeCharacter(
  64143. { name: "Camina", species: ["latenivenatrix"], tags: ["anthro"] },
  64144. {
  64145. front: {
  64146. height: math.unit(6 + 2/12, "feet"),
  64147. weight: math.unit(200, "lb"),
  64148. name: "Front",
  64149. image: {
  64150. source: "./media/characters/camina/front.svg",
  64151. extra: 1048/985,
  64152. bottom: 30/1078
  64153. }
  64154. },
  64155. },
  64156. [
  64157. {
  64158. name: "Normal",
  64159. height: math.unit(6 + 2/12, "feet"),
  64160. default: true
  64161. },
  64162. ]
  64163. ))
  64164. characterMakers.push(() => makeCharacter(
  64165. { name: "Smuck", species: ["duck"], tags: ["feral"] },
  64166. {
  64167. front: {
  64168. height: math.unit(30, "cm"),
  64169. weight: math.unit(420, "grams"),
  64170. name: "Front",
  64171. image: {
  64172. source: "./media/characters/smuck/front.svg",
  64173. extra: 379/345,
  64174. bottom: 36/415
  64175. }
  64176. },
  64177. },
  64178. [
  64179. {
  64180. name: "Smuck-Sized",
  64181. height: math.unit(30, "cm"),
  64182. default: true
  64183. },
  64184. ]
  64185. ))
  64186. characterMakers.push(() => makeCharacter(
  64187. { name: "Bylur", species: ["monster"], tags: ["anthro"] },
  64188. {
  64189. frontSfw: {
  64190. height: math.unit(10, "feet"),
  64191. weight: math.unit(1000, "kg"),
  64192. preyCapacity: math.unit(2, "people"),
  64193. name: "Front (SFW)",
  64194. image: {
  64195. source: "./media/characters/bylur/front-sfw.svg",
  64196. extra: 419/343,
  64197. bottom: 3/422
  64198. },
  64199. default: true
  64200. },
  64201. frontSheath: {
  64202. height: math.unit(10, "feet"),
  64203. weight: math.unit(1000, "kg"),
  64204. preyCapacity: math.unit(2, "people"),
  64205. name: "Front (Sheath)",
  64206. image: {
  64207. source: "./media/characters/bylur/front-sheath.svg",
  64208. extra: 419/343,
  64209. bottom: 3/422
  64210. }
  64211. },
  64212. frontErect: {
  64213. height: math.unit(10, "feet"),
  64214. weight: math.unit(1000, "kg"),
  64215. preyCapacity: math.unit(2, "people"),
  64216. name: "Front (Erect)",
  64217. image: {
  64218. source: "./media/characters/bylur/front-erect.svg",
  64219. extra: 419/343,
  64220. bottom: 3/422
  64221. }
  64222. },
  64223. back: {
  64224. height: math.unit(10, "feet"),
  64225. weight: math.unit(1000, "kg"),
  64226. preyCapacity: math.unit(2, "people"),
  64227. name: "Back",
  64228. image: {
  64229. source: "./media/characters/bylur/back.svg",
  64230. extra: 392/315,
  64231. bottom: 3/395
  64232. }
  64233. },
  64234. maw: {
  64235. height: math.unit(3.65, "feet"),
  64236. name: "Maw",
  64237. image: {
  64238. source: "./media/characters/bylur/maw.svg"
  64239. }
  64240. },
  64241. },
  64242. [
  64243. {
  64244. name: "Slightly Human Sized",
  64245. height: math.unit(10, "feet")
  64246. },
  64247. {
  64248. name: "Normal",
  64249. height: math.unit(35, "feet"),
  64250. default: true
  64251. },
  64252. {
  64253. name: "Macro",
  64254. height: math.unit(130, "feet")
  64255. },
  64256. ]
  64257. ))
  64258. characterMakers.push(() => makeCharacter(
  64259. { name: "Oarven", species: ["earless-monitor-lizard"], tags: ["anthro"] },
  64260. {
  64261. frontNsfw: {
  64262. height: math.unit(6, "feet"),
  64263. weight: math.unit(250, "lb"),
  64264. preyCapacity: math.unit(0.05, "people"),
  64265. name: "Front (NSFW)",
  64266. image: {
  64267. source: "./media/characters/oarven/front-nsfw.svg",
  64268. extra: 1795/1783,
  64269. bottom: 142/1937
  64270. }
  64271. },
  64272. frontSfw: {
  64273. height: math.unit(6, "feet"),
  64274. weight: math.unit(250, "lb"),
  64275. preyCapacity: math.unit(0.05, "people"),
  64276. name: "Front (SFW)",
  64277. image: {
  64278. source: "./media/characters/oarven/front-sfw.svg",
  64279. extra: 1795/1783,
  64280. bottom: 142/1937
  64281. }
  64282. },
  64283. },
  64284. [
  64285. {
  64286. name: "Megamacro",
  64287. height: math.unit(5, "miles"),
  64288. default: true
  64289. },
  64290. {
  64291. name: "Maximum Height",
  64292. height: math.unit(5, "AUs")
  64293. },
  64294. ]
  64295. ))
  64296. characterMakers.push(() => makeCharacter(
  64297. { name: "Solidarity", species: ["aerosynth"], tags: ["feral"] },
  64298. {
  64299. side: {
  64300. height: math.unit(1065, "meters"),
  64301. weight: math.unit(1e12, "kg"),
  64302. volume: math.unit(3265000000, "m^3"),
  64303. name: "Side",
  64304. image: {
  64305. source: "./media/characters/solidarity/side.svg"
  64306. }
  64307. },
  64308. front: {
  64309. height: math.unit(1065, "meters"),
  64310. weight: math.unit(3265000000000, "kg"),
  64311. volume: math.unit(3265000000, "m^3"),
  64312. name: "Front",
  64313. image: {
  64314. source: "./media/characters/solidarity/front.svg"
  64315. }
  64316. },
  64317. top: {
  64318. height: math.unit(5823, "meters"),
  64319. weight: math.unit(3265000000000, "kg"),
  64320. volume: math.unit(3265000000, "m^3"),
  64321. name: "Top",
  64322. image: {
  64323. source: "./media/characters/solidarity/top.svg"
  64324. }
  64325. },
  64326. },
  64327. [
  64328. {
  64329. name: "Normal",
  64330. height: math.unit(1065, "meters"),
  64331. default: true
  64332. },
  64333. ]
  64334. ))
  64335. characterMakers.push(() => makeCharacter(
  64336. { name: "Ani'szi", species: ["phenx"], tags: ["taur"] },
  64337. {
  64338. side: {
  64339. height: math.unit(18 + 4/12, "feet"),
  64340. weight: math.unit(13000, "kg"),
  64341. name: "Side",
  64342. image: {
  64343. source: "./media/characters/ani'szi/side.svg",
  64344. extra: 468/459,
  64345. bottom: 60/528
  64346. }
  64347. },
  64348. head: {
  64349. height: math.unit(4.8, "feet"),
  64350. name: "Head",
  64351. image: {
  64352. source: "./media/characters/ani'szi/head.svg"
  64353. }
  64354. },
  64355. jaws: {
  64356. height: math.unit(2.25, "feet"),
  64357. name: "Jaws",
  64358. image: {
  64359. source: "./media/characters/ani'szi/jaws.svg"
  64360. }
  64361. },
  64362. bust: {
  64363. height: math.unit(8.9, "feet"),
  64364. name: "Bust",
  64365. image: {
  64366. source: "./media/characters/ani'szi/bust.svg"
  64367. }
  64368. },
  64369. back: {
  64370. height: math.unit(13.53, "feet"),
  64371. name: "Back",
  64372. image: {
  64373. source: "./media/characters/ani'szi/back.svg"
  64374. }
  64375. },
  64376. eye: {
  64377. height: math.unit(0.44, "feet"),
  64378. name: "Eye",
  64379. image: {
  64380. source: "./media/characters/ani'szi/eye.svg"
  64381. }
  64382. },
  64383. },
  64384. [
  64385. {
  64386. name: "Normal",
  64387. height: math.unit(18 + 4/12, "feet"),
  64388. default: true
  64389. },
  64390. ]
  64391. ))
  64392. characterMakers.push(() => makeCharacter(
  64393. { name: "Rain", species: ["driger"], tags: ["anthro"] },
  64394. {
  64395. front: {
  64396. height: math.unit(7 + 6/12, "feet"),
  64397. weight: math.unit(300, "lb"),
  64398. name: "Front",
  64399. image: {
  64400. source: "./media/characters/rain/front.svg",
  64401. extra: 2955/2698,
  64402. bottom: 235/3190
  64403. }
  64404. },
  64405. dressed: {
  64406. height: math.unit(7 + 6/12, "feet"),
  64407. weight: math.unit(300, "lb"),
  64408. name: "Dressed",
  64409. image: {
  64410. source: "./media/characters/rain/dressed.svg",
  64411. extra: 2783/2572,
  64412. bottom: 430/3213
  64413. }
  64414. },
  64415. },
  64416. [
  64417. {
  64418. name: "Normal",
  64419. height: math.unit(7 + 6/12, "feet"),
  64420. default: true
  64421. },
  64422. {
  64423. name: "Macro",
  64424. height: math.unit(200, "feet")
  64425. },
  64426. {
  64427. name: "Macro+",
  64428. height: math.unit(500, "feet")
  64429. },
  64430. {
  64431. name: "Megamacro",
  64432. height: math.unit(5, "miles")
  64433. },
  64434. ]
  64435. ))
  64436. characterMakers.push(() => makeCharacter(
  64437. { name: "Anise", species: ["gryphon"], tags: ["feral", "taur"] },
  64438. {
  64439. taur_side: {
  64440. height: math.unit(3, "meters"),
  64441. name: "Side",
  64442. image: {
  64443. source: "./media/characters/anise/taur-side.svg",
  64444. extra: 1833/926,
  64445. bottom: 134/1967
  64446. },
  64447. form: "taur",
  64448. default: true
  64449. },
  64450. feral_side: {
  64451. height: math.unit(3, "meters"),
  64452. name: "Side",
  64453. image: {
  64454. source: "./media/characters/anise/feral-side.svg",
  64455. extra: 681/349,
  64456. bottom: 26/707
  64457. },
  64458. form: "feral"
  64459. },
  64460. },
  64461. [
  64462. {
  64463. name: "Normal",
  64464. height: math.unit(3, "meters"),
  64465. default: true,
  64466. allForms: true
  64467. },
  64468. ],
  64469. {
  64470. "taur": {
  64471. name: "Taur",
  64472. default: true
  64473. },
  64474. "feral": {
  64475. name: "Feral",
  64476. },
  64477. }
  64478. ))
  64479. characterMakers.push(() => makeCharacter(
  64480. { name: "Sarina", species: ["red-panda"], tags: ["anthro"] },
  64481. {
  64482. front: {
  64483. height: math.unit(1.9, "meters"),
  64484. weight: math.unit(75, "kg"),
  64485. name: "Front",
  64486. image: {
  64487. source: "./media/characters/sarina/front.svg",
  64488. extra: 1275/1200,
  64489. bottom: 49/1324
  64490. }
  64491. },
  64492. back: {
  64493. height: math.unit(1.9, "meters"),
  64494. weight: math.unit(75, "kg"),
  64495. name: "Back",
  64496. image: {
  64497. source: "./media/characters/sarina/back.svg",
  64498. extra: 1279/1209,
  64499. bottom: 14/1293
  64500. }
  64501. },
  64502. dressed: {
  64503. height: math.unit(1.9, "meters"),
  64504. weight: math.unit(75, "kg"),
  64505. name: "Dressed",
  64506. image: {
  64507. source: "./media/characters/sarina/dressed.svg",
  64508. extra: 1256/1187,
  64509. bottom: 56/1312
  64510. }
  64511. },
  64512. paw: {
  64513. height: math.unit(0.57, "feet"),
  64514. name: "Paw",
  64515. image: {
  64516. source: "./media/characters/sarina/paw.svg"
  64517. }
  64518. },
  64519. toering: {
  64520. height: math.unit(0.27, "feet"),
  64521. name: "Toering",
  64522. image: {
  64523. source: "./media/characters/sarina/toering.svg"
  64524. }
  64525. },
  64526. },
  64527. [
  64528. {
  64529. name: "Incognito",
  64530. height: math.unit(1.9, "meters")
  64531. },
  64532. {
  64533. name: "Home Size",
  64534. height: math.unit(160, "meters"),
  64535. default: true
  64536. },
  64537. {
  64538. name: "Mega",
  64539. height: math.unit(50, "km")
  64540. },
  64541. {
  64542. name: "Small Giga",
  64543. height: math.unit(250, "km")
  64544. },
  64545. {
  64546. name: "Giga (Preferred Size)",
  64547. height: math.unit(3000, "km")
  64548. },
  64549. {
  64550. name: "Terra",
  64551. height: math.unit(40000, "km")
  64552. },
  64553. {
  64554. name: "Terra+",
  64555. height: math.unit(400000, "km")
  64556. },
  64557. {
  64558. name: "Solar",
  64559. height: math.unit(35e6, "km")
  64560. },
  64561. {
  64562. name: "Galactic",
  64563. height: math.unit(648106, "parsecs")
  64564. },
  64565. {
  64566. name: "Universal",
  64567. height: math.unit(7, "universes")
  64568. },
  64569. {
  64570. name: "Universal+",
  64571. height: math.unit(30, "universes")
  64572. },
  64573. ]
  64574. ))
  64575. characterMakers.push(() => makeCharacter(
  64576. { name: "Sifray", species: ["homestuck-troll"], tags: ["anthro"] },
  64577. {
  64578. front: {
  64579. height: math.unit(5 + 6/12, "feet"),
  64580. name: "Front",
  64581. image: {
  64582. source: "./media/characters/sifray/front.svg",
  64583. extra: 722/691,
  64584. bottom: 64/786
  64585. }
  64586. },
  64587. },
  64588. [
  64589. {
  64590. name: "Normal",
  64591. height: math.unit(5 + 6/12, "feet"),
  64592. default: true
  64593. },
  64594. ]
  64595. ))
  64596. characterMakers.push(() => makeCharacter(
  64597. { name: "Spots", species: ["dog"], tags: ["feral"] },
  64598. {
  64599. side: {
  64600. height: math.unit(2.64, "feet"),
  64601. weight: math.unit(100, "lb"),
  64602. preyCapacity: math.unit(3, "people"),
  64603. name: "Side",
  64604. image: {
  64605. source: "./media/characters/spots/side.svg",
  64606. extra: 1859/977,
  64607. bottom: 19/1878
  64608. },
  64609. extraAttributes: {
  64610. "preyPerMinute": {
  64611. name: "Prey Per Minute",
  64612. power: 3,
  64613. type: "volume",
  64614. base: math.unit(6, "people"),
  64615. defaultUnit: "people"
  64616. },
  64617. "preyPerDay": {
  64618. name: "Prey Per Day",
  64619. power: 3,
  64620. type: "volume",
  64621. base: math.unit(6 * 60 * 24, "people"),
  64622. defaultUnit: "people"
  64623. },
  64624. }
  64625. },
  64626. },
  64627. [
  64628. {
  64629. name: "Normal",
  64630. height: math.unit(2.64, "feet"),
  64631. default: true
  64632. },
  64633. ]
  64634. ))
  64635. characterMakers.push(() => makeCharacter(
  64636. { name: "Mona", species: ["caudin"], tags: ["anthro"] },
  64637. {
  64638. front: {
  64639. height: math.unit(29 + 11/12, "feet"),
  64640. weight: math.unit(40, "tons"),
  64641. name: "Front",
  64642. image: {
  64643. source: "./media/characters/mona/front.svg",
  64644. extra: 1257/1116,
  64645. bottom: 34/1291
  64646. }
  64647. },
  64648. },
  64649. [
  64650. {
  64651. name: "Normal",
  64652. height: math.unit(29 + 11/12, "feet"),
  64653. default: true
  64654. },
  64655. ]
  64656. ))
  64657. characterMakers.push(() => makeCharacter(
  64658. { name: "FrostFire", species: ["dragon"], tags: ["anthro"] },
  64659. {
  64660. front: {
  64661. height: math.unit(15, "feet"),
  64662. weight: math.unit(3000, "kg"),
  64663. preyCapacity: math.unit(5, "people"),
  64664. name: "Front",
  64665. image: {
  64666. source: "./media/characters/frostfire/front.svg",
  64667. extra: 675/558,
  64668. bottom: 73/748
  64669. }
  64670. },
  64671. side: {
  64672. height: math.unit(15, "feet"),
  64673. weight: math.unit(3000, "kg"),
  64674. preyCapacity: math.unit(5, "people"),
  64675. name: "Side",
  64676. image: {
  64677. source: "./media/characters/frostfire/side.svg",
  64678. extra: 687/585,
  64679. bottom: 50/737
  64680. }
  64681. },
  64682. back: {
  64683. height: math.unit(15, "feet"),
  64684. weight: math.unit(3000, "kg"),
  64685. preyCapacity: math.unit(5, "people"),
  64686. name: "Back",
  64687. image: {
  64688. source: "./media/characters/frostfire/back.svg",
  64689. extra: 707/607,
  64690. bottom: 16/723
  64691. }
  64692. },
  64693. head: {
  64694. height: math.unit(9.35, "feet"),
  64695. name: "Head",
  64696. image: {
  64697. source: "./media/characters/frostfire/head.svg"
  64698. }
  64699. },
  64700. maw: {
  64701. height: math.unit(3.32, "feet"),
  64702. name: "Maw",
  64703. image: {
  64704. source: "./media/characters/frostfire/maw.svg"
  64705. }
  64706. },
  64707. hand: {
  64708. height: math.unit(3.7, "feet"),
  64709. name: "Hand",
  64710. image: {
  64711. source: "./media/characters/frostfire/hand.svg"
  64712. }
  64713. },
  64714. paw: {
  64715. height: math.unit(5.8, "feet"),
  64716. name: "Paw",
  64717. image: {
  64718. source: "./media/characters/frostfire/paw.svg"
  64719. }
  64720. },
  64721. },
  64722. [
  64723. {
  64724. name: "Normal",
  64725. height: math.unit(15, "feet"),
  64726. default: true
  64727. },
  64728. ]
  64729. ))
  64730. characterMakers.push(() => makeCharacter(
  64731. { name: "Valeroo", species: ["kangaroo"], tags: ["anthro"] },
  64732. {
  64733. front: {
  64734. height: math.unit(5 + 2/12, "feet"),
  64735. weight: math.unit(122, "lb"),
  64736. name: "Front",
  64737. image: {
  64738. source: "./media/characters/valeroo/front.svg",
  64739. extra: 1789/1534,
  64740. bottom: 66/1855
  64741. }
  64742. },
  64743. back: {
  64744. height: math.unit(5 + 2/12, "feet"),
  64745. weight: math.unit(122, "lb"),
  64746. name: "Back",
  64747. image: {
  64748. source: "./media/characters/valeroo/back.svg",
  64749. extra: 1848/1588,
  64750. bottom: 68/1916
  64751. }
  64752. },
  64753. head: {
  64754. height: math.unit(1.87, "feet"),
  64755. name: "Head",
  64756. image: {
  64757. source: "./media/characters/valeroo/head.svg"
  64758. }
  64759. },
  64760. hand: {
  64761. height: math.unit(0.82, "feet"),
  64762. name: "Hand",
  64763. image: {
  64764. source: "./media/characters/valeroo/hand.svg"
  64765. }
  64766. },
  64767. foot: {
  64768. height: math.unit(2.42, "feet"),
  64769. name: "Foot",
  64770. image: {
  64771. source: "./media/characters/valeroo/foot.svg"
  64772. }
  64773. },
  64774. },
  64775. [
  64776. {
  64777. name: "Normal",
  64778. height: math.unit(5 + 2/12, "feet"),
  64779. default: true
  64780. },
  64781. ]
  64782. ))
  64783. characterMakers.push(() => makeCharacter(
  64784. { name: "Corrin", species: ["secretary-bird"], tags: ["anthro"] },
  64785. {
  64786. front: {
  64787. height: math.unit(11 + 3/12, "feet"),
  64788. name: "Front",
  64789. image: {
  64790. source: "./media/characters/corrin/front.svg",
  64791. extra: 665/597,
  64792. bottom: 74/739
  64793. }
  64794. },
  64795. },
  64796. [
  64797. {
  64798. name: "Standard",
  64799. height: math.unit(11 + 3/12, "feet"),
  64800. default: true
  64801. },
  64802. {
  64803. name: "The Boss",
  64804. height: math.unit(110, "feet")
  64805. },
  64806. {
  64807. name: "Shipbreaker",
  64808. height: math.unit(38, "km")
  64809. },
  64810. ]
  64811. ))
  64812. characterMakers.push(() => makeCharacter(
  64813. { name: "Kiba Ulrich", species: ["dire-wolf"], tags: ["anthro"] },
  64814. {
  64815. front: {
  64816. height: math.unit(10, "feet"),
  64817. weight: math.unit(1750, "lb"),
  64818. name: "Front",
  64819. image: {
  64820. source: "./media/characters/kiba-ulrich/front.svg",
  64821. extra: 1037/973,
  64822. bottom: 36/1073
  64823. }
  64824. },
  64825. },
  64826. [
  64827. {
  64828. name: "Normal",
  64829. height: math.unit(10, "feet"),
  64830. default: true
  64831. },
  64832. {
  64833. name: "Minimacro",
  64834. height: math.unit(20, "feet")
  64835. },
  64836. {
  64837. name: "Macro",
  64838. height: math.unit(200, "feet")
  64839. },
  64840. {
  64841. name: "Megamacro",
  64842. height: math.unit(22500, "feet")
  64843. },
  64844. {
  64845. name: "Gigamacro",
  64846. height: math.unit(2700, "miles")
  64847. },
  64848. {
  64849. name: "Teramacro",
  64850. height: math.unit(10000, "miles")
  64851. },
  64852. ]
  64853. ))
  64854. characterMakers.push(() => makeCharacter(
  64855. { name: "Ceanoth", species: ["gryphon"], tags: ["anthro"] },
  64856. {
  64857. gryphon_front: {
  64858. height: math.unit(220, "cm"),
  64859. weight: math.unit(160, "kg"),
  64860. name: "Front",
  64861. image: {
  64862. source: "./media/characters/ceanoth/gryphon-front.svg",
  64863. extra: 616/552,
  64864. bottom: 33/649
  64865. },
  64866. form: "gryphon",
  64867. default: true
  64868. },
  64869. },
  64870. [
  64871. {
  64872. name: "Normal",
  64873. height: math.unit(220, "cm"),
  64874. form: "gryphon",
  64875. default: true
  64876. },
  64877. ],
  64878. {
  64879. "gryphon": {
  64880. name: "Grpyhon",
  64881. default: true
  64882. },
  64883. }
  64884. ))
  64885. characterMakers.push(() => makeCharacter(
  64886. { name: "Vanadiya Athelya", species: ["dragon"], tags: ["taur"] },
  64887. {
  64888. dressed: {
  64889. height: math.unit(2.2 * 0.79, "meters"),
  64890. weight: math.unit(0.5, "tonnes"),
  64891. name: "Dressed",
  64892. image: {
  64893. source: "./media/characters/vanadiya-athelya/dressed.svg",
  64894. extra: 665/315,
  64895. bottom: 106/771
  64896. },
  64897. extraAttributes: {
  64898. "bodyLength": {
  64899. name: "Body Length",
  64900. power: 1,
  64901. type: "length",
  64902. base: math.unit(2.5, "meters")
  64903. },
  64904. "tailLength": {
  64905. name: "Tail Length",
  64906. power: 1,
  64907. type: "length",
  64908. base: math.unit(4.5, "meters")
  64909. },
  64910. "wingspan": {
  64911. name: "Wingspan",
  64912. power: 1,
  64913. type: "length",
  64914. base: math.unit(6, "meters")
  64915. },
  64916. "taurStomachCapacity": {
  64917. name: "Taur Stomach Capacity",
  64918. power: 3,
  64919. type: "volume",
  64920. base: math.unit(4, "people"),
  64921. defaultUnit: "people"
  64922. },
  64923. "anthroStomachCapacity": {
  64924. name: "Anthro Stomach Capacity",
  64925. power: 3,
  64926. type: "volume",
  64927. base: math.unit(1, "people"),
  64928. defaultUnit: "people"
  64929. },
  64930. }
  64931. },
  64932. nude: {
  64933. height: math.unit(2.2 * 0.79, "meters"),
  64934. weight: math.unit(0.5, "tonnes"),
  64935. name: "Nude",
  64936. image: {
  64937. source: "./media/characters/vanadiya-athelya/nude.svg",
  64938. extra: 665/315,
  64939. bottom: 106/771
  64940. },
  64941. extraAttributes: {
  64942. "bodyLength": {
  64943. name: "Body Length",
  64944. power: 1,
  64945. type: "length",
  64946. base: math.unit(2.5, "meters")
  64947. },
  64948. "tailLength": {
  64949. name: "Tail Length",
  64950. power: 1,
  64951. type: "length",
  64952. base: math.unit(4.5, "meters")
  64953. },
  64954. "wingspan": {
  64955. name: "Wingspan",
  64956. power: 1,
  64957. type: "length",
  64958. base: math.unit(6, "meters")
  64959. },
  64960. "taurStomachCapacity": {
  64961. name: "Taur Stomach Capacity",
  64962. power: 3,
  64963. type: "volume",
  64964. base: math.unit(4, "people"),
  64965. defaultUnit: "people"
  64966. },
  64967. "anthroStomachCapacity": {
  64968. name: "Anthro Stomach Capacity",
  64969. power: 3,
  64970. type: "volume",
  64971. base: math.unit(1, "people"),
  64972. defaultUnit: "people"
  64973. },
  64974. }
  64975. },
  64976. },
  64977. [
  64978. {
  64979. name: "Handheld",
  64980. height: math.unit(0.79 * 0.06, "meters")
  64981. },
  64982. {
  64983. name: "Mini",
  64984. height: math.unit(0.79 * 0.7, "meters")
  64985. },
  64986. {
  64987. name: "Short",
  64988. height: math.unit(0.79 * 1.4, "meters")
  64989. },
  64990. {
  64991. name: "Imposing",
  64992. height: math.unit(0.79 * 2.2, "meters"),
  64993. default: true
  64994. },
  64995. {
  64996. name: "Big",
  64997. height: math.unit(0.79 * 3.8, "meters")
  64998. },
  64999. {
  65000. name: "Giant",
  65001. height: math.unit(0.79 * 6.7, "meters")
  65002. },
  65003. {
  65004. name: "Airliner",
  65005. height: math.unit(0.79 * 64, "meters")
  65006. },
  65007. {
  65008. name: "Skyscraper",
  65009. height: math.unit(0.79 * 220, "meters")
  65010. },
  65011. {
  65012. name: "Mountain",
  65013. height: math.unit(0.79 * 3.6, "km")
  65014. },
  65015. {
  65016. name: "Spacescraper",
  65017. height: math.unit(0.79 * 70, "km")
  65018. },
  65019. {
  65020. name: "Continental",
  65021. height: math.unit(0.79 * 1290, "km")
  65022. },
  65023. {
  65024. name: "Moon",
  65025. height: math.unit(0.79 * 32200, "km")
  65026. },
  65027. {
  65028. name: "Planetary",
  65029. height: math.unit(0.79 * 145000, "km")
  65030. },
  65031. {
  65032. name: "Stellar",
  65033. height: math.unit(0.79 * 19e6, "km")
  65034. },
  65035. {
  65036. name: "Solar",
  65037. height: math.unit(0.79 * 40, "AU")
  65038. },
  65039. {
  65040. name: "Intersteller",
  65041. height: math.unit(0.79 * 3, "lightyears")
  65042. },
  65043. {
  65044. name: "Star Cluster",
  65045. height: math.unit(0.79 * 80, "lightyears")
  65046. },
  65047. {
  65048. name: "Ecumenical",
  65049. height: math.unit(0.79 * 2e3, "lightyears")
  65050. },
  65051. {
  65052. name: "Galactic",
  65053. height: math.unit(0.79 * 175000, "lightyears")
  65054. },
  65055. {
  65056. name: "Galaxy Cluster",
  65057. height: math.unit(0.79 * 25e6, "lightyears")
  65058. },
  65059. ]
  65060. ))
  65061. characterMakers.push(() => makeCharacter(
  65062. { name: "Yana Amelin", species: ["russian-blue"], tags: ["anthro"] },
  65063. {
  65064. front: {
  65065. height: math.unit(6 + 2/12, "feet"),
  65066. weight: math.unit(160, "lb"),
  65067. name: "Front",
  65068. image: {
  65069. source: "./media/characters/yana-amelin/front.svg",
  65070. extra: 1413/1295,
  65071. bottom: 42/1455
  65072. }
  65073. },
  65074. back: {
  65075. height: math.unit(6 + 2/12, "feet"),
  65076. weight: math.unit(160, "lb"),
  65077. name: "Back",
  65078. image: {
  65079. source: "./media/characters/yana-amelin/back.svg",
  65080. extra: 1424/1310,
  65081. bottom: 24/1448
  65082. }
  65083. },
  65084. paws: {
  65085. height: math.unit(1.48, "feet"),
  65086. name: "Paws",
  65087. image: {
  65088. source: "./media/characters/yana-amelin/paws.svg",
  65089. extra: 304/304,
  65090. bottom: 49/353
  65091. }
  65092. },
  65093. },
  65094. [
  65095. {
  65096. name: "Micro",
  65097. height: math.unit(4, "inches")
  65098. },
  65099. {
  65100. name: "Normal",
  65101. height: math.unit(6 + 2/12, "feet"),
  65102. default: true
  65103. },
  65104. {
  65105. name: "Minimacro",
  65106. height: math.unit(20, "feet")
  65107. },
  65108. {
  65109. name: "Macro",
  65110. height: math.unit(70, "feet")
  65111. },
  65112. ]
  65113. ))
  65114. characterMakers.push(() => makeCharacter(
  65115. { name: "Titania", species: ["horse"], tags: ["anthro"] },
  65116. {
  65117. frontNsfw: {
  65118. height: math.unit(2.48, "meters"),
  65119. weight: math.unit(112, "kg"),
  65120. name: "Front (NSFW)",
  65121. image: {
  65122. source: "./media/characters/titania/front-nsfw.svg",
  65123. extra: 1302/1232,
  65124. bottom: 90/1392
  65125. }
  65126. },
  65127. backNsfw: {
  65128. height: math.unit(2.48, "meters"),
  65129. weight: math.unit(112, "kg"),
  65130. name: "Back (NSFW)",
  65131. image: {
  65132. source: "./media/characters/titania/back-nsfw.svg",
  65133. extra: 1355/1288,
  65134. bottom: 18/1373
  65135. }
  65136. },
  65137. frontSfw: {
  65138. height: math.unit(2.48, "meters"),
  65139. weight: math.unit(112, "kg"),
  65140. name: "Front (SFW)",
  65141. image: {
  65142. source: "./media/characters/titania/front-sfw.svg",
  65143. extra: 1302/1232,
  65144. bottom: 90/1392
  65145. }
  65146. },
  65147. backSfw: {
  65148. height: math.unit(2.48, "meters"),
  65149. weight: math.unit(112, "kg"),
  65150. name: "Back (SFW)",
  65151. image: {
  65152. source: "./media/characters/titania/back-sfw.svg",
  65153. extra: 1355/1288,
  65154. bottom: 18/1373
  65155. }
  65156. },
  65157. head: {
  65158. height: math.unit(2.06, "feet"),
  65159. name: "Head",
  65160. image: {
  65161. source: "./media/characters/titania/head.svg"
  65162. }
  65163. },
  65164. maw: {
  65165. height: math.unit(0.8, "feet"),
  65166. name: "Maw",
  65167. image: {
  65168. source: "./media/characters/titania/maw.svg"
  65169. }
  65170. },
  65171. foot: {
  65172. height: math.unit(1.65, "feet"),
  65173. name: "Foot",
  65174. image: {
  65175. source: "./media/characters/titania/foot.svg"
  65176. }
  65177. },
  65178. nethers: {
  65179. height: math.unit(1.7, "feet"),
  65180. name: "Nethers",
  65181. image: {
  65182. source: "./media/characters/titania/nethers.svg"
  65183. }
  65184. },
  65185. },
  65186. [
  65187. {
  65188. name: "Normal",
  65189. height: math.unit(2.48, "meters"),
  65190. default: true
  65191. },
  65192. {
  65193. name: "Mini Macro",
  65194. height: math.unit(248, "meters")
  65195. },
  65196. {
  65197. name: "Macro",
  65198. height: math.unit(620, "meters")
  65199. },
  65200. {
  65201. name: "Mega Macro",
  65202. height: math.unit(1860, "meters")
  65203. },
  65204. ]
  65205. ))
  65206. characterMakers.push(() => makeCharacter(
  65207. { name: "Tony Gray", species: ["wholphin"], tags: ["anthro"] },
  65208. {
  65209. front: {
  65210. height: math.unit(5 + 9/12, "feet"),
  65211. weight: math.unit(1500, "lb"),
  65212. name: "Front",
  65213. image: {
  65214. source: "./media/characters/tony-gray/front.svg",
  65215. extra: 700/575,
  65216. bottom: 71/771
  65217. }
  65218. },
  65219. },
  65220. [
  65221. {
  65222. name: "Normal",
  65223. height: math.unit(5 + 9/12, "feet"),
  65224. default: true
  65225. },
  65226. ]
  65227. ))
  65228. characterMakers.push(() => makeCharacter(
  65229. { name: "Kelby", species: ["sea-dragon"], tags: ["feral"] },
  65230. {
  65231. side: {
  65232. height: math.unit(8 + 2/12, "feet"),
  65233. name: "Side",
  65234. image: {
  65235. source: "./media/characters/kelby/side.svg",
  65236. extra: 804/578,
  65237. bottom: 70/874
  65238. },
  65239. form: "regular",
  65240. default: true
  65241. },
  65242. lounging: {
  65243. height: math.unit(12.41, "feet"),
  65244. name: "Lounging",
  65245. image: {
  65246. source: "./media/characters/kelby/lounging.svg"
  65247. },
  65248. form: "regular"
  65249. },
  65250. maw: {
  65251. height: math.unit(5, "feet"),
  65252. name: "Maw",
  65253. image: {
  65254. source: "./media/characters/kelby/maw.svg"
  65255. },
  65256. form: "regular"
  65257. },
  65258. dick: {
  65259. height: math.unit(2.4, "feet"),
  65260. name: "Dick",
  65261. image: {
  65262. source: "./media/characters/kelby/dick.svg"
  65263. },
  65264. form: "regular"
  65265. },
  65266. slit: {
  65267. height: math.unit(1.2, "feet"),
  65268. name: "Slit",
  65269. image: {
  65270. source: "./media/characters/kelby/slit.svg"
  65271. },
  65272. form: "regular"
  65273. },
  65274. chibi: {
  65275. height: math.unit(5, "feet"),
  65276. name: "Chibi",
  65277. image: {
  65278. source: "./media/characters/kelby/chibi.svg",
  65279. extra: 245/200,
  65280. bottom: 43/288
  65281. },
  65282. form: "chibi",
  65283. default: true
  65284. },
  65285. },
  65286. [
  65287. {
  65288. name: "Normal",
  65289. height: math.unit(8 + 2/12, "feet"),
  65290. default: true,
  65291. form: "regular"
  65292. },
  65293. {
  65294. name: "Normal",
  65295. height: math.unit(5, "feet"),
  65296. default: true,
  65297. form: "chibi"
  65298. },
  65299. ],
  65300. {
  65301. "regular": {
  65302. name: "Regular",
  65303. default: true
  65304. },
  65305. "chibi": {
  65306. name: "Chibi",
  65307. },
  65308. }
  65309. ))
  65310. characterMakers.push(() => makeCharacter(
  65311. { name: "Elisa Mitchell", species: ["brown-bear", "kaiju"], tags: ["anthro"] },
  65312. {
  65313. front: {
  65314. height: math.unit(7 + 10/12, "feet"),
  65315. weight: math.unit(300, "lb"),
  65316. name: "Front",
  65317. image: {
  65318. source: "./media/characters/elisa-mitchell/front.svg",
  65319. extra: 2562/2355,
  65320. bottom: 62/2624
  65321. }
  65322. },
  65323. maw: {
  65324. height: math.unit(2.37, "feet"),
  65325. name: "Maw",
  65326. image: {
  65327. source: "./media/characters/elisa-mitchell/maw.svg"
  65328. }
  65329. },
  65330. },
  65331. [
  65332. {
  65333. name: "Normal",
  65334. height: math.unit(7 + 10/12, "feet"),
  65335. default: true
  65336. },
  65337. {
  65338. name: "Macro",
  65339. height: math.unit(1490, "feet"),
  65340. default: true
  65341. },
  65342. ]
  65343. ))
  65344. //characters
  65345. function makeCharacters() {
  65346. const results = [];
  65347. characterMakers.forEach(character => {
  65348. results.push(character());
  65349. });
  65350. return results;
  65351. }