less copy protection, more size visualization
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 

65738 lignes
1.6 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity,
  51. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. parents: [
  143. "video-games"
  144. ]
  145. },
  146. tiger: {
  147. name: "Tiger",
  148. parents: [
  149. "cat"
  150. ]
  151. },
  152. cat: {
  153. name: "Cat",
  154. parents: [
  155. "feliform"
  156. ]
  157. },
  158. "blue-jay": {
  159. name: "Blue Jay",
  160. parents: [
  161. "corvid"
  162. ]
  163. },
  164. wolf: {
  165. name: "Wolf",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. coyote: {
  171. name: "Coyote",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. raccoon: {
  177. name: "Raccoon",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. weasel: {
  183. name: "Weasel",
  184. parents: [
  185. "mustelid"
  186. ]
  187. },
  188. "red-panda": {
  189. name: "Red Panda",
  190. parents: [
  191. "mammal"
  192. ]
  193. },
  194. dolphin: {
  195. name: "Dolphin",
  196. parents: [
  197. "mammal"
  198. ]
  199. },
  200. "african-wild-dog": {
  201. name: "African Wild Dog",
  202. parents: [
  203. "canine"
  204. ]
  205. },
  206. "hyena": {
  207. name: "Hyena",
  208. parents: [
  209. "feliform"
  210. ]
  211. },
  212. "carbuncle": {
  213. name: "Carbuncle",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. bat: {
  219. name: "Bat",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "leaf-nosed-bat": {
  225. name: "Leaf-Nosed Bat",
  226. parents: [
  227. "bat"
  228. ]
  229. },
  230. "fish": {
  231. name: "Fish",
  232. parents: [
  233. "animal",
  234. "aquatic"
  235. ]
  236. },
  237. "ram": {
  238. name: "Ram",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "demon": {
  244. name: "Demon",
  245. parents: [
  246. "supernatural"
  247. ]
  248. },
  249. "cougar": {
  250. name: "Cougar",
  251. parents: [
  252. "cat"
  253. ]
  254. },
  255. "goat": {
  256. name: "Goat",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "lion": {
  262. name: "Lion",
  263. parents: [
  264. "cat"
  265. ]
  266. },
  267. "harpy-eager": {
  268. name: "Harpy Eagle",
  269. parents: [
  270. "avian"
  271. ]
  272. },
  273. "deer": {
  274. name: "Deer",
  275. parents: [
  276. "mammal"
  277. ]
  278. },
  279. "phoenix": {
  280. name: "Phoenix",
  281. parents: [
  282. "avian"
  283. ]
  284. },
  285. "aeromorph": {
  286. name: "Aeromorph",
  287. parents: [
  288. "machine"
  289. ]
  290. },
  291. "machine": {
  292. name: "Machine",
  293. },
  294. "android": {
  295. name: "Android",
  296. parents: [
  297. "machine"
  298. ]
  299. },
  300. "jackal": {
  301. name: "Jackal",
  302. parents: [
  303. "canine"
  304. ]
  305. },
  306. "corvid": {
  307. name: "Corvid",
  308. parents: [
  309. "passerine"
  310. ]
  311. },
  312. "pharaoh-hound": {
  313. name: "Pharaoh Hound",
  314. parents: [
  315. "dog"
  316. ]
  317. },
  318. "skunk": {
  319. name: "Skunk",
  320. parents: [
  321. "mammal"
  322. ]
  323. },
  324. "shark": {
  325. name: "Shark",
  326. parents: [
  327. "fish"
  328. ]
  329. },
  330. "black-panther": {
  331. name: "Black Panther",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "umbra": {
  337. name: "Umbra",
  338. parents: [
  339. "animal"
  340. ]
  341. },
  342. "raven": {
  343. name: "Raven",
  344. parents: [
  345. "corvid"
  346. ]
  347. },
  348. "snow-leopard": {
  349. name: "Snow Leopard",
  350. parents: [
  351. "cat"
  352. ]
  353. },
  354. "barbary-lion": {
  355. name: "Barbary Lion",
  356. parents: [
  357. "lion"
  358. ]
  359. },
  360. "dra'gal": {
  361. name: "Dra'Gal",
  362. parents: [
  363. "mammal"
  364. ]
  365. },
  366. "german-shepherd": {
  367. name: "German Shepherd",
  368. parents: [
  369. "dog"
  370. ]
  371. },
  372. "bayleef": {
  373. name: "Bayleef",
  374. parents: [
  375. "pokemon",
  376. "plant",
  377. "animal"
  378. ]
  379. },
  380. "mouse": {
  381. name: "Mouse",
  382. parents: [
  383. "rodent"
  384. ]
  385. },
  386. "rat": {
  387. name: "Rat",
  388. parents: [
  389. "mammal"
  390. ]
  391. },
  392. "hoshiko-beast": {
  393. name: "Hoshiko Beast",
  394. parents: ["animal"]
  395. },
  396. "snow-jugani": {
  397. name: "Snow Jugani",
  398. parents: ["cat"]
  399. },
  400. "patamon": {
  401. name: "Patamon",
  402. parents: ["digimon", "guinea-pig"]
  403. },
  404. "digimon": {
  405. name: "Digimon",
  406. parents: [
  407. "video-games"
  408. ]
  409. },
  410. "jugani": {
  411. name: "Jugani",
  412. parents: ["cat"]
  413. },
  414. "luxray": {
  415. name: "Luxray",
  416. parents: ["pokemon", "lion"]
  417. },
  418. "mech": {
  419. name: "Mech",
  420. parents: ["machine"]
  421. },
  422. "zoid": {
  423. name: "Zoid",
  424. parents: ["mech"]
  425. },
  426. "monster": {
  427. name: "Monster",
  428. parents: ["animal"]
  429. },
  430. "foo-dog": {
  431. name: "Foo Dog",
  432. parents: ["mammal"]
  433. },
  434. "elephant": {
  435. name: "Elephant",
  436. parents: ["mammal"]
  437. },
  438. "eagle": {
  439. name: "Eagle",
  440. parents: ["bird-of-prey"]
  441. },
  442. "cow": {
  443. name: "Cow",
  444. parents: ["mammal"]
  445. },
  446. "crocodile": {
  447. name: "Crocodile",
  448. parents: ["reptile"]
  449. },
  450. "borzoi": {
  451. name: "Borzoi",
  452. parents: ["dog"]
  453. },
  454. "snake": {
  455. name: "Snake",
  456. parents: ["reptile"]
  457. },
  458. "horned-bush-viper": {
  459. name: "Horned Bush Viper",
  460. parents: ["viper"]
  461. },
  462. "cobra": {
  463. name: "Cobra",
  464. parents: ["snake"]
  465. },
  466. "harpy-eagle": {
  467. name: "Harpy Eagle",
  468. parents: ["eagle"]
  469. },
  470. "raptor": {
  471. name: "Raptor",
  472. parents: ["dinosaur"]
  473. },
  474. "dinosaur": {
  475. name: "Dinosaur",
  476. parents: ["saurian"]
  477. },
  478. "saurian": {
  479. name: "Saurian",
  480. parents: ["lizard"]
  481. },
  482. "veilhound": {
  483. name: "Veilhound",
  484. parents: ["hellhound"]
  485. },
  486. "hellhound": {
  487. name: "Hellhound",
  488. parents: ["canine", "demon"]
  489. },
  490. "insect": {
  491. name: "Insect",
  492. parents: ["animal"]
  493. },
  494. "beetle": {
  495. name: "Beetle",
  496. parents: ["insect"]
  497. },
  498. "moth": {
  499. name: "Moth",
  500. parents: ["insect"]
  501. },
  502. "eastern-dragon": {
  503. name: "Eastern Dragon",
  504. parents: ["dragon"]
  505. },
  506. "jaguar": {
  507. name: "Jaguar",
  508. parents: ["cat"]
  509. },
  510. "horse": {
  511. name: "Horse",
  512. parents: ["mammal"]
  513. },
  514. "sergal": {
  515. name: "Sergal",
  516. parents: ["mammal", "avian", "vilous"]
  517. },
  518. "gryphon": {
  519. name: "Gryphon",
  520. parents: ["lion", "eagle"]
  521. },
  522. "robot": {
  523. name: "Robot",
  524. parents: ["machine"]
  525. },
  526. "medihound": {
  527. name: "Medihound",
  528. parents: ["robot", "dog"]
  529. },
  530. "sylveon": {
  531. name: "Sylveon",
  532. parents: ["pokemon"]
  533. },
  534. "catgirl": {
  535. name: "Catgirl",
  536. parents: ["mammal"]
  537. },
  538. "cowgirl": {
  539. name: "Cowgirl",
  540. parents: ["mammal"]
  541. },
  542. "pony": {
  543. name: "Pony",
  544. parents: ["horse"]
  545. },
  546. "rabbit": {
  547. name: "Rabbit",
  548. parents: ["leporidae"]
  549. },
  550. "fennec-fox": {
  551. name: "Fennec Fox",
  552. parents: ["fox"]
  553. },
  554. "azodian": {
  555. name: "Azodian",
  556. parents: ["mouse"]
  557. },
  558. "shiba-inu": {
  559. name: "Shiba Inu",
  560. parents: ["dog"]
  561. },
  562. "changeling": {
  563. name: "Changeling",
  564. parents: ["insect"]
  565. },
  566. "cheetah": {
  567. name: "Cheetah",
  568. parents: ["cat"]
  569. },
  570. "golden-jackal": {
  571. name: "Golden Jackal",
  572. parents: ["jackal"]
  573. },
  574. "manectric": {
  575. name: "Manectric",
  576. parents: ["pokemon", "wolf"]
  577. },
  578. "rat": {
  579. name: "Rat",
  580. parents: ["rodent"]
  581. },
  582. "rodent": {
  583. name: "Rodent",
  584. parents: ["mammal"]
  585. },
  586. "octocoon": {
  587. name: "Octocoon",
  588. parents: ["raccoon", "octopus"]
  589. },
  590. "octopus": {
  591. name: "Octopus",
  592. parents: ["fish"]
  593. },
  594. "werewolf": {
  595. name: "Werewolf",
  596. parents: ["wolf", "werebeast"]
  597. },
  598. "werebeast": {
  599. name: "Werebeast",
  600. parents: ["monster"]
  601. },
  602. "meerkat": {
  603. name: "Meerkat",
  604. parents: ["mammal"]
  605. },
  606. "human": {
  607. name: "Human",
  608. parents: ["mammal", "humanoid"]
  609. },
  610. "geth": {
  611. name: "Geth",
  612. parents: ["android"]
  613. },
  614. "husky": {
  615. name: "Husky",
  616. parents: ["dog"]
  617. },
  618. "long-eared-bat": {
  619. name: "Long Eared Bat",
  620. parents: ["bat"]
  621. },
  622. "lizard": {
  623. name: "Lizard",
  624. parents: ["reptile"]
  625. },
  626. "salamander": {
  627. name: "Salamander",
  628. parents: ["lizard"]
  629. },
  630. "chameleon": {
  631. name: "Chameleon",
  632. parents: ["lizard"]
  633. },
  634. "gecko": {
  635. name: "Gecko",
  636. parents: ["lizard"]
  637. },
  638. "kobold": {
  639. name: "Kobold",
  640. parents: ["reptile"]
  641. },
  642. "charizard": {
  643. name: "Charizard",
  644. parents: ["pokemon", "dragon"]
  645. },
  646. "lugia": {
  647. name: "Lugia",
  648. parents: ["pokemon", "avian"]
  649. },
  650. "cerberus": {
  651. name: "Cerberus",
  652. parents: ["dog"]
  653. },
  654. "tyrantrum": {
  655. name: "Tyrantrum",
  656. parents: ["pokemon"]
  657. },
  658. "lemur": {
  659. name: "Lemur",
  660. parents: ["mammal"]
  661. },
  662. "kelpie": {
  663. name: "Kelpie",
  664. parents: ["horse", "monster"]
  665. },
  666. "labrador": {
  667. name: "Labrador",
  668. parents: ["dog"]
  669. },
  670. "sylveon": {
  671. name: "Sylveon",
  672. parents: ["eeveelution"]
  673. },
  674. "eeveelution": {
  675. name: "Eeveelution",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "polar-bear": {
  679. name: "Polar Bear",
  680. parents: ["bear"]
  681. },
  682. "bear": {
  683. name: "Bear",
  684. parents: ["mammal"]
  685. },
  686. "absol": {
  687. name: "Absol",
  688. parents: ["pokemon", "cat"]
  689. },
  690. "wolver": {
  691. name: "Wolver",
  692. parents: ["mammal"]
  693. },
  694. "rottweiler": {
  695. name: "Rottweiler",
  696. parents: ["dog"]
  697. },
  698. "zebra": {
  699. name: "Zebra",
  700. parents: ["horse"]
  701. },
  702. "yoshi": {
  703. name: "Yoshi",
  704. parents: ["dinosaur"]
  705. },
  706. "lynx": {
  707. name: "Lynx",
  708. parents: ["cat"]
  709. },
  710. "unknown": {
  711. name: "Unknown",
  712. parents: []
  713. },
  714. "thylacine": {
  715. name: "Thylacine",
  716. parents: ["mammal"]
  717. },
  718. "gabumon": {
  719. name: "Gabumon",
  720. parents: ["digimon"]
  721. },
  722. "border-collie": {
  723. name: "Border Collie",
  724. parents: ["dog"]
  725. },
  726. "imp": {
  727. name: "Imp",
  728. parents: ["demon"]
  729. },
  730. "kangaroo": {
  731. name: "Kangaroo",
  732. parents: ["marsupial"]
  733. },
  734. "renamon": {
  735. name: "Renamon",
  736. parents: ["digimon", "fox"]
  737. },
  738. "candy-orca-dragon": {
  739. name: "Candy Orca Dragon",
  740. parents: ["fish", "dragon", "candy"]
  741. },
  742. "sabertooth-tiger": {
  743. name: "Sabertooth Tiger",
  744. parents: ["cat"]
  745. },
  746. "espurr": {
  747. name: "Espurr",
  748. parents: ["pokemon", "cat"]
  749. },
  750. "otter": {
  751. name: "Otter",
  752. parents: ["mustelid"]
  753. },
  754. "elemental": {
  755. name: "Elemental",
  756. parents: ["mammal"]
  757. },
  758. "mew": {
  759. name: "Mew",
  760. parents: ["pokemon"]
  761. },
  762. "goodra": {
  763. name: "Goodra",
  764. parents: ["pokemon"]
  765. },
  766. "fairy": {
  767. name: "Fairy",
  768. parents: ["magical"]
  769. },
  770. "typhlosion": {
  771. name: "Typhlosion",
  772. parents: ["pokemon"]
  773. },
  774. "magical": {
  775. name: "Magical",
  776. parents: []
  777. },
  778. "xenomorph": {
  779. name: "Xenomorph",
  780. parents: ["monster", "alien"]
  781. },
  782. "charr": {
  783. name: "Charr",
  784. parents: ["cat"]
  785. },
  786. "siberian-husky": {
  787. name: "Siberian Husky",
  788. parents: ["husky"]
  789. },
  790. "alligator": {
  791. name: "Alligator",
  792. parents: ["reptile"]
  793. },
  794. "bernese-mountain-dog": {
  795. name: "Bernese Mountain Dog",
  796. parents: ["dog"]
  797. },
  798. "reshiram": {
  799. name: "Reshiram",
  800. parents: ["pokemon", "dragon"]
  801. },
  802. "grizzly-bear": {
  803. name: "Grizzly Bear",
  804. parents: ["bear"]
  805. },
  806. "water-monitor": {
  807. name: "Water Monitor",
  808. parents: ["lizard"]
  809. },
  810. "banchofossa": {
  811. name: "Banchofossa",
  812. parents: ["mammal"]
  813. },
  814. "kirin": {
  815. name: "Kirin",
  816. parents: ["monster"]
  817. },
  818. "quilava": {
  819. name: "Quilava",
  820. parents: ["pokemon"]
  821. },
  822. "seviper": {
  823. name: "Seviper",
  824. parents: ["pokemon", "viper"]
  825. },
  826. "flying-fox": {
  827. name: "Flying Fox",
  828. parents: ["bat"]
  829. },
  830. "keynain": {
  831. name: "Keynain",
  832. parents: ["avian"]
  833. },
  834. "lucario": {
  835. name: "Lucario",
  836. parents: ["pokemon", "jackal"]
  837. },
  838. "siamese-cat": {
  839. name: "Siamese Cat",
  840. parents: ["cat"]
  841. },
  842. "spider": {
  843. name: "Spider",
  844. parents: ["insect"]
  845. },
  846. "samurott": {
  847. name: "Samurott",
  848. parents: ["pokemon", "otter"]
  849. },
  850. "megalodon": {
  851. name: "Megalodon",
  852. parents: ["shark"]
  853. },
  854. "unicorn": {
  855. name: "Unicorn",
  856. parents: ["horse"]
  857. },
  858. "greninja": {
  859. name: "Greninja",
  860. parents: ["pokemon", "frog"]
  861. },
  862. "water-dragon": {
  863. name: "Water Dragon",
  864. parents: ["dragon"]
  865. },
  866. "cross-fox": {
  867. name: "Cross Fox",
  868. parents: ["fox"]
  869. },
  870. "synth": {
  871. name: "Synth",
  872. parents: ["machine"]
  873. },
  874. "construct": {
  875. name: "Construct",
  876. parents: []
  877. },
  878. "mexican-wolf": {
  879. name: "Mexican Wolf",
  880. parents: ["wolf"]
  881. },
  882. "leopard": {
  883. name: "Leopard",
  884. parents: ["cat"]
  885. },
  886. "pig": {
  887. name: "Pig",
  888. parents: ["mammal"]
  889. },
  890. "ampharos": {
  891. name: "Ampharos",
  892. parents: ["pokemon", "sheep"]
  893. },
  894. "orca": {
  895. name: "Orca",
  896. parents: ["fish"]
  897. },
  898. "lycanroc": {
  899. name: "Lycanroc",
  900. parents: ["pokemon", "wolf"]
  901. },
  902. "surkanu": {
  903. name: "Surkanu",
  904. parents: ["monster"]
  905. },
  906. "seal": {
  907. name: "Seal",
  908. parents: ["mammal"]
  909. },
  910. "keldeo": {
  911. name: "Keldeo",
  912. parents: ["pokemon"]
  913. },
  914. "great-dane": {
  915. name: "Great Dane",
  916. parents: ["dog"]
  917. },
  918. "black-backed-jackal": {
  919. name: "Black Backed Jackal",
  920. parents: ["jackal"]
  921. },
  922. "sheep": {
  923. name: "Sheep",
  924. parents: ["mammal"]
  925. },
  926. "leopard-seal": {
  927. name: "Leopard Seal",
  928. parents: ["seal"]
  929. },
  930. "zoroark": {
  931. name: "Zoroark",
  932. parents: ["pokemon", "fox"]
  933. },
  934. "maned-wolf": {
  935. name: "Maned Wolf",
  936. parents: ["canine"]
  937. },
  938. "dracha": {
  939. name: "Dracha",
  940. parents: ["dragon"]
  941. },
  942. "wolxi": {
  943. name: "Wolxi",
  944. parents: ["mammal", "alien"]
  945. },
  946. "dratini": {
  947. name: "Dratini",
  948. parents: ["pokemon", "dragon"]
  949. },
  950. "skaven": {
  951. name: "Skaven",
  952. parents: ["rat"]
  953. },
  954. "mongoose": {
  955. name: "Mongoose",
  956. parents: ["mammal"]
  957. },
  958. "lopunny": {
  959. name: "Lopunny",
  960. parents: ["pokemon", "rabbit"]
  961. },
  962. "feraligatr": {
  963. name: "Feraligatr",
  964. parents: ["pokemon", "alligator"]
  965. },
  966. "houndoom": {
  967. name: "Houndoom",
  968. parents: ["pokemon", "dog"]
  969. },
  970. "protogen": {
  971. name: "Protogen",
  972. parents: ["machine"]
  973. },
  974. "saint-bernard": {
  975. name: "Saint Bernard",
  976. parents: ["dog"]
  977. },
  978. "crow": {
  979. name: "Crow",
  980. parents: ["corvid"]
  981. },
  982. "delphox": {
  983. name: "Delphox",
  984. parents: ["pokemon", "fox"]
  985. },
  986. "moose": {
  987. name: "Moose",
  988. parents: ["mammal"]
  989. },
  990. "joraxian": {
  991. name: "Joraxian",
  992. parents: ["monster", "canine", "demon"]
  993. },
  994. "nimbat": {
  995. name: "Nimbat",
  996. parents: ["mammal"]
  997. },
  998. "aardwolf": {
  999. name: "Aardwolf",
  1000. parents: ["canine"]
  1001. },
  1002. "fluudrani": {
  1003. name: "Fluudrani",
  1004. parents: ["animal"]
  1005. },
  1006. "arcanine": {
  1007. name: "Arcanine",
  1008. parents: ["pokemon", "dog"]
  1009. },
  1010. "inteleon": {
  1011. name: "Inteleon",
  1012. parents: ["pokemon", "fish"]
  1013. },
  1014. "ninetales": {
  1015. name: "Ninetales",
  1016. parents: ["pokemon", "kitsune"]
  1017. },
  1018. "tigrex": {
  1019. name: "Tigrex",
  1020. parents: ["wyvern", "monster-hunter"]
  1021. },
  1022. "zorua": {
  1023. name: "Zorua",
  1024. parents: ["pokemon", "fox"]
  1025. },
  1026. "vulpix": {
  1027. name: "Vulpix",
  1028. parents: ["pokemon", "fox"]
  1029. },
  1030. "barghest": {
  1031. name: "Barghest",
  1032. parents: ["monster"]
  1033. },
  1034. "gray-wolf": {
  1035. name: "Gray Wolf",
  1036. parents: ["wolf"]
  1037. },
  1038. "ruppells-fox": {
  1039. name: "Rüppell's Fox",
  1040. parents: ["fox"]
  1041. },
  1042. "bull-terrier": {
  1043. name: "Bull Terrier",
  1044. parents: ["dog"]
  1045. },
  1046. "european-honey-buzzard": {
  1047. name: "European Honey Buzzard",
  1048. parents: ["avian"]
  1049. },
  1050. "t-rex": {
  1051. name: "Tyrannosaurus Rex",
  1052. parents: ["theropod"]
  1053. },
  1054. "mactarian": {
  1055. name: "Mactarian",
  1056. parents: ["shark", "monster"]
  1057. },
  1058. "mewtwo-y": {
  1059. name: "Mewtwo Y",
  1060. parents: ["mewtwo"]
  1061. },
  1062. "mewtwo": {
  1063. name: "Mewtwo",
  1064. parents: ["pokemon"]
  1065. },
  1066. "eevee": {
  1067. name: "Eevee",
  1068. parents: ["eeveelution"]
  1069. },
  1070. "mienshao": {
  1071. name: "Mienshao",
  1072. parents: ["pokemon"]
  1073. },
  1074. "sugar-glider": {
  1075. name: "Sugar Glider",
  1076. parents: ["opossum"]
  1077. },
  1078. "spectral-bat": {
  1079. name: "Spectral Bat",
  1080. parents: ["bat"]
  1081. },
  1082. "scolipede": {
  1083. name: "Scolipede",
  1084. parents: ["pokemon", "insect"]
  1085. },
  1086. "jackalope": {
  1087. name: "Jackalope",
  1088. parents: ["rabbit", "antelope"]
  1089. },
  1090. "caracal": {
  1091. name: "Caracal",
  1092. parents: ["cat"]
  1093. },
  1094. "stoat": {
  1095. name: "Stoat",
  1096. parents: ["mammal"]
  1097. },
  1098. "african-golden-cat": {
  1099. name: "African Golden Cat",
  1100. parents: ["cat"]
  1101. },
  1102. "gigantosaurus": {
  1103. name: "Gigantosaurus",
  1104. parents: ["dinosaur"]
  1105. },
  1106. "zorgoia": {
  1107. name: "Zorgoia",
  1108. parents: ["mammal"]
  1109. },
  1110. "monitor-lizard": {
  1111. name: "Monitor Lizard",
  1112. parents: ["lizard"]
  1113. },
  1114. "ziralkia": {
  1115. name: "Ziralkia",
  1116. parents: ["mammal"]
  1117. },
  1118. "kiiasi": {
  1119. name: "Kiiasi",
  1120. parents: ["animal"]
  1121. },
  1122. "synx": {
  1123. name: "Synx",
  1124. parents: ["monster"]
  1125. },
  1126. "panther": {
  1127. name: "Panther",
  1128. parents: ["cat"]
  1129. },
  1130. "azumarill": {
  1131. name: "Azumarill",
  1132. parents: ["pokemon"]
  1133. },
  1134. "river-snaptail": {
  1135. name: "River Snaptail",
  1136. parents: ["otter", "crocodile"]
  1137. },
  1138. "great-blue-heron": {
  1139. name: "Great Blue Heron",
  1140. parents: ["avian"]
  1141. },
  1142. "smeargle": {
  1143. name: "Smeargle",
  1144. parents: ["pokemon"]
  1145. },
  1146. "vendeilen": {
  1147. name: "Vendeilen",
  1148. parents: ["monster"]
  1149. },
  1150. "ventura": {
  1151. name: "Ventura",
  1152. parents: ["canine"]
  1153. },
  1154. "clouded-leopard": {
  1155. name: "Clouded Leopard",
  1156. parents: ["leopard"]
  1157. },
  1158. "argonian": {
  1159. name: "Argonian",
  1160. parents: ["lizard"]
  1161. },
  1162. "salazzle": {
  1163. name: "Salazzle",
  1164. parents: ["pokemon", "lizard"]
  1165. },
  1166. "je-stoff-drachen": {
  1167. name: "Je-Stoff Drachen",
  1168. parents: ["dragon"]
  1169. },
  1170. "finnish-spitz-dog": {
  1171. name: "Finnish Spitz Dog",
  1172. parents: ["dog"]
  1173. },
  1174. "gray-fox": {
  1175. name: "Gray Fox",
  1176. parents: ["fox"]
  1177. },
  1178. "opossum": {
  1179. name: "Opossum",
  1180. parents: ["mammal"]
  1181. },
  1182. "antelope": {
  1183. name: "Antelope",
  1184. parents: ["mammal"]
  1185. },
  1186. "weavile": {
  1187. name: "Weavile",
  1188. parents: ["pokemon"]
  1189. },
  1190. "pikachu": {
  1191. name: "Pikachu",
  1192. parents: ["pokemon", "mouse"]
  1193. },
  1194. "grovyle": {
  1195. name: "Grovyle",
  1196. parents: ["pokemon", "plant"]
  1197. },
  1198. "sthara": {
  1199. name: "Sthara",
  1200. parents: ["snow-leopard", "reptile"]
  1201. },
  1202. "star-warrior": {
  1203. name: "Star Warrior",
  1204. parents: ["magical"]
  1205. },
  1206. "dragonoid": {
  1207. name: "Dragonoid",
  1208. parents: ["dragon"]
  1209. },
  1210. "suicune": {
  1211. name: "Suicune",
  1212. parents: ["pokemon"]
  1213. },
  1214. "vole": {
  1215. name: "Vole",
  1216. parents: ["mammal"]
  1217. },
  1218. "blaziken": {
  1219. name: "Blaziken",
  1220. parents: ["pokemon", "avian"]
  1221. },
  1222. "buizel": {
  1223. name: "Buizel",
  1224. parents: ["pokemon", "fish"]
  1225. },
  1226. "floatzel": {
  1227. name: "Floatzel",
  1228. parents: ["pokemon", "fish"]
  1229. },
  1230. "umok": {
  1231. name: "Umok",
  1232. parents: ["avian"]
  1233. },
  1234. "sea-monster": {
  1235. name: "Sea Monster",
  1236. parents: ["monster", "fish"]
  1237. },
  1238. "egyptian-vulture": {
  1239. name: "Egyptian Vulture",
  1240. parents: ["avian"]
  1241. },
  1242. "doberman": {
  1243. name: "Doberman",
  1244. parents: ["dog"]
  1245. },
  1246. "zangoose": {
  1247. name: "Zangoose",
  1248. parents: ["pokemon", "mongoose"]
  1249. },
  1250. "mongoose": {
  1251. name: "Mongoose",
  1252. parents: ["mammal"]
  1253. },
  1254. "wickerbeast": {
  1255. name: "Wickerbeast",
  1256. parents: ["monster"]
  1257. },
  1258. "zenari": {
  1259. name: "Zenari",
  1260. parents: ["lizard"]
  1261. },
  1262. "plant": {
  1263. name: "Plant",
  1264. parents: []
  1265. },
  1266. "raskatox": {
  1267. name: "Raskatox",
  1268. parents: ["raccoon", "skunk", "cat", "fox"]
  1269. },
  1270. "mikromare": {
  1271. name: "mikromare",
  1272. parents: ["alien"]
  1273. },
  1274. "alien": {
  1275. name: "Alien",
  1276. parents: ["animal"]
  1277. },
  1278. "deity": {
  1279. name: "Deity",
  1280. parents: []
  1281. },
  1282. "skarlan": {
  1283. name: "Skarlan",
  1284. parents: ["slug", "dragon"]
  1285. },
  1286. "slug": {
  1287. name: "Slug",
  1288. parents: ["mollusk"]
  1289. },
  1290. "mollusk": {
  1291. name: "Mollusk",
  1292. parents: ["animal"]
  1293. },
  1294. "chimera": {
  1295. name: "Chimera",
  1296. parents: ["monster"]
  1297. },
  1298. "gestalt": {
  1299. name: "Gestalt",
  1300. parents: ["construct"]
  1301. },
  1302. "mimic": {
  1303. name: "Mimic",
  1304. parents: ["monster"]
  1305. },
  1306. "calico-rat": {
  1307. name: "Calico Rat",
  1308. parents: ["rat"]
  1309. },
  1310. "panda": {
  1311. name: "Panda",
  1312. parents: ["mammal"]
  1313. },
  1314. "oni": {
  1315. name: "Oni",
  1316. parents: ["monster"]
  1317. },
  1318. "pegasus": {
  1319. name: "Pegasus",
  1320. parents: ["horse"]
  1321. },
  1322. "vulpera": {
  1323. name: "Vulpera",
  1324. parents: ["fennec-fox"]
  1325. },
  1326. "ceratosaurus": {
  1327. name: "Ceratosaurus",
  1328. parents: ["dinosaur"]
  1329. },
  1330. "nykur": {
  1331. name: "Nykur",
  1332. parents: ["horse", "monster"]
  1333. },
  1334. "giraffe": {
  1335. name: "Giraffe",
  1336. parents: ["mammal"]
  1337. },
  1338. "tauren": {
  1339. name: "Tauren",
  1340. parents: ["cow"]
  1341. },
  1342. "draconi": {
  1343. name: "Draconi",
  1344. parents: ["alien", "cat", "cyborg"]
  1345. },
  1346. "dire-wolf": {
  1347. name: "Dire Wolf",
  1348. parents: ["wolf"]
  1349. },
  1350. "ferromorph": {
  1351. name: "Ferromorph",
  1352. parents: ["construct"]
  1353. },
  1354. "meowth": {
  1355. name: "Meowth",
  1356. parents: ["cat", "pokemon"]
  1357. },
  1358. "pavodragon": {
  1359. name: "Pavodragon",
  1360. parents: ["dragon"]
  1361. },
  1362. "aaltranae": {
  1363. name: "Aaltranae",
  1364. parents: ["dragon"]
  1365. },
  1366. "cyborg": {
  1367. name: "Cyborg",
  1368. parents: ["machine"]
  1369. },
  1370. "draptor": {
  1371. name: "Draptor",
  1372. parents: ["dragon"]
  1373. },
  1374. "candy": {
  1375. name: "Candy",
  1376. parents: []
  1377. },
  1378. "drenath": {
  1379. name: "Drenath",
  1380. parents: ["dragon", "snake", "rabbit"]
  1381. },
  1382. "coyju": {
  1383. name: "Coyju",
  1384. parents: ["coyote", "kaiju"]
  1385. },
  1386. "kaiju": {
  1387. name: "Kaiju",
  1388. parents: ["monster"]
  1389. },
  1390. "nickit": {
  1391. name: "Nickit",
  1392. parents: ["pokemon", "cat"]
  1393. },
  1394. "lopunny": {
  1395. name: "Lopunny",
  1396. parents: ["pokemon", "rabbit"]
  1397. },
  1398. "korean-jindo-dog": {
  1399. name: "Korean Jindo Dog",
  1400. parents: ["dog"]
  1401. },
  1402. "naga": {
  1403. name: "Naga",
  1404. parents: ["snake", "monster"]
  1405. },
  1406. "undead": {
  1407. name: "Undead",
  1408. parents: ["monster"]
  1409. },
  1410. "whale": {
  1411. name: "Whale",
  1412. parents: ["fish"]
  1413. },
  1414. "gelato-bee": {
  1415. name: "Gelato Bee",
  1416. parents: ["bee"]
  1417. },
  1418. "bee": {
  1419. name: "Bee",
  1420. parents: ["insect"]
  1421. },
  1422. "gardevoir": {
  1423. name: "Gardevoir",
  1424. parents: ["pokemon"]
  1425. },
  1426. "ant": {
  1427. name: "Ant",
  1428. parents: ["insect"]
  1429. },
  1430. "frog": {
  1431. name: "Frog",
  1432. parents: ["amphibian"]
  1433. },
  1434. "amphibian": {
  1435. name: "Amphibian",
  1436. parents: ["animal", "aquatic"]
  1437. },
  1438. "pangolin": {
  1439. name: "Pangolin",
  1440. parents: ["mammal"]
  1441. },
  1442. "uragi'viidorn": {
  1443. name: "Uragi'viidorn",
  1444. parents: ["avian", "bear"]
  1445. },
  1446. "gryphdelphais": {
  1447. name: "Gryphdelphais",
  1448. parents: ["dolphin", "gryphon"]
  1449. },
  1450. "plush": {
  1451. name: "Plush",
  1452. parents: ["construct"]
  1453. },
  1454. "draiger": {
  1455. name: "Draiger",
  1456. parents: ["dragon","tiger"]
  1457. },
  1458. "foxsky": {
  1459. name: "Foxsky",
  1460. parents: ["fox", "husky"]
  1461. },
  1462. "umbreon": {
  1463. name: "Umbreon",
  1464. parents: ["eeveelution"]
  1465. },
  1466. "slime-dragon": {
  1467. name: "Slime Dragon",
  1468. parents: ["dragon", "goo"]
  1469. },
  1470. "enderman": {
  1471. name: "Enderman",
  1472. parents: ["monster"]
  1473. },
  1474. "gremlin": {
  1475. name: "Gremlin",
  1476. parents: ["monster"]
  1477. },
  1478. "dragonsune": {
  1479. name: "Dragonsune",
  1480. parents: ["dragon", "kitsune"]
  1481. },
  1482. "ghost": {
  1483. name: "Ghost",
  1484. parents: ["supernatural"]
  1485. },
  1486. "false-vampire-bat": {
  1487. name: "False Vampire Bat",
  1488. parents: ["bat"]
  1489. },
  1490. "succubus": {
  1491. name: "Succubus",
  1492. parents: ["demon"]
  1493. },
  1494. "mia": {
  1495. name: "Mia",
  1496. parents: ["canine"]
  1497. },
  1498. "rainbow": {
  1499. name: "Rainbow",
  1500. parents: ["monster"]
  1501. },
  1502. "solgaleo": {
  1503. name: "Solgaleo",
  1504. parents: ["pokemon"]
  1505. },
  1506. "lucent-nargacuga": {
  1507. name: "Lucent Nargacuga",
  1508. parents: ["nargacuga"]
  1509. },
  1510. "monster-hunter": {
  1511. name: "Monster Hunter",
  1512. parents: ["monster", "video-games"]
  1513. },
  1514. "leviathan": {
  1515. "name": "Leviathan",
  1516. "url": "sea-monster"
  1517. },
  1518. "bull": {
  1519. name: "Bull",
  1520. parents: ["mammal"]
  1521. },
  1522. "tanuki": {
  1523. name: "Tanuki",
  1524. parents: ["monster"]
  1525. },
  1526. "chakat": {
  1527. name: "Chakat",
  1528. parents: ["cat"]
  1529. },
  1530. "hydra": {
  1531. name: "Hydra",
  1532. parents: ["monster"]
  1533. },
  1534. "zigzagoon": {
  1535. name: "Zigzagoon",
  1536. parents: ["raccoon", "pokemon"]
  1537. },
  1538. "vulture": {
  1539. name: "Vulture",
  1540. parents: ["avian"]
  1541. },
  1542. "eastern-dragon": {
  1543. name: "Eastern Dragon",
  1544. parents: ["dragon"]
  1545. },
  1546. "gryffon": {
  1547. name: "Gryffon",
  1548. parents: ["phoenix", "red-panda"]
  1549. },
  1550. "amtsvane": {
  1551. name: "Amtsvane",
  1552. parents: ["reptile"]
  1553. },
  1554. "kigavi": {
  1555. name: "Kigavi",
  1556. parents: ["avian"]
  1557. },
  1558. "turian": {
  1559. name: "Turian",
  1560. parents: ["avian"]
  1561. },
  1562. "zeraora": {
  1563. name: "Zeraora",
  1564. parents: ["pokemon", "cat"]
  1565. },
  1566. "sandshrew": {
  1567. name: "Sandshrew",
  1568. parents: ["pokemon", "pangolin"]
  1569. },
  1570. "valais-blacknose-sheep": {
  1571. name: "Valais Blacknose Sheep",
  1572. parents: ["sheep"]
  1573. },
  1574. "novaleit": {
  1575. name: "Novaleit",
  1576. parents: ["mammal"]
  1577. },
  1578. "dunnoh": {
  1579. name: "Dunnoh",
  1580. parents: ["mammal"]
  1581. },
  1582. "lunaral-dragon": {
  1583. name: "Lunaral Dragon",
  1584. parents: ["dragon"]
  1585. },
  1586. "arctic-wolf": {
  1587. name: "Arctic Wolf",
  1588. parents: ["wolf"]
  1589. },
  1590. "donkey": {
  1591. name: "Donkey",
  1592. parents: ["horse"]
  1593. },
  1594. "chinchilla": {
  1595. name: "Chinchilla",
  1596. parents: ["rodent"]
  1597. },
  1598. "felkin": {
  1599. name: "Felkin",
  1600. parents: ["dragon"]
  1601. },
  1602. "tykeriel": {
  1603. name: "Tykeriel",
  1604. parents: ["avian"]
  1605. },
  1606. "folf": {
  1607. name: "Folf",
  1608. parents: ["fox", "wolf"]
  1609. },
  1610. "pooltoy": {
  1611. name: "Pooltoy",
  1612. parents: ["construct"]
  1613. },
  1614. "demi": {
  1615. name: "Demi",
  1616. parents: ["human"]
  1617. },
  1618. "stegosaurus": {
  1619. name: "Stegosaurus",
  1620. parents: ["dinosaur"]
  1621. },
  1622. "computer-virus": {
  1623. name: "Computer Virus",
  1624. parents: ["program"]
  1625. },
  1626. "program": {
  1627. name: "Program",
  1628. parents: ["construct"]
  1629. },
  1630. "space-springhare": {
  1631. name: "Space Springhare",
  1632. parents: ["hare"]
  1633. },
  1634. "river-drake": {
  1635. name: "River Drake",
  1636. parents: ["dragon"]
  1637. },
  1638. "djinn": {
  1639. "name": "Djinn",
  1640. "url": "supernatural"
  1641. },
  1642. "supernatural": {
  1643. name: "Supernatural",
  1644. parents: ["monster"]
  1645. },
  1646. "grasshopper-mouse": {
  1647. name: "Grasshopper Mouse",
  1648. parents: ["mouse"]
  1649. },
  1650. "somali-cat": {
  1651. name: "Somali Cat",
  1652. parents: ["cat"]
  1653. },
  1654. "minccino": {
  1655. name: "Minccino",
  1656. parents: ["pokemon", "chinchilla"]
  1657. },
  1658. "pine-marten": {
  1659. name: "Pine Marten",
  1660. parents: ["marten"]
  1661. },
  1662. "marten": {
  1663. name: "Marten",
  1664. parents: ["mustelid"]
  1665. },
  1666. "mustelid": {
  1667. name: "Mustelid",
  1668. parents: ["mammal"]
  1669. },
  1670. "caribou": {
  1671. name: "Caribou",
  1672. parents: ["deer"]
  1673. },
  1674. "gnoll": {
  1675. name: "Gnoll",
  1676. parents: ["hyena", "monster"]
  1677. },
  1678. "peacekeeper": {
  1679. name: "Peacekeeper",
  1680. parents: ["human"]
  1681. },
  1682. "river-otter": {
  1683. name: "River Otter",
  1684. parents: ["otter"]
  1685. },
  1686. "dhole": {
  1687. name: "Dhole",
  1688. parents: ["canine"]
  1689. },
  1690. "springbok": {
  1691. name: "Springbok",
  1692. parents: ["antelope"]
  1693. },
  1694. "marsupial": {
  1695. name: "Marsupial",
  1696. parents: ["mammal"]
  1697. },
  1698. "townsend-big-eared-bat": {
  1699. name: "Townsend Big-eared Bat",
  1700. parents: ["bat"]
  1701. },
  1702. "squirrel": {
  1703. name: "Squirrel",
  1704. parents: ["rodent"]
  1705. },
  1706. "magpie": {
  1707. name: "Magpie",
  1708. parents: ["corvid"]
  1709. },
  1710. "civet": {
  1711. name: "Civet",
  1712. parents: ["feliform"]
  1713. },
  1714. "feliform": {
  1715. name: "Feliform",
  1716. parents: ["mammal"]
  1717. },
  1718. "tiefling": {
  1719. name: "Tiefling",
  1720. parents: ["devil"]
  1721. },
  1722. "devil": {
  1723. name: "Devil",
  1724. parents: ["supernatural"]
  1725. },
  1726. "sika-deer": {
  1727. name: "Sika Deer",
  1728. parents: ["deer"]
  1729. },
  1730. "vaporeon": {
  1731. name: "Vaporeon",
  1732. parents: ["eeveelution"]
  1733. },
  1734. "leafeon": {
  1735. name: "Leafeon",
  1736. parents: ["eeveelution"]
  1737. },
  1738. "jolteon": {
  1739. name: "Jolteon",
  1740. parents: ["eeveelution"]
  1741. },
  1742. "spireborn": {
  1743. name: "Spireborn",
  1744. parents: ["zorgoia"]
  1745. },
  1746. "vampire": {
  1747. name: "Vampire",
  1748. parents: ["monster"]
  1749. },
  1750. "extraplanar": {
  1751. name: "Extraplanar",
  1752. parents: []
  1753. },
  1754. "goo": {
  1755. name: "Goo",
  1756. parents: []
  1757. },
  1758. "skink": {
  1759. name: "Skink",
  1760. parents: ["lizard"]
  1761. },
  1762. "bat-eared-fox": {
  1763. name: "Bat-eared Fox",
  1764. parents: ["fox"]
  1765. },
  1766. "belted-kingfisher": {
  1767. name: "Belted Kingfisher",
  1768. parents: ["avian"]
  1769. },
  1770. "omnifalcon": {
  1771. name: "Omnifalcon",
  1772. parents: ["gryphon", "falcon", "harpy-eagle"]
  1773. },
  1774. "falcon": {
  1775. name: "Falcon",
  1776. parents: ["bird-of-prey"]
  1777. },
  1778. "avali": {
  1779. name: "Avali",
  1780. parents: ["avian", "alien"]
  1781. },
  1782. "arctic-fox": {
  1783. name: "Arctic Fox",
  1784. parents: ["fox"]
  1785. },
  1786. "snow-tiger": {
  1787. name: "Snow Tiger",
  1788. parents: ["tiger"]
  1789. },
  1790. "marble-fox": {
  1791. name: "Marble Fox",
  1792. parents: ["fox"]
  1793. },
  1794. "king-wickerbeast": {
  1795. name: "King Wickerbeast",
  1796. parents: ["wickerbeast"]
  1797. },
  1798. "wickerbeast": {
  1799. name: "Wickerbeast",
  1800. parents: ["mammal"]
  1801. },
  1802. "european-polecat": {
  1803. name: "European Polecat",
  1804. parents: ["polecat"]
  1805. },
  1806. "polecat": {
  1807. name: "Polecat",
  1808. parents: ["mustelid"]
  1809. },
  1810. "teshari": {
  1811. name: "Teshari",
  1812. parents: ["avian", "raptor"]
  1813. },
  1814. "alicorn": {
  1815. name: "Alicorn",
  1816. parents: ["horse"]
  1817. },
  1818. "atlas-moth": {
  1819. name: "Atlas Moth",
  1820. parents: ["moth"]
  1821. },
  1822. "owlbear": {
  1823. name: "Owlbear",
  1824. parents: ["owl", "bear", "monster"]
  1825. },
  1826. "owl": {
  1827. name: "Owl",
  1828. parents: ["avian"]
  1829. },
  1830. "silvertongue": {
  1831. name: "Silvertongue",
  1832. parents: ["reptile"]
  1833. },
  1834. "ahuizotl": {
  1835. name: "Ahuizotl",
  1836. parents: ["monster"]
  1837. },
  1838. "ender-dragon": {
  1839. name: "Ender Dragon",
  1840. parents: ["dragon"]
  1841. },
  1842. "bruhathkayosaurus": {
  1843. name: "Bruhathkayosaurus",
  1844. parents: ["sauropod"]
  1845. },
  1846. "sauropod": {
  1847. name: "Sauropod",
  1848. parents: ["dinosaur"]
  1849. },
  1850. "black-sable-antelope": {
  1851. name: "Black Sable Antelope",
  1852. parents: ["antelope"]
  1853. },
  1854. "slime": {
  1855. name: "Slime",
  1856. parents: ["goo"]
  1857. },
  1858. "utahraptor": {
  1859. name: "Utahraptor",
  1860. parents: ["raptor"]
  1861. },
  1862. "indian-giant-squirrel": {
  1863. name: "Indian Giant Squirrel",
  1864. parents: ["squirrel"]
  1865. },
  1866. "golden-retriever": {
  1867. name: "Golden Retriever",
  1868. parents: ["dog"]
  1869. },
  1870. "triceratops": {
  1871. name: "Triceratops",
  1872. parents: ["dinosaur"]
  1873. },
  1874. "drake": {
  1875. name: "Drake",
  1876. parents: ["dragon"]
  1877. },
  1878. "okapi": {
  1879. name: "Okapi",
  1880. parents: ["giraffe"]
  1881. },
  1882. "arctic-hare": {
  1883. name: "Arctic Hare",
  1884. parents: ["hare"]
  1885. },
  1886. "hare": {
  1887. name: "Hare",
  1888. parents: ["leporidae"]
  1889. },
  1890. "leporidae": {
  1891. name: "Leporidae",
  1892. parents: ["mammal"]
  1893. },
  1894. "leopard-gecko": {
  1895. name: "Leopard Gecko",
  1896. parents: ["gecko"]
  1897. },
  1898. "dreamspawn": {
  1899. name: "Dreamspawn",
  1900. parents: ["illusion"]
  1901. },
  1902. "illusion": {
  1903. name: "Illusion",
  1904. parents: []
  1905. },
  1906. "purrloin": {
  1907. name: "Purrloin",
  1908. parents: ["cat", "pokemon"]
  1909. },
  1910. "noivern": {
  1911. name: "Noivern",
  1912. parents: ["bat", "dragon", "pokemon"]
  1913. },
  1914. "hedgehog": {
  1915. name: "Hedgehog",
  1916. parents: ["mammal"]
  1917. },
  1918. "liger": {
  1919. name: "Liger",
  1920. parents: ["lion", "tiger", "hybrid"]
  1921. },
  1922. "hybrid": {
  1923. name: "Hybrid",
  1924. parents: []
  1925. },
  1926. "drider": {
  1927. name: "Drider",
  1928. parents: ["spider"]
  1929. },
  1930. "sabresune": {
  1931. name: "Sabresune",
  1932. parents: ["kitsune", "sabertooth-tiger"]
  1933. },
  1934. "ditto": {
  1935. name: "Ditto",
  1936. parents: ["pokemon", "goo"]
  1937. },
  1938. "amogus": {
  1939. name: "Amogus",
  1940. parents: ["deity"]
  1941. },
  1942. "ferret": {
  1943. name: "Ferret",
  1944. parents: ["mustelid"]
  1945. },
  1946. "guinea-pig": {
  1947. name: "Guinea Pig",
  1948. parents: ["rodent"]
  1949. },
  1950. "viper": {
  1951. name: "Viper",
  1952. parents: ["snake"]
  1953. },
  1954. "cinderace": {
  1955. name: "Cinderace",
  1956. parents: ["pokemon", "rabbit"]
  1957. },
  1958. "caudin": {
  1959. name: "Caudin",
  1960. parents: ["dragon"]
  1961. },
  1962. "red-winged-blackbird": {
  1963. name: "Red-Winged Blackbird",
  1964. parents: ["avian"]
  1965. },
  1966. "hooded-wheater": {
  1967. name: "Hooded Wheater",
  1968. parents: ["passerine"]
  1969. },
  1970. "passerine": {
  1971. name: "Passerine",
  1972. parents: ["avian"]
  1973. },
  1974. "gieeg": {
  1975. name: "Gieeg",
  1976. parents: ["alien"]
  1977. },
  1978. "ringtail": {
  1979. name: "Ringtail",
  1980. parents: ["raccoon"]
  1981. },
  1982. "hisuian-zoroark": {
  1983. name: "Hisuian Zoroark",
  1984. parents: ["zoroark", "hisuian"]
  1985. },
  1986. "hisuian": {
  1987. name: "Hisuian",
  1988. parents: ["regional-pokemon"]
  1989. },
  1990. "regional-pokemon": {
  1991. name: "Regional Pokemon",
  1992. parents: ["pokemon"]
  1993. },
  1994. "cybeast": {
  1995. name: "Cybeast",
  1996. parents: ["computer-virus"]
  1997. },
  1998. "javira-dragon": {
  1999. name: "Javira Dragon",
  2000. parents: ["dragon"]
  2001. },
  2002. "koopew": {
  2003. name: "Koopew",
  2004. parents: ["dragon", "alien"]
  2005. },
  2006. "nevrean": {
  2007. name: "Nevrean",
  2008. parents: ["avian", "vilous"]
  2009. },
  2010. "vilous": {
  2011. name: "Vilous Species",
  2012. parents: []
  2013. },
  2014. "titanoboa": {
  2015. name: "Titanoboa",
  2016. parents: ["snake"]
  2017. },
  2018. "raichu": {
  2019. name: "Raichu",
  2020. parents: ["pikachu"]
  2021. },
  2022. "taur": {
  2023. name: "Taur",
  2024. parents: []
  2025. },
  2026. "continental-giant-rabbit": {
  2027. name: "Continental Giant Rabbit",
  2028. parents: ["rabbit"]
  2029. },
  2030. "demigryph": {
  2031. name: "Demigryph",
  2032. parents: ["lion", "eagle"]
  2033. },
  2034. "bald-eagle": {
  2035. name: "Bald Eagle",
  2036. parents: ["eagle"]
  2037. },
  2038. "kestrel": {
  2039. name: "Kestrel",
  2040. parents: ["falcon"]
  2041. },
  2042. "mockingbird": {
  2043. name: "Mockingbird",
  2044. parents: ["songbird"]
  2045. },
  2046. "songbird": {
  2047. name: "Songbird",
  2048. parents: ["avian"]
  2049. },
  2050. "bird-of-prey": {
  2051. name: "Bird of Prey",
  2052. parents: ["avian"]
  2053. },
  2054. "marowak": {
  2055. name: "Marowak",
  2056. parents: ["pokemon", "reptile"]
  2057. },
  2058. "joltik": {
  2059. name: "Joltik",
  2060. parents: ["pokemon", "insect"]
  2061. },
  2062. "mink": {
  2063. name: "Mink",
  2064. parents: ["mustelid"]
  2065. },
  2066. "sandcat": {
  2067. name: "Sandcat",
  2068. parents: ["cat"]
  2069. },
  2070. "hrothgar": {
  2071. name: "Hrothgar",
  2072. parents: ["cat"]
  2073. },
  2074. "garchomp": {
  2075. name: "Garchomp",
  2076. parents: ["dragon", "pokemon"]
  2077. },
  2078. "nargacuga": {
  2079. name: "Nargacuga",
  2080. parents: ["monster-hunter"]
  2081. },
  2082. "sable": {
  2083. name: "Sable",
  2084. parents: ["marten"]
  2085. },
  2086. "deino": {
  2087. name: "Deino",
  2088. parents: ["pokemon", "dinosaur"]
  2089. },
  2090. "housecat": {
  2091. name: "Housecat",
  2092. parents: ["cat"]
  2093. },
  2094. "bombay-cat": {
  2095. name: "Bombay Cat",
  2096. parents: ["housecat"]
  2097. },
  2098. "maine-coon": {
  2099. name: "Maine Coon",
  2100. parents: ["housecat"]
  2101. },
  2102. "coelacanth": {
  2103. name: "Coelacanth",
  2104. parents: ["fish"]
  2105. },
  2106. "silvally": {
  2107. name: "Silvally",
  2108. parents: ["legendary-pokemon"]
  2109. },
  2110. "legendary-pokemon": {
  2111. name: "Legendary Pokemon",
  2112. parents: ["pokemon"]
  2113. },
  2114. "great-maccao": {
  2115. name: "Great Maccao",
  2116. parents: ["monster-hunter", "raptor"]
  2117. },
  2118. "shapeshifter": {
  2119. name: "shapeshifter",
  2120. parents: []
  2121. },
  2122. "obstagoon": {
  2123. name: "Obstagoon",
  2124. parents: ["zigzagoon"]
  2125. },
  2126. "thomsons-gazelle": {
  2127. name: "Thomsons Gazelle",
  2128. parents: ["gazelle"]
  2129. },
  2130. "gazelle": {
  2131. name: "Gazelle",
  2132. parents: ["antelope"]
  2133. },
  2134. "monkey": {
  2135. name: "Monkey",
  2136. parents: ["primate"]
  2137. },
  2138. "serval": {
  2139. name: "Serval",
  2140. parents: ["cat"]
  2141. },
  2142. "swampert": {
  2143. name: "Swampert",
  2144. parents: ["pokemon"]
  2145. },
  2146. "red-fox": {
  2147. name: "Red Fox",
  2148. parents: ["fox"]
  2149. },
  2150. "sliver": {
  2151. name: "Sliver",
  2152. parents: ["alien"]
  2153. },
  2154. "sergix": {
  2155. name: "Sergix",
  2156. parents: ["demon", "sergal", "phoenix"]
  2157. },
  2158. "behemoth": {
  2159. name: "Behemoth",
  2160. parents: ["monster", "dragon", "final-fantasy"]
  2161. },
  2162. "final-fantasy": {
  2163. name: "Final Fantasy",
  2164. parents: ["video-games"]
  2165. },
  2166. "video-games": {
  2167. name: "Video Games",
  2168. parents: []
  2169. },
  2170. "eastern-cottontail-rabbit": {
  2171. name: "Eastern Cottontail Rabbit",
  2172. parents: ["rabbit"]
  2173. },
  2174. "thresher-shark": {
  2175. name: "Thresher Shark",
  2176. parents: ["shark"]
  2177. },
  2178. "ai": {
  2179. name: "AI",
  2180. parents: []
  2181. },
  2182. "black-tip-reef-shark": {
  2183. name: "Black Tip Reef Shark",
  2184. parents: ["shark"]
  2185. },
  2186. "quetzalcoatlus-northropi": {
  2187. name: "Quetzalcoatlus Northropi",
  2188. parents: ["dinosaur"]
  2189. },
  2190. "snivy": {
  2191. name: "Snivy",
  2192. parents: ["pokemon", "snake"]
  2193. },
  2194. "nedynvor": {
  2195. name: "Nedynvor",
  2196. parents: ["avian"]
  2197. },
  2198. "marbled-polecat": {
  2199. name: "Marbled Polecat",
  2200. parents: ["polecat"]
  2201. },
  2202. "ape": {
  2203. name: "Ape",
  2204. parents: ["primate"]
  2205. },
  2206. "primate": {
  2207. name: "Primate",
  2208. parents: ["mammal"]
  2209. },
  2210. "kulve-taroth": {
  2211. name: "Kulve Taroth",
  2212. parents: ["monster-hunter", "dragon"]
  2213. },
  2214. "irthos": {
  2215. name: "Irthos",
  2216. parents: ["dragon"]
  2217. },
  2218. "furred-dragon": {
  2219. name: "Furred Dragon",
  2220. parents: ["dragon"]
  2221. },
  2222. "hippogriff": {
  2223. name: "Hippogriff",
  2224. parents: ["gryphon", "horse"]
  2225. },
  2226. "peregrine-falcon": {
  2227. name: "Peregrine Falcon",
  2228. parents: ["falcon"]
  2229. },
  2230. "deinonychus": {
  2231. name: "Deinonychus",
  2232. parents: ["theropod"]
  2233. },
  2234. "theropod": {
  2235. name: "Theropod",
  2236. parents: ["dinosaur"]
  2237. },
  2238. "chocobo": {
  2239. name: "Chocobo",
  2240. parents: ["avian"]
  2241. },
  2242. "stilio": {
  2243. name: "Stilio",
  2244. parents: ["snake"]
  2245. },
  2246. "kardox": {
  2247. name: "Kardox",
  2248. parents: ["wolf", "dragon", "horse"]
  2249. },
  2250. "food": {
  2251. name: "Food",
  2252. parents: ["object"]
  2253. },
  2254. "object": {
  2255. name: "Object",
  2256. parents: []
  2257. },
  2258. "honey-badger": {
  2259. name: "honey-badger",
  2260. parents: ["badger"]
  2261. },
  2262. "badger": {
  2263. name: "Badger",
  2264. parents: ["mustelid"]
  2265. },
  2266. "rattlesnake": {
  2267. name: "Rattlesnake",
  2268. parents: ["snake"]
  2269. },
  2270. "diamondback": {
  2271. name: "Diamondback",
  2272. parents: ["snake"]
  2273. },
  2274. "spidox": {
  2275. name: "Spidox",
  2276. parents: ["spider", "fox"]
  2277. },
  2278. "kodiak-bear": {
  2279. name: "Kodiak Bear",
  2280. parents: ["bear"]
  2281. },
  2282. "alurean": {
  2283. name: "Alurean",
  2284. parents: ["saurian", "aquatic", "alien"]
  2285. },
  2286. "aquatic": {
  2287. name: "Aquatic",
  2288. parents: []
  2289. },
  2290. "wyvern": {
  2291. name: "Wyvern",
  2292. parents: ["dragon"]
  2293. },
  2294. "catfish": {
  2295. name: "Catfish",
  2296. parents: ["fish"]
  2297. },
  2298. "vesempress": {
  2299. name: "Vesempress",
  2300. parents: ["vespiquen"]
  2301. },
  2302. "vespiquen": {
  2303. name: "Vespiquen",
  2304. parents: ["pokemon", "bee"]
  2305. },
  2306. "gaelterranian": {
  2307. name: "Gaelterranian",
  2308. parents: ["alien"]
  2309. },
  2310. "pistrogre": {
  2311. name: "Pistrogre",
  2312. parents: ["alien", "deity", "insect", "reptile"]
  2313. },
  2314. "komodo-dragon": {
  2315. name: "Komodo Dragon",
  2316. parents: ["lizard"]
  2317. },
  2318. "shiny": {
  2319. name: "Shiny",
  2320. parents: ["pokemon"]
  2321. },
  2322. "latex": {
  2323. name: "Latex",
  2324. parents: []
  2325. },
  2326. "praying-mantis": {
  2327. name: "Praying Mantis",
  2328. parents: ["insect"]
  2329. },
  2330. "espeon": {
  2331. name: "Espeon",
  2332. parents: ["eeveelution"]
  2333. },
  2334. "skullwolf": {
  2335. name: "Skullwolf",
  2336. parents: ["wolf", "skullmonster"]
  2337. },
  2338. "skulldragon": {
  2339. name: "Skulldragon",
  2340. parents: ["dragon", "skullmonster"]
  2341. },
  2342. "skullmonster": {
  2343. name: "Skullmonster",
  2344. parents: ["monster"]
  2345. },
  2346. "ferrin": {
  2347. name: "Ferrin",
  2348. parents: ["dragon"]
  2349. },
  2350. "rusty-spotted-cat": {
  2351. name: "Rusty-Spotted Cat",
  2352. parents: ["cat"]
  2353. },
  2354. "elf": {
  2355. name: "Elf",
  2356. parents: ["humanoid"]
  2357. },
  2358. "humanoid": {
  2359. name: "Humanoid",
  2360. parents: []
  2361. },
  2362. "allusus": {
  2363. name: "Allusus",
  2364. parents: ["humanoid"]
  2365. },
  2366. "saltwater-crocodile": {
  2367. name: "Saltwater Crocodile",
  2368. parents: ["crocodile"]
  2369. },
  2370. "eastern-grey-kangaroo": {
  2371. name: "Eastern Grey Kangaroo",
  2372. parents: ["kangaroo"]
  2373. },
  2374. "latenivenatrix": {
  2375. name: "Latenivenatrix",
  2376. parents: ["troodontidae"]
  2377. },
  2378. "troodontidae": {
  2379. name: "Troodontidae",
  2380. parents: ["theropod", "avian"]
  2381. },
  2382. "duck": {
  2383. name: "Duck",
  2384. parents: ["waterfowl"]
  2385. },
  2386. "waterfowl": {
  2387. name: "Waterfowl",
  2388. parents: ["avian"]
  2389. },
  2390. "earless-monitor-lizard": {
  2391. name: "Earless Monitor Lizard",
  2392. parents: ["monitor-lizard"]
  2393. },
  2394. "aerosynth": {
  2395. name: "Aerosynth",
  2396. parents: ["aeromorph", "synth"]
  2397. },
  2398. "phenx": {
  2399. name: "Phenx",
  2400. parents: ["uragi"]
  2401. },
  2402. "uragi": {
  2403. name: "Uragi",
  2404. parents: ["avian", "bear"]
  2405. },
  2406. "driger": {
  2407. name: "Driger",
  2408. parents: ["dragon", "tiger"]
  2409. },
  2410. "homestuck-troll": {
  2411. name: "Troll (Homestuck)",
  2412. parents: ["humanoid"]
  2413. },
  2414. "riolu": {
  2415. name: "Riolu",
  2416. parents: ["pokemon"]
  2417. },
  2418. }
  2419. //species
  2420. function getSpeciesInfo(speciesList) {
  2421. let result = new Set();
  2422. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2423. result.add(entry)
  2424. });
  2425. return Array.from(result);
  2426. };
  2427. function getSpeciesInfoHelper(species) {
  2428. if (!speciesData[species]) {
  2429. console.warn(species + " doesn't exist");
  2430. return [];
  2431. }
  2432. if (speciesData[species].parents) {
  2433. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2434. } else {
  2435. return [species];
  2436. }
  2437. }
  2438. characterMakers.push(() => makeCharacter(
  2439. {
  2440. name: "Fen",
  2441. species: ["crux"],
  2442. description: {
  2443. title: "Bio",
  2444. text: "Very furry. Sheds on everything."
  2445. },
  2446. tags: [
  2447. "anthro",
  2448. "goo"
  2449. ]
  2450. },
  2451. {
  2452. front: {
  2453. height: math.unit(12, "feet"),
  2454. weight: math.unit(2400, "lb"),
  2455. preyCapacity: math.unit(1, "people"),
  2456. name: "Front",
  2457. image: {
  2458. source: "./media/characters/fen/front.svg",
  2459. extra: 1804/1562,
  2460. bottom: 205/2009
  2461. },
  2462. extraAttributes: {
  2463. pawSize: {
  2464. name: "Paw Size",
  2465. power: 2,
  2466. type: "area",
  2467. base: math.unit(0.35, "m^2")
  2468. }
  2469. }
  2470. },
  2471. diving: {
  2472. height: math.unit(4.9, "meters"),
  2473. weight: math.unit(2400, "lb"),
  2474. name: "Diving",
  2475. image: {
  2476. source: "./media/characters/fen/diving.svg"
  2477. }
  2478. },
  2479. sleeby: {
  2480. height: math.unit(3.45, "meters"),
  2481. weight: math.unit(2400, "lb"),
  2482. name: "Sleeby",
  2483. image: {
  2484. source: "./media/characters/fen/sleeby.svg"
  2485. }
  2486. },
  2487. goo: {
  2488. height: math.unit(12, "feet"),
  2489. weight: math.unit(3600, "lb"),
  2490. volume: math.unit(1000, "liters"),
  2491. preyCapacity: math.unit(6, "people"),
  2492. name: "Goo",
  2493. image: {
  2494. source: "./media/characters/fen/goo.svg",
  2495. extra: 1307/1071,
  2496. bottom: 134/1441
  2497. }
  2498. },
  2499. horror: {
  2500. height: math.unit(13.6, "feet"),
  2501. weight: math.unit(2400, "lb"),
  2502. preyCapacity: math.unit(1, "people"),
  2503. name: "Horror",
  2504. image: {
  2505. source: "./media/characters/fen/horror.svg",
  2506. extra: 893/797,
  2507. bottom: 0/893
  2508. }
  2509. },
  2510. gooNsfw: {
  2511. height: math.unit(12, "feet"),
  2512. weight: math.unit(3750, "lb"),
  2513. volume: math.unit(1000, "liters"),
  2514. preyCapacity: math.unit(6, "people"),
  2515. name: "Goo (NSFW)",
  2516. image: {
  2517. source: "./media/characters/fen/goo-nsfw.svg",
  2518. extra: 1875/1734,
  2519. bottom: 122/1997
  2520. }
  2521. },
  2522. maw: {
  2523. height: math.unit(5.03, "feet"),
  2524. name: "Maw",
  2525. image: {
  2526. source: "./media/characters/fen/maw.svg"
  2527. }
  2528. },
  2529. gooCeiling: {
  2530. height: math.unit(6.6, "feet"),
  2531. weight: math.unit(3000, "lb"),
  2532. volume: math.unit(1000, "liters"),
  2533. preyCapacity: math.unit(6, "people"),
  2534. name: "Maw (Goo)",
  2535. image: {
  2536. source: "./media/characters/fen/goo-maw.svg"
  2537. }
  2538. },
  2539. paw: {
  2540. height: math.unit(3.77, "feet"),
  2541. name: "Paw",
  2542. image: {
  2543. source: "./media/characters/fen/paw.svg"
  2544. },
  2545. extraAttributes: {
  2546. "toeSize": {
  2547. name: "Toe Size",
  2548. power: 2,
  2549. type: "area",
  2550. base: math.unit(0.02875, "m^2")
  2551. },
  2552. "pawSize": {
  2553. name: "Paw Size",
  2554. power: 2,
  2555. type: "area",
  2556. base: math.unit(0.378, "m^2")
  2557. },
  2558. }
  2559. },
  2560. tail: {
  2561. height: math.unit(12.1, "feet"),
  2562. name: "Tail",
  2563. image: {
  2564. source: "./media/characters/fen/tail.svg"
  2565. }
  2566. },
  2567. tailFull: {
  2568. height: math.unit(12.1, "feet"),
  2569. name: "Full Tail",
  2570. image: {
  2571. source: "./media/characters/fen/tail-full.svg"
  2572. }
  2573. },
  2574. back: {
  2575. height: math.unit(12, "feet"),
  2576. weight: math.unit(2400, "lb"),
  2577. name: "Back",
  2578. image: {
  2579. source: "./media/characters/fen/back.svg",
  2580. },
  2581. info: {
  2582. description: {
  2583. mode: "append",
  2584. text: "\n\nHe is not currently looking at you."
  2585. }
  2586. }
  2587. },
  2588. full: {
  2589. height: math.unit(1.85, "meter"),
  2590. weight: math.unit(3200, "lb"),
  2591. preyCapacity: math.unit(3, "people"),
  2592. name: "Full",
  2593. image: {
  2594. source: "./media/characters/fen/full.svg",
  2595. extra: 1133/859,
  2596. bottom: 145/1278
  2597. },
  2598. info: {
  2599. description: {
  2600. mode: "append",
  2601. text: "\n\nMunch."
  2602. }
  2603. }
  2604. },
  2605. gooLounging: {
  2606. height: math.unit(4.53, "feet"),
  2607. weight: math.unit(3000, "lb"),
  2608. preyCapacity: math.unit(6, "people"),
  2609. name: "Goo (Lounging)",
  2610. image: {
  2611. source: "./media/characters/fen/goo-lounging.svg",
  2612. bottom: 116 / 613
  2613. }
  2614. },
  2615. lounging: {
  2616. height: math.unit(10.52, "feet"),
  2617. weight: math.unit(2400, "lb"),
  2618. name: "Lounging",
  2619. image: {
  2620. source: "./media/characters/fen/lounging.svg"
  2621. }
  2622. },
  2623. },
  2624. [
  2625. {
  2626. name: "Small",
  2627. height: math.unit(2.2428, "meter")
  2628. },
  2629. {
  2630. name: "Normal",
  2631. height: math.unit(12, "feet"),
  2632. default: true,
  2633. },
  2634. {
  2635. name: "Big",
  2636. height: math.unit(20, "feet")
  2637. },
  2638. {
  2639. name: "Minimacro",
  2640. height: math.unit(40, "feet"),
  2641. info: {
  2642. description: {
  2643. mode: "append",
  2644. text: "\n\nTOO DAMN BIG"
  2645. }
  2646. }
  2647. },
  2648. {
  2649. name: "Macro",
  2650. height: math.unit(100, "feet"),
  2651. info: {
  2652. description: {
  2653. mode: "append",
  2654. text: "\n\nTOO DAMN BIG"
  2655. }
  2656. }
  2657. },
  2658. {
  2659. name: "Megamacro",
  2660. height: math.unit(2, "miles")
  2661. },
  2662. {
  2663. name: "Gigamacro",
  2664. height: math.unit(10, "earths")
  2665. },
  2666. ]
  2667. ))
  2668. characterMakers.push(() => makeCharacter(
  2669. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2670. {
  2671. front: {
  2672. height: math.unit(183, "cm"),
  2673. weight: math.unit(80, "kg"),
  2674. name: "Front",
  2675. image: {
  2676. source: "./media/characters/sofia-fluttertail/front.svg",
  2677. bottom: 0.01,
  2678. extra: 2154 / 2081
  2679. }
  2680. },
  2681. frontAlt: {
  2682. height: math.unit(183, "cm"),
  2683. weight: math.unit(80, "kg"),
  2684. name: "Front (alt)",
  2685. image: {
  2686. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2687. }
  2688. },
  2689. back: {
  2690. height: math.unit(183, "cm"),
  2691. weight: math.unit(80, "kg"),
  2692. name: "Back",
  2693. image: {
  2694. source: "./media/characters/sofia-fluttertail/back.svg"
  2695. }
  2696. },
  2697. kneeling: {
  2698. height: math.unit(125, "cm"),
  2699. weight: math.unit(80, "kg"),
  2700. name: "Kneeling",
  2701. image: {
  2702. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2703. extra: 1033 / 977,
  2704. bottom: 23.7 / 1057
  2705. }
  2706. },
  2707. maw: {
  2708. height: math.unit(183 / 5, "cm"),
  2709. name: "Maw",
  2710. image: {
  2711. source: "./media/characters/sofia-fluttertail/maw.svg"
  2712. }
  2713. },
  2714. mawcloseup: {
  2715. height: math.unit(183 / 5 * 0.41, "cm"),
  2716. name: "Maw (Closeup)",
  2717. image: {
  2718. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2719. }
  2720. },
  2721. paws: {
  2722. height: math.unit(1.17, "feet"),
  2723. name: "Paws",
  2724. image: {
  2725. source: "./media/characters/sofia-fluttertail/paws.svg",
  2726. extra: 851 / 851,
  2727. bottom: 17 / 868
  2728. }
  2729. },
  2730. },
  2731. [
  2732. {
  2733. name: "Normal",
  2734. height: math.unit(1.83, "meter")
  2735. },
  2736. {
  2737. name: "Size Thief",
  2738. height: math.unit(18, "feet")
  2739. },
  2740. {
  2741. name: "50 Foot Collie",
  2742. height: math.unit(50, "feet")
  2743. },
  2744. {
  2745. name: "Macro",
  2746. height: math.unit(96, "feet"),
  2747. default: true
  2748. },
  2749. {
  2750. name: "Megamerger",
  2751. height: math.unit(650, "feet")
  2752. },
  2753. ]
  2754. ))
  2755. characterMakers.push(() => makeCharacter(
  2756. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2757. {
  2758. front: {
  2759. height: math.unit(7, "feet"),
  2760. weight: math.unit(100, "kg"),
  2761. name: "Front",
  2762. image: {
  2763. source: "./media/characters/march/front.svg",
  2764. extra: 1992/1851,
  2765. bottom: 39/2031
  2766. }
  2767. },
  2768. foot: {
  2769. height: math.unit(0.9, "feet"),
  2770. name: "Foot",
  2771. image: {
  2772. source: "./media/characters/march/foot.svg"
  2773. }
  2774. },
  2775. },
  2776. [
  2777. {
  2778. name: "Normal",
  2779. height: math.unit(7.9, "feet")
  2780. },
  2781. {
  2782. name: "Macro",
  2783. height: math.unit(220, "meters")
  2784. },
  2785. {
  2786. name: "Megamacro",
  2787. height: math.unit(2.98, "km"),
  2788. default: true
  2789. },
  2790. {
  2791. name: "Gigamacro",
  2792. height: math.unit(15963, "km")
  2793. },
  2794. {
  2795. name: "Teramacro",
  2796. height: math.unit(2980000000, "km")
  2797. },
  2798. {
  2799. name: "Examacro",
  2800. height: math.unit(250, "parsecs")
  2801. },
  2802. ]
  2803. ))
  2804. characterMakers.push(() => makeCharacter(
  2805. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2806. {
  2807. front: {
  2808. height: math.unit(6, "feet"),
  2809. weight: math.unit(60, "kg"),
  2810. name: "Front",
  2811. image: {
  2812. source: "./media/characters/noir/front.svg",
  2813. extra: 1,
  2814. bottom: 0.032
  2815. }
  2816. },
  2817. },
  2818. [
  2819. {
  2820. name: "Normal",
  2821. height: math.unit(6.6, "feet")
  2822. },
  2823. {
  2824. name: "Macro",
  2825. height: math.unit(500, "feet")
  2826. },
  2827. {
  2828. name: "Megamacro",
  2829. height: math.unit(2.5, "km"),
  2830. default: true
  2831. },
  2832. {
  2833. name: "Gigamacro",
  2834. height: math.unit(22500, "km")
  2835. },
  2836. {
  2837. name: "Teramacro",
  2838. height: math.unit(2500000000, "km")
  2839. },
  2840. {
  2841. name: "Examacro",
  2842. height: math.unit(200, "parsecs")
  2843. },
  2844. ]
  2845. ))
  2846. characterMakers.push(() => makeCharacter(
  2847. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2848. {
  2849. front: {
  2850. height: math.unit(7, "feet"),
  2851. weight: math.unit(100, "kg"),
  2852. name: "Front",
  2853. image: {
  2854. source: "./media/characters/okuri/front.svg",
  2855. extra: 739/665,
  2856. bottom: 39/778
  2857. }
  2858. },
  2859. back: {
  2860. height: math.unit(7, "feet"),
  2861. weight: math.unit(100, "kg"),
  2862. name: "Back",
  2863. image: {
  2864. source: "./media/characters/okuri/back.svg",
  2865. extra: 734/653,
  2866. bottom: 13/747
  2867. }
  2868. },
  2869. sitting: {
  2870. height: math.unit(2.95, "feet"),
  2871. weight: math.unit(100, "kg"),
  2872. name: "Sitting",
  2873. image: {
  2874. source: "./media/characters/okuri/sitting.svg",
  2875. extra: 370/318,
  2876. bottom: 99/469
  2877. }
  2878. },
  2879. },
  2880. [
  2881. {
  2882. name: "Smallest",
  2883. height: math.unit(5 + 2/12, "feet")
  2884. },
  2885. {
  2886. name: "Smaller",
  2887. height: math.unit(300, "feet")
  2888. },
  2889. {
  2890. name: "Small",
  2891. height: math.unit(1000, "feet")
  2892. },
  2893. {
  2894. name: "Macro",
  2895. height: math.unit(1, "mile")
  2896. },
  2897. {
  2898. name: "Mega Macro (Small)",
  2899. height: math.unit(20, "km")
  2900. },
  2901. {
  2902. name: "Mega Macro (Large)",
  2903. height: math.unit(600, "km")
  2904. },
  2905. {
  2906. name: "Giga Macro",
  2907. height: math.unit(10000, "km")
  2908. },
  2909. {
  2910. name: "Normal",
  2911. height: math.unit(577560, "km"),
  2912. default: true
  2913. },
  2914. {
  2915. name: "Large",
  2916. height: math.unit(4, "galaxies")
  2917. },
  2918. {
  2919. name: "Largest",
  2920. height: math.unit(15, "multiverses")
  2921. },
  2922. ]
  2923. ))
  2924. characterMakers.push(() => makeCharacter(
  2925. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2926. {
  2927. front: {
  2928. height: math.unit(7, "feet"),
  2929. weight: math.unit(100, "kg"),
  2930. name: "Front",
  2931. image: {
  2932. source: "./media/characters/manny/front.svg",
  2933. extra: 1,
  2934. bottom: 0.06
  2935. }
  2936. },
  2937. back: {
  2938. height: math.unit(7, "feet"),
  2939. weight: math.unit(100, "kg"),
  2940. name: "Back",
  2941. image: {
  2942. source: "./media/characters/manny/back.svg",
  2943. extra: 1,
  2944. bottom: 0.014
  2945. }
  2946. },
  2947. },
  2948. [
  2949. {
  2950. name: "Normal",
  2951. height: math.unit(7, "feet"),
  2952. },
  2953. {
  2954. name: "Macro",
  2955. height: math.unit(78, "feet"),
  2956. default: true
  2957. },
  2958. {
  2959. name: "Macro+",
  2960. height: math.unit(300, "meters")
  2961. },
  2962. {
  2963. name: "Macro++",
  2964. height: math.unit(2400, "meters")
  2965. },
  2966. {
  2967. name: "Megamacro",
  2968. height: math.unit(5167, "meters")
  2969. },
  2970. {
  2971. name: "Gigamacro",
  2972. height: math.unit(41769, "miles")
  2973. },
  2974. ]
  2975. ))
  2976. characterMakers.push(() => makeCharacter(
  2977. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2978. {
  2979. front: {
  2980. height: math.unit(7, "feet"),
  2981. weight: math.unit(100, "kg"),
  2982. name: "Front",
  2983. image: {
  2984. source: "./media/characters/adake/front-1.svg"
  2985. }
  2986. },
  2987. frontAlt: {
  2988. height: math.unit(7, "feet"),
  2989. weight: math.unit(100, "kg"),
  2990. name: "Front (Alt)",
  2991. image: {
  2992. source: "./media/characters/adake/front-2.svg",
  2993. extra: 1,
  2994. bottom: 0.01
  2995. }
  2996. },
  2997. back: {
  2998. height: math.unit(7, "feet"),
  2999. weight: math.unit(100, "kg"),
  3000. name: "Back",
  3001. image: {
  3002. source: "./media/characters/adake/back.svg",
  3003. }
  3004. },
  3005. kneel: {
  3006. height: math.unit(5.385, "feet"),
  3007. weight: math.unit(100, "kg"),
  3008. name: "Kneeling",
  3009. image: {
  3010. source: "./media/characters/adake/kneel.svg",
  3011. bottom: 0.052
  3012. }
  3013. },
  3014. },
  3015. [
  3016. {
  3017. name: "Normal",
  3018. height: math.unit(7, "feet"),
  3019. },
  3020. {
  3021. name: "Macro",
  3022. height: math.unit(78, "feet"),
  3023. default: true
  3024. },
  3025. {
  3026. name: "Macro+",
  3027. height: math.unit(300, "meters")
  3028. },
  3029. {
  3030. name: "Macro++",
  3031. height: math.unit(2400, "meters")
  3032. },
  3033. {
  3034. name: "Megamacro",
  3035. height: math.unit(5167, "meters")
  3036. },
  3037. {
  3038. name: "Gigamacro",
  3039. height: math.unit(41769, "miles")
  3040. },
  3041. ]
  3042. ))
  3043. characterMakers.push(() => makeCharacter(
  3044. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  3045. {
  3046. front: {
  3047. height: math.unit(1.65, "meters"),
  3048. weight: math.unit(50, "kg"),
  3049. name: "Front",
  3050. image: {
  3051. source: "./media/characters/elijah/front.svg",
  3052. extra: 858 / 830,
  3053. bottom: 95.5 / 953.8559
  3054. }
  3055. },
  3056. back: {
  3057. height: math.unit(1.65, "meters"),
  3058. weight: math.unit(50, "kg"),
  3059. name: "Back",
  3060. image: {
  3061. source: "./media/characters/elijah/back.svg",
  3062. extra: 895 / 850,
  3063. bottom: 5.3 / 897.956
  3064. }
  3065. },
  3066. frontNsfw: {
  3067. height: math.unit(1.65, "meters"),
  3068. weight: math.unit(50, "kg"),
  3069. name: "Front (NSFW)",
  3070. image: {
  3071. source: "./media/characters/elijah/front-nsfw.svg",
  3072. extra: 858 / 830,
  3073. bottom: 95.5 / 953.8559
  3074. }
  3075. },
  3076. backNsfw: {
  3077. height: math.unit(1.65, "meters"),
  3078. weight: math.unit(50, "kg"),
  3079. name: "Back (NSFW)",
  3080. image: {
  3081. source: "./media/characters/elijah/back-nsfw.svg",
  3082. extra: 895 / 850,
  3083. bottom: 5.3 / 897.956
  3084. }
  3085. },
  3086. dick: {
  3087. height: math.unit(1, "feet"),
  3088. name: "Dick",
  3089. image: {
  3090. source: "./media/characters/elijah/dick.svg"
  3091. }
  3092. },
  3093. beakOpen: {
  3094. height: math.unit(1.25, "feet"),
  3095. name: "Beak (Open)",
  3096. image: {
  3097. source: "./media/characters/elijah/beak-open.svg"
  3098. }
  3099. },
  3100. beakShut: {
  3101. height: math.unit(1.25, "feet"),
  3102. name: "Beak (Shut)",
  3103. image: {
  3104. source: "./media/characters/elijah/beak-shut.svg"
  3105. }
  3106. },
  3107. footFlexing: {
  3108. height: math.unit(1.61, "feet"),
  3109. name: "Foot (Flexing)",
  3110. image: {
  3111. source: "./media/characters/elijah/foot-flexing.svg"
  3112. }
  3113. },
  3114. footStepping: {
  3115. height: math.unit(1.44, "feet"),
  3116. name: "Foot (Stepping)",
  3117. image: {
  3118. source: "./media/characters/elijah/foot-stepping.svg"
  3119. }
  3120. },
  3121. plantigradeLeg: {
  3122. height: math.unit(2.34, "feet"),
  3123. name: "Plantigrade Leg",
  3124. image: {
  3125. source: "./media/characters/elijah/plantigrade-leg.svg"
  3126. }
  3127. },
  3128. plantigradeFootLeft: {
  3129. height: math.unit(0.9, "feet"),
  3130. name: "Plantigrade Foot (Left)",
  3131. image: {
  3132. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3133. }
  3134. },
  3135. plantigradeFootRight: {
  3136. height: math.unit(0.9, "feet"),
  3137. name: "Plantigrade Foot (Right)",
  3138. image: {
  3139. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3140. }
  3141. },
  3142. },
  3143. [
  3144. {
  3145. name: "Normal",
  3146. height: math.unit(1.65, "meters")
  3147. },
  3148. {
  3149. name: "Macro",
  3150. height: math.unit(55, "meters"),
  3151. default: true
  3152. },
  3153. {
  3154. name: "Macro+",
  3155. height: math.unit(105, "meters")
  3156. },
  3157. ]
  3158. ))
  3159. characterMakers.push(() => makeCharacter(
  3160. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3161. {
  3162. front: {
  3163. height: math.unit(7 + 2/12, "feet"),
  3164. weight: math.unit(320, "kg"),
  3165. preyCapacity: math.unit(0.276549935, "people"),
  3166. name: "Front",
  3167. image: {
  3168. source: "./media/characters/rai/front.svg",
  3169. extra: 1802/1696,
  3170. bottom: 68/1870
  3171. },
  3172. form: "anthro",
  3173. default: true
  3174. },
  3175. frontDressed: {
  3176. height: math.unit(7 + 2/12, "feet"),
  3177. weight: math.unit(320, "kg"),
  3178. preyCapacity: math.unit(0.276549935, "people"),
  3179. name: "Front (Dressed)",
  3180. image: {
  3181. source: "./media/characters/rai/front-dressed.svg",
  3182. extra: 1802/1696,
  3183. bottom: 68/1870
  3184. },
  3185. form: "anthro"
  3186. },
  3187. side: {
  3188. height: math.unit(7 + 2/12, "feet"),
  3189. weight: math.unit(320, "kg"),
  3190. preyCapacity: math.unit(0.276549935, "people"),
  3191. name: "Side",
  3192. image: {
  3193. source: "./media/characters/rai/side.svg",
  3194. extra: 1789/1710,
  3195. bottom: 115/1904
  3196. },
  3197. form: "anthro"
  3198. },
  3199. back: {
  3200. height: math.unit(7 + 2/12, "feet"),
  3201. weight: math.unit(320, "kg"),
  3202. preyCapacity: math.unit(0.276549935, "people"),
  3203. name: "Back",
  3204. image: {
  3205. source: "./media/characters/rai/back.svg",
  3206. extra: 1770/1707,
  3207. bottom: 28/1798
  3208. },
  3209. form: "anthro"
  3210. },
  3211. feral: {
  3212. height: math.unit(9.5, "feet"),
  3213. weight: math.unit(640, "kg"),
  3214. preyCapacity: math.unit(4, "people"),
  3215. name: "Feral",
  3216. image: {
  3217. source: "./media/characters/rai/feral.svg",
  3218. extra: 945/553,
  3219. bottom: 176/1121
  3220. },
  3221. form: "feral",
  3222. default: true
  3223. },
  3224. dragon: {
  3225. height: math.unit(23, "feet"),
  3226. weight: math.unit(50000, "lb"),
  3227. name: "Dragon",
  3228. image: {
  3229. source: "./media/characters/rai/dragon.svg",
  3230. extra: 2498 / 2030,
  3231. bottom: 85.2 / 2584
  3232. },
  3233. form: "dragon",
  3234. default: true
  3235. },
  3236. maw: {
  3237. height: math.unit(1.69, "feet"),
  3238. name: "Maw",
  3239. image: {
  3240. source: "./media/characters/rai/maw.svg"
  3241. },
  3242. form: "anthro"
  3243. },
  3244. },
  3245. [
  3246. {
  3247. name: "Normal",
  3248. height: math.unit(7 + 2/12, "feet"),
  3249. form: "anthro"
  3250. },
  3251. {
  3252. name: "Big",
  3253. height: math.unit(11, "feet"),
  3254. form: "anthro"
  3255. },
  3256. {
  3257. name: "Minimacro",
  3258. height: math.unit(77, "feet"),
  3259. form: "anthro"
  3260. },
  3261. {
  3262. name: "Macro",
  3263. height: math.unit(302, "feet"),
  3264. default: true,
  3265. form: "anthro"
  3266. },
  3267. {
  3268. name: "Normal",
  3269. height: math.unit(9.5, "feet"),
  3270. form: "feral",
  3271. default: true
  3272. },
  3273. {
  3274. name: "Normal",
  3275. height: math.unit(23, "feet"),
  3276. form: "dragon",
  3277. default: true
  3278. }
  3279. ],
  3280. {
  3281. "anthro": {
  3282. name: "Anthro",
  3283. default: true
  3284. },
  3285. "feral": {
  3286. name: "Feral",
  3287. },
  3288. "dragon": {
  3289. name: "Dragon",
  3290. },
  3291. }
  3292. ))
  3293. characterMakers.push(() => makeCharacter(
  3294. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3295. {
  3296. frontDressed: {
  3297. height: math.unit(216, "feet"),
  3298. weight: math.unit(7000000, "lb"),
  3299. preyCapacity: math.unit(1321, "people"),
  3300. name: "Front (Dressed)",
  3301. image: {
  3302. source: "./media/characters/jazzy/front-dressed.svg",
  3303. extra: 2738 / 2651,
  3304. bottom: 41.8 / 2786
  3305. }
  3306. },
  3307. backDressed: {
  3308. height: math.unit(216, "feet"),
  3309. weight: math.unit(7000000, "lb"),
  3310. preyCapacity: math.unit(1321, "people"),
  3311. name: "Back (Dressed)",
  3312. image: {
  3313. source: "./media/characters/jazzy/back-dressed.svg",
  3314. extra: 2775 / 2673,
  3315. bottom: 36.8 / 2817
  3316. }
  3317. },
  3318. front: {
  3319. height: math.unit(216, "feet"),
  3320. weight: math.unit(7000000, "lb"),
  3321. preyCapacity: math.unit(1321, "people"),
  3322. name: "Front",
  3323. image: {
  3324. source: "./media/characters/jazzy/front.svg",
  3325. extra: 2738 / 2651,
  3326. bottom: 41.8 / 2786
  3327. }
  3328. },
  3329. back: {
  3330. height: math.unit(216, "feet"),
  3331. weight: math.unit(7000000, "lb"),
  3332. preyCapacity: math.unit(1321, "people"),
  3333. name: "Back",
  3334. image: {
  3335. source: "./media/characters/jazzy/back.svg",
  3336. extra: 2775 / 2673,
  3337. bottom: 36.8 / 2817
  3338. }
  3339. },
  3340. maw: {
  3341. height: math.unit(20, "feet"),
  3342. name: "Maw",
  3343. image: {
  3344. source: "./media/characters/jazzy/maw.svg"
  3345. }
  3346. },
  3347. paws: {
  3348. height: math.unit(27.5, "feet"),
  3349. name: "Paws",
  3350. image: {
  3351. source: "./media/characters/jazzy/paws.svg"
  3352. }
  3353. },
  3354. eye: {
  3355. height: math.unit(4.4, "feet"),
  3356. name: "Eye",
  3357. image: {
  3358. source: "./media/characters/jazzy/eye.svg"
  3359. }
  3360. },
  3361. droneOffense: {
  3362. height: math.unit(9.5, "inches"),
  3363. name: "Drone (Offense)",
  3364. image: {
  3365. source: "./media/characters/jazzy/drone-offense.svg"
  3366. }
  3367. },
  3368. droneRecon: {
  3369. height: math.unit(9.5, "inches"),
  3370. name: "Drone (Recon)",
  3371. image: {
  3372. source: "./media/characters/jazzy/drone-recon.svg"
  3373. }
  3374. },
  3375. droneDefense: {
  3376. height: math.unit(9.5, "inches"),
  3377. name: "Drone (Defense)",
  3378. image: {
  3379. source: "./media/characters/jazzy/drone-defense.svg"
  3380. }
  3381. },
  3382. },
  3383. [
  3384. {
  3385. name: "Macro",
  3386. height: math.unit(216, "feet"),
  3387. default: true
  3388. },
  3389. ]
  3390. ))
  3391. characterMakers.push(() => makeCharacter(
  3392. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3393. {
  3394. front: {
  3395. height: math.unit(9 + 6/12, "feet"),
  3396. weight: math.unit(700, "lb"),
  3397. name: "Front",
  3398. image: {
  3399. source: "./media/characters/flamm/front.svg",
  3400. extra: 1736/1596,
  3401. bottom: 93/1829
  3402. }
  3403. },
  3404. buff: {
  3405. height: math.unit(9 + 6/12, "feet"),
  3406. weight: math.unit(950, "lb"),
  3407. name: "Buff",
  3408. image: {
  3409. source: "./media/characters/flamm/buff.svg",
  3410. extra: 3018/2874,
  3411. bottom: 221/3239
  3412. }
  3413. },
  3414. },
  3415. [
  3416. {
  3417. name: "Normal",
  3418. height: math.unit(9.5, "feet")
  3419. },
  3420. {
  3421. name: "Macro",
  3422. height: math.unit(200, "feet"),
  3423. default: true
  3424. },
  3425. ]
  3426. ))
  3427. characterMakers.push(() => makeCharacter(
  3428. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3429. {
  3430. front: {
  3431. height: math.unit(5 + 3/12, "feet"),
  3432. weight: math.unit(60, "kg"),
  3433. name: "Front",
  3434. image: {
  3435. source: "./media/characters/zephiro/front.svg",
  3436. extra: 1873/1761,
  3437. bottom: 147/2020
  3438. }
  3439. },
  3440. side: {
  3441. height: math.unit(5 + 3/12, "feet"),
  3442. weight: math.unit(60, "kg"),
  3443. name: "Side",
  3444. image: {
  3445. source: "./media/characters/zephiro/side.svg",
  3446. extra: 1929/1827,
  3447. bottom: 65/1994
  3448. }
  3449. },
  3450. back: {
  3451. height: math.unit(5 + 3/12, "feet"),
  3452. weight: math.unit(60, "kg"),
  3453. name: "Back",
  3454. image: {
  3455. source: "./media/characters/zephiro/back.svg",
  3456. extra: 1926/1816,
  3457. bottom: 41/1967
  3458. }
  3459. },
  3460. hand: {
  3461. height: math.unit(0.68, "feet"),
  3462. name: "Hand",
  3463. image: {
  3464. source: "./media/characters/zephiro/hand.svg"
  3465. }
  3466. },
  3467. paw: {
  3468. height: math.unit(1, "feet"),
  3469. name: "Paw",
  3470. image: {
  3471. source: "./media/characters/zephiro/paw.svg"
  3472. }
  3473. },
  3474. beans: {
  3475. height: math.unit(0.93, "feet"),
  3476. name: "Beans",
  3477. image: {
  3478. source: "./media/characters/zephiro/beans.svg"
  3479. }
  3480. },
  3481. },
  3482. [
  3483. {
  3484. name: "Micro",
  3485. height: math.unit(3, "inches")
  3486. },
  3487. {
  3488. name: "Normal",
  3489. height: math.unit(5 + 3 / 12, "feet"),
  3490. default: true
  3491. },
  3492. {
  3493. name: "Macro",
  3494. height: math.unit(118, "feet")
  3495. },
  3496. ]
  3497. ))
  3498. characterMakers.push(() => makeCharacter(
  3499. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3500. {
  3501. front: {
  3502. height: math.unit(5, "feet"),
  3503. weight: math.unit(90, "kg"),
  3504. preyCapacity: math.unit(14, "people"),
  3505. name: "Front",
  3506. image: {
  3507. source: "./media/characters/fory/front.svg",
  3508. extra: 2862 / 2674,
  3509. bottom: 180 / 3043.8
  3510. },
  3511. form: "weaselbun",
  3512. default: true,
  3513. extraAttributes: {
  3514. "pawSize": {
  3515. name: "Paw Size",
  3516. power: 2,
  3517. type: "area",
  3518. base: math.unit(0.1596, "m^2")
  3519. },
  3520. "pawLength": {
  3521. name: "Paw Length",
  3522. power: 1,
  3523. type: "length",
  3524. base: math.unit(0.7, "m")
  3525. }
  3526. }
  3527. },
  3528. back: {
  3529. height: math.unit(5, "feet"),
  3530. weight: math.unit(90, "kg"),
  3531. preyCapacity: math.unit(14, "people"),
  3532. name: "Back",
  3533. image: {
  3534. source: "./media/characters/fory/back.svg",
  3535. extra: 1790/1672,
  3536. bottom: 84/1874
  3537. },
  3538. form: "weaselbun",
  3539. extraAttributes: {
  3540. "pawSize": {
  3541. name: "Paw Size",
  3542. power: 2,
  3543. type: "area",
  3544. base: math.unit(0.1596, "m^2")
  3545. },
  3546. "pawLength": {
  3547. name: "Paw Length",
  3548. power: 1,
  3549. type: "length",
  3550. base: math.unit(0.7, "m")
  3551. }
  3552. }
  3553. },
  3554. paw: {
  3555. height: math.unit(2.14, "feet"),
  3556. name: "Paw",
  3557. image: {
  3558. source: "./media/characters/fory/paw.svg"
  3559. },
  3560. form: "weaselbun",
  3561. extraAttributes: {
  3562. "pawSize": {
  3563. name: "Paw Size",
  3564. power: 2,
  3565. type: "area",
  3566. base: math.unit(0.1596, "m^2")
  3567. },
  3568. "pawLength": {
  3569. name: "Paw Length",
  3570. power: 1,
  3571. type: "length",
  3572. base: math.unit(0.48, "m")
  3573. }
  3574. }
  3575. },
  3576. bunBack: {
  3577. height: math.unit(3, "feet"),
  3578. weight: math.unit(20, "kg"),
  3579. preyCapacity: math.unit(3, "people"),
  3580. name: "Back",
  3581. image: {
  3582. source: "./media/characters/fory/bun-back.svg",
  3583. extra: 1749/1564,
  3584. bottom: 246/1995
  3585. },
  3586. form: "bun",
  3587. default: true,
  3588. extraAttributes: {
  3589. "pawSize": {
  3590. name: "Paw Size",
  3591. power: 2,
  3592. type: "area",
  3593. base: math.unit(0.072, "m^2")
  3594. },
  3595. "pawLength": {
  3596. name: "Paw Length",
  3597. power: 1,
  3598. type: "length",
  3599. base: math.unit(0.45, "m")
  3600. }
  3601. }
  3602. },
  3603. },
  3604. [
  3605. {
  3606. name: "Normal",
  3607. height: math.unit(5, "feet"),
  3608. form: "weaselbun"
  3609. },
  3610. {
  3611. name: "Macro",
  3612. height: math.unit(50, "feet"),
  3613. default: true,
  3614. form: "weaselbun"
  3615. },
  3616. {
  3617. name: "Megamacro",
  3618. height: math.unit(10, "miles"),
  3619. form: "weaselbun"
  3620. },
  3621. {
  3622. name: "Gigamacro",
  3623. height: math.unit(5, "earths"),
  3624. form: "weaselbun"
  3625. },
  3626. {
  3627. name: "Normal",
  3628. height: math.unit(3, "feet"),
  3629. default: true,
  3630. form: "bun"
  3631. },
  3632. {
  3633. name: "Fun-Size",
  3634. height: math.unit(12, "feet"),
  3635. form: "bun"
  3636. },
  3637. {
  3638. name: "Macro",
  3639. height: math.unit(100, "feet"),
  3640. form: "bun"
  3641. },
  3642. {
  3643. name: "Planetary",
  3644. height: math.unit(3, "earths"),
  3645. form: "bun"
  3646. },
  3647. ],
  3648. {
  3649. "weaselbun": {
  3650. name: "Weaselbun",
  3651. default: true
  3652. },
  3653. "bun": {
  3654. name: "Bun",
  3655. },
  3656. }
  3657. ))
  3658. characterMakers.push(() => makeCharacter(
  3659. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3660. {
  3661. front: {
  3662. height: math.unit(7, "feet"),
  3663. weight: math.unit(90, "kg"),
  3664. name: "Front",
  3665. image: {
  3666. source: "./media/characters/kurrikage/front.svg",
  3667. extra: 1845/1733,
  3668. bottom: 119/1964
  3669. }
  3670. },
  3671. back: {
  3672. height: math.unit(7, "feet"),
  3673. weight: math.unit(90, "kg"),
  3674. name: "Back",
  3675. image: {
  3676. source: "./media/characters/kurrikage/back.svg",
  3677. extra: 1790/1677,
  3678. bottom: 61/1851
  3679. }
  3680. },
  3681. dressed: {
  3682. height: math.unit(7, "feet"),
  3683. weight: math.unit(90, "kg"),
  3684. name: "Dressed",
  3685. image: {
  3686. source: "./media/characters/kurrikage/dressed.svg",
  3687. extra: 1845/1733,
  3688. bottom: 119/1964
  3689. }
  3690. },
  3691. foot: {
  3692. height: math.unit(1.5, "feet"),
  3693. name: "Foot",
  3694. image: {
  3695. source: "./media/characters/kurrikage/foot.svg"
  3696. }
  3697. },
  3698. staff: {
  3699. height: math.unit(6.7, "feet"),
  3700. name: "Staff",
  3701. image: {
  3702. source: "./media/characters/kurrikage/staff.svg"
  3703. }
  3704. },
  3705. peek: {
  3706. height: math.unit(1.05, "feet"),
  3707. name: "Peeking",
  3708. image: {
  3709. source: "./media/characters/kurrikage/peek.svg",
  3710. bottom: 0.08
  3711. }
  3712. },
  3713. },
  3714. [
  3715. {
  3716. name: "Normal",
  3717. height: math.unit(12, "feet"),
  3718. default: true
  3719. },
  3720. {
  3721. name: "Big",
  3722. height: math.unit(20, "feet")
  3723. },
  3724. {
  3725. name: "Macro",
  3726. height: math.unit(500, "feet")
  3727. },
  3728. {
  3729. name: "Megamacro",
  3730. height: math.unit(20, "miles")
  3731. },
  3732. ]
  3733. ))
  3734. characterMakers.push(() => makeCharacter(
  3735. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3736. {
  3737. front: {
  3738. height: math.unit(6, "feet"),
  3739. weight: math.unit(75, "kg"),
  3740. name: "Front",
  3741. image: {
  3742. source: "./media/characters/shingo/front.svg",
  3743. extra: 1900/1825,
  3744. bottom: 82/1982
  3745. }
  3746. },
  3747. side: {
  3748. height: math.unit(6, "feet"),
  3749. weight: math.unit(75, "kg"),
  3750. name: "Side",
  3751. image: {
  3752. source: "./media/characters/shingo/side.svg",
  3753. extra: 1930/1865,
  3754. bottom: 16/1946
  3755. }
  3756. },
  3757. back: {
  3758. height: math.unit(6, "feet"),
  3759. weight: math.unit(75, "kg"),
  3760. name: "Back",
  3761. image: {
  3762. source: "./media/characters/shingo/back.svg",
  3763. extra: 1922/1852,
  3764. bottom: 16/1938
  3765. }
  3766. },
  3767. frontDressed: {
  3768. height: math.unit(6, "feet"),
  3769. weight: math.unit(150, "lb"),
  3770. name: "Front-dressed",
  3771. image: {
  3772. source: "./media/characters/shingo/front-dressed.svg",
  3773. extra: 1900/1825,
  3774. bottom: 82/1982
  3775. }
  3776. },
  3777. paw: {
  3778. height: math.unit(1.29, "feet"),
  3779. name: "Paw",
  3780. image: {
  3781. source: "./media/characters/shingo/paw.svg"
  3782. }
  3783. },
  3784. hand: {
  3785. height: math.unit(1.07, "feet"),
  3786. name: "Hand",
  3787. image: {
  3788. source: "./media/characters/shingo/hand.svg"
  3789. }
  3790. },
  3791. frontAlt: {
  3792. height: math.unit(6, "feet"),
  3793. weight: math.unit(75, "kg"),
  3794. name: "Front (Alt)",
  3795. image: {
  3796. source: "./media/characters/shingo/front-alt.svg",
  3797. extra: 3511 / 3338,
  3798. bottom: 0.005
  3799. }
  3800. },
  3801. frontAlt2: {
  3802. height: math.unit(6, "feet"),
  3803. weight: math.unit(75, "kg"),
  3804. name: "Front (Alt 2)",
  3805. image: {
  3806. source: "./media/characters/shingo/front-alt-2.svg",
  3807. extra: 706/681,
  3808. bottom: 11/717
  3809. }
  3810. },
  3811. pawAlt: {
  3812. height: math.unit(1, "feet"),
  3813. name: "Paw (Alt)",
  3814. image: {
  3815. source: "./media/characters/shingo/paw-alt.svg"
  3816. }
  3817. },
  3818. },
  3819. [
  3820. {
  3821. name: "Micro",
  3822. height: math.unit(4, "inches")
  3823. },
  3824. {
  3825. name: "Normal",
  3826. height: math.unit(6, "feet"),
  3827. default: true
  3828. },
  3829. {
  3830. name: "Macro",
  3831. height: math.unit(108, "feet")
  3832. },
  3833. {
  3834. name: "Macro+",
  3835. height: math.unit(1500, "feet")
  3836. },
  3837. ]
  3838. ))
  3839. characterMakers.push(() => makeCharacter(
  3840. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3841. {
  3842. side: {
  3843. height: math.unit(6, "feet"),
  3844. weight: math.unit(75, "kg"),
  3845. name: "Side",
  3846. image: {
  3847. source: "./media/characters/aigey/side.svg"
  3848. }
  3849. },
  3850. },
  3851. [
  3852. {
  3853. name: "Macro",
  3854. height: math.unit(200, "feet"),
  3855. default: true
  3856. },
  3857. {
  3858. name: "Megamacro",
  3859. height: math.unit(100, "miles")
  3860. },
  3861. ]
  3862. )
  3863. )
  3864. characterMakers.push(() => makeCharacter(
  3865. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3866. {
  3867. front: {
  3868. height: math.unit(13, "feet"),
  3869. weight: math.unit(1036.80, "kg"),
  3870. name: "Front",
  3871. image: {
  3872. source: "./media/characters/natasha/front.svg",
  3873. extra: 1301/1210,
  3874. bottom: 39/1340
  3875. }
  3876. },
  3877. back: {
  3878. height: math.unit(13, "feet"),
  3879. weight: math.unit(1036.80, "kg"),
  3880. name: "Back",
  3881. image: {
  3882. source: "./media/characters/natasha/back.svg",
  3883. extra: 1342/1252,
  3884. bottom: 20/1362
  3885. }
  3886. },
  3887. head: {
  3888. height: math.unit(3.48, "feet"),
  3889. name: "Head",
  3890. image: {
  3891. source: "./media/characters/natasha/head.svg"
  3892. }
  3893. },
  3894. jaws: {
  3895. height: math.unit(3.52, "feet"),
  3896. name: "Jaws",
  3897. image: {
  3898. source: "./media/characters/natasha/jaws.svg"
  3899. }
  3900. },
  3901. paws: {
  3902. height: math.unit(2.7, "feet"),
  3903. name: "Paws",
  3904. image: {
  3905. source: "./media/characters/natasha/paws.svg"
  3906. }
  3907. },
  3908. collar: {
  3909. height: math.unit(0.89, "feet"),
  3910. name: "Collar",
  3911. image: {
  3912. source: "./media/characters/natasha/collar.svg"
  3913. }
  3914. },
  3915. gauge: {
  3916. height: math.unit(0.36, "feet"),
  3917. name: "Gauge",
  3918. image: {
  3919. source: "./media/characters/natasha/gauge.svg"
  3920. }
  3921. },
  3922. },
  3923. [
  3924. {
  3925. name: "Shortstack",
  3926. height: math.unit(3, "feet")
  3927. },
  3928. {
  3929. name: "Normal",
  3930. height: math.unit(13, "feet"),
  3931. default: true
  3932. },
  3933. {
  3934. name: "Macro",
  3935. height: math.unit(100, "feet")
  3936. },
  3937. {
  3938. name: "Macro+",
  3939. height: math.unit(260, "feet")
  3940. },
  3941. {
  3942. name: "Macro++",
  3943. height: math.unit(1, "mile")
  3944. },
  3945. ]
  3946. ))
  3947. characterMakers.push(() => makeCharacter(
  3948. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3949. {
  3950. front: {
  3951. height: math.unit(6, "feet"),
  3952. weight: math.unit(75, "kg"),
  3953. name: "Front",
  3954. image: {
  3955. source: "./media/characters/malik/front.svg",
  3956. extra: 1750/1561,
  3957. bottom: 80/1830
  3958. },
  3959. extraAttributes: {
  3960. "toeSize": {
  3961. name: "Toe Size",
  3962. power: 2,
  3963. type: "area",
  3964. base: math.unit(0.0159, "m^2")
  3965. },
  3966. "pawSize": {
  3967. name: "Paw Size",
  3968. power: 2,
  3969. type: "area",
  3970. base: math.unit(0.09834, "m^2")
  3971. },
  3972. }
  3973. },
  3974. side: {
  3975. height: math.unit(6, "feet"),
  3976. weight: math.unit(75, "kg"),
  3977. name: "Side",
  3978. image: {
  3979. source: "./media/characters/malik/side.svg",
  3980. extra: 1802/1685,
  3981. bottom: 42/1844
  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. back: {
  3999. height: math.unit(6, "feet"),
  4000. weight: math.unit(75, "kg"),
  4001. name: "Back",
  4002. image: {
  4003. source: "./media/characters/malik/back.svg",
  4004. extra: 1803/1607,
  4005. bottom: 33/1836
  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. },
  4023. [
  4024. {
  4025. name: "Macro",
  4026. height: math.unit(156, "feet"),
  4027. default: true
  4028. },
  4029. {
  4030. name: "Macro+",
  4031. height: math.unit(1188, "feet")
  4032. },
  4033. ]
  4034. ))
  4035. characterMakers.push(() => makeCharacter(
  4036. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  4037. {
  4038. front: {
  4039. height: math.unit(6, "feet"),
  4040. weight: math.unit(75, "kg"),
  4041. name: "Front",
  4042. image: {
  4043. source: "./media/characters/sefer/front.svg",
  4044. extra: 848 / 659,
  4045. bottom: 28.3 / 876.442
  4046. }
  4047. },
  4048. back: {
  4049. height: math.unit(6, "feet"),
  4050. weight: math.unit(75, "kg"),
  4051. name: "Back",
  4052. image: {
  4053. source: "./media/characters/sefer/back.svg",
  4054. extra: 864 / 695,
  4055. bottom: 10 / 871
  4056. }
  4057. },
  4058. frontDressed: {
  4059. height: math.unit(6, "feet"),
  4060. weight: math.unit(75, "kg"),
  4061. name: "Dressed",
  4062. image: {
  4063. source: "./media/characters/sefer/dressed.svg",
  4064. extra: 839 / 653,
  4065. bottom: 37.6 / 878
  4066. }
  4067. },
  4068. },
  4069. [
  4070. {
  4071. name: "Normal",
  4072. height: math.unit(6, "feet"),
  4073. default: true
  4074. },
  4075. {
  4076. name: "Big",
  4077. height: math.unit(8, "meters")
  4078. },
  4079. ]
  4080. ))
  4081. characterMakers.push(() => makeCharacter(
  4082. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  4083. {
  4084. body: {
  4085. height: math.unit(2.2428, "meter"),
  4086. weight: math.unit(124.738, "kg"),
  4087. name: "Body",
  4088. image: {
  4089. extra: 1225 / 1050,
  4090. source: "./media/characters/north/front.svg"
  4091. }
  4092. }
  4093. },
  4094. [
  4095. {
  4096. name: "Micro",
  4097. height: math.unit(4, "inches")
  4098. },
  4099. {
  4100. name: "Macro",
  4101. height: math.unit(63, "meters")
  4102. },
  4103. {
  4104. name: "Megamacro",
  4105. height: math.unit(101, "miles"),
  4106. default: true
  4107. }
  4108. ]
  4109. ))
  4110. characterMakers.push(() => makeCharacter(
  4111. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4112. {
  4113. angled: {
  4114. height: math.unit(4, "meter"),
  4115. weight: math.unit(150, "kg"),
  4116. name: "Angled",
  4117. image: {
  4118. source: "./media/characters/talan/angled-sfw.svg",
  4119. bottom: 29 / 3734
  4120. }
  4121. },
  4122. angledNsfw: {
  4123. height: math.unit(4, "meter"),
  4124. weight: math.unit(150, "kg"),
  4125. name: "Angled (NSFW)",
  4126. image: {
  4127. source: "./media/characters/talan/angled-nsfw.svg",
  4128. bottom: 29 / 3734
  4129. }
  4130. },
  4131. frontNsfw: {
  4132. height: math.unit(4, "meter"),
  4133. weight: math.unit(150, "kg"),
  4134. name: "Front (NSFW)",
  4135. image: {
  4136. source: "./media/characters/talan/front-nsfw.svg",
  4137. bottom: 29 / 3734
  4138. }
  4139. },
  4140. sideNsfw: {
  4141. height: math.unit(4, "meter"),
  4142. weight: math.unit(150, "kg"),
  4143. name: "Side (NSFW)",
  4144. image: {
  4145. source: "./media/characters/talan/side-nsfw.svg",
  4146. bottom: 29 / 3734
  4147. }
  4148. },
  4149. back: {
  4150. height: math.unit(4, "meter"),
  4151. weight: math.unit(150, "kg"),
  4152. name: "Back",
  4153. image: {
  4154. source: "./media/characters/talan/back.svg"
  4155. }
  4156. },
  4157. dickBottom: {
  4158. height: math.unit(0.621, "meter"),
  4159. name: "Dick (Bottom)",
  4160. image: {
  4161. source: "./media/characters/talan/dick-bottom.svg"
  4162. }
  4163. },
  4164. dickTop: {
  4165. height: math.unit(0.621, "meter"),
  4166. name: "Dick (Top)",
  4167. image: {
  4168. source: "./media/characters/talan/dick-top.svg"
  4169. }
  4170. },
  4171. dickSide: {
  4172. height: math.unit(0.305, "meter"),
  4173. name: "Dick (Side)",
  4174. image: {
  4175. source: "./media/characters/talan/dick-side.svg"
  4176. }
  4177. },
  4178. dickFront: {
  4179. height: math.unit(0.305, "meter"),
  4180. name: "Dick (Front)",
  4181. image: {
  4182. source: "./media/characters/talan/dick-front.svg"
  4183. }
  4184. },
  4185. },
  4186. [
  4187. {
  4188. name: "Normal",
  4189. height: math.unit(4, "meters")
  4190. },
  4191. {
  4192. name: "Macro",
  4193. height: math.unit(100, "meters")
  4194. },
  4195. {
  4196. name: "Megamacro",
  4197. height: math.unit(2, "miles"),
  4198. default: true
  4199. },
  4200. {
  4201. name: "Gigamacro",
  4202. height: math.unit(5000, "miles")
  4203. },
  4204. {
  4205. name: "Teramacro",
  4206. height: math.unit(100, "parsecs")
  4207. }
  4208. ]
  4209. ))
  4210. characterMakers.push(() => makeCharacter(
  4211. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4212. {
  4213. front: {
  4214. height: math.unit(2, "meter"),
  4215. weight: math.unit(90, "kg"),
  4216. name: "Front",
  4217. image: {
  4218. source: "./media/characters/gael'rathus/front.svg"
  4219. }
  4220. },
  4221. frontAlt: {
  4222. height: math.unit(2, "meter"),
  4223. weight: math.unit(90, "kg"),
  4224. name: "Front (alt)",
  4225. image: {
  4226. source: "./media/characters/gael'rathus/front-alt.svg"
  4227. }
  4228. },
  4229. frontAlt2: {
  4230. height: math.unit(2, "meter"),
  4231. weight: math.unit(90, "kg"),
  4232. name: "Front (alt 2)",
  4233. image: {
  4234. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4235. }
  4236. }
  4237. },
  4238. [
  4239. {
  4240. name: "Normal",
  4241. height: math.unit(9, "feet"),
  4242. default: true
  4243. },
  4244. {
  4245. name: "Large",
  4246. height: math.unit(25, "feet")
  4247. },
  4248. {
  4249. name: "Macro",
  4250. height: math.unit(0.25, "miles")
  4251. },
  4252. {
  4253. name: "Megamacro",
  4254. height: math.unit(10, "miles")
  4255. }
  4256. ]
  4257. ))
  4258. characterMakers.push(() => makeCharacter(
  4259. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4260. {
  4261. side: {
  4262. height: math.unit(2, "meter"),
  4263. weight: math.unit(140, "kg"),
  4264. name: "Side",
  4265. image: {
  4266. source: "./media/characters/sosha/side.svg",
  4267. extra: 1170/1006,
  4268. bottom: 94/1264
  4269. }
  4270. },
  4271. maw: {
  4272. height: math.unit(2.87, "feet"),
  4273. name: "Maw",
  4274. image: {
  4275. source: "./media/characters/sosha/maw.svg",
  4276. extra: 966/865,
  4277. bottom: 0/966
  4278. }
  4279. },
  4280. cooch: {
  4281. height: math.unit(5.6, "feet"),
  4282. name: "Cooch",
  4283. image: {
  4284. source: "./media/characters/sosha/cooch.svg"
  4285. }
  4286. },
  4287. },
  4288. [
  4289. {
  4290. name: "Normal",
  4291. height: math.unit(12, "feet"),
  4292. default: true
  4293. }
  4294. ]
  4295. ))
  4296. characterMakers.push(() => makeCharacter(
  4297. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4298. {
  4299. side: {
  4300. height: math.unit(5 + 5 / 12, "feet"),
  4301. weight: math.unit(170, "kg"),
  4302. name: "Side",
  4303. image: {
  4304. source: "./media/characters/runnola/side.svg",
  4305. extra: 741 / 448,
  4306. bottom: 0.05
  4307. }
  4308. },
  4309. },
  4310. [
  4311. {
  4312. name: "Small",
  4313. height: math.unit(3, "feet")
  4314. },
  4315. {
  4316. name: "Normal",
  4317. height: math.unit(5 + 5 / 12, "feet"),
  4318. default: true
  4319. },
  4320. {
  4321. name: "Big",
  4322. height: math.unit(10, "feet")
  4323. },
  4324. ]
  4325. ))
  4326. characterMakers.push(() => makeCharacter(
  4327. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4328. {
  4329. front: {
  4330. height: math.unit(2, "meter"),
  4331. weight: math.unit(50, "kg"),
  4332. name: "Front",
  4333. image: {
  4334. source: "./media/characters/kurribird/front.svg",
  4335. bottom: 0.015
  4336. }
  4337. },
  4338. frontAlt: {
  4339. height: math.unit(1.5, "meter"),
  4340. weight: math.unit(50, "kg"),
  4341. name: "Front (Alt)",
  4342. image: {
  4343. source: "./media/characters/kurribird/front-alt.svg",
  4344. extra: 1.45
  4345. }
  4346. },
  4347. },
  4348. [
  4349. {
  4350. name: "Normal",
  4351. height: math.unit(7, "feet")
  4352. },
  4353. {
  4354. name: "Big",
  4355. height: math.unit(12, "feet"),
  4356. default: true
  4357. },
  4358. {
  4359. name: "Macro",
  4360. height: math.unit(1500, "feet")
  4361. },
  4362. {
  4363. name: "Megamacro",
  4364. height: math.unit(2, "miles")
  4365. }
  4366. ]
  4367. ))
  4368. characterMakers.push(() => makeCharacter(
  4369. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4370. {
  4371. front: {
  4372. height: math.unit(2, "meter"),
  4373. weight: math.unit(80, "kg"),
  4374. name: "Front",
  4375. image: {
  4376. source: "./media/characters/elbial/front.svg",
  4377. extra: 1643 / 1556,
  4378. bottom: 60.2 / 1696
  4379. }
  4380. },
  4381. side: {
  4382. height: math.unit(2, "meter"),
  4383. weight: math.unit(80, "kg"),
  4384. name: "Side",
  4385. image: {
  4386. source: "./media/characters/elbial/side.svg",
  4387. extra: 1601/1528,
  4388. bottom: 97/1698
  4389. }
  4390. },
  4391. back: {
  4392. height: math.unit(2, "meter"),
  4393. weight: math.unit(80, "kg"),
  4394. name: "Back",
  4395. image: {
  4396. source: "./media/characters/elbial/back.svg",
  4397. extra: 1653/1569,
  4398. bottom: 20/1673
  4399. }
  4400. },
  4401. frontDressed: {
  4402. height: math.unit(2, "meter"),
  4403. weight: math.unit(80, "kg"),
  4404. name: "Front (Dressed)",
  4405. image: {
  4406. source: "./media/characters/elbial/front-dressed.svg",
  4407. extra: 1638/1569,
  4408. bottom: 70/1708
  4409. }
  4410. },
  4411. genitals: {
  4412. height: math.unit(2 / 3.367, "meter"),
  4413. name: "Genitals",
  4414. image: {
  4415. source: "./media/characters/elbial/genitals.svg"
  4416. }
  4417. },
  4418. },
  4419. [
  4420. {
  4421. name: "Large",
  4422. height: math.unit(100, "feet")
  4423. },
  4424. {
  4425. name: "Macro",
  4426. height: math.unit(500, "feet"),
  4427. default: true
  4428. },
  4429. {
  4430. name: "Megamacro",
  4431. height: math.unit(10, "miles")
  4432. },
  4433. {
  4434. name: "Gigamacro",
  4435. height: math.unit(25000, "miles")
  4436. },
  4437. {
  4438. name: "Full-Size",
  4439. height: math.unit(8000000, "gigaparsecs")
  4440. }
  4441. ]
  4442. ))
  4443. characterMakers.push(() => makeCharacter(
  4444. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4445. {
  4446. front: {
  4447. height: math.unit(2, "meter"),
  4448. weight: math.unit(60, "kg"),
  4449. name: "Front",
  4450. image: {
  4451. source: "./media/characters/noah/front.svg",
  4452. extra: 1383/1313,
  4453. bottom: 104/1487
  4454. }
  4455. },
  4456. hand: {
  4457. height: math.unit(0.6, "feet"),
  4458. name: "Hand",
  4459. image: {
  4460. source: "./media/characters/noah/hand.svg"
  4461. }
  4462. },
  4463. talons: {
  4464. height: math.unit(1.385, "feet"),
  4465. name: "Talons",
  4466. image: {
  4467. source: "./media/characters/noah/talons.svg"
  4468. }
  4469. },
  4470. beak: {
  4471. height: math.unit(0.43, "feet"),
  4472. name: "Beak",
  4473. image: {
  4474. source: "./media/characters/noah/beak.svg"
  4475. }
  4476. },
  4477. collar: {
  4478. height: math.unit(0.88, "feet"),
  4479. name: "Collar",
  4480. image: {
  4481. source: "./media/characters/noah/collar.svg"
  4482. }
  4483. },
  4484. eyeNarrow: {
  4485. height: math.unit(0.18, "feet"),
  4486. name: "Eye (Narrow)",
  4487. image: {
  4488. source: "./media/characters/noah/eye-narrow.svg"
  4489. }
  4490. },
  4491. eyeNormal: {
  4492. height: math.unit(0.18, "feet"),
  4493. name: "Eye (Normal)",
  4494. image: {
  4495. source: "./media/characters/noah/eye-normal.svg"
  4496. }
  4497. },
  4498. eyeWide: {
  4499. height: math.unit(0.18, "feet"),
  4500. name: "Eye (Wide)",
  4501. image: {
  4502. source: "./media/characters/noah/eye-wide.svg"
  4503. }
  4504. },
  4505. ear: {
  4506. height: math.unit(0.64, "feet"),
  4507. name: "Ear",
  4508. image: {
  4509. source: "./media/characters/noah/ear.svg"
  4510. }
  4511. },
  4512. },
  4513. [
  4514. {
  4515. name: "Large",
  4516. height: math.unit(50, "feet")
  4517. },
  4518. {
  4519. name: "Macro",
  4520. height: math.unit(750, "feet"),
  4521. default: true
  4522. },
  4523. {
  4524. name: "Megamacro",
  4525. height: math.unit(50, "miles")
  4526. },
  4527. {
  4528. name: "Gigamacro",
  4529. height: math.unit(100000, "miles")
  4530. },
  4531. {
  4532. name: "Full-Size",
  4533. height: math.unit(3000000000, "miles")
  4534. }
  4535. ]
  4536. ))
  4537. characterMakers.push(() => makeCharacter(
  4538. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4539. {
  4540. front: {
  4541. height: math.unit(2, "meter"),
  4542. weight: math.unit(80, "kg"),
  4543. name: "Front",
  4544. image: {
  4545. source: "./media/characters/natalya/front.svg"
  4546. }
  4547. },
  4548. back: {
  4549. height: math.unit(2, "meter"),
  4550. weight: math.unit(80, "kg"),
  4551. name: "Back",
  4552. image: {
  4553. source: "./media/characters/natalya/back.svg"
  4554. }
  4555. }
  4556. },
  4557. [
  4558. {
  4559. name: "Normal",
  4560. height: math.unit(150, "feet"),
  4561. default: true
  4562. },
  4563. {
  4564. name: "Megamacro",
  4565. height: math.unit(5, "miles")
  4566. },
  4567. {
  4568. name: "Full-Size",
  4569. height: math.unit(600, "kiloparsecs")
  4570. }
  4571. ]
  4572. ))
  4573. characterMakers.push(() => makeCharacter(
  4574. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4575. {
  4576. front: {
  4577. height: math.unit(2, "meter"),
  4578. weight: math.unit(50, "kg"),
  4579. name: "Front",
  4580. image: {
  4581. source: "./media/characters/erestrebah/front.svg",
  4582. extra: 1262/1162,
  4583. bottom: 96/1358
  4584. }
  4585. },
  4586. back: {
  4587. height: math.unit(2, "meter"),
  4588. weight: math.unit(50, "kg"),
  4589. name: "Back",
  4590. image: {
  4591. source: "./media/characters/erestrebah/back.svg",
  4592. extra: 1257/1139,
  4593. bottom: 13/1270
  4594. }
  4595. },
  4596. wing: {
  4597. height: math.unit(2, "meter"),
  4598. weight: math.unit(50, "kg"),
  4599. name: "Wing",
  4600. image: {
  4601. source: "./media/characters/erestrebah/wing.svg",
  4602. extra: 1262/1162,
  4603. bottom: 96/1358
  4604. }
  4605. },
  4606. mouth: {
  4607. height: math.unit(0.39, "feet"),
  4608. name: "Mouth",
  4609. image: {
  4610. source: "./media/characters/erestrebah/mouth.svg"
  4611. }
  4612. }
  4613. },
  4614. [
  4615. {
  4616. name: "Normal",
  4617. height: math.unit(10, "feet")
  4618. },
  4619. {
  4620. name: "Large",
  4621. height: math.unit(50, "feet"),
  4622. default: true
  4623. },
  4624. {
  4625. name: "Macro",
  4626. height: math.unit(300, "feet")
  4627. },
  4628. {
  4629. name: "Macro+",
  4630. height: math.unit(750, "feet")
  4631. },
  4632. {
  4633. name: "Megamacro",
  4634. height: math.unit(3, "miles")
  4635. }
  4636. ]
  4637. ))
  4638. characterMakers.push(() => makeCharacter(
  4639. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4640. {
  4641. front: {
  4642. height: math.unit(2, "meter"),
  4643. weight: math.unit(80, "kg"),
  4644. name: "Front",
  4645. image: {
  4646. source: "./media/characters/jennifer/front.svg",
  4647. bottom: 0.11,
  4648. extra: 1.16
  4649. }
  4650. },
  4651. frontAlt: {
  4652. height: math.unit(2, "meter"),
  4653. weight: math.unit(80, "kg"),
  4654. name: "Front (Alt)",
  4655. image: {
  4656. source: "./media/characters/jennifer/front-alt.svg"
  4657. }
  4658. }
  4659. },
  4660. [
  4661. {
  4662. name: "Canon Height",
  4663. height: math.unit(120, "feet"),
  4664. default: true
  4665. },
  4666. {
  4667. name: "Macro+",
  4668. height: math.unit(300, "feet")
  4669. },
  4670. {
  4671. name: "Megamacro",
  4672. height: math.unit(20000, "feet")
  4673. }
  4674. ]
  4675. ))
  4676. characterMakers.push(() => makeCharacter(
  4677. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4678. {
  4679. front: {
  4680. height: math.unit(2, "meter"),
  4681. weight: math.unit(50, "kg"),
  4682. name: "Front",
  4683. image: {
  4684. source: "./media/characters/kalista/front.svg",
  4685. extra: 1314/1145,
  4686. bottom: 101/1415
  4687. }
  4688. },
  4689. back: {
  4690. height: math.unit(2, "meter"),
  4691. weight: math.unit(50, "kg"),
  4692. name: "Back",
  4693. image: {
  4694. source: "./media/characters/kalista/back.svg",
  4695. extra: 1366 / 1156,
  4696. bottom: 33.9 / 1362.78
  4697. }
  4698. }
  4699. },
  4700. [
  4701. {
  4702. name: "Uncomfortably Small",
  4703. height: math.unit(10, "feet")
  4704. },
  4705. {
  4706. name: "Small",
  4707. height: math.unit(30, "feet")
  4708. },
  4709. {
  4710. name: "Macro",
  4711. height: math.unit(100, "feet"),
  4712. default: true
  4713. },
  4714. {
  4715. name: "Macro+",
  4716. height: math.unit(2000, "feet")
  4717. },
  4718. {
  4719. name: "True Form",
  4720. height: math.unit(8924, "miles")
  4721. }
  4722. ]
  4723. ))
  4724. characterMakers.push(() => makeCharacter(
  4725. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4726. {
  4727. front: {
  4728. height: math.unit(2, "meter"),
  4729. weight: math.unit(120, "kg"),
  4730. name: "Front",
  4731. image: {
  4732. source: "./media/characters/ggv/front.svg"
  4733. }
  4734. },
  4735. side: {
  4736. height: math.unit(2, "meter"),
  4737. weight: math.unit(120, "kg"),
  4738. name: "Side",
  4739. image: {
  4740. source: "./media/characters/ggv/side.svg"
  4741. }
  4742. }
  4743. },
  4744. [
  4745. {
  4746. name: "Extremely Puny",
  4747. height: math.unit(9 + 5 / 12, "feet")
  4748. },
  4749. {
  4750. name: "Horribly Small",
  4751. height: math.unit(47.7, "miles"),
  4752. default: true
  4753. },
  4754. {
  4755. name: "Reasonably Sized",
  4756. height: math.unit(25000, "parsecs")
  4757. },
  4758. {
  4759. name: "Slightly Uncompressed",
  4760. height: math.unit(7.77e31, "parsecs")
  4761. },
  4762. {
  4763. name: "Omniversal",
  4764. height: math.unit(1e300, "meters")
  4765. },
  4766. ]
  4767. ))
  4768. characterMakers.push(() => makeCharacter(
  4769. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4770. {
  4771. front: {
  4772. height: math.unit(2, "meter"),
  4773. weight: math.unit(75, "lb"),
  4774. name: "Front",
  4775. image: {
  4776. source: "./media/characters/napalm/front.svg"
  4777. }
  4778. },
  4779. back: {
  4780. height: math.unit(2, "meter"),
  4781. weight: math.unit(75, "lb"),
  4782. name: "Back",
  4783. image: {
  4784. source: "./media/characters/napalm/back.svg"
  4785. }
  4786. }
  4787. },
  4788. [
  4789. {
  4790. name: "Standard",
  4791. height: math.unit(55, "feet"),
  4792. default: true
  4793. }
  4794. ]
  4795. ))
  4796. characterMakers.push(() => makeCharacter(
  4797. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4798. {
  4799. front: {
  4800. height: math.unit(7 + 5 / 6, "feet"),
  4801. weight: math.unit(325, "lb"),
  4802. name: "Front",
  4803. image: {
  4804. source: "./media/characters/asana/front.svg",
  4805. extra: 1133 / 1060,
  4806. bottom: 15.2 / 1148.6
  4807. }
  4808. },
  4809. back: {
  4810. height: math.unit(7 + 5 / 6, "feet"),
  4811. weight: math.unit(325, "lb"),
  4812. name: "Back",
  4813. image: {
  4814. source: "./media/characters/asana/back.svg",
  4815. extra: 1114 / 1043,
  4816. bottom: 5 / 1120
  4817. }
  4818. },
  4819. dressedDark: {
  4820. height: math.unit(7 + 5 / 6, "feet"),
  4821. weight: math.unit(325, "lb"),
  4822. name: "Dressed (Dark)",
  4823. image: {
  4824. source: "./media/characters/asana/dressed-dark.svg",
  4825. extra: 1133 / 1060,
  4826. bottom: 15.2 / 1148.6
  4827. }
  4828. },
  4829. dressedLight: {
  4830. height: math.unit(7 + 5 / 6, "feet"),
  4831. weight: math.unit(325, "lb"),
  4832. name: "Dressed (Light)",
  4833. image: {
  4834. source: "./media/characters/asana/dressed-light.svg",
  4835. extra: 1133 / 1060,
  4836. bottom: 15.2 / 1148.6
  4837. }
  4838. },
  4839. },
  4840. [
  4841. {
  4842. name: "Standard",
  4843. height: math.unit(7 + 5 / 6, "feet"),
  4844. default: true
  4845. },
  4846. {
  4847. name: "Large",
  4848. height: math.unit(10, "meters")
  4849. },
  4850. {
  4851. name: "Macro",
  4852. height: math.unit(2500, "meters")
  4853. },
  4854. {
  4855. name: "Megamacro",
  4856. height: math.unit(5e6, "meters")
  4857. },
  4858. {
  4859. name: "Examacro",
  4860. height: math.unit(5e12, "lightyears")
  4861. },
  4862. {
  4863. name: "Max Size",
  4864. height: math.unit(1e31, "lightyears")
  4865. }
  4866. ]
  4867. ))
  4868. characterMakers.push(() => makeCharacter(
  4869. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4870. {
  4871. front: {
  4872. height: math.unit(2, "meter"),
  4873. weight: math.unit(60, "kg"),
  4874. name: "Front",
  4875. image: {
  4876. source: "./media/characters/ebony/front.svg",
  4877. bottom: 0.03,
  4878. extra: 1045 / 810 + 0.03
  4879. }
  4880. },
  4881. side: {
  4882. height: math.unit(2, "meter"),
  4883. weight: math.unit(60, "kg"),
  4884. name: "Side",
  4885. image: {
  4886. source: "./media/characters/ebony/side.svg",
  4887. bottom: 0.03,
  4888. extra: 1045 / 810 + 0.03
  4889. }
  4890. },
  4891. back: {
  4892. height: math.unit(2, "meter"),
  4893. weight: math.unit(60, "kg"),
  4894. name: "Back",
  4895. image: {
  4896. source: "./media/characters/ebony/back.svg",
  4897. bottom: 0.01,
  4898. extra: 1045 / 810 + 0.01
  4899. }
  4900. },
  4901. },
  4902. [
  4903. // TODO check why I did this lol
  4904. {
  4905. name: "Standard",
  4906. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4907. default: true
  4908. },
  4909. {
  4910. name: "Macro",
  4911. height: math.unit(200, "feet")
  4912. },
  4913. {
  4914. name: "Gigamacro",
  4915. height: math.unit(13000, "km")
  4916. }
  4917. ]
  4918. ))
  4919. characterMakers.push(() => makeCharacter(
  4920. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4921. {
  4922. front: {
  4923. height: math.unit(6, "feet"),
  4924. weight: math.unit(175, "lb"),
  4925. name: "Front",
  4926. image: {
  4927. source: "./media/characters/mountain/front.svg",
  4928. extra: 972 / 955,
  4929. bottom: 64 / 1036.6
  4930. }
  4931. },
  4932. back: {
  4933. height: math.unit(6, "feet"),
  4934. weight: math.unit(175, "lb"),
  4935. name: "Back",
  4936. image: {
  4937. source: "./media/characters/mountain/back.svg",
  4938. extra: 970 / 950,
  4939. bottom: 28.25 / 999
  4940. }
  4941. },
  4942. },
  4943. [
  4944. {
  4945. name: "Large",
  4946. height: math.unit(20, "meters")
  4947. },
  4948. {
  4949. name: "Macro",
  4950. height: math.unit(300, "meters")
  4951. },
  4952. {
  4953. name: "Gigamacro",
  4954. height: math.unit(10000, "km"),
  4955. default: true
  4956. },
  4957. {
  4958. name: "Examacro",
  4959. height: math.unit(10e9, "lightyears")
  4960. }
  4961. ]
  4962. ))
  4963. characterMakers.push(() => makeCharacter(
  4964. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4965. {
  4966. front: {
  4967. height: math.unit(8, "feet"),
  4968. weight: math.unit(500, "lb"),
  4969. name: "Front",
  4970. image: {
  4971. source: "./media/characters/rick/front.svg"
  4972. }
  4973. }
  4974. },
  4975. [
  4976. {
  4977. name: "Normal",
  4978. height: math.unit(8, "feet"),
  4979. default: true
  4980. },
  4981. {
  4982. name: "Macro",
  4983. height: math.unit(5, "km")
  4984. }
  4985. ]
  4986. ))
  4987. characterMakers.push(() => makeCharacter(
  4988. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4989. {
  4990. front: {
  4991. height: math.unit(8, "feet"),
  4992. weight: math.unit(120, "lb"),
  4993. name: "Front",
  4994. image: {
  4995. source: "./media/characters/ona/front.svg"
  4996. }
  4997. },
  4998. frontAlt: {
  4999. height: math.unit(8, "feet"),
  5000. weight: math.unit(120, "lb"),
  5001. name: "Front (Alt)",
  5002. image: {
  5003. source: "./media/characters/ona/front-alt.svg"
  5004. }
  5005. },
  5006. back: {
  5007. height: math.unit(8, "feet"),
  5008. weight: math.unit(120, "lb"),
  5009. name: "Back",
  5010. image: {
  5011. source: "./media/characters/ona/back.svg"
  5012. }
  5013. },
  5014. foot: {
  5015. height: math.unit(1.1, "feet"),
  5016. name: "Foot",
  5017. image: {
  5018. source: "./media/characters/ona/foot.svg"
  5019. }
  5020. }
  5021. },
  5022. [
  5023. {
  5024. name: "Megamacro",
  5025. height: math.unit(70, "km"),
  5026. default: true
  5027. },
  5028. {
  5029. name: "Gigamacro",
  5030. height: math.unit(681818, "miles")
  5031. },
  5032. {
  5033. name: "Examacro",
  5034. height: math.unit(3800000, "lightyears")
  5035. },
  5036. ]
  5037. ))
  5038. characterMakers.push(() => makeCharacter(
  5039. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  5040. {
  5041. front: {
  5042. height: math.unit(12, "feet"),
  5043. weight: math.unit(3000, "lb"),
  5044. name: "Front",
  5045. image: {
  5046. source: "./media/characters/mech/front.svg",
  5047. extra: 2900 / 2770,
  5048. bottom: 110 / 3010
  5049. }
  5050. },
  5051. back: {
  5052. height: math.unit(12, "feet"),
  5053. weight: math.unit(3000, "lb"),
  5054. name: "Back",
  5055. image: {
  5056. source: "./media/characters/mech/back.svg",
  5057. extra: 3011 / 2890,
  5058. bottom: 94 / 3105
  5059. }
  5060. },
  5061. maw: {
  5062. height: math.unit(3.07, "feet"),
  5063. name: "Maw",
  5064. image: {
  5065. source: "./media/characters/mech/maw.svg"
  5066. }
  5067. },
  5068. head: {
  5069. height: math.unit(3.07, "feet"),
  5070. name: "Head",
  5071. image: {
  5072. source: "./media/characters/mech/head.svg"
  5073. }
  5074. },
  5075. dick: {
  5076. height: math.unit(1.43, "feet"),
  5077. name: "Dick",
  5078. image: {
  5079. source: "./media/characters/mech/dick.svg"
  5080. }
  5081. },
  5082. },
  5083. [
  5084. {
  5085. name: "Normal",
  5086. height: math.unit(12, "feet")
  5087. },
  5088. {
  5089. name: "Macro",
  5090. height: math.unit(300, "feet"),
  5091. default: true
  5092. },
  5093. {
  5094. name: "Macro+",
  5095. height: math.unit(1500, "feet")
  5096. },
  5097. ]
  5098. ))
  5099. characterMakers.push(() => makeCharacter(
  5100. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5101. {
  5102. front: {
  5103. height: math.unit(1.3, "meter"),
  5104. weight: math.unit(30, "kg"),
  5105. name: "Front",
  5106. image: {
  5107. source: "./media/characters/gregory/front.svg",
  5108. }
  5109. }
  5110. },
  5111. [
  5112. {
  5113. name: "Normal",
  5114. height: math.unit(1.3, "meter"),
  5115. default: true
  5116. },
  5117. {
  5118. name: "Macro",
  5119. height: math.unit(20, "meter")
  5120. }
  5121. ]
  5122. ))
  5123. characterMakers.push(() => makeCharacter(
  5124. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5125. {
  5126. front: {
  5127. height: math.unit(2.8, "meter"),
  5128. weight: math.unit(200, "kg"),
  5129. name: "Front",
  5130. image: {
  5131. source: "./media/characters/elory/front.svg",
  5132. }
  5133. }
  5134. },
  5135. [
  5136. {
  5137. name: "Normal",
  5138. height: math.unit(2.8, "meter"),
  5139. default: true
  5140. },
  5141. {
  5142. name: "Macro",
  5143. height: math.unit(38, "meter")
  5144. }
  5145. ]
  5146. ))
  5147. characterMakers.push(() => makeCharacter(
  5148. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5149. {
  5150. front: {
  5151. height: math.unit(470, "feet"),
  5152. weight: math.unit(924, "tons"),
  5153. name: "Front",
  5154. image: {
  5155. source: "./media/characters/angelpatamon/front.svg",
  5156. }
  5157. }
  5158. },
  5159. [
  5160. {
  5161. name: "Normal",
  5162. height: math.unit(470, "feet"),
  5163. default: true
  5164. },
  5165. {
  5166. name: "Deity Size I",
  5167. height: math.unit(28651.2, "km")
  5168. },
  5169. {
  5170. name: "Deity Size II",
  5171. height: math.unit(171907.2, "km")
  5172. }
  5173. ]
  5174. ))
  5175. characterMakers.push(() => makeCharacter(
  5176. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5177. {
  5178. side: {
  5179. height: math.unit(7.2, "meter"),
  5180. weight: math.unit(8.2, "tons"),
  5181. name: "Side",
  5182. image: {
  5183. source: "./media/characters/cryae/side.svg",
  5184. extra: 3500 / 1500
  5185. }
  5186. }
  5187. },
  5188. [
  5189. {
  5190. name: "Normal",
  5191. height: math.unit(7.2, "meter"),
  5192. default: true
  5193. }
  5194. ]
  5195. ))
  5196. characterMakers.push(() => makeCharacter(
  5197. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5198. {
  5199. front: {
  5200. height: math.unit(6, "feet"),
  5201. weight: math.unit(175, "lb"),
  5202. name: "Front",
  5203. image: {
  5204. source: "./media/characters/xera/front.svg",
  5205. extra: 2377 / 1972,
  5206. bottom: 75.5 / 2452
  5207. }
  5208. },
  5209. side: {
  5210. height: math.unit(6, "feet"),
  5211. weight: math.unit(175, "lb"),
  5212. name: "Side",
  5213. image: {
  5214. source: "./media/characters/xera/side.svg",
  5215. extra: 2345 / 2019,
  5216. bottom: 39.7 / 2384
  5217. }
  5218. },
  5219. back: {
  5220. height: math.unit(6, "feet"),
  5221. weight: math.unit(175, "lb"),
  5222. name: "Back",
  5223. image: {
  5224. source: "./media/characters/xera/back.svg",
  5225. extra: 2095 / 1984,
  5226. bottom: 67 / 2166
  5227. }
  5228. },
  5229. },
  5230. [
  5231. {
  5232. name: "Small",
  5233. height: math.unit(10, "feet")
  5234. },
  5235. {
  5236. name: "Macro",
  5237. height: math.unit(500, "meters"),
  5238. default: true
  5239. },
  5240. {
  5241. name: "Macro+",
  5242. height: math.unit(10, "km")
  5243. },
  5244. {
  5245. name: "Gigamacro",
  5246. height: math.unit(25000, "km")
  5247. },
  5248. {
  5249. name: "Teramacro",
  5250. height: math.unit(3e6, "km")
  5251. }
  5252. ]
  5253. ))
  5254. characterMakers.push(() => makeCharacter(
  5255. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5256. {
  5257. front: {
  5258. height: math.unit(6, "feet"),
  5259. weight: math.unit(175, "lb"),
  5260. name: "Front",
  5261. image: {
  5262. source: "./media/characters/nebula/front.svg",
  5263. extra: 2566 / 2362,
  5264. bottom: 81 / 2644
  5265. }
  5266. }
  5267. },
  5268. [
  5269. {
  5270. name: "Small",
  5271. height: math.unit(4.5, "meters")
  5272. },
  5273. {
  5274. name: "Macro",
  5275. height: math.unit(1500, "meters"),
  5276. default: true
  5277. },
  5278. {
  5279. name: "Megamacro",
  5280. height: math.unit(150, "km")
  5281. },
  5282. {
  5283. name: "Gigamacro",
  5284. height: math.unit(27000, "km")
  5285. }
  5286. ]
  5287. ))
  5288. characterMakers.push(() => makeCharacter(
  5289. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5290. {
  5291. front: {
  5292. height: math.unit(6, "feet"),
  5293. weight: math.unit(225, "lb"),
  5294. name: "Front",
  5295. image: {
  5296. source: "./media/characters/abysgar/front.svg",
  5297. extra: 1739/1614,
  5298. bottom: 71/1810
  5299. }
  5300. },
  5301. frontNsfw: {
  5302. height: math.unit(6, "feet"),
  5303. weight: math.unit(225, "lb"),
  5304. name: "Front (NSFW)",
  5305. image: {
  5306. source: "./media/characters/abysgar/front-nsfw.svg",
  5307. extra: 1739/1614,
  5308. bottom: 71/1810
  5309. }
  5310. },
  5311. back: {
  5312. height: math.unit(4.6, "feet"),
  5313. weight: math.unit(225, "lb"),
  5314. name: "Back",
  5315. image: {
  5316. source: "./media/characters/abysgar/back.svg",
  5317. extra: 1384/1327,
  5318. bottom: 0/1384
  5319. }
  5320. },
  5321. head: {
  5322. height: math.unit(1.25, "feet"),
  5323. name: "Head",
  5324. image: {
  5325. source: "./media/characters/abysgar/head.svg",
  5326. extra: 669/569,
  5327. bottom: 0/669
  5328. }
  5329. },
  5330. },
  5331. [
  5332. {
  5333. name: "Small",
  5334. height: math.unit(4.5, "meters")
  5335. },
  5336. {
  5337. name: "Macro",
  5338. height: math.unit(1250, "meters"),
  5339. default: true
  5340. },
  5341. {
  5342. name: "Megamacro",
  5343. height: math.unit(125, "km")
  5344. },
  5345. {
  5346. name: "Gigamacro",
  5347. height: math.unit(26000, "km")
  5348. }
  5349. ]
  5350. ))
  5351. characterMakers.push(() => makeCharacter(
  5352. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5353. {
  5354. front: {
  5355. height: math.unit(6, "feet"),
  5356. weight: math.unit(180, "lb"),
  5357. name: "Front",
  5358. image: {
  5359. source: "./media/characters/yakuz/front.svg"
  5360. }
  5361. }
  5362. },
  5363. [
  5364. {
  5365. name: "Small",
  5366. height: math.unit(5, "meters")
  5367. },
  5368. {
  5369. name: "Macro",
  5370. height: math.unit(1500, "meters"),
  5371. default: true
  5372. },
  5373. {
  5374. name: "Megamacro",
  5375. height: math.unit(200, "km")
  5376. },
  5377. {
  5378. name: "Gigamacro",
  5379. height: math.unit(100000, "km")
  5380. }
  5381. ]
  5382. ))
  5383. characterMakers.push(() => makeCharacter(
  5384. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5385. {
  5386. front: {
  5387. height: math.unit(6, "feet"),
  5388. weight: math.unit(175, "lb"),
  5389. name: "Front",
  5390. image: {
  5391. source: "./media/characters/mirova/front.svg",
  5392. extra: 3334 / 3071,
  5393. bottom: 42 / 3375.6
  5394. }
  5395. }
  5396. },
  5397. [
  5398. {
  5399. name: "Small",
  5400. height: math.unit(5, "meters")
  5401. },
  5402. {
  5403. name: "Macro",
  5404. height: math.unit(900, "meters"),
  5405. default: true
  5406. },
  5407. {
  5408. name: "Megamacro",
  5409. height: math.unit(135, "km")
  5410. },
  5411. {
  5412. name: "Gigamacro",
  5413. height: math.unit(20000, "km")
  5414. }
  5415. ]
  5416. ))
  5417. characterMakers.push(() => makeCharacter(
  5418. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5419. {
  5420. side: {
  5421. height: math.unit(28.35, "feet"),
  5422. weight: math.unit(99.75, "tons"),
  5423. name: "Side",
  5424. image: {
  5425. source: "./media/characters/asana-mech/side.svg",
  5426. extra: 923 / 699,
  5427. bottom: 50 / 975
  5428. }
  5429. },
  5430. chaingun: {
  5431. height: math.unit(7, "feet"),
  5432. weight: math.unit(2400, "lb"),
  5433. name: "Chaingun",
  5434. image: {
  5435. source: "./media/characters/asana-mech/chaingun.svg"
  5436. }
  5437. },
  5438. laser: {
  5439. height: math.unit(7.12, "feet"),
  5440. weight: math.unit(2000, "lb"),
  5441. name: "Laser",
  5442. image: {
  5443. source: "./media/characters/asana-mech/laser.svg"
  5444. }
  5445. },
  5446. },
  5447. [
  5448. {
  5449. name: "Normal",
  5450. height: math.unit(28.35, "feet"),
  5451. default: true
  5452. },
  5453. {
  5454. name: "Macro",
  5455. height: math.unit(2500, "feet")
  5456. },
  5457. {
  5458. name: "Megamacro",
  5459. height: math.unit(25, "miles")
  5460. },
  5461. {
  5462. name: "Examacro",
  5463. height: math.unit(6e8, "lightyears")
  5464. },
  5465. ]
  5466. ))
  5467. characterMakers.push(() => makeCharacter(
  5468. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5469. {
  5470. front: {
  5471. height: math.unit(5, "meters"),
  5472. weight: math.unit(1000, "kg"),
  5473. name: "Front",
  5474. image: {
  5475. source: "./media/characters/asche/front.svg",
  5476. extra: 1258 / 1190,
  5477. bottom: 47 / 1305
  5478. }
  5479. },
  5480. frontUnderwear: {
  5481. height: math.unit(5, "meters"),
  5482. weight: math.unit(1000, "kg"),
  5483. name: "Front (Underwear)",
  5484. image: {
  5485. source: "./media/characters/asche/front-underwear.svg",
  5486. extra: 1258 / 1190,
  5487. bottom: 47 / 1305
  5488. }
  5489. },
  5490. frontDressed: {
  5491. height: math.unit(5, "meters"),
  5492. weight: math.unit(1000, "kg"),
  5493. name: "Front (Dressed)",
  5494. image: {
  5495. source: "./media/characters/asche/front-dressed.svg",
  5496. extra: 1258 / 1190,
  5497. bottom: 47 / 1305
  5498. }
  5499. },
  5500. frontArmor: {
  5501. height: math.unit(5, "meters"),
  5502. weight: math.unit(1000, "kg"),
  5503. name: "Front (Armored)",
  5504. image: {
  5505. source: "./media/characters/asche/front-armored.svg",
  5506. extra: 1374 / 1308,
  5507. bottom: 23 / 1397
  5508. }
  5509. },
  5510. mp724: {
  5511. height: math.unit(0.96, "meters"),
  5512. weight: math.unit(38, "kg"),
  5513. name: "H&K MP724",
  5514. image: {
  5515. source: "./media/characters/asche/h&k-mp724.svg"
  5516. }
  5517. },
  5518. side: {
  5519. height: math.unit(5, "meters"),
  5520. weight: math.unit(1000, "kg"),
  5521. name: "Side",
  5522. image: {
  5523. source: "./media/characters/asche/side.svg",
  5524. extra: 1717 / 1609,
  5525. bottom: 0.005
  5526. }
  5527. },
  5528. back: {
  5529. height: math.unit(5, "meters"),
  5530. weight: math.unit(1000, "kg"),
  5531. name: "Back",
  5532. image: {
  5533. source: "./media/characters/asche/back.svg",
  5534. extra: 1570 / 1501
  5535. }
  5536. },
  5537. },
  5538. [
  5539. {
  5540. name: "DEFCON 5",
  5541. height: math.unit(5, "meters")
  5542. },
  5543. {
  5544. name: "DEFCON 4",
  5545. height: math.unit(500, "meters"),
  5546. default: true
  5547. },
  5548. {
  5549. name: "DEFCON 3",
  5550. height: math.unit(5, "km")
  5551. },
  5552. {
  5553. name: "DEFCON 2",
  5554. height: math.unit(500, "km")
  5555. },
  5556. {
  5557. name: "DEFCON 1",
  5558. height: math.unit(500000, "km")
  5559. },
  5560. {
  5561. name: "DEFCON 0",
  5562. height: math.unit(3, "gigaparsecs")
  5563. },
  5564. ]
  5565. ))
  5566. characterMakers.push(() => makeCharacter(
  5567. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5568. {
  5569. front: {
  5570. height: math.unit(7, "feet"),
  5571. weight: math.unit(92.7, "kg"),
  5572. name: "Front",
  5573. image: {
  5574. source: "./media/characters/gale/front.svg",
  5575. extra: 977/919,
  5576. bottom: 105/1082
  5577. }
  5578. },
  5579. side: {
  5580. height: math.unit(6.7, "feet"),
  5581. weight: math.unit(92.7, "kg"),
  5582. name: "Side",
  5583. image: {
  5584. source: "./media/characters/gale/side.svg",
  5585. extra: 978/922,
  5586. bottom: 140/1118
  5587. }
  5588. },
  5589. back: {
  5590. height: math.unit(7, "feet"),
  5591. weight: math.unit(92.7, "kg"),
  5592. name: "Back",
  5593. image: {
  5594. source: "./media/characters/gale/back.svg",
  5595. extra: 966/920,
  5596. bottom: 61/1027
  5597. }
  5598. },
  5599. maw: {
  5600. height: math.unit(2.23, "feet"),
  5601. name: "Maw",
  5602. image: {
  5603. source: "./media/characters/gale/maw.svg"
  5604. }
  5605. },
  5606. foot: {
  5607. height: math.unit(2.1, "feet"),
  5608. name: "Foot",
  5609. image: {
  5610. source: "./media/characters/gale/foot.svg"
  5611. }
  5612. },
  5613. },
  5614. [
  5615. {
  5616. name: "Normal",
  5617. height: math.unit(7, "feet")
  5618. },
  5619. {
  5620. name: "Macro",
  5621. height: math.unit(150, "feet"),
  5622. default: true
  5623. },
  5624. {
  5625. name: "Macro+",
  5626. height: math.unit(300, "feet")
  5627. },
  5628. ]
  5629. ))
  5630. characterMakers.push(() => makeCharacter(
  5631. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5632. {
  5633. front: {
  5634. height: math.unit(5 + 10/12, "feet"),
  5635. weight: math.unit(67, "kg"),
  5636. name: "Front",
  5637. image: {
  5638. source: "./media/characters/draylen/front.svg",
  5639. extra: 832/777,
  5640. bottom: 85/917
  5641. }
  5642. }
  5643. },
  5644. [
  5645. {
  5646. name: "Normal",
  5647. height: math.unit(5 + 10/12, "feet")
  5648. },
  5649. {
  5650. name: "Macro",
  5651. height: math.unit(150, "feet"),
  5652. default: true
  5653. }
  5654. ]
  5655. ))
  5656. characterMakers.push(() => makeCharacter(
  5657. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5658. {
  5659. front: {
  5660. height: math.unit(7 + 9 / 12, "feet"),
  5661. weight: math.unit(379, "lbs"),
  5662. name: "Front",
  5663. image: {
  5664. source: "./media/characters/chez/front.svg"
  5665. }
  5666. },
  5667. side: {
  5668. height: math.unit(7 + 9 / 12, "feet"),
  5669. weight: math.unit(379, "lbs"),
  5670. name: "Side",
  5671. image: {
  5672. source: "./media/characters/chez/side.svg"
  5673. }
  5674. }
  5675. },
  5676. [
  5677. {
  5678. name: "Normal",
  5679. height: math.unit(7 + 9 / 12, "feet"),
  5680. default: true
  5681. },
  5682. {
  5683. name: "God King",
  5684. height: math.unit(9750000, "meters")
  5685. }
  5686. ]
  5687. ))
  5688. characterMakers.push(() => makeCharacter(
  5689. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5690. {
  5691. front: {
  5692. height: math.unit(6, "feet"),
  5693. weight: math.unit(275, "lbs"),
  5694. name: "Front",
  5695. image: {
  5696. source: "./media/characters/kaylum/front.svg",
  5697. bottom: 0.01,
  5698. extra: 1166 / 1031
  5699. }
  5700. },
  5701. frontWingless: {
  5702. height: math.unit(6, "feet"),
  5703. weight: math.unit(275, "lbs"),
  5704. name: "Front (Wingless)",
  5705. image: {
  5706. source: "./media/characters/kaylum/front-wingless.svg",
  5707. bottom: 0.01,
  5708. extra: 1117 / 1031
  5709. }
  5710. }
  5711. },
  5712. [
  5713. {
  5714. name: "Normal",
  5715. height: math.unit(3.05, "meters")
  5716. },
  5717. {
  5718. name: "Master",
  5719. height: math.unit(5.5, "meters")
  5720. },
  5721. {
  5722. name: "Rampage",
  5723. height: math.unit(19, "meters")
  5724. },
  5725. {
  5726. name: "Macro Lite",
  5727. height: math.unit(37, "meters")
  5728. },
  5729. {
  5730. name: "Hyper Predator",
  5731. height: math.unit(61, "meters")
  5732. },
  5733. {
  5734. name: "Macro",
  5735. height: math.unit(138, "meters"),
  5736. default: true
  5737. }
  5738. ]
  5739. ))
  5740. characterMakers.push(() => makeCharacter(
  5741. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5742. {
  5743. front: {
  5744. height: math.unit(5 + 5 / 12, "feet"),
  5745. weight: math.unit(120, "lbs"),
  5746. name: "Front",
  5747. image: {
  5748. source: "./media/characters/geta/front.svg",
  5749. extra: 1003/933,
  5750. bottom: 21/1024
  5751. }
  5752. },
  5753. paw: {
  5754. height: math.unit(0.35, "feet"),
  5755. name: "Paw",
  5756. image: {
  5757. source: "./media/characters/geta/paw.svg"
  5758. }
  5759. },
  5760. },
  5761. [
  5762. {
  5763. name: "Micro",
  5764. height: math.unit(3, "inches"),
  5765. default: true
  5766. },
  5767. {
  5768. name: "Normal",
  5769. height: math.unit(5 + 5 / 12, "feet")
  5770. }
  5771. ]
  5772. ))
  5773. characterMakers.push(() => makeCharacter(
  5774. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5775. {
  5776. front: {
  5777. height: math.unit(6, "feet"),
  5778. weight: math.unit(300, "lbs"),
  5779. name: "Front",
  5780. image: {
  5781. source: "./media/characters/tyrnn/front.svg"
  5782. }
  5783. }
  5784. },
  5785. [
  5786. {
  5787. name: "Main Height",
  5788. height: math.unit(355, "feet"),
  5789. default: true
  5790. },
  5791. {
  5792. name: "Fave. Height",
  5793. height: math.unit(2400, "feet")
  5794. }
  5795. ]
  5796. ))
  5797. characterMakers.push(() => makeCharacter(
  5798. { name: "Apple", species: ["elephant"], 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/appledectomy/front.svg"
  5806. }
  5807. }
  5808. },
  5809. [
  5810. {
  5811. name: "Macro",
  5812. height: math.unit(2500, "feet")
  5813. },
  5814. {
  5815. name: "Megamacro",
  5816. height: math.unit(50, "miles"),
  5817. default: true
  5818. },
  5819. {
  5820. name: "Gigamacro",
  5821. height: math.unit(5000, "miles")
  5822. },
  5823. {
  5824. name: "Teramacro",
  5825. height: math.unit(250000, "miles")
  5826. },
  5827. ]
  5828. ))
  5829. characterMakers.push(() => makeCharacter(
  5830. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5831. {
  5832. front: {
  5833. height: math.unit(6, "feet"),
  5834. weight: math.unit(200, "lbs"),
  5835. name: "Front",
  5836. image: {
  5837. source: "./media/characters/vulpes/front.svg",
  5838. extra: 573 / 543,
  5839. bottom: 0.033
  5840. }
  5841. },
  5842. side: {
  5843. height: math.unit(6, "feet"),
  5844. weight: math.unit(200, "lbs"),
  5845. name: "Side",
  5846. image: {
  5847. source: "./media/characters/vulpes/side.svg",
  5848. extra: 577 / 549,
  5849. bottom: 11 / 588
  5850. }
  5851. },
  5852. back: {
  5853. height: math.unit(6, "feet"),
  5854. weight: math.unit(200, "lbs"),
  5855. name: "Back",
  5856. image: {
  5857. source: "./media/characters/vulpes/back.svg",
  5858. extra: 573 / 549,
  5859. bottom: 20 / 593
  5860. }
  5861. },
  5862. feet: {
  5863. height: math.unit(1.276, "feet"),
  5864. name: "Feet",
  5865. image: {
  5866. source: "./media/characters/vulpes/feet.svg"
  5867. }
  5868. },
  5869. maw: {
  5870. height: math.unit(1.18, "feet"),
  5871. name: "Maw",
  5872. image: {
  5873. source: "./media/characters/vulpes/maw.svg"
  5874. }
  5875. },
  5876. },
  5877. [
  5878. {
  5879. name: "Micro",
  5880. height: math.unit(2, "inches")
  5881. },
  5882. {
  5883. name: "Normal",
  5884. height: math.unit(6.3, "feet")
  5885. },
  5886. {
  5887. name: "Macro",
  5888. height: math.unit(850, "feet")
  5889. },
  5890. {
  5891. name: "Megamacro",
  5892. height: math.unit(7500, "feet"),
  5893. default: true
  5894. },
  5895. {
  5896. name: "Gigamacro",
  5897. height: math.unit(570000, "miles")
  5898. }
  5899. ]
  5900. ))
  5901. characterMakers.push(() => makeCharacter(
  5902. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5903. {
  5904. front: {
  5905. height: math.unit(6, "feet"),
  5906. weight: math.unit(210, "lbs"),
  5907. name: "Front",
  5908. image: {
  5909. source: "./media/characters/rain-fallen/front.svg"
  5910. }
  5911. },
  5912. side: {
  5913. height: math.unit(6, "feet"),
  5914. weight: math.unit(210, "lbs"),
  5915. name: "Side",
  5916. image: {
  5917. source: "./media/characters/rain-fallen/side.svg"
  5918. }
  5919. },
  5920. back: {
  5921. height: math.unit(6, "feet"),
  5922. weight: math.unit(210, "lbs"),
  5923. name: "Back",
  5924. image: {
  5925. source: "./media/characters/rain-fallen/back.svg"
  5926. }
  5927. },
  5928. feral: {
  5929. height: math.unit(9, "feet"),
  5930. weight: math.unit(700, "lbs"),
  5931. name: "Feral",
  5932. image: {
  5933. source: "./media/characters/rain-fallen/feral.svg"
  5934. }
  5935. },
  5936. },
  5937. [
  5938. {
  5939. name: "Meddling with Mortals",
  5940. height: math.unit(8 + 8/12, "feet")
  5941. },
  5942. {
  5943. name: "Normal",
  5944. height: math.unit(5, "meter")
  5945. },
  5946. {
  5947. name: "Macro",
  5948. height: math.unit(150, "meter"),
  5949. default: true
  5950. },
  5951. {
  5952. name: "Megamacro",
  5953. height: math.unit(278e6, "meter")
  5954. },
  5955. {
  5956. name: "Gigamacro",
  5957. height: math.unit(2e9, "meter")
  5958. },
  5959. {
  5960. name: "Teramacro",
  5961. height: math.unit(8e12, "meter")
  5962. },
  5963. {
  5964. name: "Devourer",
  5965. height: math.unit(14, "zettameters")
  5966. },
  5967. {
  5968. name: "Scarlet King",
  5969. height: math.unit(18, "yottameters")
  5970. },
  5971. {
  5972. name: "Void",
  5973. height: math.unit(1e88, "yottameters")
  5974. }
  5975. ]
  5976. ))
  5977. characterMakers.push(() => makeCharacter(
  5978. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5979. {
  5980. standing: {
  5981. height: math.unit(6, "feet"),
  5982. weight: math.unit(180, "lbs"),
  5983. name: "Standing",
  5984. image: {
  5985. source: "./media/characters/zaakira/standing.svg",
  5986. extra: 1599/1504,
  5987. bottom: 39/1638
  5988. }
  5989. },
  5990. laying: {
  5991. height: math.unit(3.3, "feet"),
  5992. weight: math.unit(180, "lbs"),
  5993. name: "Laying",
  5994. image: {
  5995. source: "./media/characters/zaakira/laying.svg"
  5996. }
  5997. },
  5998. },
  5999. [
  6000. {
  6001. name: "Normal",
  6002. height: math.unit(12, "feet")
  6003. },
  6004. {
  6005. name: "Macro",
  6006. height: math.unit(279, "feet"),
  6007. default: true
  6008. }
  6009. ]
  6010. ))
  6011. characterMakers.push(() => makeCharacter(
  6012. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  6013. {
  6014. femSfw: {
  6015. height: math.unit(8, "feet"),
  6016. weight: math.unit(350, "lb"),
  6017. name: "Fem",
  6018. image: {
  6019. source: "./media/characters/sigvald/fem-sfw.svg",
  6020. extra: 182 / 164,
  6021. bottom: 8.7 / 190.5
  6022. }
  6023. },
  6024. femNsfw: {
  6025. height: math.unit(8, "feet"),
  6026. weight: math.unit(350, "lb"),
  6027. name: "Fem (NSFW)",
  6028. image: {
  6029. source: "./media/characters/sigvald/fem-nsfw.svg",
  6030. extra: 182 / 164,
  6031. bottom: 8.7 / 190.5
  6032. }
  6033. },
  6034. maleNsfw: {
  6035. height: math.unit(8, "feet"),
  6036. weight: math.unit(350, "lb"),
  6037. name: "Male (NSFW)",
  6038. image: {
  6039. source: "./media/characters/sigvald/male-nsfw.svg",
  6040. extra: 182 / 164,
  6041. bottom: 8.7 / 190.5
  6042. }
  6043. },
  6044. hermNsfw: {
  6045. height: math.unit(8, "feet"),
  6046. weight: math.unit(350, "lb"),
  6047. name: "Herm (NSFW)",
  6048. image: {
  6049. source: "./media/characters/sigvald/herm-nsfw.svg",
  6050. extra: 182 / 164,
  6051. bottom: 8.7 / 190.5
  6052. }
  6053. },
  6054. dick: {
  6055. height: math.unit(2.36, "feet"),
  6056. name: "Dick",
  6057. image: {
  6058. source: "./media/characters/sigvald/dick.svg"
  6059. }
  6060. },
  6061. eye: {
  6062. height: math.unit(0.31, "feet"),
  6063. name: "Eye",
  6064. image: {
  6065. source: "./media/characters/sigvald/eye.svg"
  6066. }
  6067. },
  6068. mouth: {
  6069. height: math.unit(0.92, "feet"),
  6070. name: "Mouth",
  6071. image: {
  6072. source: "./media/characters/sigvald/mouth.svg"
  6073. }
  6074. },
  6075. paws: {
  6076. height: math.unit(2.2, "feet"),
  6077. name: "Paws",
  6078. image: {
  6079. source: "./media/characters/sigvald/paws.svg"
  6080. }
  6081. }
  6082. },
  6083. [
  6084. {
  6085. name: "Normal",
  6086. height: math.unit(8, "feet")
  6087. },
  6088. {
  6089. name: "Large",
  6090. height: math.unit(12, "feet")
  6091. },
  6092. {
  6093. name: "Larger",
  6094. height: math.unit(20, "feet")
  6095. },
  6096. {
  6097. name: "Macro",
  6098. height: math.unit(150, "feet")
  6099. },
  6100. {
  6101. name: "Macro+",
  6102. height: math.unit(200, "feet"),
  6103. default: true
  6104. },
  6105. ]
  6106. ))
  6107. characterMakers.push(() => makeCharacter(
  6108. { name: "Scott", species: ["fox"], tags: ["taur"] },
  6109. {
  6110. side: {
  6111. height: math.unit(12, "feet"),
  6112. weight: math.unit(2000, "kg"),
  6113. name: "Side",
  6114. image: {
  6115. source: "./media/characters/scott/side.svg",
  6116. extra: 754 / 724,
  6117. bottom: 0.069
  6118. }
  6119. },
  6120. upright: {
  6121. height: math.unit(12, "feet"),
  6122. weight: math.unit(2000, "kg"),
  6123. name: "Upright",
  6124. image: {
  6125. source: "./media/characters/scott/upright.svg",
  6126. extra: 3881 / 3722,
  6127. bottom: 0.05
  6128. }
  6129. },
  6130. },
  6131. [
  6132. {
  6133. name: "Normal",
  6134. height: math.unit(12, "feet"),
  6135. default: true
  6136. },
  6137. ]
  6138. ))
  6139. characterMakers.push(() => makeCharacter(
  6140. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6141. {
  6142. side: {
  6143. height: math.unit(8, "meters"),
  6144. weight: math.unit(84755, "lbs"),
  6145. name: "Side",
  6146. image: {
  6147. source: "./media/characters/tobias/side.svg",
  6148. extra: 1474 / 1096,
  6149. bottom: 38.9 / 1513.1235
  6150. }
  6151. },
  6152. maw: {
  6153. height: math.unit(2.3, "meters"),
  6154. name: "Maw",
  6155. image: {
  6156. source: "./media/characters/tobias/maw.svg"
  6157. }
  6158. },
  6159. burp: {
  6160. height: math.unit(2.85, "meters"),
  6161. name: "Burp",
  6162. image: {
  6163. source: "./media/characters/tobias/burp.svg"
  6164. }
  6165. },
  6166. },
  6167. [
  6168. {
  6169. name: "Normal",
  6170. height: math.unit(8, "meters"),
  6171. default: true
  6172. },
  6173. ]
  6174. ))
  6175. characterMakers.push(() => makeCharacter(
  6176. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6177. {
  6178. front: {
  6179. height: math.unit(5.5, "feet"),
  6180. weight: math.unit(400, "lbs"),
  6181. name: "Front",
  6182. image: {
  6183. source: "./media/characters/kieran/front.svg",
  6184. extra: 2694 / 2364,
  6185. bottom: 217 / 2908
  6186. }
  6187. },
  6188. side: {
  6189. height: math.unit(5.5, "feet"),
  6190. weight: math.unit(400, "lbs"),
  6191. name: "Side",
  6192. image: {
  6193. source: "./media/characters/kieran/side.svg",
  6194. extra: 875 / 777,
  6195. bottom: 84.6 / 959
  6196. }
  6197. },
  6198. },
  6199. [
  6200. {
  6201. name: "Normal",
  6202. height: math.unit(5.5, "feet"),
  6203. default: true
  6204. },
  6205. ]
  6206. ))
  6207. characterMakers.push(() => makeCharacter(
  6208. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6209. {
  6210. side: {
  6211. height: math.unit(2, "meters"),
  6212. weight: math.unit(70, "kg"),
  6213. name: "Side",
  6214. image: {
  6215. source: "./media/characters/sanya/side.svg",
  6216. bottom: 0.02,
  6217. extra: 1.02
  6218. }
  6219. },
  6220. },
  6221. [
  6222. {
  6223. name: "Small",
  6224. height: math.unit(2, "meters")
  6225. },
  6226. {
  6227. name: "Normal",
  6228. height: math.unit(3, "meters")
  6229. },
  6230. {
  6231. name: "Macro",
  6232. height: math.unit(16, "meters"),
  6233. default: true
  6234. },
  6235. ]
  6236. ))
  6237. characterMakers.push(() => makeCharacter(
  6238. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6239. {
  6240. front: {
  6241. height: math.unit(2, "meters"),
  6242. weight: math.unit(120, "kg"),
  6243. name: "Front",
  6244. image: {
  6245. source: "./media/characters/miranda/front.svg",
  6246. extra: 195 / 185,
  6247. bottom: 10.9 / 206.5
  6248. }
  6249. },
  6250. back: {
  6251. height: math.unit(2, "meters"),
  6252. weight: math.unit(120, "kg"),
  6253. name: "Back",
  6254. image: {
  6255. source: "./media/characters/miranda/back.svg",
  6256. extra: 201 / 193,
  6257. bottom: 2.3 / 203.7
  6258. }
  6259. },
  6260. },
  6261. [
  6262. {
  6263. name: "Normal",
  6264. height: math.unit(10, "feet"),
  6265. default: true
  6266. }
  6267. ]
  6268. ))
  6269. characterMakers.push(() => makeCharacter(
  6270. { name: "James", species: ["deer"], tags: ["anthro"] },
  6271. {
  6272. side: {
  6273. height: math.unit(2, "meters"),
  6274. weight: math.unit(100, "kg"),
  6275. name: "Front",
  6276. image: {
  6277. source: "./media/characters/james/front.svg",
  6278. extra: 10 / 8.5
  6279. }
  6280. },
  6281. },
  6282. [
  6283. {
  6284. name: "Normal",
  6285. height: math.unit(8.5, "feet"),
  6286. default: true
  6287. }
  6288. ]
  6289. ))
  6290. characterMakers.push(() => makeCharacter(
  6291. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6292. {
  6293. side: {
  6294. height: math.unit(9.5, "feet"),
  6295. weight: math.unit(2500, "lbs"),
  6296. name: "Side",
  6297. image: {
  6298. source: "./media/characters/heather/side.svg"
  6299. }
  6300. },
  6301. },
  6302. [
  6303. {
  6304. name: "Normal",
  6305. height: math.unit(9.5, "feet"),
  6306. default: true
  6307. }
  6308. ]
  6309. ))
  6310. characterMakers.push(() => makeCharacter(
  6311. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6312. {
  6313. side: {
  6314. height: math.unit(6.5, "feet"),
  6315. weight: math.unit(400, "lbs"),
  6316. name: "Side",
  6317. image: {
  6318. source: "./media/characters/lukas/side.svg",
  6319. extra: 7.25 / 6.5
  6320. }
  6321. },
  6322. },
  6323. [
  6324. {
  6325. name: "Normal",
  6326. height: math.unit(6.5, "feet"),
  6327. default: true
  6328. }
  6329. ]
  6330. ))
  6331. characterMakers.push(() => makeCharacter(
  6332. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6333. {
  6334. side: {
  6335. height: math.unit(5, "feet"),
  6336. weight: math.unit(3000, "lbs"),
  6337. name: "Side",
  6338. image: {
  6339. source: "./media/characters/louise/side.svg"
  6340. }
  6341. },
  6342. },
  6343. [
  6344. {
  6345. name: "Normal",
  6346. height: math.unit(5, "feet"),
  6347. default: true
  6348. }
  6349. ]
  6350. ))
  6351. characterMakers.push(() => makeCharacter(
  6352. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6353. {
  6354. side: {
  6355. height: math.unit(6, "feet"),
  6356. weight: math.unit(150, "lbs"),
  6357. name: "Side",
  6358. image: {
  6359. source: "./media/characters/ramona/side.svg",
  6360. extra: 871/854,
  6361. bottom: 41/912
  6362. }
  6363. },
  6364. },
  6365. [
  6366. {
  6367. name: "Normal",
  6368. height: math.unit(6 + 4/12, "feet")
  6369. },
  6370. {
  6371. name: "Minimacro",
  6372. height: math.unit(5.3, "meters"),
  6373. default: true
  6374. },
  6375. {
  6376. name: "Macro",
  6377. height: math.unit(20, "stories")
  6378. },
  6379. {
  6380. name: "Macro+",
  6381. height: math.unit(50, "stories")
  6382. },
  6383. ]
  6384. ))
  6385. characterMakers.push(() => makeCharacter(
  6386. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6387. {
  6388. standing: {
  6389. height: math.unit(5.75, "feet"),
  6390. weight: math.unit(160, "lbs"),
  6391. name: "Standing",
  6392. image: {
  6393. source: "./media/characters/deerpuff/standing.svg",
  6394. extra: 682 / 624
  6395. }
  6396. },
  6397. sitting: {
  6398. height: math.unit(5.75 / 1.79, "feet"),
  6399. weight: math.unit(160, "lbs"),
  6400. name: "Sitting",
  6401. image: {
  6402. source: "./media/characters/deerpuff/sitting.svg",
  6403. bottom: 44 / 400,
  6404. extra: 1
  6405. }
  6406. },
  6407. taurLaying: {
  6408. height: math.unit(6, "feet"),
  6409. weight: math.unit(400, "lbs"),
  6410. name: "Taur (Laying)",
  6411. image: {
  6412. source: "./media/characters/deerpuff/taur-laying.svg"
  6413. }
  6414. },
  6415. },
  6416. [
  6417. {
  6418. name: "Puffball",
  6419. height: math.unit(6, "inches")
  6420. },
  6421. {
  6422. name: "Normalpuff",
  6423. height: math.unit(5.75, "feet")
  6424. },
  6425. {
  6426. name: "Macropuff",
  6427. height: math.unit(1500, "feet"),
  6428. default: true
  6429. },
  6430. {
  6431. name: "Megapuff",
  6432. height: math.unit(500, "miles")
  6433. },
  6434. {
  6435. name: "Gigapuff",
  6436. height: math.unit(250000, "miles")
  6437. },
  6438. {
  6439. name: "Omegapuff",
  6440. height: math.unit(1000, "lightyears")
  6441. },
  6442. ]
  6443. ))
  6444. characterMakers.push(() => makeCharacter(
  6445. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6446. {
  6447. stomping: {
  6448. height: math.unit(6, "feet"),
  6449. weight: math.unit(170, "lbs"),
  6450. name: "Stomping",
  6451. image: {
  6452. source: "./media/characters/vivian/stomping.svg"
  6453. }
  6454. },
  6455. sitting: {
  6456. height: math.unit(6 / 1.75, "feet"),
  6457. weight: math.unit(170, "lbs"),
  6458. name: "Sitting",
  6459. image: {
  6460. source: "./media/characters/vivian/sitting.svg",
  6461. bottom: 1 / 6.4,
  6462. extra: 1,
  6463. }
  6464. },
  6465. },
  6466. [
  6467. {
  6468. name: "Normal",
  6469. height: math.unit(7, "feet"),
  6470. default: true
  6471. },
  6472. {
  6473. name: "Macro",
  6474. height: math.unit(10, "stories")
  6475. },
  6476. {
  6477. name: "Macro+",
  6478. height: math.unit(30, "stories")
  6479. },
  6480. {
  6481. name: "Megamacro",
  6482. height: math.unit(10, "miles")
  6483. },
  6484. {
  6485. name: "Megamacro+",
  6486. height: math.unit(2750000, "meters")
  6487. },
  6488. ]
  6489. ))
  6490. characterMakers.push(() => makeCharacter(
  6491. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6492. {
  6493. front: {
  6494. height: math.unit(6, "feet"),
  6495. weight: math.unit(160, "lbs"),
  6496. name: "Front",
  6497. image: {
  6498. source: "./media/characters/prince/front.svg",
  6499. extra: 1938/1682,
  6500. bottom: 45/1983
  6501. }
  6502. },
  6503. back: {
  6504. height: math.unit(6, "feet"),
  6505. weight: math.unit(160, "lbs"),
  6506. name: "Back",
  6507. image: {
  6508. source: "./media/characters/prince/back.svg",
  6509. extra: 1955/1726,
  6510. bottom: 6/1961
  6511. }
  6512. },
  6513. },
  6514. [
  6515. {
  6516. name: "Normal",
  6517. height: math.unit(7.75, "feet"),
  6518. default: true
  6519. },
  6520. {
  6521. name: "Not cute",
  6522. height: math.unit(17, "feet")
  6523. },
  6524. {
  6525. name: "I said NOT",
  6526. height: math.unit(91, "feet")
  6527. },
  6528. {
  6529. name: "Please stop",
  6530. height: math.unit(560, "feet")
  6531. },
  6532. {
  6533. name: "What have you done",
  6534. height: math.unit(2200, "feet")
  6535. },
  6536. {
  6537. name: "Deer God",
  6538. height: math.unit(3.6, "miles")
  6539. },
  6540. ]
  6541. ))
  6542. characterMakers.push(() => makeCharacter(
  6543. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6544. {
  6545. standing: {
  6546. height: math.unit(6, "feet"),
  6547. weight: math.unit(300, "lbs"),
  6548. name: "Standing",
  6549. image: {
  6550. source: "./media/characters/psymon/standing.svg",
  6551. extra: 1888 / 1810,
  6552. bottom: 0.05
  6553. }
  6554. },
  6555. slithering: {
  6556. height: math.unit(6, "feet"),
  6557. weight: math.unit(300, "lbs"),
  6558. name: "Slithering",
  6559. image: {
  6560. source: "./media/characters/psymon/slithering.svg",
  6561. extra: 1330 / 1224
  6562. }
  6563. },
  6564. slitheringAlt: {
  6565. height: math.unit(6, "feet"),
  6566. weight: math.unit(300, "lbs"),
  6567. name: "Slithering (Alt)",
  6568. image: {
  6569. source: "./media/characters/psymon/slithering-alt.svg",
  6570. extra: 1330 / 1224
  6571. }
  6572. },
  6573. },
  6574. [
  6575. {
  6576. name: "Normal",
  6577. height: math.unit(11.25, "feet"),
  6578. default: true
  6579. },
  6580. {
  6581. name: "Large",
  6582. height: math.unit(27, "feet")
  6583. },
  6584. {
  6585. name: "Giant",
  6586. height: math.unit(87, "feet")
  6587. },
  6588. {
  6589. name: "Macro",
  6590. height: math.unit(365, "feet")
  6591. },
  6592. {
  6593. name: "Megamacro",
  6594. height: math.unit(3, "miles")
  6595. },
  6596. {
  6597. name: "World Serpent",
  6598. height: math.unit(8000, "miles")
  6599. },
  6600. ]
  6601. ))
  6602. characterMakers.push(() => makeCharacter(
  6603. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6604. {
  6605. front: {
  6606. height: math.unit(6, "feet"),
  6607. weight: math.unit(180, "lbs"),
  6608. name: "Front",
  6609. image: {
  6610. source: "./media/characters/daimos/front.svg",
  6611. extra: 4160 / 3897,
  6612. bottom: 0.021
  6613. }
  6614. }
  6615. },
  6616. [
  6617. {
  6618. name: "Normal",
  6619. height: math.unit(8, "feet"),
  6620. default: true
  6621. },
  6622. {
  6623. name: "Big Dog",
  6624. height: math.unit(22, "feet")
  6625. },
  6626. {
  6627. name: "Macro",
  6628. height: math.unit(127, "feet")
  6629. },
  6630. {
  6631. name: "Megamacro",
  6632. height: math.unit(3600, "feet")
  6633. },
  6634. ]
  6635. ))
  6636. characterMakers.push(() => makeCharacter(
  6637. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6638. {
  6639. side: {
  6640. height: math.unit(6, "feet"),
  6641. weight: math.unit(180, "lbs"),
  6642. name: "Side",
  6643. image: {
  6644. source: "./media/characters/blake/side.svg",
  6645. extra: 1212 / 1120,
  6646. bottom: 0.05
  6647. }
  6648. },
  6649. crouched: {
  6650. height: math.unit(6 * 0.57, "feet"),
  6651. weight: math.unit(180, "lbs"),
  6652. name: "Crouched",
  6653. image: {
  6654. source: "./media/characters/blake/crouched.svg",
  6655. extra: 840 / 587,
  6656. bottom: 0.04
  6657. }
  6658. },
  6659. bent: {
  6660. height: math.unit(6 * 0.75, "feet"),
  6661. weight: math.unit(180, "lbs"),
  6662. name: "Bent",
  6663. image: {
  6664. source: "./media/characters/blake/bent.svg",
  6665. extra: 592 / 544,
  6666. bottom: 0.035
  6667. }
  6668. },
  6669. },
  6670. [
  6671. {
  6672. name: "Normal",
  6673. height: math.unit(8 + 1 / 6, "feet"),
  6674. default: true
  6675. },
  6676. {
  6677. name: "Big Backside",
  6678. height: math.unit(37, "feet")
  6679. },
  6680. {
  6681. name: "Subway Shredder",
  6682. height: math.unit(72, "feet")
  6683. },
  6684. {
  6685. name: "City Carver",
  6686. height: math.unit(1675, "feet")
  6687. },
  6688. {
  6689. name: "Tectonic Tweaker",
  6690. height: math.unit(2300, "miles")
  6691. },
  6692. ]
  6693. ))
  6694. characterMakers.push(() => makeCharacter(
  6695. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6696. {
  6697. front: {
  6698. height: math.unit(6, "feet"),
  6699. weight: math.unit(180, "lbs"),
  6700. name: "Front",
  6701. image: {
  6702. source: "./media/characters/guisetto/front.svg",
  6703. extra: 856 / 817,
  6704. bottom: 0.06
  6705. }
  6706. },
  6707. airborne: {
  6708. height: math.unit(6, "feet"),
  6709. weight: math.unit(180, "lbs"),
  6710. name: "Airborne",
  6711. image: {
  6712. source: "./media/characters/guisetto/airborne.svg",
  6713. extra: 584 / 525
  6714. }
  6715. },
  6716. },
  6717. [
  6718. {
  6719. name: "Normal",
  6720. height: math.unit(10 + 11 / 12, "feet"),
  6721. default: true
  6722. },
  6723. {
  6724. name: "Large",
  6725. height: math.unit(35, "feet")
  6726. },
  6727. {
  6728. name: "Macro",
  6729. height: math.unit(475, "feet")
  6730. },
  6731. ]
  6732. ))
  6733. characterMakers.push(() => makeCharacter(
  6734. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6735. {
  6736. front: {
  6737. height: math.unit(6, "feet"),
  6738. weight: math.unit(180, "lbs"),
  6739. name: "Front",
  6740. image: {
  6741. source: "./media/characters/luxor/front.svg",
  6742. extra: 2940 / 2152
  6743. }
  6744. },
  6745. back: {
  6746. height: math.unit(6, "feet"),
  6747. weight: math.unit(180, "lbs"),
  6748. name: "Back",
  6749. image: {
  6750. source: "./media/characters/luxor/back.svg",
  6751. extra: 1083 / 960
  6752. }
  6753. },
  6754. },
  6755. [
  6756. {
  6757. name: "Normal",
  6758. height: math.unit(5 + 5 / 6, "feet"),
  6759. default: true
  6760. },
  6761. {
  6762. name: "Lamp",
  6763. height: math.unit(50, "feet")
  6764. },
  6765. {
  6766. name: "Lämp",
  6767. height: math.unit(300, "feet")
  6768. },
  6769. {
  6770. name: "The sun is a lamp",
  6771. height: math.unit(250000, "miles")
  6772. },
  6773. ]
  6774. ))
  6775. characterMakers.push(() => makeCharacter(
  6776. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6777. {
  6778. front: {
  6779. height: math.unit(6, "feet"),
  6780. weight: math.unit(50, "lbs"),
  6781. name: "Front",
  6782. image: {
  6783. source: "./media/characters/huoyan/front.svg"
  6784. }
  6785. },
  6786. side: {
  6787. height: math.unit(6, "feet"),
  6788. weight: math.unit(180, "lbs"),
  6789. name: "Side",
  6790. image: {
  6791. source: "./media/characters/huoyan/side.svg"
  6792. }
  6793. },
  6794. },
  6795. [
  6796. {
  6797. name: "Chef",
  6798. height: math.unit(9, "feet")
  6799. },
  6800. {
  6801. name: "Normal",
  6802. height: math.unit(65, "feet"),
  6803. default: true
  6804. },
  6805. {
  6806. name: "Macro",
  6807. height: math.unit(780, "feet")
  6808. },
  6809. {
  6810. name: "Flaming Mountain",
  6811. height: math.unit(4.8, "miles")
  6812. },
  6813. {
  6814. name: "Celestial",
  6815. height: math.unit(765000, "miles")
  6816. },
  6817. ]
  6818. ))
  6819. characterMakers.push(() => makeCharacter(
  6820. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6821. {
  6822. front: {
  6823. height: math.unit(5 + 3 / 4, "feet"),
  6824. weight: math.unit(120, "lbs"),
  6825. name: "Front",
  6826. image: {
  6827. source: "./media/characters/tails/front.svg"
  6828. }
  6829. }
  6830. },
  6831. [
  6832. {
  6833. name: "Normal",
  6834. height: math.unit(5 + 3 / 4, "feet"),
  6835. default: true
  6836. }
  6837. ]
  6838. ))
  6839. characterMakers.push(() => makeCharacter(
  6840. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6841. {
  6842. front: {
  6843. height: math.unit(4, "feet"),
  6844. weight: math.unit(50, "lbs"),
  6845. name: "Front",
  6846. image: {
  6847. source: "./media/characters/rainy/front.svg"
  6848. }
  6849. }
  6850. },
  6851. [
  6852. {
  6853. name: "Macro",
  6854. height: math.unit(800, "feet"),
  6855. default: true
  6856. }
  6857. ]
  6858. ))
  6859. characterMakers.push(() => makeCharacter(
  6860. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6861. {
  6862. front: {
  6863. height: math.unit(6, "feet"),
  6864. weight: math.unit(150, "lbs"),
  6865. name: "Front",
  6866. image: {
  6867. source: "./media/characters/rainier/front.svg"
  6868. }
  6869. }
  6870. },
  6871. [
  6872. {
  6873. name: "Micro",
  6874. height: math.unit(2, "mm"),
  6875. default: true
  6876. }
  6877. ]
  6878. ))
  6879. characterMakers.push(() => makeCharacter(
  6880. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6881. {
  6882. front: {
  6883. height: math.unit(8 + 4/12, "feet"),
  6884. weight: math.unit(450, "kilograms"),
  6885. name: "Front",
  6886. image: {
  6887. source: "./media/characters/andy-renard/front.svg",
  6888. extra: 862/809,
  6889. bottom: 85/947
  6890. },
  6891. extraAttributes: {
  6892. "pawSize": {
  6893. name: "Paw Size",
  6894. power: 2,
  6895. type: "area",
  6896. base: math.unit(0.45*0.3, "meters^2")
  6897. },
  6898. "handSize": {
  6899. name: "Hand Size",
  6900. power: 2,
  6901. type: "area",
  6902. base: math.unit(0.4 * 0.3, "meters^2")
  6903. },
  6904. "cockSize": {
  6905. name: "Cock Length",
  6906. power: 1,
  6907. type: "length",
  6908. base: math.unit(0.75, "meters")
  6909. },
  6910. "ballDiameter": {
  6911. name: "Ball Diameter",
  6912. power: 1,
  6913. type: "length",
  6914. base: math.unit(0.3, "meters")
  6915. },
  6916. "ballVolume": {
  6917. name: "Ball Volume",
  6918. power: 3,
  6919. type: "volume",
  6920. base: math.unit(0.01413716694, "meters^3")
  6921. },
  6922. }
  6923. },
  6924. back: {
  6925. height: math.unit(8 + 4/12, "feet"),
  6926. weight: math.unit(450, "kilograms"),
  6927. name: "Back",
  6928. image: {
  6929. source: "./media/characters/andy-renard/back.svg",
  6930. extra: 1112/1033,
  6931. bottom: 64/1176
  6932. },
  6933. extraAttributes: {
  6934. "pawSize": {
  6935. name: "Paw Size",
  6936. power: 2,
  6937. type: "area",
  6938. base: math.unit(0.45*0.3, "meters^2")
  6939. },
  6940. "handSize": {
  6941. name: "Hand Size",
  6942. power: 2,
  6943. type: "area",
  6944. base: math.unit(0.4 * 0.3, "meters^2")
  6945. },
  6946. "cockSize": {
  6947. name: "Cock Length",
  6948. power: 1,
  6949. type: "length",
  6950. base: math.unit(0.75, "meters")
  6951. },
  6952. "ballDiameter": {
  6953. name: "Ball Diameter",
  6954. power: 1,
  6955. type: "length",
  6956. base: math.unit(0.3, "meters")
  6957. },
  6958. "ballVolume": {
  6959. name: "Ball Volume",
  6960. power: 3,
  6961. type: "volume",
  6962. base: math.unit(0.01413716694, "meters^3")
  6963. },
  6964. }
  6965. },
  6966. },
  6967. [
  6968. {
  6969. name: "Tall",
  6970. height: math.unit(6 + 8/12, "feet")
  6971. },
  6972. {
  6973. name: "Very Tall",
  6974. height: math.unit(8 + 4/12, "feet")
  6975. },
  6976. {
  6977. name: "Mini Macro",
  6978. height: math.unit(15, "feet"),
  6979. default: true
  6980. },
  6981. {
  6982. name: "Giant",
  6983. height: math.unit(50, "feet")
  6984. },
  6985. {
  6986. name: "Nice",
  6987. height: math.unit(69, "feet")
  6988. },
  6989. {
  6990. name: "Macro",
  6991. height: math.unit(100, "feet")
  6992. },
  6993. {
  6994. name: "Enormous",
  6995. height: math.unit(500, "feet")
  6996. },
  6997. {
  6998. name: "Gargantuan",
  6999. height: math.unit(1000, "feet")
  7000. },
  7001. {
  7002. name: "Mega",
  7003. height: math.unit(1, "mile")
  7004. },
  7005. {
  7006. name: "Giga",
  7007. height: math.unit(50, "miles")
  7008. },
  7009. {
  7010. name: "Tera",
  7011. height: math.unit(1000, "miles")
  7012. },
  7013. {
  7014. name: "Cosmic",
  7015. height: math.unit(1.5, "galaxies")
  7016. },
  7017. {
  7018. name: "God",
  7019. height: math.unit(1.5, "universes")
  7020. },
  7021. {
  7022. name: "Chief Execute God",
  7023. height: math.unit(1.5, "multiverses")
  7024. },
  7025. ]
  7026. ))
  7027. characterMakers.push(() => makeCharacter(
  7028. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  7029. {
  7030. front: {
  7031. height: math.unit(6, "feet"),
  7032. weight: math.unit(210, "lbs"),
  7033. name: "Front",
  7034. image: {
  7035. source: "./media/characters/cimmaron/front-sfw.svg",
  7036. extra: 701 / 676,
  7037. bottom: 0.046
  7038. }
  7039. },
  7040. back: {
  7041. height: math.unit(6, "feet"),
  7042. weight: math.unit(210, "lbs"),
  7043. name: "Back",
  7044. image: {
  7045. source: "./media/characters/cimmaron/back-sfw.svg",
  7046. extra: 701 / 676,
  7047. bottom: 0.046
  7048. }
  7049. },
  7050. frontNsfw: {
  7051. height: math.unit(6, "feet"),
  7052. weight: math.unit(210, "lbs"),
  7053. name: "Front (NSFW)",
  7054. image: {
  7055. source: "./media/characters/cimmaron/front-nsfw.svg",
  7056. extra: 701 / 676,
  7057. bottom: 0.046
  7058. }
  7059. },
  7060. backNsfw: {
  7061. height: math.unit(6, "feet"),
  7062. weight: math.unit(210, "lbs"),
  7063. name: "Back (NSFW)",
  7064. image: {
  7065. source: "./media/characters/cimmaron/back-nsfw.svg",
  7066. extra: 701 / 676,
  7067. bottom: 0.046
  7068. }
  7069. },
  7070. dick: {
  7071. height: math.unit(1.714, "feet"),
  7072. name: "Dick",
  7073. image: {
  7074. source: "./media/characters/cimmaron/dick.svg"
  7075. }
  7076. },
  7077. },
  7078. [
  7079. {
  7080. name: "Normal",
  7081. height: math.unit(6, "feet"),
  7082. default: true
  7083. },
  7084. {
  7085. name: "Macro Mayor",
  7086. height: math.unit(350, "meters")
  7087. },
  7088. ]
  7089. ))
  7090. characterMakers.push(() => makeCharacter(
  7091. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  7092. {
  7093. front: {
  7094. height: math.unit(6, "feet"),
  7095. weight: math.unit(200, "lbs"),
  7096. name: "Front",
  7097. image: {
  7098. source: "./media/characters/akari/front.svg",
  7099. extra: 962 / 901,
  7100. bottom: 0.04
  7101. }
  7102. }
  7103. },
  7104. [
  7105. {
  7106. name: "Micro",
  7107. height: math.unit(5, "inches"),
  7108. default: true
  7109. },
  7110. {
  7111. name: "Normal",
  7112. height: math.unit(7, "feet")
  7113. },
  7114. ]
  7115. ))
  7116. characterMakers.push(() => makeCharacter(
  7117. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  7118. {
  7119. front: {
  7120. height: math.unit(6, "feet"),
  7121. weight: math.unit(140, "lbs"),
  7122. name: "Front",
  7123. image: {
  7124. source: "./media/characters/cynosura/front.svg",
  7125. extra: 437/410,
  7126. bottom: 9/446
  7127. }
  7128. },
  7129. back: {
  7130. height: math.unit(6, "feet"),
  7131. weight: math.unit(140, "lbs"),
  7132. name: "Back",
  7133. image: {
  7134. source: "./media/characters/cynosura/back.svg",
  7135. extra: 1304/1160,
  7136. bottom: 71/1375
  7137. }
  7138. },
  7139. },
  7140. [
  7141. {
  7142. name: "Micro",
  7143. height: math.unit(4, "inches")
  7144. },
  7145. {
  7146. name: "Normal",
  7147. height: math.unit(5.75, "feet"),
  7148. default: true
  7149. },
  7150. {
  7151. name: "Tall",
  7152. height: math.unit(10, "feet")
  7153. },
  7154. {
  7155. name: "Big",
  7156. height: math.unit(20, "feet")
  7157. },
  7158. {
  7159. name: "Macro",
  7160. height: math.unit(50, "feet")
  7161. },
  7162. ]
  7163. ))
  7164. characterMakers.push(() => makeCharacter(
  7165. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  7166. {
  7167. front: {
  7168. height: math.unit(13 + 2/12, "feet"),
  7169. weight: math.unit(800, "kg"),
  7170. name: "Front",
  7171. image: {
  7172. source: "./media/characters/gin/front.svg",
  7173. extra: 1312/1191,
  7174. bottom: 45/1357
  7175. }
  7176. },
  7177. mouth: {
  7178. height: math.unit(2.39 * 1.8, "feet"),
  7179. name: "Mouth",
  7180. image: {
  7181. source: "./media/characters/gin/mouth.svg"
  7182. }
  7183. },
  7184. hand: {
  7185. height: math.unit(1.57 * 2.19, "feet"),
  7186. name: "Hand",
  7187. image: {
  7188. source: "./media/characters/gin/hand.svg"
  7189. }
  7190. },
  7191. foot: {
  7192. height: math.unit(6 / 4.25 * 2.19, "feet"),
  7193. name: "Foot",
  7194. image: {
  7195. source: "./media/characters/gin/foot.svg"
  7196. }
  7197. },
  7198. sole: {
  7199. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7200. name: "Sole",
  7201. image: {
  7202. source: "./media/characters/gin/sole.svg"
  7203. }
  7204. },
  7205. },
  7206. [
  7207. {
  7208. name: "Very Small",
  7209. height: math.unit(13 + 2 / 12, "feet")
  7210. },
  7211. {
  7212. name: "Micro",
  7213. height: math.unit(600, "miles")
  7214. },
  7215. {
  7216. name: "Regular",
  7217. height: math.unit(20, "earths"),
  7218. default: true
  7219. },
  7220. {
  7221. name: "Macro",
  7222. height: math.unit(2.2, "solarradii")
  7223. },
  7224. {
  7225. name: "Teramacro",
  7226. height: math.unit(1.2, "galaxies")
  7227. },
  7228. {
  7229. name: "Omegamacro",
  7230. height: math.unit(200, "universes")
  7231. },
  7232. ]
  7233. ))
  7234. characterMakers.push(() => makeCharacter(
  7235. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7236. {
  7237. front: {
  7238. height: math.unit(6 + 1 / 6, "feet"),
  7239. weight: math.unit(178, "lbs"),
  7240. name: "Front",
  7241. image: {
  7242. source: "./media/characters/guy/front.svg"
  7243. }
  7244. }
  7245. },
  7246. [
  7247. {
  7248. name: "Normal",
  7249. height: math.unit(6 + 1 / 6, "feet"),
  7250. default: true
  7251. },
  7252. {
  7253. name: "Large",
  7254. height: math.unit(25 + 7 / 12, "feet")
  7255. },
  7256. {
  7257. name: "Macro",
  7258. height: math.unit(60 + 9 / 12, "feet")
  7259. },
  7260. {
  7261. name: "Macro+",
  7262. height: math.unit(246, "feet")
  7263. },
  7264. {
  7265. name: "Macro++",
  7266. height: math.unit(878, "feet")
  7267. }
  7268. ]
  7269. ))
  7270. characterMakers.push(() => makeCharacter(
  7271. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7272. {
  7273. front: {
  7274. height: math.unit(9, "feet"),
  7275. weight: math.unit(800, "lbs"),
  7276. name: "Front",
  7277. image: {
  7278. source: "./media/characters/tiberius/front.svg",
  7279. extra: 2295 / 2071
  7280. }
  7281. },
  7282. back: {
  7283. height: math.unit(9, "feet"),
  7284. weight: math.unit(800, "lbs"),
  7285. name: "Back",
  7286. image: {
  7287. source: "./media/characters/tiberius/back.svg",
  7288. extra: 2373 / 2160
  7289. }
  7290. },
  7291. },
  7292. [
  7293. {
  7294. name: "Normal",
  7295. height: math.unit(9, "feet"),
  7296. default: true
  7297. }
  7298. ]
  7299. ))
  7300. characterMakers.push(() => makeCharacter(
  7301. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7302. {
  7303. front: {
  7304. height: math.unit(6, "feet"),
  7305. weight: math.unit(600, "lbs"),
  7306. name: "Front",
  7307. image: {
  7308. source: "./media/characters/surgo/front.svg",
  7309. extra: 3591 / 2227
  7310. }
  7311. },
  7312. back: {
  7313. height: math.unit(6, "feet"),
  7314. weight: math.unit(600, "lbs"),
  7315. name: "Back",
  7316. image: {
  7317. source: "./media/characters/surgo/back.svg",
  7318. extra: 3557 / 2228
  7319. }
  7320. },
  7321. laying: {
  7322. height: math.unit(6 * 0.85, "feet"),
  7323. weight: math.unit(600, "lbs"),
  7324. name: "Laying",
  7325. image: {
  7326. source: "./media/characters/surgo/laying.svg"
  7327. }
  7328. },
  7329. },
  7330. [
  7331. {
  7332. name: "Normal",
  7333. height: math.unit(6, "feet"),
  7334. default: true
  7335. }
  7336. ]
  7337. ))
  7338. characterMakers.push(() => makeCharacter(
  7339. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7340. {
  7341. side: {
  7342. height: math.unit(6, "feet"),
  7343. weight: math.unit(150, "lbs"),
  7344. name: "Side",
  7345. image: {
  7346. source: "./media/characters/cibus/side.svg",
  7347. extra: 800 / 400
  7348. }
  7349. },
  7350. },
  7351. [
  7352. {
  7353. name: "Normal",
  7354. height: math.unit(6, "feet"),
  7355. default: true
  7356. }
  7357. ]
  7358. ))
  7359. characterMakers.push(() => makeCharacter(
  7360. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7361. {
  7362. front: {
  7363. height: math.unit(6, "feet"),
  7364. weight: math.unit(240, "lbs"),
  7365. name: "Front",
  7366. image: {
  7367. source: "./media/characters/nibbles/front.svg"
  7368. }
  7369. },
  7370. side: {
  7371. height: math.unit(6, "feet"),
  7372. weight: math.unit(240, "lbs"),
  7373. name: "Side",
  7374. image: {
  7375. source: "./media/characters/nibbles/side.svg"
  7376. }
  7377. },
  7378. },
  7379. [
  7380. {
  7381. name: "Normal",
  7382. height: math.unit(9, "feet"),
  7383. default: true
  7384. }
  7385. ]
  7386. ))
  7387. characterMakers.push(() => makeCharacter(
  7388. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7389. {
  7390. side: {
  7391. height: math.unit(5 + 1 / 6, "feet"),
  7392. weight: math.unit(130, "lbs"),
  7393. name: "Side",
  7394. image: {
  7395. source: "./media/characters/rikky/side.svg",
  7396. extra: 851 / 801
  7397. }
  7398. },
  7399. },
  7400. [
  7401. {
  7402. name: "Normal",
  7403. height: math.unit(5 + 1 / 6, "feet")
  7404. },
  7405. {
  7406. name: "Macro",
  7407. height: math.unit(152, "feet"),
  7408. default: true
  7409. },
  7410. {
  7411. name: "Megamacro",
  7412. height: math.unit(7, "miles")
  7413. }
  7414. ]
  7415. ))
  7416. characterMakers.push(() => makeCharacter(
  7417. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7418. {
  7419. side: {
  7420. height: math.unit(370, "cm"),
  7421. weight: math.unit(350, "lbs"),
  7422. name: "Side",
  7423. image: {
  7424. source: "./media/characters/malfressa/side.svg"
  7425. }
  7426. },
  7427. walking: {
  7428. height: math.unit(370, "cm"),
  7429. weight: math.unit(350, "lbs"),
  7430. name: "Walking",
  7431. image: {
  7432. source: "./media/characters/malfressa/walking.svg"
  7433. }
  7434. },
  7435. feral: {
  7436. height: math.unit(2500, "cm"),
  7437. weight: math.unit(100000, "lbs"),
  7438. name: "Feral",
  7439. image: {
  7440. source: "./media/characters/malfressa/feral.svg",
  7441. extra: 2108 / 837,
  7442. bottom: 0.02
  7443. }
  7444. },
  7445. },
  7446. [
  7447. {
  7448. name: "Normal",
  7449. height: math.unit(370, "cm")
  7450. },
  7451. {
  7452. name: "Macro",
  7453. height: math.unit(300, "meters"),
  7454. default: true
  7455. }
  7456. ]
  7457. ))
  7458. characterMakers.push(() => makeCharacter(
  7459. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7460. {
  7461. front: {
  7462. height: math.unit(6, "feet"),
  7463. weight: math.unit(60, "kg"),
  7464. name: "Front",
  7465. image: {
  7466. source: "./media/characters/jaro/front.svg",
  7467. extra: 845/817,
  7468. bottom: 45/890
  7469. }
  7470. },
  7471. back: {
  7472. height: math.unit(6, "feet"),
  7473. weight: math.unit(60, "kg"),
  7474. name: "Back",
  7475. image: {
  7476. source: "./media/characters/jaro/back.svg",
  7477. extra: 847/817,
  7478. bottom: 34/881
  7479. }
  7480. },
  7481. },
  7482. [
  7483. {
  7484. name: "Micro",
  7485. height: math.unit(7, "inches")
  7486. },
  7487. {
  7488. name: "Normal",
  7489. height: math.unit(5.5, "feet"),
  7490. default: true
  7491. },
  7492. {
  7493. name: "Minimacro",
  7494. height: math.unit(20, "feet")
  7495. },
  7496. {
  7497. name: "Macro",
  7498. height: math.unit(200, "meters")
  7499. }
  7500. ]
  7501. ))
  7502. characterMakers.push(() => makeCharacter(
  7503. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7504. {
  7505. front: {
  7506. height: math.unit(6, "feet"),
  7507. weight: math.unit(195, "lb"),
  7508. name: "Front",
  7509. image: {
  7510. source: "./media/characters/rogue/front.svg"
  7511. }
  7512. },
  7513. },
  7514. [
  7515. {
  7516. name: "Macro",
  7517. height: math.unit(90, "feet"),
  7518. default: true
  7519. },
  7520. ]
  7521. ))
  7522. characterMakers.push(() => makeCharacter(
  7523. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7524. {
  7525. standing: {
  7526. height: math.unit(5 + 8 / 12, "feet"),
  7527. weight: math.unit(140, "lb"),
  7528. name: "Standing",
  7529. image: {
  7530. source: "./media/characters/piper/standing.svg",
  7531. extra: 1440/1284,
  7532. bottom: 66/1506
  7533. }
  7534. },
  7535. running: {
  7536. height: math.unit(5 + 8 / 12, "feet"),
  7537. weight: math.unit(140, "lb"),
  7538. name: "Running",
  7539. image: {
  7540. source: "./media/characters/piper/running.svg",
  7541. extra: 3948/3655,
  7542. bottom: 0/3948
  7543. }
  7544. },
  7545. sole: {
  7546. height: math.unit(0.81, "feet"),
  7547. weight: math.unit(2, "kg"),
  7548. name: "Sole",
  7549. image: {
  7550. source: "./media/characters/piper/sole.svg"
  7551. }
  7552. },
  7553. nipple: {
  7554. height: math.unit(0.25, "feet"),
  7555. weight: math.unit(1.5, "lb"),
  7556. name: "Nipple",
  7557. image: {
  7558. source: "./media/characters/piper/nipple.svg"
  7559. }
  7560. },
  7561. head: {
  7562. height: math.unit(1.1, "feet"),
  7563. name: "Head",
  7564. image: {
  7565. source: "./media/characters/piper/head.svg"
  7566. }
  7567. },
  7568. },
  7569. [
  7570. {
  7571. name: "Micro",
  7572. height: math.unit(2, "inches")
  7573. },
  7574. {
  7575. name: "Normal",
  7576. height: math.unit(5 + 8 / 12, "feet")
  7577. },
  7578. {
  7579. name: "Macro",
  7580. height: math.unit(250, "feet"),
  7581. default: true
  7582. },
  7583. {
  7584. name: "Megamacro",
  7585. height: math.unit(7, "miles")
  7586. },
  7587. ]
  7588. ))
  7589. characterMakers.push(() => makeCharacter(
  7590. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7591. {
  7592. front: {
  7593. height: math.unit(6, "feet"),
  7594. weight: math.unit(220, "lb"),
  7595. name: "Front",
  7596. image: {
  7597. source: "./media/characters/gemini/front.svg"
  7598. }
  7599. },
  7600. back: {
  7601. height: math.unit(6, "feet"),
  7602. weight: math.unit(220, "lb"),
  7603. name: "Back",
  7604. image: {
  7605. source: "./media/characters/gemini/back.svg"
  7606. }
  7607. },
  7608. kneeling: {
  7609. height: math.unit(6 / 1.5, "feet"),
  7610. weight: math.unit(220, "lb"),
  7611. name: "Kneeling",
  7612. image: {
  7613. source: "./media/characters/gemini/kneeling.svg",
  7614. bottom: 0.02
  7615. }
  7616. },
  7617. },
  7618. [
  7619. {
  7620. name: "Macro",
  7621. height: math.unit(300, "meters"),
  7622. default: true
  7623. },
  7624. {
  7625. name: "Megamacro",
  7626. height: math.unit(6900, "meters")
  7627. },
  7628. ]
  7629. ))
  7630. characterMakers.push(() => makeCharacter(
  7631. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7632. {
  7633. anthro: {
  7634. height: math.unit(2.35, "meters"),
  7635. weight: math.unit(73, "kg"),
  7636. name: "Anthro",
  7637. image: {
  7638. source: "./media/characters/alicia/anthro.svg",
  7639. extra: 2571 / 2385,
  7640. bottom: 75 / 2648
  7641. }
  7642. },
  7643. paw: {
  7644. height: math.unit(1.32, "feet"),
  7645. name: "Paw",
  7646. image: {
  7647. source: "./media/characters/alicia/paw.svg"
  7648. }
  7649. },
  7650. feral: {
  7651. height: math.unit(1.69, "meters"),
  7652. weight: math.unit(73, "kg"),
  7653. name: "Feral",
  7654. image: {
  7655. source: "./media/characters/alicia/feral.svg",
  7656. extra: 2123 / 1715,
  7657. bottom: 222 / 2349
  7658. }
  7659. },
  7660. },
  7661. [
  7662. {
  7663. name: "Normal",
  7664. height: math.unit(2.35, "meters")
  7665. },
  7666. {
  7667. name: "Macro",
  7668. height: math.unit(60, "meters"),
  7669. default: true
  7670. },
  7671. {
  7672. name: "Megamacro",
  7673. height: math.unit(10000, "kilometers")
  7674. },
  7675. ]
  7676. ))
  7677. characterMakers.push(() => makeCharacter(
  7678. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7679. {
  7680. front: {
  7681. height: math.unit(7, "feet"),
  7682. weight: math.unit(250, "lbs"),
  7683. name: "Front",
  7684. image: {
  7685. source: "./media/characters/archy/front.svg"
  7686. }
  7687. }
  7688. },
  7689. [
  7690. {
  7691. name: "Micro",
  7692. height: math.unit(1, "inch")
  7693. },
  7694. {
  7695. name: "Shorty",
  7696. height: math.unit(5, "feet")
  7697. },
  7698. {
  7699. name: "Normal",
  7700. height: math.unit(7, "feet")
  7701. },
  7702. {
  7703. name: "Macro",
  7704. height: math.unit(600, "meters"),
  7705. default: true
  7706. },
  7707. {
  7708. name: "Megamacro",
  7709. height: math.unit(1, "mile")
  7710. },
  7711. ]
  7712. ))
  7713. characterMakers.push(() => makeCharacter(
  7714. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7715. {
  7716. front: {
  7717. height: math.unit(1.65, "meters"),
  7718. weight: math.unit(74, "kg"),
  7719. name: "Front",
  7720. image: {
  7721. source: "./media/characters/berri/front.svg",
  7722. extra: 857 / 837,
  7723. bottom: 18 / 877
  7724. }
  7725. },
  7726. bum: {
  7727. height: math.unit(1.46, "feet"),
  7728. name: "Bum",
  7729. image: {
  7730. source: "./media/characters/berri/bum.svg"
  7731. }
  7732. },
  7733. mouth: {
  7734. height: math.unit(0.44, "feet"),
  7735. name: "Mouth",
  7736. image: {
  7737. source: "./media/characters/berri/mouth.svg"
  7738. }
  7739. },
  7740. paw: {
  7741. height: math.unit(0.826, "feet"),
  7742. name: "Paw",
  7743. image: {
  7744. source: "./media/characters/berri/paw.svg"
  7745. }
  7746. },
  7747. },
  7748. [
  7749. {
  7750. name: "Normal",
  7751. height: math.unit(1.65, "meters")
  7752. },
  7753. {
  7754. name: "Macro",
  7755. height: math.unit(60, "m"),
  7756. default: true
  7757. },
  7758. {
  7759. name: "Megamacro",
  7760. height: math.unit(9.213, "km")
  7761. },
  7762. {
  7763. name: "Planet Eater",
  7764. height: math.unit(489, "megameters")
  7765. },
  7766. {
  7767. name: "Teramacro",
  7768. height: math.unit(2471635000000, "meters")
  7769. },
  7770. {
  7771. name: "Examacro",
  7772. height: math.unit(8.0624e+26, "meters")
  7773. }
  7774. ]
  7775. ))
  7776. characterMakers.push(() => makeCharacter(
  7777. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7778. {
  7779. front: {
  7780. height: math.unit(1.72, "meters"),
  7781. weight: math.unit(68, "kg"),
  7782. name: "Front",
  7783. image: {
  7784. source: "./media/characters/lexi/front.svg"
  7785. }
  7786. }
  7787. },
  7788. [
  7789. {
  7790. name: "Very Smol",
  7791. height: math.unit(10, "mm")
  7792. },
  7793. {
  7794. name: "Micro",
  7795. height: math.unit(6.8, "cm"),
  7796. default: true
  7797. },
  7798. {
  7799. name: "Normal",
  7800. height: math.unit(1.72, "m")
  7801. }
  7802. ]
  7803. ))
  7804. characterMakers.push(() => makeCharacter(
  7805. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7806. {
  7807. front: {
  7808. height: math.unit(1.69, "meters"),
  7809. weight: math.unit(68, "kg"),
  7810. name: "Front",
  7811. image: {
  7812. source: "./media/characters/martin/front.svg",
  7813. extra: 596 / 581
  7814. }
  7815. }
  7816. },
  7817. [
  7818. {
  7819. name: "Micro",
  7820. height: math.unit(6.85, "cm"),
  7821. default: true
  7822. },
  7823. {
  7824. name: "Normal",
  7825. height: math.unit(1.69, "m")
  7826. }
  7827. ]
  7828. ))
  7829. characterMakers.push(() => makeCharacter(
  7830. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7831. {
  7832. front: {
  7833. height: math.unit(1.69, "meters"),
  7834. weight: math.unit(68, "kg"),
  7835. name: "Front",
  7836. image: {
  7837. source: "./media/characters/juno/front.svg"
  7838. }
  7839. }
  7840. },
  7841. [
  7842. {
  7843. name: "Micro",
  7844. height: math.unit(7, "cm")
  7845. },
  7846. {
  7847. name: "Normal",
  7848. height: math.unit(1.89, "m")
  7849. },
  7850. {
  7851. name: "Macro",
  7852. height: math.unit(353, "meters"),
  7853. default: true
  7854. }
  7855. ]
  7856. ))
  7857. characterMakers.push(() => makeCharacter(
  7858. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7859. {
  7860. front: {
  7861. height: math.unit(1.93, "meters"),
  7862. weight: math.unit(83, "kg"),
  7863. name: "Front",
  7864. image: {
  7865. source: "./media/characters/samantha/front.svg"
  7866. }
  7867. },
  7868. frontClothed: {
  7869. height: math.unit(1.93, "meters"),
  7870. weight: math.unit(83, "kg"),
  7871. name: "Front (Clothed)",
  7872. image: {
  7873. source: "./media/characters/samantha/front-clothed.svg"
  7874. }
  7875. },
  7876. back: {
  7877. height: math.unit(1.93, "meters"),
  7878. weight: math.unit(83, "kg"),
  7879. name: "Back",
  7880. image: {
  7881. source: "./media/characters/samantha/back.svg"
  7882. }
  7883. },
  7884. },
  7885. [
  7886. {
  7887. name: "Normal",
  7888. height: math.unit(1.93, "m")
  7889. },
  7890. {
  7891. name: "Macro",
  7892. height: math.unit(74, "meters"),
  7893. default: true
  7894. },
  7895. {
  7896. name: "Macro+",
  7897. height: math.unit(223, "meters"),
  7898. },
  7899. {
  7900. name: "Megamacro",
  7901. height: math.unit(8381, "meters"),
  7902. },
  7903. {
  7904. name: "Megamacro+",
  7905. height: math.unit(12000, "kilometers")
  7906. },
  7907. ]
  7908. ))
  7909. characterMakers.push(() => makeCharacter(
  7910. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7911. {
  7912. front: {
  7913. height: math.unit(1.92, "meters"),
  7914. weight: math.unit(80, "kg"),
  7915. name: "Front",
  7916. image: {
  7917. source: "./media/characters/dr-clay/front.svg"
  7918. }
  7919. },
  7920. frontClothed: {
  7921. height: math.unit(1.92, "meters"),
  7922. weight: math.unit(80, "kg"),
  7923. name: "Front (Clothed)",
  7924. image: {
  7925. source: "./media/characters/dr-clay/front-clothed.svg"
  7926. }
  7927. }
  7928. },
  7929. [
  7930. {
  7931. name: "Normal",
  7932. height: math.unit(1.92, "m")
  7933. },
  7934. {
  7935. name: "Macro",
  7936. height: math.unit(214, "meters"),
  7937. default: true
  7938. },
  7939. {
  7940. name: "Macro+",
  7941. height: math.unit(12.237, "meters"),
  7942. },
  7943. {
  7944. name: "Megamacro",
  7945. height: math.unit(557, "megameters"),
  7946. },
  7947. {
  7948. name: "Unimaginable",
  7949. height: math.unit(120e9, "lightyears")
  7950. },
  7951. ]
  7952. ))
  7953. characterMakers.push(() => makeCharacter(
  7954. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7955. {
  7956. front: {
  7957. height: math.unit(2, "meters"),
  7958. weight: math.unit(80, "kg"),
  7959. name: "Front",
  7960. image: {
  7961. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7962. }
  7963. }
  7964. },
  7965. [
  7966. {
  7967. name: "Teramacro",
  7968. height: math.unit(500000, "lightyears"),
  7969. default: true
  7970. },
  7971. ]
  7972. ))
  7973. characterMakers.push(() => makeCharacter(
  7974. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7975. {
  7976. crux: {
  7977. height: math.unit(2, "meters"),
  7978. weight: math.unit(150, "kg"),
  7979. name: "Crux",
  7980. image: {
  7981. source: "./media/characters/vemus/crux.svg",
  7982. extra: 1074/936,
  7983. bottom: 23/1097
  7984. }
  7985. },
  7986. skunkTanuki: {
  7987. height: math.unit(2, "meters"),
  7988. weight: math.unit(150, "kg"),
  7989. name: "Skunk-Tanuki",
  7990. image: {
  7991. source: "./media/characters/vemus/skunk-tanuki.svg",
  7992. extra: 926/893,
  7993. bottom: 20/946
  7994. }
  7995. },
  7996. },
  7997. [
  7998. {
  7999. name: "Normal",
  8000. height: math.unit(4, "meters"),
  8001. default: true
  8002. },
  8003. {
  8004. name: "Big",
  8005. height: math.unit(8, "meters")
  8006. },
  8007. {
  8008. name: "Macro",
  8009. height: math.unit(100, "meters")
  8010. },
  8011. {
  8012. name: "Macro+",
  8013. height: math.unit(1500, "meters")
  8014. },
  8015. {
  8016. name: "Stellar",
  8017. height: math.unit(14e8, "meters")
  8018. },
  8019. ]
  8020. ))
  8021. characterMakers.push(() => makeCharacter(
  8022. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  8023. {
  8024. front: {
  8025. height: math.unit(2, "meters"),
  8026. weight: math.unit(70, "kg"),
  8027. name: "Front",
  8028. image: {
  8029. source: "./media/characters/beherit/front.svg",
  8030. extra: 1234/1109,
  8031. bottom: 55/1289
  8032. }
  8033. }
  8034. },
  8035. [
  8036. {
  8037. name: "Normal",
  8038. height: math.unit(6, "feet")
  8039. },
  8040. {
  8041. name: "Lorg",
  8042. height: math.unit(25, "feet"),
  8043. default: true
  8044. },
  8045. {
  8046. name: "Lorger",
  8047. height: math.unit(75, "feet")
  8048. },
  8049. {
  8050. name: "Macro",
  8051. height: math.unit(200, "meters")
  8052. },
  8053. ]
  8054. ))
  8055. characterMakers.push(() => makeCharacter(
  8056. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  8057. {
  8058. front: {
  8059. height: math.unit(2, "meters"),
  8060. weight: math.unit(150, "kg"),
  8061. name: "Front",
  8062. image: {
  8063. source: "./media/characters/everett/front.svg",
  8064. extra: 1017/866,
  8065. bottom: 86/1103
  8066. }
  8067. },
  8068. paw: {
  8069. height: math.unit(2 / 3.6, "meters"),
  8070. name: "Paw",
  8071. image: {
  8072. source: "./media/characters/everett/paw.svg"
  8073. }
  8074. },
  8075. },
  8076. [
  8077. {
  8078. name: "Normal",
  8079. height: math.unit(15, "feet"),
  8080. default: true
  8081. },
  8082. {
  8083. name: "Lorg",
  8084. height: math.unit(70, "feet"),
  8085. default: true
  8086. },
  8087. {
  8088. name: "Lorger",
  8089. height: math.unit(250, "feet")
  8090. },
  8091. {
  8092. name: "Macro",
  8093. height: math.unit(500, "meters")
  8094. },
  8095. ]
  8096. ))
  8097. characterMakers.push(() => makeCharacter(
  8098. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  8099. {
  8100. front: {
  8101. height: math.unit(2, "meters"),
  8102. weight: math.unit(86, "kg"),
  8103. name: "Front",
  8104. image: {
  8105. source: "./media/characters/rose/front.svg",
  8106. extra: 1785/1636,
  8107. bottom: 30/1815
  8108. },
  8109. form: "liom",
  8110. default: true
  8111. },
  8112. frontSporty: {
  8113. height: math.unit(2, "meters"),
  8114. weight: math.unit(86, "kg"),
  8115. name: "Front (Sporty)",
  8116. image: {
  8117. source: "./media/characters/rose/front-sporty.svg",
  8118. extra: 350/335,
  8119. bottom: 10/360
  8120. },
  8121. form: "liom"
  8122. },
  8123. frontAlt: {
  8124. height: math.unit(1.6, "meters"),
  8125. weight: math.unit(86, "kg"),
  8126. name: "Front (Alt)",
  8127. image: {
  8128. source: "./media/characters/rose/front-alt.svg",
  8129. extra: 299/283,
  8130. bottom: 3/302
  8131. },
  8132. form: "liom"
  8133. },
  8134. plush: {
  8135. height: math.unit(2, "meters"),
  8136. weight: math.unit(86/3, "kg"),
  8137. name: "Plush",
  8138. image: {
  8139. source: "./media/characters/rose/plush.svg",
  8140. extra: 361/337,
  8141. bottom: 11/372
  8142. },
  8143. form: "plush",
  8144. default: true
  8145. },
  8146. faeStanding: {
  8147. height: math.unit(10, "cm"),
  8148. weight: math.unit(10, "grams"),
  8149. name: "Standing",
  8150. image: {
  8151. source: "./media/characters/rose/fae-standing.svg",
  8152. extra: 1189/1060,
  8153. bottom: 27/1216
  8154. },
  8155. form: "fae",
  8156. default: true
  8157. },
  8158. faeSitting: {
  8159. height: math.unit(5, "cm"),
  8160. weight: math.unit(10, "grams"),
  8161. name: "Sitting",
  8162. image: {
  8163. source: "./media/characters/rose/fae-sitting.svg",
  8164. extra: 737/577,
  8165. bottom: 356/1093
  8166. },
  8167. form: "fae"
  8168. },
  8169. faePaw: {
  8170. height: math.unit(1.35, "cm"),
  8171. name: "Paw",
  8172. image: {
  8173. source: "./media/characters/rose/fae-paw.svg"
  8174. },
  8175. form: "fae"
  8176. },
  8177. },
  8178. [
  8179. {
  8180. name: "True Micro",
  8181. height: math.unit(9, "cm"),
  8182. form: "liom"
  8183. },
  8184. {
  8185. name: "Micro",
  8186. height: math.unit(16, "cm"),
  8187. form: "liom"
  8188. },
  8189. {
  8190. name: "Normal",
  8191. height: math.unit(1.85, "meters"),
  8192. default: true,
  8193. form: "liom"
  8194. },
  8195. {
  8196. name: "Mini-Macro",
  8197. height: math.unit(5, "meters"),
  8198. form: "liom"
  8199. },
  8200. {
  8201. name: "Macro",
  8202. height: math.unit(15, "meters"),
  8203. form: "liom"
  8204. },
  8205. {
  8206. name: "True Macro",
  8207. height: math.unit(40, "meters"),
  8208. form: "liom"
  8209. },
  8210. {
  8211. name: "City Scale",
  8212. height: math.unit(1, "km"),
  8213. form: "liom"
  8214. },
  8215. {
  8216. name: "Plushie",
  8217. height: math.unit(9, "cm"),
  8218. form: "plush",
  8219. default: true
  8220. },
  8221. {
  8222. name: "Fae",
  8223. height: math.unit(10, "cm"),
  8224. form: "fae",
  8225. default: true
  8226. },
  8227. ],
  8228. {
  8229. "liom": {
  8230. name: "Liom"
  8231. },
  8232. "plush": {
  8233. name: "Plush"
  8234. },
  8235. "fae": {
  8236. name: "Fae Fox",
  8237. default: true
  8238. }
  8239. }
  8240. ))
  8241. characterMakers.push(() => makeCharacter(
  8242. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8243. {
  8244. front: {
  8245. height: math.unit(2, "meters"),
  8246. weight: math.unit(350, "lbs"),
  8247. name: "Front",
  8248. image: {
  8249. source: "./media/characters/regal/front.svg"
  8250. }
  8251. },
  8252. back: {
  8253. height: math.unit(2, "meters"),
  8254. weight: math.unit(350, "lbs"),
  8255. name: "Back",
  8256. image: {
  8257. source: "./media/characters/regal/back.svg"
  8258. }
  8259. },
  8260. },
  8261. [
  8262. {
  8263. name: "Macro",
  8264. height: math.unit(350, "feet"),
  8265. default: true
  8266. }
  8267. ]
  8268. ))
  8269. characterMakers.push(() => makeCharacter(
  8270. { name: "Opal", species: ["rabbit", "deity"], tags: ["anthro"] },
  8271. {
  8272. standing: {
  8273. height: math.unit(4 + 11/12, "feet"),
  8274. weight: math.unit(100, "lb"),
  8275. name: "Standing",
  8276. image: {
  8277. source: "./media/characters/opal/standing.svg",
  8278. extra: 1588/1513,
  8279. bottom: 23/1611
  8280. }
  8281. },
  8282. sitting: {
  8283. height: math.unit(2.3, "feet"),
  8284. weight: math.unit(100, "lb"),
  8285. name: "Sitting",
  8286. image: {
  8287. source: "./media/characters/opal/sitting.svg",
  8288. extra: 1031/892,
  8289. bottom: 142/1173
  8290. }
  8291. },
  8292. hand: {
  8293. height: math.unit(0.59, "feet"),
  8294. name: "Hand",
  8295. image: {
  8296. source: "./media/characters/opal/hand.svg"
  8297. }
  8298. },
  8299. foot: {
  8300. height: math.unit(0.61, "feet"),
  8301. name: "Foot",
  8302. image: {
  8303. source: "./media/characters/opal/foot.svg"
  8304. }
  8305. },
  8306. },
  8307. [
  8308. {
  8309. name: "Small",
  8310. height: math.unit(4 + 11 / 12, "feet")
  8311. },
  8312. {
  8313. name: "Normal",
  8314. height: math.unit(20, "feet"),
  8315. default: true
  8316. },
  8317. {
  8318. name: "Macro",
  8319. height: math.unit(120, "feet")
  8320. },
  8321. {
  8322. name: "Megamacro",
  8323. height: math.unit(80, "miles")
  8324. },
  8325. {
  8326. name: "True Size",
  8327. height: math.unit(100000, "lightyears")
  8328. },
  8329. ]
  8330. ))
  8331. characterMakers.push(() => makeCharacter(
  8332. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8333. {
  8334. front: {
  8335. height: math.unit(6, "feet"),
  8336. weight: math.unit(200, "lbs"),
  8337. name: "Front",
  8338. image: {
  8339. source: "./media/characters/vector-wuff/front.svg"
  8340. }
  8341. }
  8342. },
  8343. [
  8344. {
  8345. name: "Normal",
  8346. height: math.unit(2.8, "meters")
  8347. },
  8348. {
  8349. name: "Macro",
  8350. height: math.unit(450, "meters"),
  8351. default: true
  8352. },
  8353. {
  8354. name: "Megamacro",
  8355. height: math.unit(15, "kilometers")
  8356. }
  8357. ]
  8358. ))
  8359. characterMakers.push(() => makeCharacter(
  8360. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8361. {
  8362. front: {
  8363. height: math.unit(6, "feet"),
  8364. weight: math.unit(256, "lbs"),
  8365. name: "Front",
  8366. image: {
  8367. source: "./media/characters/dannik/front.svg"
  8368. }
  8369. }
  8370. },
  8371. [
  8372. {
  8373. name: "Macro",
  8374. height: math.unit(69.57, "meters"),
  8375. default: true
  8376. },
  8377. ]
  8378. ))
  8379. characterMakers.push(() => makeCharacter(
  8380. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8381. {
  8382. front: {
  8383. height: math.unit(6, "feet"),
  8384. weight: math.unit(120, "lbs"),
  8385. name: "Front",
  8386. image: {
  8387. source: "./media/characters/azura-saharah/front.svg"
  8388. }
  8389. },
  8390. back: {
  8391. height: math.unit(6, "feet"),
  8392. weight: math.unit(120, "lbs"),
  8393. name: "Back",
  8394. image: {
  8395. source: "./media/characters/azura-saharah/back.svg"
  8396. }
  8397. },
  8398. },
  8399. [
  8400. {
  8401. name: "Macro",
  8402. height: math.unit(100, "feet"),
  8403. default: true
  8404. },
  8405. ]
  8406. ))
  8407. characterMakers.push(() => makeCharacter(
  8408. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8409. {
  8410. side: {
  8411. height: math.unit(5 + 4 / 12, "feet"),
  8412. weight: math.unit(163, "lbs"),
  8413. name: "Side",
  8414. image: {
  8415. source: "./media/characters/kennedy/side.svg"
  8416. }
  8417. }
  8418. },
  8419. [
  8420. {
  8421. name: "Standard Doggo",
  8422. height: math.unit(5 + 4 / 12, "feet")
  8423. },
  8424. {
  8425. name: "Big Doggo",
  8426. height: math.unit(25 + 3 / 12, "feet"),
  8427. default: true
  8428. },
  8429. ]
  8430. ))
  8431. characterMakers.push(() => makeCharacter(
  8432. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8433. {
  8434. front: {
  8435. height: math.unit(5 + 5/12, "feet"),
  8436. weight: math.unit(100, "lbs"),
  8437. name: "Front",
  8438. image: {
  8439. source: "./media/characters/odios-de-lunar/front.svg",
  8440. extra: 1468/1323,
  8441. bottom: 22/1490
  8442. }
  8443. }
  8444. },
  8445. [
  8446. {
  8447. name: "Micro",
  8448. height: math.unit(3, "inches")
  8449. },
  8450. {
  8451. name: "Normal",
  8452. height: math.unit(5.5, "feet"),
  8453. default: true
  8454. },
  8455. {
  8456. name: "Macro",
  8457. height: math.unit(100, "feet")
  8458. },
  8459. ]
  8460. ))
  8461. characterMakers.push(() => makeCharacter(
  8462. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8463. {
  8464. back: {
  8465. height: math.unit(6, "feet"),
  8466. weight: math.unit(220, "lbs"),
  8467. name: "Back",
  8468. image: {
  8469. source: "./media/characters/mandake/back.svg"
  8470. }
  8471. }
  8472. },
  8473. [
  8474. {
  8475. name: "Normal",
  8476. height: math.unit(7, "feet"),
  8477. default: true
  8478. },
  8479. {
  8480. name: "Macro",
  8481. height: math.unit(78, "feet")
  8482. },
  8483. {
  8484. name: "Macro+",
  8485. height: math.unit(300, "meters")
  8486. },
  8487. {
  8488. name: "Macro++",
  8489. height: math.unit(2400, "feet")
  8490. },
  8491. {
  8492. name: "Megamacro",
  8493. height: math.unit(5167, "meters")
  8494. },
  8495. {
  8496. name: "Gigamacro",
  8497. height: math.unit(41769, "miles")
  8498. },
  8499. ]
  8500. ))
  8501. characterMakers.push(() => makeCharacter(
  8502. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8503. {
  8504. front: {
  8505. height: math.unit(6, "feet"),
  8506. weight: math.unit(120, "lbs"),
  8507. name: "Front",
  8508. image: {
  8509. source: "./media/characters/yozey/front.svg"
  8510. }
  8511. },
  8512. frontAlt: {
  8513. height: math.unit(6, "feet"),
  8514. weight: math.unit(120, "lbs"),
  8515. name: "Front (Alt)",
  8516. image: {
  8517. source: "./media/characters/yozey/front-alt.svg"
  8518. }
  8519. },
  8520. side: {
  8521. height: math.unit(6, "feet"),
  8522. weight: math.unit(120, "lbs"),
  8523. name: "Side",
  8524. image: {
  8525. source: "./media/characters/yozey/side.svg"
  8526. }
  8527. },
  8528. },
  8529. [
  8530. {
  8531. name: "Micro",
  8532. height: math.unit(3, "inches"),
  8533. default: true
  8534. },
  8535. {
  8536. name: "Normal",
  8537. height: math.unit(6, "feet")
  8538. }
  8539. ]
  8540. ))
  8541. characterMakers.push(() => makeCharacter(
  8542. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8543. {
  8544. front: {
  8545. height: math.unit(6, "feet"),
  8546. weight: math.unit(103, "lbs"),
  8547. name: "Front",
  8548. image: {
  8549. source: "./media/characters/valeska-voss/front.svg"
  8550. }
  8551. }
  8552. },
  8553. [
  8554. {
  8555. name: "Mini-Sized Sub",
  8556. height: math.unit(3.1, "inches")
  8557. },
  8558. {
  8559. name: "Mid-Sized Sub",
  8560. height: math.unit(6.2, "inches")
  8561. },
  8562. {
  8563. name: "Full-Sized Sub",
  8564. height: math.unit(9.3, "inches")
  8565. },
  8566. {
  8567. name: "Normal",
  8568. height: math.unit(5 + 2 / 12, "foot"),
  8569. default: true
  8570. },
  8571. ]
  8572. ))
  8573. characterMakers.push(() => makeCharacter(
  8574. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8575. {
  8576. front: {
  8577. height: math.unit(6, "feet"),
  8578. weight: math.unit(160, "lbs"),
  8579. name: "Front",
  8580. image: {
  8581. source: "./media/characters/gene-zeta/front.svg",
  8582. extra: 3006 / 2826,
  8583. bottom: 182 / 3188
  8584. }
  8585. }
  8586. },
  8587. [
  8588. {
  8589. name: "Micro",
  8590. height: math.unit(6, "inches")
  8591. },
  8592. {
  8593. name: "Normal",
  8594. height: math.unit(5 + 11 / 12, "foot"),
  8595. default: true
  8596. },
  8597. {
  8598. name: "Macro",
  8599. height: math.unit(140, "feet")
  8600. },
  8601. {
  8602. name: "Supercharged",
  8603. height: math.unit(2500, "feet")
  8604. },
  8605. ]
  8606. ))
  8607. characterMakers.push(() => makeCharacter(
  8608. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8609. {
  8610. front: {
  8611. height: math.unit(6, "feet"),
  8612. weight: math.unit(350, "lbs"),
  8613. name: "Front",
  8614. image: {
  8615. source: "./media/characters/razinox/front.svg",
  8616. extra: 1686 / 1548,
  8617. bottom: 28.2 / 1868
  8618. }
  8619. },
  8620. back: {
  8621. height: math.unit(6, "feet"),
  8622. weight: math.unit(350, "lbs"),
  8623. name: "Back",
  8624. image: {
  8625. source: "./media/characters/razinox/back.svg",
  8626. extra: 1660 / 1590,
  8627. bottom: 15 / 1665
  8628. }
  8629. },
  8630. },
  8631. [
  8632. {
  8633. name: "Normal",
  8634. height: math.unit(10 + 8 / 12, "foot")
  8635. },
  8636. {
  8637. name: "Minimacro",
  8638. height: math.unit(15, "foot")
  8639. },
  8640. {
  8641. name: "Macro",
  8642. height: math.unit(60, "foot"),
  8643. default: true
  8644. },
  8645. {
  8646. name: "Megamacro",
  8647. height: math.unit(5, "miles")
  8648. },
  8649. {
  8650. name: "Gigamacro",
  8651. height: math.unit(6000, "miles")
  8652. },
  8653. ]
  8654. ))
  8655. characterMakers.push(() => makeCharacter(
  8656. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8657. {
  8658. front: {
  8659. height: math.unit(6, "feet"),
  8660. weight: math.unit(150, "lbs"),
  8661. name: "Front",
  8662. image: {
  8663. source: "./media/characters/cobalt/front.svg"
  8664. }
  8665. }
  8666. },
  8667. [
  8668. {
  8669. name: "Normal",
  8670. height: math.unit(8 + 1 / 12, "foot")
  8671. },
  8672. {
  8673. name: "Macro",
  8674. height: math.unit(111, "foot"),
  8675. default: true
  8676. },
  8677. {
  8678. name: "Supracosmic",
  8679. height: math.unit(1e42, "feet")
  8680. },
  8681. ]
  8682. ))
  8683. characterMakers.push(() => makeCharacter(
  8684. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8685. {
  8686. front: {
  8687. height: math.unit(5, "inches"),
  8688. name: "Front",
  8689. image: {
  8690. source: "./media/characters/amanda/front.svg",
  8691. extra: 926/791,
  8692. bottom: 38/964
  8693. }
  8694. },
  8695. back: {
  8696. height: math.unit(5, "inches"),
  8697. name: "Back",
  8698. image: {
  8699. source: "./media/characters/amanda/back.svg",
  8700. extra: 909/805,
  8701. bottom: 43/952
  8702. }
  8703. },
  8704. },
  8705. [
  8706. {
  8707. name: "Micro",
  8708. height: math.unit(5, "inches"),
  8709. default: true
  8710. },
  8711. ]
  8712. ))
  8713. characterMakers.push(() => makeCharacter(
  8714. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8715. {
  8716. front: {
  8717. height: math.unit(2.75, "meters"),
  8718. weight: math.unit(1200, "lb"),
  8719. name: "Front",
  8720. image: {
  8721. source: "./media/characters/teal/front.svg",
  8722. extra: 2463 / 2320,
  8723. bottom: 166 / 2629
  8724. }
  8725. },
  8726. back: {
  8727. height: math.unit(2.75, "meters"),
  8728. weight: math.unit(1200, "lb"),
  8729. name: "Back",
  8730. image: {
  8731. source: "./media/characters/teal/back.svg",
  8732. extra: 2580 / 2489,
  8733. bottom: 151 / 2731
  8734. }
  8735. },
  8736. sitting: {
  8737. height: math.unit(1.9, "meters"),
  8738. weight: math.unit(1200, "lb"),
  8739. name: "Sitting",
  8740. image: {
  8741. source: "./media/characters/teal/sitting.svg",
  8742. extra: 623 / 590,
  8743. bottom: 121 / 744
  8744. }
  8745. },
  8746. standing: {
  8747. height: math.unit(2.75, "meters"),
  8748. weight: math.unit(1200, "lb"),
  8749. name: "Standing",
  8750. image: {
  8751. source: "./media/characters/teal/standing.svg",
  8752. extra: 923 / 893,
  8753. bottom: 60 / 983
  8754. }
  8755. },
  8756. stretching: {
  8757. height: math.unit(3.65, "meters"),
  8758. weight: math.unit(1200, "lb"),
  8759. name: "Stretching",
  8760. image: {
  8761. source: "./media/characters/teal/stretching.svg",
  8762. extra: 1276 / 1244,
  8763. bottom: 0 / 1276
  8764. }
  8765. },
  8766. legged: {
  8767. height: math.unit(1.3, "meters"),
  8768. weight: math.unit(100, "lb"),
  8769. name: "Legged",
  8770. image: {
  8771. source: "./media/characters/teal/legged.svg",
  8772. extra: 462 / 437,
  8773. bottom: 24 / 486
  8774. }
  8775. },
  8776. naga: {
  8777. height: math.unit(5.4, "meters"),
  8778. weight: math.unit(4000, "lb"),
  8779. name: "Naga",
  8780. image: {
  8781. source: "./media/characters/teal/naga.svg",
  8782. extra: 1902 / 1858,
  8783. bottom: 0 / 1902
  8784. }
  8785. },
  8786. hand: {
  8787. height: math.unit(0.52, "meters"),
  8788. name: "Hand",
  8789. image: {
  8790. source: "./media/characters/teal/hand.svg"
  8791. }
  8792. },
  8793. maw: {
  8794. height: math.unit(0.43, "meters"),
  8795. name: "Maw",
  8796. image: {
  8797. source: "./media/characters/teal/maw.svg"
  8798. }
  8799. },
  8800. slit: {
  8801. height: math.unit(0.25, "meters"),
  8802. name: "Slit",
  8803. image: {
  8804. source: "./media/characters/teal/slit.svg"
  8805. }
  8806. },
  8807. },
  8808. [
  8809. {
  8810. name: "Normal",
  8811. height: math.unit(2.75, "meters"),
  8812. default: true
  8813. },
  8814. {
  8815. name: "Macro",
  8816. height: math.unit(300, "feet")
  8817. },
  8818. {
  8819. name: "Macro+",
  8820. height: math.unit(2000, "feet")
  8821. },
  8822. ]
  8823. ))
  8824. characterMakers.push(() => makeCharacter(
  8825. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8826. {
  8827. frontCat: {
  8828. height: math.unit(6, "feet"),
  8829. weight: math.unit(180, "lbs"),
  8830. name: "Front (Cat)",
  8831. image: {
  8832. source: "./media/characters/ravin-amulet/front-cat.svg"
  8833. }
  8834. },
  8835. frontCatAlt: {
  8836. height: math.unit(6, "feet"),
  8837. weight: math.unit(180, "lbs"),
  8838. name: "Front (Alt, Cat)",
  8839. image: {
  8840. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8841. }
  8842. },
  8843. frontWerewolf: {
  8844. height: math.unit(6 * 1.2, "feet"),
  8845. weight: math.unit(225, "lbs"),
  8846. name: "Front (Werewolf)",
  8847. image: {
  8848. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8849. }
  8850. },
  8851. backWerewolf: {
  8852. height: math.unit(6 * 1.2, "feet"),
  8853. weight: math.unit(225, "lbs"),
  8854. name: "Back (Werewolf)",
  8855. image: {
  8856. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8857. }
  8858. },
  8859. },
  8860. [
  8861. {
  8862. name: "Nano",
  8863. height: math.unit(1, "micrometer")
  8864. },
  8865. {
  8866. name: "Micro",
  8867. height: math.unit(1, "inch")
  8868. },
  8869. {
  8870. name: "Normal",
  8871. height: math.unit(6, "feet"),
  8872. default: true
  8873. },
  8874. {
  8875. name: "Macro",
  8876. height: math.unit(60, "feet")
  8877. }
  8878. ]
  8879. ))
  8880. characterMakers.push(() => makeCharacter(
  8881. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8882. {
  8883. front: {
  8884. height: math.unit(6, "feet"),
  8885. weight: math.unit(165, "lbs"),
  8886. name: "Front",
  8887. image: {
  8888. source: "./media/characters/fluoresce/front.svg"
  8889. }
  8890. }
  8891. },
  8892. [
  8893. {
  8894. name: "Micro",
  8895. height: math.unit(6, "cm")
  8896. },
  8897. {
  8898. name: "Normal",
  8899. height: math.unit(5 + 7 / 12, "feet"),
  8900. default: true
  8901. },
  8902. {
  8903. name: "Macro",
  8904. height: math.unit(56, "feet")
  8905. },
  8906. {
  8907. name: "Megamacro",
  8908. height: math.unit(1.9, "miles")
  8909. },
  8910. ]
  8911. ))
  8912. characterMakers.push(() => makeCharacter(
  8913. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8914. {
  8915. front: {
  8916. height: math.unit(9 + 6 / 12, "feet"),
  8917. weight: math.unit(523, "lbs"),
  8918. name: "Side",
  8919. image: {
  8920. source: "./media/characters/aurora/side.svg",
  8921. extra: 474/393,
  8922. bottom: 5/479
  8923. }
  8924. }
  8925. },
  8926. [
  8927. {
  8928. name: "Normal",
  8929. height: math.unit(9 + 6 / 12, "feet")
  8930. },
  8931. {
  8932. name: "Macro",
  8933. height: math.unit(96, "feet"),
  8934. default: true
  8935. },
  8936. {
  8937. name: "Macro+",
  8938. height: math.unit(243, "feet")
  8939. },
  8940. ]
  8941. ))
  8942. characterMakers.push(() => makeCharacter(
  8943. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8944. {
  8945. front: {
  8946. height: math.unit(194, "cm"),
  8947. weight: math.unit(90, "kg"),
  8948. name: "Front",
  8949. image: {
  8950. source: "./media/characters/ranek/front.svg",
  8951. extra: 1862/1791,
  8952. bottom: 80/1942
  8953. }
  8954. },
  8955. back: {
  8956. height: math.unit(194, "cm"),
  8957. weight: math.unit(90, "kg"),
  8958. name: "Back",
  8959. image: {
  8960. source: "./media/characters/ranek/back.svg",
  8961. extra: 1853/1787,
  8962. bottom: 74/1927
  8963. }
  8964. },
  8965. feral: {
  8966. height: math.unit(30, "cm"),
  8967. weight: math.unit(1.6, "lbs"),
  8968. name: "Feral",
  8969. image: {
  8970. source: "./media/characters/ranek/feral.svg",
  8971. extra: 990/631,
  8972. bottom: 29/1019
  8973. }
  8974. },
  8975. },
  8976. [
  8977. {
  8978. name: "Normal",
  8979. height: math.unit(194, "cm"),
  8980. default: true
  8981. },
  8982. {
  8983. name: "Macro",
  8984. height: math.unit(100, "meters")
  8985. },
  8986. ]
  8987. ))
  8988. characterMakers.push(() => makeCharacter(
  8989. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8990. {
  8991. front: {
  8992. height: math.unit(5 + 6 / 12, "feet"),
  8993. weight: math.unit(153, "lbs"),
  8994. name: "Front",
  8995. image: {
  8996. source: "./media/characters/andrew-cooper/front.svg"
  8997. }
  8998. },
  8999. },
  9000. [
  9001. {
  9002. name: "Nano",
  9003. height: math.unit(1, "mm")
  9004. },
  9005. {
  9006. name: "Micro",
  9007. height: math.unit(2, "inches")
  9008. },
  9009. {
  9010. name: "Normal",
  9011. height: math.unit(5 + 6 / 12, "feet"),
  9012. default: true
  9013. }
  9014. ]
  9015. ))
  9016. characterMakers.push(() => makeCharacter(
  9017. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  9018. {
  9019. front: {
  9020. height: math.unit(6, "feet"),
  9021. weight: math.unit(180, "lbs"),
  9022. name: "Front",
  9023. image: {
  9024. source: "./media/characters/akane-sato/front.svg",
  9025. extra: 1219 / 1140
  9026. }
  9027. },
  9028. back: {
  9029. height: math.unit(6, "feet"),
  9030. weight: math.unit(180, "lbs"),
  9031. name: "Back",
  9032. image: {
  9033. source: "./media/characters/akane-sato/back.svg",
  9034. extra: 1219 / 1170
  9035. }
  9036. },
  9037. },
  9038. [
  9039. {
  9040. name: "Normal",
  9041. height: math.unit(2.5, "meters")
  9042. },
  9043. {
  9044. name: "Macro",
  9045. height: math.unit(250, "meters"),
  9046. default: true
  9047. },
  9048. {
  9049. name: "Megamacro",
  9050. height: math.unit(25, "km")
  9051. },
  9052. ]
  9053. ))
  9054. characterMakers.push(() => makeCharacter(
  9055. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  9056. {
  9057. front: {
  9058. height: math.unit(6, "feet"),
  9059. weight: math.unit(65, "kg"),
  9060. name: "Front",
  9061. image: {
  9062. source: "./media/characters/rook/front.svg",
  9063. extra: 960 / 950
  9064. }
  9065. }
  9066. },
  9067. [
  9068. {
  9069. name: "Normal",
  9070. height: math.unit(8.8, "feet")
  9071. },
  9072. {
  9073. name: "Macro",
  9074. height: math.unit(88, "feet"),
  9075. default: true
  9076. },
  9077. {
  9078. name: "Megamacro",
  9079. height: math.unit(8, "miles")
  9080. },
  9081. ]
  9082. ))
  9083. characterMakers.push(() => makeCharacter(
  9084. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  9085. {
  9086. front: {
  9087. height: math.unit(12 + 2 / 12, "feet"),
  9088. weight: math.unit(808, "lbs"),
  9089. name: "Front",
  9090. image: {
  9091. source: "./media/characters/prodigy/front.svg"
  9092. }
  9093. }
  9094. },
  9095. [
  9096. {
  9097. name: "Normal",
  9098. height: math.unit(12 + 2 / 12, "feet"),
  9099. default: true
  9100. },
  9101. {
  9102. name: "Macro",
  9103. height: math.unit(143, "feet")
  9104. },
  9105. {
  9106. name: "Macro+",
  9107. height: math.unit(400, "feet")
  9108. },
  9109. ]
  9110. ))
  9111. characterMakers.push(() => makeCharacter(
  9112. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  9113. {
  9114. front: {
  9115. height: math.unit(6, "feet"),
  9116. weight: math.unit(225, "lbs"),
  9117. name: "Front",
  9118. image: {
  9119. source: "./media/characters/daniel/front.svg"
  9120. }
  9121. },
  9122. leaning: {
  9123. height: math.unit(6, "feet"),
  9124. weight: math.unit(225, "lbs"),
  9125. name: "Leaning",
  9126. image: {
  9127. source: "./media/characters/daniel/leaning.svg"
  9128. }
  9129. },
  9130. },
  9131. [
  9132. {
  9133. name: "Macro",
  9134. height: math.unit(1000, "feet"),
  9135. default: true
  9136. },
  9137. ]
  9138. ))
  9139. characterMakers.push(() => makeCharacter(
  9140. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  9141. {
  9142. front: {
  9143. height: math.unit(6, "feet"),
  9144. weight: math.unit(88, "lbs"),
  9145. name: "Front",
  9146. image: {
  9147. source: "./media/characters/chiros/front.svg",
  9148. extra: 306 / 226
  9149. }
  9150. },
  9151. side: {
  9152. height: math.unit(6, "feet"),
  9153. weight: math.unit(88, "lbs"),
  9154. name: "Side",
  9155. image: {
  9156. source: "./media/characters/chiros/side.svg",
  9157. extra: 306 / 226
  9158. }
  9159. },
  9160. },
  9161. [
  9162. {
  9163. name: "Normal",
  9164. height: math.unit(6, "cm"),
  9165. default: true
  9166. },
  9167. ]
  9168. ))
  9169. characterMakers.push(() => makeCharacter(
  9170. { name: "Selka", species: ["snake"], tags: ["naga"] },
  9171. {
  9172. front: {
  9173. height: math.unit(6, "feet"),
  9174. weight: math.unit(100, "lbs"),
  9175. name: "Front",
  9176. image: {
  9177. source: "./media/characters/selka/front.svg",
  9178. extra: 947 / 887
  9179. }
  9180. }
  9181. },
  9182. [
  9183. {
  9184. name: "Normal",
  9185. height: math.unit(5, "cm"),
  9186. default: true
  9187. },
  9188. ]
  9189. ))
  9190. characterMakers.push(() => makeCharacter(
  9191. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  9192. {
  9193. front: {
  9194. height: math.unit(8 + 3 / 12, "feet"),
  9195. weight: math.unit(424, "lbs"),
  9196. name: "Front",
  9197. image: {
  9198. source: "./media/characters/verin/front.svg",
  9199. extra: 1845 / 1550
  9200. }
  9201. },
  9202. frontArmored: {
  9203. height: math.unit(8 + 3 / 12, "feet"),
  9204. weight: math.unit(424, "lbs"),
  9205. name: "Front (Armored)",
  9206. image: {
  9207. source: "./media/characters/verin/front-armor.svg",
  9208. extra: 1845 / 1550,
  9209. bottom: 0.01
  9210. }
  9211. },
  9212. back: {
  9213. height: math.unit(8 + 3 / 12, "feet"),
  9214. weight: math.unit(424, "lbs"),
  9215. name: "Back",
  9216. image: {
  9217. source: "./media/characters/verin/back.svg",
  9218. bottom: 0.1,
  9219. extra: 1
  9220. }
  9221. },
  9222. foot: {
  9223. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9224. name: "Foot",
  9225. image: {
  9226. source: "./media/characters/verin/foot.svg"
  9227. }
  9228. },
  9229. },
  9230. [
  9231. {
  9232. name: "Normal",
  9233. height: math.unit(8 + 3 / 12, "feet")
  9234. },
  9235. {
  9236. name: "Minimacro",
  9237. height: math.unit(21, "feet"),
  9238. default: true
  9239. },
  9240. {
  9241. name: "Macro",
  9242. height: math.unit(626, "feet")
  9243. },
  9244. ]
  9245. ))
  9246. characterMakers.push(() => makeCharacter(
  9247. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9248. {
  9249. front: {
  9250. height: math.unit(2.718, "meters"),
  9251. weight: math.unit(150, "lbs"),
  9252. name: "Front",
  9253. image: {
  9254. source: "./media/characters/sovrim-terraquian/front.svg",
  9255. extra: 1752/1689,
  9256. bottom: 36/1788
  9257. }
  9258. },
  9259. back: {
  9260. height: math.unit(2.718, "meters"),
  9261. weight: math.unit(150, "lbs"),
  9262. name: "Back",
  9263. image: {
  9264. source: "./media/characters/sovrim-terraquian/back.svg",
  9265. extra: 1698/1657,
  9266. bottom: 58/1756
  9267. }
  9268. },
  9269. tongue: {
  9270. height: math.unit(2.865, "feet"),
  9271. name: "Tongue",
  9272. image: {
  9273. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9274. }
  9275. },
  9276. hand: {
  9277. height: math.unit(1.61, "feet"),
  9278. name: "Hand",
  9279. image: {
  9280. source: "./media/characters/sovrim-terraquian/hand.svg"
  9281. }
  9282. },
  9283. foot: {
  9284. height: math.unit(1.05, "feet"),
  9285. name: "Foot",
  9286. image: {
  9287. source: "./media/characters/sovrim-terraquian/foot.svg"
  9288. }
  9289. },
  9290. footAlt: {
  9291. height: math.unit(0.88, "feet"),
  9292. name: "Foot (Alt)",
  9293. image: {
  9294. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9295. }
  9296. },
  9297. },
  9298. [
  9299. {
  9300. name: "Micro",
  9301. height: math.unit(2, "inches")
  9302. },
  9303. {
  9304. name: "Small",
  9305. height: math.unit(1, "meter")
  9306. },
  9307. {
  9308. name: "Normal",
  9309. height: math.unit(Math.E, "meters"),
  9310. default: true
  9311. },
  9312. {
  9313. name: "Macro",
  9314. height: math.unit(20, "meters")
  9315. },
  9316. {
  9317. name: "Macro+",
  9318. height: math.unit(400, "meters")
  9319. },
  9320. ]
  9321. ))
  9322. characterMakers.push(() => makeCharacter(
  9323. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9324. {
  9325. front: {
  9326. height: math.unit(7, "feet"),
  9327. weight: math.unit(489, "lbs"),
  9328. name: "Front",
  9329. image: {
  9330. source: "./media/characters/reece-silvermane/front.svg",
  9331. bottom: 0.02,
  9332. extra: 1
  9333. }
  9334. },
  9335. },
  9336. [
  9337. {
  9338. name: "Macro",
  9339. height: math.unit(1.5, "miles"),
  9340. default: true
  9341. },
  9342. ]
  9343. ))
  9344. characterMakers.push(() => makeCharacter(
  9345. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9346. {
  9347. front: {
  9348. height: math.unit(6, "feet"),
  9349. weight: math.unit(78, "kg"),
  9350. name: "Front",
  9351. image: {
  9352. source: "./media/characters/kane/front.svg",
  9353. extra: 978 / 899
  9354. }
  9355. },
  9356. back: {
  9357. height: math.unit(6, "feet"),
  9358. weight: math.unit(78, "kg"),
  9359. name: "Back",
  9360. image: {
  9361. source: "./media/characters/kane/back.svg",
  9362. extra: 1966/1800,
  9363. bottom: 0/1966
  9364. }
  9365. },
  9366. head: {
  9367. height: math.unit(1.4, "feet"),
  9368. name: "Head",
  9369. image: {
  9370. source: "./media/characters/kane/head.svg"
  9371. }
  9372. },
  9373. },
  9374. [
  9375. {
  9376. name: "Normal",
  9377. height: math.unit(2.1, "m"),
  9378. },
  9379. {
  9380. name: "Macro",
  9381. height: math.unit(1, "km"),
  9382. default: true
  9383. },
  9384. ]
  9385. ))
  9386. characterMakers.push(() => makeCharacter(
  9387. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9388. {
  9389. front: {
  9390. height: math.unit(6, "feet"),
  9391. weight: math.unit(200, "kg"),
  9392. name: "Front",
  9393. image: {
  9394. source: "./media/characters/tegon/front.svg",
  9395. bottom: 0.01,
  9396. extra: 1
  9397. }
  9398. },
  9399. },
  9400. [
  9401. {
  9402. name: "Micro",
  9403. height: math.unit(1, "inch")
  9404. },
  9405. {
  9406. name: "Normal",
  9407. height: math.unit(6 + 3 / 12, "feet"),
  9408. default: true
  9409. },
  9410. {
  9411. name: "Macro",
  9412. height: math.unit(300, "feet")
  9413. },
  9414. {
  9415. name: "Megamacro",
  9416. height: math.unit(69, "miles")
  9417. },
  9418. ]
  9419. ))
  9420. characterMakers.push(() => makeCharacter(
  9421. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9422. {
  9423. side: {
  9424. height: math.unit(6, "feet"),
  9425. weight: math.unit(2304, "lbs"),
  9426. name: "Side",
  9427. image: {
  9428. source: "./media/characters/arcturax/side.svg",
  9429. extra: 790 / 376,
  9430. bottom: 0.01
  9431. }
  9432. },
  9433. },
  9434. [
  9435. {
  9436. name: "Micro",
  9437. height: math.unit(2, "inch")
  9438. },
  9439. {
  9440. name: "Normal",
  9441. height: math.unit(6, "feet")
  9442. },
  9443. {
  9444. name: "Macro",
  9445. height: math.unit(39, "feet"),
  9446. default: true
  9447. },
  9448. {
  9449. name: "Megamacro",
  9450. height: math.unit(7, "miles")
  9451. },
  9452. ]
  9453. ))
  9454. characterMakers.push(() => makeCharacter(
  9455. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9456. {
  9457. front: {
  9458. height: math.unit(6, "feet"),
  9459. weight: math.unit(50, "lbs"),
  9460. name: "Front",
  9461. image: {
  9462. source: "./media/characters/sentri/front.svg",
  9463. extra: 1750 / 1570,
  9464. bottom: 0.025
  9465. }
  9466. },
  9467. frontAlt: {
  9468. height: math.unit(6, "feet"),
  9469. weight: math.unit(50, "lbs"),
  9470. name: "Front (Alt)",
  9471. image: {
  9472. source: "./media/characters/sentri/front-alt.svg",
  9473. extra: 1750 / 1570,
  9474. bottom: 0.025
  9475. }
  9476. },
  9477. },
  9478. [
  9479. {
  9480. name: "Normal",
  9481. height: math.unit(15, "feet"),
  9482. default: true
  9483. },
  9484. {
  9485. name: "Macro",
  9486. height: math.unit(2500, "feet")
  9487. }
  9488. ]
  9489. ))
  9490. characterMakers.push(() => makeCharacter(
  9491. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9492. {
  9493. front: {
  9494. height: math.unit(5 + 8 / 12, "feet"),
  9495. weight: math.unit(130, "lbs"),
  9496. name: "Front",
  9497. image: {
  9498. source: "./media/characters/corvin/front.svg",
  9499. extra: 1803 / 1629
  9500. }
  9501. },
  9502. frontShirt: {
  9503. height: math.unit(5 + 8 / 12, "feet"),
  9504. weight: math.unit(130, "lbs"),
  9505. name: "Front (Shirt)",
  9506. image: {
  9507. source: "./media/characters/corvin/front-shirt.svg",
  9508. extra: 1803 / 1629
  9509. }
  9510. },
  9511. frontPoncho: {
  9512. height: math.unit(5 + 8 / 12, "feet"),
  9513. weight: math.unit(130, "lbs"),
  9514. name: "Front (Poncho)",
  9515. image: {
  9516. source: "./media/characters/corvin/front-poncho.svg",
  9517. extra: 1803 / 1629
  9518. }
  9519. },
  9520. side: {
  9521. height: math.unit(5 + 8 / 12, "feet"),
  9522. weight: math.unit(130, "lbs"),
  9523. name: "Side",
  9524. image: {
  9525. source: "./media/characters/corvin/side.svg",
  9526. extra: 1012 / 945
  9527. }
  9528. },
  9529. back: {
  9530. height: math.unit(5 + 8 / 12, "feet"),
  9531. weight: math.unit(130, "lbs"),
  9532. name: "Back",
  9533. image: {
  9534. source: "./media/characters/corvin/back.svg",
  9535. extra: 1803 / 1629
  9536. }
  9537. },
  9538. },
  9539. [
  9540. {
  9541. name: "Micro",
  9542. height: math.unit(3, "inches")
  9543. },
  9544. {
  9545. name: "Normal",
  9546. height: math.unit(5 + 8 / 12, "feet")
  9547. },
  9548. {
  9549. name: "Macro",
  9550. height: math.unit(300, "feet"),
  9551. default: true
  9552. },
  9553. {
  9554. name: "Megamacro",
  9555. height: math.unit(500, "miles")
  9556. }
  9557. ]
  9558. ))
  9559. characterMakers.push(() => makeCharacter(
  9560. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9561. {
  9562. front: {
  9563. height: math.unit(6, "feet"),
  9564. weight: math.unit(135, "lbs"),
  9565. name: "Front",
  9566. image: {
  9567. source: "./media/characters/q/front.svg",
  9568. extra: 854 / 752,
  9569. bottom: 0.005
  9570. }
  9571. },
  9572. back: {
  9573. height: math.unit(6, "feet"),
  9574. weight: math.unit(130, "lbs"),
  9575. name: "Back",
  9576. image: {
  9577. source: "./media/characters/q/back.svg",
  9578. extra: 854 / 752
  9579. }
  9580. },
  9581. },
  9582. [
  9583. {
  9584. name: "Macro",
  9585. height: math.unit(90, "feet"),
  9586. default: true
  9587. },
  9588. {
  9589. name: "Extra Macro",
  9590. height: math.unit(300, "feet"),
  9591. },
  9592. {
  9593. name: "BIG WALF",
  9594. height: math.unit(750, "feet"),
  9595. },
  9596. ]
  9597. ))
  9598. characterMakers.push(() => makeCharacter(
  9599. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9600. {
  9601. front: {
  9602. height: math.unit(3, "feet"),
  9603. weight: math.unit(28, "lbs"),
  9604. name: "Front",
  9605. image: {
  9606. source: "./media/characters/citrine/front.svg"
  9607. }
  9608. }
  9609. },
  9610. [
  9611. {
  9612. name: "Normal",
  9613. height: math.unit(3, "feet"),
  9614. default: true
  9615. }
  9616. ]
  9617. ))
  9618. characterMakers.push(() => makeCharacter(
  9619. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9620. {
  9621. front: {
  9622. height: math.unit(14, "feet"),
  9623. weight: math.unit(1450, "kg"),
  9624. preyCapacity: math.unit(15, "people"),
  9625. name: "Front",
  9626. image: {
  9627. source: "./media/characters/aura-starwind/front.svg",
  9628. extra: 1440/1327,
  9629. bottom: 11/1451
  9630. }
  9631. },
  9632. side: {
  9633. height: math.unit(14, "feet"),
  9634. weight: math.unit(1450, "kg"),
  9635. preyCapacity: math.unit(15, "people"),
  9636. name: "Side",
  9637. image: {
  9638. source: "./media/characters/aura-starwind/side.svg",
  9639. extra: 1654 / 1497
  9640. }
  9641. },
  9642. taur: {
  9643. height: math.unit(18, "feet"),
  9644. weight: math.unit(5500, "kg"),
  9645. preyCapacity: math.unit(50, "people"),
  9646. name: "Taur",
  9647. image: {
  9648. source: "./media/characters/aura-starwind/taur.svg",
  9649. extra: 1760 / 1650
  9650. }
  9651. },
  9652. feral: {
  9653. height: math.unit(46, "feet"),
  9654. weight: math.unit(25000, "kg"),
  9655. preyCapacity: math.unit(120, "people"),
  9656. name: "Feral",
  9657. image: {
  9658. source: "./media/characters/aura-starwind/feral.svg"
  9659. }
  9660. },
  9661. },
  9662. [
  9663. {
  9664. name: "Normal",
  9665. height: math.unit(14, "feet"),
  9666. default: true
  9667. },
  9668. {
  9669. name: "Macro",
  9670. height: math.unit(50, "meters")
  9671. },
  9672. {
  9673. name: "Megamacro",
  9674. height: math.unit(5000, "meters")
  9675. },
  9676. {
  9677. name: "Gigamacro",
  9678. height: math.unit(100000, "kilometers")
  9679. },
  9680. ]
  9681. ))
  9682. characterMakers.push(() => makeCharacter(
  9683. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9684. {
  9685. front: {
  9686. height: math.unit(2 + 7 / 12, "feet"),
  9687. weight: math.unit(32, "lbs"),
  9688. name: "Front",
  9689. image: {
  9690. source: "./media/characters/rivet/front.svg",
  9691. extra: 1716 / 1658,
  9692. bottom: 0.03
  9693. }
  9694. },
  9695. foot: {
  9696. height: math.unit(0.551, "feet"),
  9697. name: "Rivet's Foot",
  9698. image: {
  9699. source: "./media/characters/rivet/foot.svg"
  9700. },
  9701. rename: true
  9702. }
  9703. },
  9704. [
  9705. {
  9706. name: "Micro",
  9707. height: math.unit(1.5, "inches"),
  9708. },
  9709. {
  9710. name: "Normal",
  9711. height: math.unit(2 + 7 / 12, "feet"),
  9712. default: true
  9713. },
  9714. {
  9715. name: "Macro",
  9716. height: math.unit(85, "feet")
  9717. },
  9718. {
  9719. name: "Megamacro",
  9720. height: math.unit(2.2, "km")
  9721. }
  9722. ]
  9723. ))
  9724. characterMakers.push(() => makeCharacter(
  9725. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9726. {
  9727. front: {
  9728. height: math.unit(5 + 9 / 12, "feet"),
  9729. weight: math.unit(150, "lbs"),
  9730. name: "Front",
  9731. image: {
  9732. source: "./media/characters/coffee/front.svg",
  9733. extra: 946/880,
  9734. bottom: 66/1012
  9735. }
  9736. },
  9737. foot: {
  9738. height: math.unit(1.29, "feet"),
  9739. name: "Foot",
  9740. image: {
  9741. source: "./media/characters/coffee/foot.svg"
  9742. }
  9743. },
  9744. },
  9745. [
  9746. {
  9747. name: "Micro",
  9748. height: math.unit(2, "inches"),
  9749. },
  9750. {
  9751. name: "Normal",
  9752. height: math.unit(5 + 9 / 12, "feet"),
  9753. default: true
  9754. },
  9755. {
  9756. name: "Macro",
  9757. height: math.unit(800, "feet")
  9758. },
  9759. {
  9760. name: "Megamacro",
  9761. height: math.unit(25, "miles")
  9762. }
  9763. ]
  9764. ))
  9765. characterMakers.push(() => makeCharacter(
  9766. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9767. {
  9768. front: {
  9769. height: math.unit(6, "feet"),
  9770. weight: math.unit(200, "lbs"),
  9771. name: "Front",
  9772. image: {
  9773. source: "./media/characters/chari-gal/front.svg",
  9774. extra: 735/649,
  9775. bottom: 55/790
  9776. },
  9777. form: "normal",
  9778. default: true
  9779. },
  9780. back: {
  9781. height: math.unit(6, "feet"),
  9782. weight: math.unit(200, "lb"),
  9783. name: "Back",
  9784. image: {
  9785. source: "./media/characters/chari-gal/back.svg",
  9786. extra: 762/666,
  9787. bottom: 31/793
  9788. },
  9789. form: "normal"
  9790. },
  9791. mouth: {
  9792. height: math.unit(1.35, "feet"),
  9793. name: "Mouth",
  9794. image: {
  9795. source: "./media/characters/chari-gal/mouth.svg"
  9796. },
  9797. form: "normal"
  9798. },
  9799. gigantamax: {
  9800. height: math.unit(6 * 16, "feet"),
  9801. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9802. name: "Gigantamax",
  9803. image: {
  9804. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9805. extra: 1507/1149,
  9806. bottom: 254/1761
  9807. },
  9808. form: "gigantamax",
  9809. default: true
  9810. },
  9811. },
  9812. [
  9813. {
  9814. name: "Normal",
  9815. height: math.unit(5 + 7 / 12, "feet"),
  9816. form: "normal",
  9817. },
  9818. {
  9819. name: "Macro",
  9820. height: math.unit(200, "feet"),
  9821. default: true,
  9822. form: "normal"
  9823. },
  9824. {
  9825. name: "Normal",
  9826. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9827. form: "gigantamax",
  9828. },
  9829. {
  9830. name: "Macro",
  9831. height: math.unit(16 * 200, "feet"),
  9832. default: true,
  9833. form: "gigantamax"
  9834. },
  9835. ],
  9836. {
  9837. "normal": {
  9838. name: "Normal",
  9839. default: true
  9840. },
  9841. "gigantamax": {
  9842. name: "Gigantamax",
  9843. },
  9844. }
  9845. ))
  9846. characterMakers.push(() => makeCharacter(
  9847. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9848. {
  9849. front: {
  9850. height: math.unit(6, "feet"),
  9851. weight: math.unit(150, "lbs"),
  9852. name: "Front",
  9853. image: {
  9854. source: "./media/characters/nova/front.svg",
  9855. extra: 5000 / 4722,
  9856. bottom: 0.02
  9857. }
  9858. }
  9859. },
  9860. [
  9861. {
  9862. name: "Micro-",
  9863. height: math.unit(0.8, "inches")
  9864. },
  9865. {
  9866. name: "Micro",
  9867. height: math.unit(2, "inches"),
  9868. default: true
  9869. },
  9870. ]
  9871. ))
  9872. characterMakers.push(() => makeCharacter(
  9873. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9874. {
  9875. koboldFront: {
  9876. height: math.unit(3 + 1 / 12, "feet"),
  9877. weight: math.unit(21.7, "lbs"),
  9878. name: "Front",
  9879. image: {
  9880. source: "./media/characters/argent/kobold-front.svg",
  9881. extra: 1471 / 1331,
  9882. bottom: 100.8 / 1575.5
  9883. },
  9884. form: "kobold",
  9885. default: true
  9886. },
  9887. dragonFront: {
  9888. height: math.unit(75, "inches"),
  9889. name: "Front",
  9890. image: {
  9891. source: "./media/characters/argent/dragon-front.svg",
  9892. extra: 1389/1248,
  9893. bottom: 54/1443
  9894. },
  9895. form: "dragon",
  9896. },
  9897. dragonBack: {
  9898. height: math.unit(75, "inches"),
  9899. name: "Back",
  9900. image: {
  9901. source: "./media/characters/argent/dragon-back.svg",
  9902. extra: 1399/1271,
  9903. bottom: 23/1422
  9904. },
  9905. form: "dragon",
  9906. },
  9907. dragonDressed: {
  9908. height: math.unit(75, "inches"),
  9909. name: "Dressed",
  9910. image: {
  9911. source: "./media/characters/argent/dragon-dressed.svg",
  9912. extra: 1350/1215,
  9913. bottom: 26/1376
  9914. },
  9915. form: "dragon"
  9916. },
  9917. dragonHead: {
  9918. height: math.unit(23.5, "inches"),
  9919. name: "Head",
  9920. image: {
  9921. source: "./media/characters/argent/dragon-head.svg"
  9922. },
  9923. form: "dragon",
  9924. },
  9925. },
  9926. [
  9927. {
  9928. name: "Micro",
  9929. height: math.unit(2, "inches"),
  9930. form: "kobold",
  9931. },
  9932. {
  9933. name: "Normal",
  9934. height: math.unit(3 + 1 / 12, "feet"),
  9935. form: "kobold",
  9936. default: true
  9937. },
  9938. {
  9939. name: "Macro",
  9940. height: math.unit(120, "feet"),
  9941. form: "kobold",
  9942. },
  9943. {
  9944. name: "Speck",
  9945. height: math.unit(1, "mm"),
  9946. form: "dragon",
  9947. },
  9948. {
  9949. name: "Tiny",
  9950. height: math.unit(1, "cm"),
  9951. form: "dragon",
  9952. },
  9953. {
  9954. name: "Micro",
  9955. height: math.unit(5, "cm"),
  9956. form: "dragon",
  9957. },
  9958. {
  9959. name: "Normal",
  9960. height: math.unit(75, "inches"),
  9961. form: "dragon",
  9962. default: true
  9963. },
  9964. {
  9965. name: "Extra Tall",
  9966. height: math.unit(9, "feet"),
  9967. form: "dragon",
  9968. },
  9969. {
  9970. name: "Inconvenient",
  9971. height: math.unit(5, "meters"),
  9972. form: "dragon",
  9973. },
  9974. {
  9975. name: "Macro",
  9976. height: math.unit(70, "meters"),
  9977. form: "dragon",
  9978. },
  9979. {
  9980. name: "Macro+",
  9981. height: math.unit(250, "meters"),
  9982. form: "dragon",
  9983. },
  9984. {
  9985. name: "Megamacro",
  9986. height: math.unit(20, "km"),
  9987. form: "dragon",
  9988. },
  9989. {
  9990. name: "Mountainous",
  9991. height: math.unit(100, "km"),
  9992. form: "dragon",
  9993. },
  9994. {
  9995. name: "Continental",
  9996. height: math.unit(2, "megameters"),
  9997. form: "dragon",
  9998. },
  9999. {
  10000. name: "Too Big",
  10001. height: math.unit(900, "megameters"),
  10002. form: "dragon",
  10003. },
  10004. ],
  10005. {
  10006. "kobold": {
  10007. name: "Kobold",
  10008. default: true
  10009. },
  10010. "dragon": {
  10011. name: "Dragon",
  10012. },
  10013. }
  10014. ))
  10015. characterMakers.push(() => makeCharacter(
  10016. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  10017. {
  10018. lamp: {
  10019. height: math.unit(7 * 1559 / 989, "feet"),
  10020. name: "Magic Lamp",
  10021. image: {
  10022. source: "./media/characters/mira-al-cul/lamp.svg",
  10023. extra: 1617 / 1559
  10024. }
  10025. },
  10026. front: {
  10027. height: math.unit(7, "feet"),
  10028. name: "Front",
  10029. image: {
  10030. source: "./media/characters/mira-al-cul/front.svg",
  10031. extra: 1044 / 990
  10032. }
  10033. },
  10034. },
  10035. [
  10036. {
  10037. name: "Heavily Restricted",
  10038. height: math.unit(7 * 1559 / 989, "feet")
  10039. },
  10040. {
  10041. name: "Freshly Freed",
  10042. height: math.unit(50 * 1559 / 989, "feet")
  10043. },
  10044. {
  10045. name: "World Encompassing",
  10046. height: math.unit(10000 * 1559 / 989, "miles")
  10047. },
  10048. {
  10049. name: "Galactic",
  10050. height: math.unit(1.433 * 1559 / 989, "zettameters")
  10051. },
  10052. {
  10053. name: "Palmed Universe",
  10054. height: math.unit(6000 * 1559 / 989, "yottameters"),
  10055. default: true
  10056. },
  10057. {
  10058. name: "Multiversal Matriarch",
  10059. height: math.unit(8.87e10, "yottameters")
  10060. },
  10061. {
  10062. name: "Void Mother",
  10063. height: math.unit(3.14e110, "yottaparsecs")
  10064. },
  10065. {
  10066. name: "Toying with Transcendence",
  10067. height: math.unit(1e307, "meters")
  10068. },
  10069. ]
  10070. ))
  10071. characterMakers.push(() => makeCharacter(
  10072. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  10073. {
  10074. front: {
  10075. height: math.unit(17 + 1 / 12, "feet"),
  10076. weight: math.unit(476.2 * 5, "lbs"),
  10077. name: "Front",
  10078. image: {
  10079. source: "./media/characters/kuro-shi-uchū/front.svg",
  10080. extra: 2329 / 1835,
  10081. bottom: 0.02
  10082. }
  10083. },
  10084. },
  10085. [
  10086. {
  10087. name: "Micro",
  10088. height: math.unit(2, "inches")
  10089. },
  10090. {
  10091. name: "Normal",
  10092. height: math.unit(12, "meters")
  10093. },
  10094. {
  10095. name: "Planetary",
  10096. height: math.unit(0.00929, "AU"),
  10097. default: true
  10098. },
  10099. {
  10100. name: "Universal",
  10101. height: math.unit(20, "gigaparsecs")
  10102. },
  10103. ]
  10104. ))
  10105. characterMakers.push(() => makeCharacter(
  10106. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  10107. {
  10108. front: {
  10109. height: math.unit(5 + 2 / 12, "feet"),
  10110. weight: math.unit(120, "lbs"),
  10111. name: "Front",
  10112. image: {
  10113. source: "./media/characters/katherine/front.svg",
  10114. extra: 2075 / 1969
  10115. }
  10116. },
  10117. dress: {
  10118. height: math.unit(5 + 2 / 12, "feet"),
  10119. weight: math.unit(120, "lbs"),
  10120. name: "Dress",
  10121. image: {
  10122. source: "./media/characters/katherine/dress.svg",
  10123. extra: 2258 / 2064
  10124. }
  10125. },
  10126. },
  10127. [
  10128. {
  10129. name: "Micro",
  10130. height: math.unit(1, "inches"),
  10131. default: true
  10132. },
  10133. {
  10134. name: "Normal",
  10135. height: math.unit(5 + 2 / 12, "feet")
  10136. },
  10137. {
  10138. name: "Macro",
  10139. height: math.unit(100, "meters")
  10140. },
  10141. {
  10142. name: "Megamacro",
  10143. height: math.unit(80, "miles")
  10144. },
  10145. ]
  10146. ))
  10147. characterMakers.push(() => makeCharacter(
  10148. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  10149. {
  10150. front: {
  10151. height: math.unit(7 + 8 / 12, "feet"),
  10152. weight: math.unit(250, "lbs"),
  10153. name: "Front",
  10154. image: {
  10155. source: "./media/characters/yevis/front.svg",
  10156. extra: 1938 / 1755
  10157. }
  10158. }
  10159. },
  10160. [
  10161. {
  10162. name: "Mortal",
  10163. height: math.unit(7 + 8 / 12, "feet")
  10164. },
  10165. {
  10166. name: "Battle",
  10167. height: math.unit(25 + 11 / 12, "feet")
  10168. },
  10169. {
  10170. name: "Wrath",
  10171. height: math.unit(1654 + 11 / 12, "feet")
  10172. },
  10173. {
  10174. name: "Planet Destroyer",
  10175. height: math.unit(12000, "miles")
  10176. },
  10177. {
  10178. name: "Galaxy Conqueror",
  10179. height: math.unit(1.45, "zettameters"),
  10180. default: true
  10181. },
  10182. {
  10183. name: "Universal War",
  10184. height: math.unit(184, "gigaparsecs")
  10185. },
  10186. {
  10187. name: "Eternity War",
  10188. height: math.unit(1.98e55, "yottaparsecs")
  10189. },
  10190. ]
  10191. ))
  10192. characterMakers.push(() => makeCharacter(
  10193. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  10194. {
  10195. front: {
  10196. height: math.unit(5 + 8 / 12, "feet"),
  10197. weight: math.unit(63, "kg"),
  10198. name: "Front",
  10199. image: {
  10200. source: "./media/characters/xavier/front.svg",
  10201. extra: 944 / 883
  10202. }
  10203. },
  10204. frontStretch: {
  10205. height: math.unit(5 + 8 / 12, "feet"),
  10206. weight: math.unit(63, "kg"),
  10207. name: "Stretching",
  10208. image: {
  10209. source: "./media/characters/xavier/front-stretch.svg",
  10210. extra: 962 / 820
  10211. }
  10212. },
  10213. },
  10214. [
  10215. {
  10216. name: "Normal",
  10217. height: math.unit(5 + 8 / 12, "feet")
  10218. },
  10219. {
  10220. name: "Macro",
  10221. height: math.unit(100, "meters"),
  10222. default: true
  10223. },
  10224. {
  10225. name: "McLargeHuge",
  10226. height: math.unit(10, "miles")
  10227. },
  10228. ]
  10229. ))
  10230. characterMakers.push(() => makeCharacter(
  10231. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10232. {
  10233. front: {
  10234. height: math.unit(5 + 5 / 12, "feet"),
  10235. weight: math.unit(150, "lb"),
  10236. name: "Front",
  10237. image: {
  10238. source: "./media/characters/joshii/front.svg",
  10239. extra: 765 / 653,
  10240. bottom: 51 / 816
  10241. }
  10242. },
  10243. foot: {
  10244. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10245. name: "Foot",
  10246. image: {
  10247. source: "./media/characters/joshii/foot.svg"
  10248. }
  10249. },
  10250. },
  10251. [
  10252. {
  10253. name: "Micro",
  10254. height: math.unit(2, "inches")
  10255. },
  10256. {
  10257. name: "Normal",
  10258. height: math.unit(5 + 5 / 12, "feet")
  10259. },
  10260. {
  10261. name: "Macro",
  10262. height: math.unit(785, "feet"),
  10263. default: true
  10264. },
  10265. {
  10266. name: "Megamacro",
  10267. height: math.unit(24.5, "miles")
  10268. },
  10269. ]
  10270. ))
  10271. characterMakers.push(() => makeCharacter(
  10272. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10273. {
  10274. front: {
  10275. height: math.unit(6, "feet"),
  10276. weight: math.unit(150, "lb"),
  10277. name: "Front",
  10278. image: {
  10279. source: "./media/characters/goddess-elizabeth/front.svg",
  10280. extra: 1800 / 1525,
  10281. bottom: 0.005
  10282. }
  10283. },
  10284. foot: {
  10285. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10286. name: "Foot",
  10287. image: {
  10288. source: "./media/characters/goddess-elizabeth/foot.svg"
  10289. }
  10290. },
  10291. mouth: {
  10292. height: math.unit(6, "feet"),
  10293. name: "Mouth",
  10294. image: {
  10295. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10296. }
  10297. },
  10298. },
  10299. [
  10300. {
  10301. name: "Micro",
  10302. height: math.unit(12, "feet")
  10303. },
  10304. {
  10305. name: "Normal",
  10306. height: math.unit(80, "miles"),
  10307. default: true
  10308. },
  10309. {
  10310. name: "Macro",
  10311. height: math.unit(15000, "parsecs")
  10312. },
  10313. ]
  10314. ))
  10315. characterMakers.push(() => makeCharacter(
  10316. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10317. {
  10318. front: {
  10319. height: math.unit(5 + 9 / 12, "feet"),
  10320. weight: math.unit(144, "lb"),
  10321. name: "Front",
  10322. image: {
  10323. source: "./media/characters/kara/front.svg"
  10324. }
  10325. },
  10326. feet: {
  10327. height: math.unit(6 / 6.765, "feet"),
  10328. name: "Kara's Feet",
  10329. rename: true,
  10330. image: {
  10331. source: "./media/characters/kara/feet.svg"
  10332. }
  10333. },
  10334. },
  10335. [
  10336. {
  10337. name: "Normal",
  10338. height: math.unit(5 + 9 / 12, "feet")
  10339. },
  10340. {
  10341. name: "Macro",
  10342. height: math.unit(174, "feet"),
  10343. default: true
  10344. },
  10345. ]
  10346. ))
  10347. characterMakers.push(() => makeCharacter(
  10348. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10349. {
  10350. front: {
  10351. height: math.unit(18, "feet"),
  10352. weight: math.unit(4050, "lb"),
  10353. name: "Front",
  10354. image: {
  10355. source: "./media/characters/tyrone/front.svg",
  10356. extra: 2405 / 2270,
  10357. bottom: 182 / 2587
  10358. }
  10359. },
  10360. },
  10361. [
  10362. {
  10363. name: "Normal",
  10364. height: math.unit(18, "feet"),
  10365. default: true
  10366. },
  10367. {
  10368. name: "Macro",
  10369. height: math.unit(300, "feet")
  10370. },
  10371. {
  10372. name: "Megamacro",
  10373. height: math.unit(15, "km")
  10374. },
  10375. {
  10376. name: "Gigamacro",
  10377. height: math.unit(500, "km")
  10378. },
  10379. {
  10380. name: "Teramacro",
  10381. height: math.unit(0.5, "gigameters")
  10382. },
  10383. {
  10384. name: "Omnimacro",
  10385. height: math.unit(1e252, "yottauniverse")
  10386. },
  10387. ]
  10388. ))
  10389. characterMakers.push(() => makeCharacter(
  10390. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10391. {
  10392. front: {
  10393. height: math.unit(7 + 8 / 12, "feet"),
  10394. weight: math.unit(120, "lb"),
  10395. name: "Front",
  10396. image: {
  10397. source: "./media/characters/danny/front.svg",
  10398. extra: 1490 / 1350
  10399. }
  10400. },
  10401. back: {
  10402. height: math.unit(7 + 8 / 12, "feet"),
  10403. weight: math.unit(120, "lb"),
  10404. name: "Back",
  10405. image: {
  10406. source: "./media/characters/danny/back.svg",
  10407. extra: 1490 / 1350
  10408. }
  10409. },
  10410. },
  10411. [
  10412. {
  10413. name: "Normal",
  10414. height: math.unit(7 + 8 / 12, "feet"),
  10415. default: true
  10416. },
  10417. ]
  10418. ))
  10419. characterMakers.push(() => makeCharacter(
  10420. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10421. {
  10422. front: {
  10423. height: math.unit(3.5, "inches"),
  10424. weight: math.unit(19, "grams"),
  10425. name: "Front",
  10426. image: {
  10427. source: "./media/characters/mallow/front.svg",
  10428. extra: 471 / 431
  10429. }
  10430. },
  10431. back: {
  10432. height: math.unit(3.5, "inches"),
  10433. weight: math.unit(19, "grams"),
  10434. name: "Back",
  10435. image: {
  10436. source: "./media/characters/mallow/back.svg",
  10437. extra: 471 / 431
  10438. }
  10439. },
  10440. },
  10441. [
  10442. {
  10443. name: "Normal",
  10444. height: math.unit(3.5, "inches"),
  10445. default: true
  10446. },
  10447. ]
  10448. ))
  10449. characterMakers.push(() => makeCharacter(
  10450. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10451. {
  10452. front: {
  10453. height: math.unit(9, "feet"),
  10454. weight: math.unit(230, "kg"),
  10455. name: "Front",
  10456. image: {
  10457. source: "./media/characters/starry-aqua/front.svg"
  10458. }
  10459. },
  10460. back: {
  10461. height: math.unit(9, "feet"),
  10462. weight: math.unit(230, "kg"),
  10463. name: "Back",
  10464. image: {
  10465. source: "./media/characters/starry-aqua/back.svg"
  10466. }
  10467. },
  10468. hand: {
  10469. height: math.unit(9 * 0.1168, "feet"),
  10470. name: "Hand",
  10471. image: {
  10472. source: "./media/characters/starry-aqua/hand.svg"
  10473. }
  10474. },
  10475. foot: {
  10476. height: math.unit(9 * 0.18, "feet"),
  10477. name: "Foot",
  10478. image: {
  10479. source: "./media/characters/starry-aqua/foot.svg"
  10480. }
  10481. }
  10482. },
  10483. [
  10484. {
  10485. name: "Micro",
  10486. height: math.unit(3, "inches")
  10487. },
  10488. {
  10489. name: "Normal",
  10490. height: math.unit(9, "feet")
  10491. },
  10492. {
  10493. name: "Macro",
  10494. height: math.unit(300, "feet"),
  10495. default: true
  10496. },
  10497. {
  10498. name: "Megamacro",
  10499. height: math.unit(3200, "feet")
  10500. }
  10501. ]
  10502. ))
  10503. characterMakers.push(() => makeCharacter(
  10504. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10505. {
  10506. front: {
  10507. height: math.unit(15, "feet"),
  10508. weight: math.unit(5026, "lb"),
  10509. name: "Front",
  10510. image: {
  10511. source: "./media/characters/luka-towers/front.svg",
  10512. extra: 1269/1133,
  10513. bottom: 51/1320
  10514. }
  10515. },
  10516. },
  10517. [
  10518. {
  10519. name: "Normal",
  10520. height: math.unit(15, "feet"),
  10521. default: true
  10522. },
  10523. {
  10524. name: "Minimacro",
  10525. height: math.unit(25, "feet")
  10526. },
  10527. {
  10528. name: "Macro",
  10529. height: math.unit(320, "feet")
  10530. },
  10531. {
  10532. name: "Megamacro",
  10533. height: math.unit(35000, "feet")
  10534. },
  10535. {
  10536. name: "Gigamacro",
  10537. height: math.unit(4000, "miles")
  10538. },
  10539. {
  10540. name: "Teramacro",
  10541. height: math.unit(15000, "miles")
  10542. },
  10543. ]
  10544. ))
  10545. characterMakers.push(() => makeCharacter(
  10546. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10547. {
  10548. front: {
  10549. height: math.unit(6, "feet"),
  10550. weight: math.unit(150, "lb"),
  10551. name: "Front",
  10552. image: {
  10553. source: "./media/characters/natalie-nightring/front.svg",
  10554. extra: 1,
  10555. bottom: 0.06
  10556. }
  10557. },
  10558. },
  10559. [
  10560. {
  10561. name: "Uh Oh",
  10562. height: math.unit(0.1, "mm")
  10563. },
  10564. {
  10565. name: "Small",
  10566. height: math.unit(3, "inches")
  10567. },
  10568. {
  10569. name: "Human Scale",
  10570. height: math.unit(6, "feet")
  10571. },
  10572. {
  10573. name: "Librarian",
  10574. height: math.unit(50, "feet"),
  10575. default: true
  10576. },
  10577. {
  10578. name: "Immense",
  10579. height: math.unit(200, "miles")
  10580. },
  10581. ]
  10582. ))
  10583. characterMakers.push(() => makeCharacter(
  10584. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10585. {
  10586. front: {
  10587. height: math.unit(6, "feet"),
  10588. weight: math.unit(180, "lbs"),
  10589. name: "Front",
  10590. image: {
  10591. source: "./media/characters/danni-rosie/front.svg",
  10592. extra: 1260 / 1128,
  10593. bottom: 0.022
  10594. }
  10595. },
  10596. },
  10597. [
  10598. {
  10599. name: "Micro",
  10600. height: math.unit(2, "inches"),
  10601. default: true
  10602. },
  10603. ]
  10604. ))
  10605. characterMakers.push(() => makeCharacter(
  10606. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10607. {
  10608. front: {
  10609. height: math.unit(5 + 9 / 12, "feet"),
  10610. weight: math.unit(220, "lb"),
  10611. name: "Front",
  10612. image: {
  10613. source: "./media/characters/samantha-kruse/front.svg",
  10614. extra: (985 / 935),
  10615. bottom: 0.03
  10616. }
  10617. },
  10618. frontUndressed: {
  10619. height: math.unit(5 + 9 / 12, "feet"),
  10620. weight: math.unit(220, "lb"),
  10621. name: "Front (Undressed)",
  10622. image: {
  10623. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10624. extra: (973 / 923),
  10625. bottom: 0.025
  10626. }
  10627. },
  10628. fat: {
  10629. height: math.unit(5 + 9 / 12, "feet"),
  10630. weight: math.unit(900, "lb"),
  10631. name: "Front (Fat)",
  10632. image: {
  10633. source: "./media/characters/samantha-kruse/fat.svg",
  10634. extra: 2688 / 2561
  10635. }
  10636. },
  10637. },
  10638. [
  10639. {
  10640. name: "Normal",
  10641. height: math.unit(5 + 9 / 12, "feet"),
  10642. default: true
  10643. }
  10644. ]
  10645. ))
  10646. characterMakers.push(() => makeCharacter(
  10647. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10648. {
  10649. back: {
  10650. height: math.unit(5 + 4 / 12, "feet"),
  10651. weight: math.unit(4963, "lb"),
  10652. name: "Back",
  10653. image: {
  10654. source: "./media/characters/amelia-rosie/back.svg",
  10655. extra: 1113 / 963,
  10656. bottom: 0.01
  10657. }
  10658. },
  10659. },
  10660. [
  10661. {
  10662. name: "Level 0",
  10663. height: math.unit(5 + 4 / 12, "feet")
  10664. },
  10665. {
  10666. name: "Level 1",
  10667. height: math.unit(164597, "feet"),
  10668. default: true
  10669. },
  10670. {
  10671. name: "Level 2",
  10672. height: math.unit(956243, "miles")
  10673. },
  10674. {
  10675. name: "Level 3",
  10676. height: math.unit(29421709423, "miles")
  10677. },
  10678. {
  10679. name: "Level 4",
  10680. height: math.unit(154, "lightyears")
  10681. },
  10682. {
  10683. name: "Level 5",
  10684. height: math.unit(4738272, "lightyears")
  10685. },
  10686. {
  10687. name: "Level 6",
  10688. height: math.unit(145787152896, "lightyears")
  10689. },
  10690. ]
  10691. ))
  10692. characterMakers.push(() => makeCharacter(
  10693. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10694. {
  10695. front: {
  10696. height: math.unit(5 + 11 / 12, "feet"),
  10697. weight: math.unit(65, "kg"),
  10698. name: "Front",
  10699. image: {
  10700. source: "./media/characters/rook-kitara/front.svg",
  10701. extra: 1347 / 1274,
  10702. bottom: 0.005
  10703. }
  10704. },
  10705. },
  10706. [
  10707. {
  10708. name: "Totally Unfair",
  10709. height: math.unit(1.8, "mm")
  10710. },
  10711. {
  10712. name: "Lap Rookie",
  10713. height: math.unit(1.4, "feet")
  10714. },
  10715. {
  10716. name: "Normal",
  10717. height: math.unit(5 + 11 / 12, "feet"),
  10718. default: true
  10719. },
  10720. {
  10721. name: "How Did This Happen",
  10722. height: math.unit(80, "miles")
  10723. }
  10724. ]
  10725. ))
  10726. characterMakers.push(() => makeCharacter(
  10727. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10728. {
  10729. front: {
  10730. height: math.unit(7, "feet"),
  10731. weight: math.unit(300, "lb"),
  10732. name: "Front",
  10733. image: {
  10734. source: "./media/characters/pisces/front.svg",
  10735. extra: 2255 / 2115,
  10736. bottom: 0.03
  10737. }
  10738. },
  10739. back: {
  10740. height: math.unit(7, "feet"),
  10741. weight: math.unit(300, "lb"),
  10742. name: "Back",
  10743. image: {
  10744. source: "./media/characters/pisces/back.svg",
  10745. extra: 2146 / 2055,
  10746. bottom: 0.04
  10747. }
  10748. },
  10749. },
  10750. [
  10751. {
  10752. name: "Normal",
  10753. height: math.unit(7, "feet"),
  10754. default: true
  10755. },
  10756. {
  10757. name: "Swimming Pool",
  10758. height: math.unit(12.2, "meters")
  10759. },
  10760. {
  10761. name: "Olympic Swimming Pool",
  10762. height: math.unit(56.3, "meters")
  10763. },
  10764. {
  10765. name: "Lake Superior",
  10766. height: math.unit(93900, "meters")
  10767. },
  10768. {
  10769. name: "Mediterranean Sea",
  10770. height: math.unit(644457, "meters")
  10771. },
  10772. {
  10773. name: "World's Oceans",
  10774. height: math.unit(4567491, "meters")
  10775. },
  10776. ]
  10777. ))
  10778. characterMakers.push(() => makeCharacter(
  10779. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10780. {
  10781. front: {
  10782. height: math.unit(2.3, "meters"),
  10783. weight: math.unit(120, "kg"),
  10784. name: "Front",
  10785. image: {
  10786. source: "./media/characters/zelas/front.svg"
  10787. }
  10788. },
  10789. side: {
  10790. height: math.unit(2.3, "meters"),
  10791. weight: math.unit(120, "kg"),
  10792. name: "Side",
  10793. image: {
  10794. source: "./media/characters/zelas/side.svg"
  10795. }
  10796. },
  10797. back: {
  10798. height: math.unit(2.3, "meters"),
  10799. weight: math.unit(120, "kg"),
  10800. name: "Back",
  10801. image: {
  10802. source: "./media/characters/zelas/back.svg"
  10803. }
  10804. },
  10805. foot: {
  10806. height: math.unit(1.116, "feet"),
  10807. name: "Foot",
  10808. image: {
  10809. source: "./media/characters/zelas/foot.svg"
  10810. }
  10811. },
  10812. },
  10813. [
  10814. {
  10815. name: "Normal",
  10816. height: math.unit(2.3, "meters")
  10817. },
  10818. {
  10819. name: "Macro",
  10820. height: math.unit(30, "meters"),
  10821. default: true
  10822. },
  10823. ]
  10824. ))
  10825. characterMakers.push(() => makeCharacter(
  10826. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10827. {
  10828. front: {
  10829. height: math.unit(1, "inch"),
  10830. weight: math.unit(0.21, "grams"),
  10831. name: "Front",
  10832. image: {
  10833. source: "./media/characters/talbot/front.svg",
  10834. extra: 594 / 544
  10835. }
  10836. },
  10837. },
  10838. [
  10839. {
  10840. name: "Micro",
  10841. height: math.unit(1, "inch"),
  10842. default: true
  10843. },
  10844. ]
  10845. ))
  10846. characterMakers.push(() => makeCharacter(
  10847. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10848. {
  10849. front: {
  10850. height: math.unit(3 + 3 / 12, "feet"),
  10851. weight: math.unit(51.8, "lb"),
  10852. name: "Front",
  10853. image: {
  10854. source: "./media/characters/fliss/front.svg",
  10855. extra: 840 / 640
  10856. }
  10857. },
  10858. },
  10859. [
  10860. {
  10861. name: "Teeny Tiny",
  10862. height: math.unit(1, "mm")
  10863. },
  10864. {
  10865. name: "Small",
  10866. height: math.unit(1, "inch"),
  10867. default: true
  10868. },
  10869. {
  10870. name: "Standard Sylveon",
  10871. height: math.unit(3 + 3 / 12, "feet")
  10872. },
  10873. {
  10874. name: "Large Nuisance",
  10875. height: math.unit(33, "feet")
  10876. },
  10877. {
  10878. name: "City Filler",
  10879. height: math.unit(3000, "feet")
  10880. },
  10881. {
  10882. name: "New Horizon",
  10883. height: math.unit(6000, "miles")
  10884. },
  10885. ]
  10886. ))
  10887. characterMakers.push(() => makeCharacter(
  10888. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10889. {
  10890. front: {
  10891. height: math.unit(5, "cm"),
  10892. weight: math.unit(1.94, "g"),
  10893. name: "Front",
  10894. image: {
  10895. source: "./media/characters/fleta/front.svg",
  10896. extra: 835 / 803
  10897. }
  10898. },
  10899. back: {
  10900. height: math.unit(5, "cm"),
  10901. weight: math.unit(1.94, "g"),
  10902. name: "Back",
  10903. image: {
  10904. source: "./media/characters/fleta/back.svg",
  10905. extra: 835 / 803
  10906. }
  10907. },
  10908. },
  10909. [
  10910. {
  10911. name: "Micro",
  10912. height: math.unit(5, "cm"),
  10913. default: true
  10914. },
  10915. ]
  10916. ))
  10917. characterMakers.push(() => makeCharacter(
  10918. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10919. {
  10920. front: {
  10921. height: math.unit(6, "feet"),
  10922. weight: math.unit(225, "lb"),
  10923. name: "Front",
  10924. image: {
  10925. source: "./media/characters/dominic/front.svg",
  10926. extra: 1770 / 1620,
  10927. bottom: 0.025
  10928. }
  10929. },
  10930. back: {
  10931. height: math.unit(6, "feet"),
  10932. weight: math.unit(225, "lb"),
  10933. name: "Back",
  10934. image: {
  10935. source: "./media/characters/dominic/back.svg",
  10936. extra: 1745 / 1620,
  10937. bottom: 0.065
  10938. }
  10939. },
  10940. },
  10941. [
  10942. {
  10943. name: "Nano",
  10944. height: math.unit(0.1, "mm")
  10945. },
  10946. {
  10947. name: "Micro-",
  10948. height: math.unit(1, "mm")
  10949. },
  10950. {
  10951. name: "Micro",
  10952. height: math.unit(4, "inches")
  10953. },
  10954. {
  10955. name: "Normal",
  10956. height: math.unit(6 + 4 / 12, "feet"),
  10957. default: true
  10958. },
  10959. {
  10960. name: "Macro",
  10961. height: math.unit(115, "feet")
  10962. },
  10963. {
  10964. name: "Macro+",
  10965. height: math.unit(955, "feet")
  10966. },
  10967. {
  10968. name: "Megamacro",
  10969. height: math.unit(8990, "feet")
  10970. },
  10971. {
  10972. name: "Gigmacro",
  10973. height: math.unit(9310, "miles")
  10974. },
  10975. {
  10976. name: "Teramacro",
  10977. height: math.unit(1567005010, "miles")
  10978. },
  10979. {
  10980. name: "Examacro",
  10981. height: math.unit(1425, "parsecs")
  10982. },
  10983. ]
  10984. ))
  10985. characterMakers.push(() => makeCharacter(
  10986. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10987. {
  10988. front: {
  10989. height: math.unit(400, "feet"),
  10990. weight: math.unit(44444444, "lb"),
  10991. name: "Front",
  10992. image: {
  10993. source: "./media/characters/major-colonel/front.svg"
  10994. }
  10995. },
  10996. back: {
  10997. height: math.unit(400, "feet"),
  10998. weight: math.unit(44444444, "lb"),
  10999. name: "Back",
  11000. image: {
  11001. source: "./media/characters/major-colonel/back.svg"
  11002. }
  11003. },
  11004. },
  11005. [
  11006. {
  11007. name: "Macro",
  11008. height: math.unit(400, "feet"),
  11009. default: true
  11010. },
  11011. ]
  11012. ))
  11013. characterMakers.push(() => makeCharacter(
  11014. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  11015. {
  11016. catFront: {
  11017. height: math.unit(6, "feet"),
  11018. weight: math.unit(120, "lb"),
  11019. name: "Front (Cat Side)",
  11020. image: {
  11021. source: "./media/characters/axel-lycan/cat-front.svg",
  11022. extra: 430 / 402,
  11023. bottom: 43 / 472.35
  11024. }
  11025. },
  11026. catBack: {
  11027. height: math.unit(6, "feet"),
  11028. weight: math.unit(120, "lb"),
  11029. name: "Back (Cat Side)",
  11030. image: {
  11031. source: "./media/characters/axel-lycan/cat-back.svg",
  11032. extra: 447 / 419,
  11033. bottom: 23.3 / 469
  11034. }
  11035. },
  11036. wolfFront: {
  11037. height: math.unit(6, "feet"),
  11038. weight: math.unit(120, "lb"),
  11039. name: "Front (Wolf Side)",
  11040. image: {
  11041. source: "./media/characters/axel-lycan/wolf-front.svg",
  11042. extra: 485 / 456,
  11043. bottom: 19 / 504
  11044. }
  11045. },
  11046. wolfBack: {
  11047. height: math.unit(6, "feet"),
  11048. weight: math.unit(120, "lb"),
  11049. name: "Back (Wolf Side)",
  11050. image: {
  11051. source: "./media/characters/axel-lycan/wolf-back.svg",
  11052. extra: 475 / 438,
  11053. bottom: 39.2 / 514
  11054. }
  11055. },
  11056. },
  11057. [
  11058. {
  11059. name: "Macro",
  11060. height: math.unit(1, "km"),
  11061. default: true
  11062. },
  11063. ]
  11064. ))
  11065. characterMakers.push(() => makeCharacter(
  11066. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  11067. {
  11068. front: {
  11069. height: math.unit(5 + 9 / 12, "feet"),
  11070. weight: math.unit(175, "lb"),
  11071. name: "Front",
  11072. image: {
  11073. source: "./media/characters/vanrel-hyena/front.svg",
  11074. extra: 1086 / 1010,
  11075. bottom: 0.04
  11076. }
  11077. },
  11078. },
  11079. [
  11080. {
  11081. name: "Normal",
  11082. height: math.unit(5 + 9 / 12, "feet"),
  11083. default: true
  11084. },
  11085. ]
  11086. ))
  11087. characterMakers.push(() => makeCharacter(
  11088. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  11089. {
  11090. front: {
  11091. height: math.unit(6, "feet"),
  11092. weight: math.unit(103, "lb"),
  11093. name: "Front",
  11094. image: {
  11095. source: "./media/characters/abbott-absol/front.svg",
  11096. extra: 765/694,
  11097. bottom: 47/812
  11098. }
  11099. },
  11100. },
  11101. [
  11102. {
  11103. name: "Megamicro",
  11104. height: math.unit(0.1, "mm")
  11105. },
  11106. {
  11107. name: "Micro",
  11108. height: math.unit(1, "inch")
  11109. },
  11110. {
  11111. name: "Normal",
  11112. height: math.unit(6, "feet"),
  11113. default: true
  11114. },
  11115. ]
  11116. ))
  11117. characterMakers.push(() => makeCharacter(
  11118. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  11119. {
  11120. front: {
  11121. height: math.unit(6, "feet"),
  11122. weight: math.unit(264, "lb"),
  11123. name: "Front",
  11124. image: {
  11125. source: "./media/characters/hector/front.svg",
  11126. extra: 2280 / 2130,
  11127. bottom: 0.07
  11128. }
  11129. },
  11130. },
  11131. [
  11132. {
  11133. name: "Normal",
  11134. height: math.unit(12.25, "foot"),
  11135. default: true
  11136. },
  11137. {
  11138. name: "Macro",
  11139. height: math.unit(160, "feet")
  11140. },
  11141. ]
  11142. ))
  11143. characterMakers.push(() => makeCharacter(
  11144. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  11145. {
  11146. front: {
  11147. height: math.unit(6, "feet"),
  11148. weight: math.unit(150, "lb"),
  11149. name: "Front",
  11150. image: {
  11151. source: "./media/characters/sal/front.svg",
  11152. extra: 1846 / 1699,
  11153. bottom: 0.04
  11154. }
  11155. },
  11156. },
  11157. [
  11158. {
  11159. name: "Megamacro",
  11160. height: math.unit(10, "miles"),
  11161. default: true
  11162. },
  11163. ]
  11164. ))
  11165. characterMakers.push(() => makeCharacter(
  11166. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  11167. {
  11168. front: {
  11169. height: math.unit(3, "meters"),
  11170. weight: math.unit(450, "kg"),
  11171. name: "front",
  11172. image: {
  11173. source: "./media/characters/ranger/front.svg",
  11174. extra: 2401 / 2243,
  11175. bottom: 0.05
  11176. }
  11177. },
  11178. },
  11179. [
  11180. {
  11181. name: "Normal",
  11182. height: math.unit(3, "meters"),
  11183. default: true
  11184. },
  11185. ]
  11186. ))
  11187. characterMakers.push(() => makeCharacter(
  11188. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  11189. {
  11190. front: {
  11191. height: math.unit(14, "feet"),
  11192. weight: math.unit(800, "kg"),
  11193. name: "Front",
  11194. image: {
  11195. source: "./media/characters/theresa/front.svg",
  11196. extra: 3575 / 3346,
  11197. bottom: 0.03
  11198. }
  11199. },
  11200. },
  11201. [
  11202. {
  11203. name: "Normal",
  11204. height: math.unit(14, "feet"),
  11205. default: true
  11206. },
  11207. ]
  11208. ))
  11209. characterMakers.push(() => makeCharacter(
  11210. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  11211. {
  11212. front: {
  11213. height: math.unit(6, "feet"),
  11214. weight: math.unit(3, "kg"),
  11215. name: "Front",
  11216. image: {
  11217. source: "./media/characters/ine/front.svg",
  11218. extra: 678 / 539,
  11219. bottom: 0.023
  11220. }
  11221. },
  11222. },
  11223. [
  11224. {
  11225. name: "Normal",
  11226. height: math.unit(2.265, "feet"),
  11227. default: true
  11228. },
  11229. ]
  11230. ))
  11231. characterMakers.push(() => makeCharacter(
  11232. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11233. {
  11234. front: {
  11235. height: math.unit(5, "feet"),
  11236. weight: math.unit(30, "kg"),
  11237. name: "Front",
  11238. image: {
  11239. source: "./media/characters/vial/front.svg",
  11240. extra: 1365 / 1277,
  11241. bottom: 0.04
  11242. }
  11243. },
  11244. },
  11245. [
  11246. {
  11247. name: "Normal",
  11248. height: math.unit(5, "feet"),
  11249. default: true
  11250. },
  11251. ]
  11252. ))
  11253. characterMakers.push(() => makeCharacter(
  11254. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11255. {
  11256. side: {
  11257. height: math.unit(3.4, "meters"),
  11258. weight: math.unit(1000, "lb"),
  11259. name: "Side",
  11260. image: {
  11261. source: "./media/characters/rovoska/side.svg",
  11262. extra: 4403 / 1515
  11263. }
  11264. },
  11265. },
  11266. [
  11267. {
  11268. name: "Normal",
  11269. height: math.unit(3.4, "meters"),
  11270. default: true
  11271. },
  11272. ]
  11273. ))
  11274. characterMakers.push(() => makeCharacter(
  11275. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11276. {
  11277. front: {
  11278. height: math.unit(8, "feet"),
  11279. weight: math.unit(315, "lb"),
  11280. name: "Front",
  11281. image: {
  11282. source: "./media/characters/gunner-rotthbauer/front.svg"
  11283. }
  11284. },
  11285. back: {
  11286. height: math.unit(8, "feet"),
  11287. weight: math.unit(315, "lb"),
  11288. name: "Back",
  11289. image: {
  11290. source: "./media/characters/gunner-rotthbauer/back.svg"
  11291. }
  11292. },
  11293. },
  11294. [
  11295. {
  11296. name: "Micro",
  11297. height: math.unit(3.5, "inches")
  11298. },
  11299. {
  11300. name: "Normal",
  11301. height: math.unit(8, "feet"),
  11302. default: true
  11303. },
  11304. {
  11305. name: "Macro",
  11306. height: math.unit(250, "feet")
  11307. },
  11308. {
  11309. name: "Megamacro",
  11310. height: math.unit(1, "AU")
  11311. },
  11312. ]
  11313. ))
  11314. characterMakers.push(() => makeCharacter(
  11315. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11316. {
  11317. front: {
  11318. height: math.unit(5 + 5 / 12, "feet"),
  11319. weight: math.unit(140, "lb"),
  11320. name: "Front",
  11321. image: {
  11322. source: "./media/characters/allatia/front.svg",
  11323. extra: 1227 / 1180,
  11324. bottom: 0.027
  11325. }
  11326. },
  11327. },
  11328. [
  11329. {
  11330. name: "Normal",
  11331. height: math.unit(5 + 5 / 12, "feet")
  11332. },
  11333. {
  11334. name: "Macro",
  11335. height: math.unit(250, "feet"),
  11336. default: true
  11337. },
  11338. {
  11339. name: "Megamacro",
  11340. height: math.unit(8, "miles")
  11341. }
  11342. ]
  11343. ))
  11344. characterMakers.push(() => makeCharacter(
  11345. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11346. {
  11347. front: {
  11348. height: math.unit(6, "feet"),
  11349. weight: math.unit(120, "lb"),
  11350. name: "Front",
  11351. image: {
  11352. source: "./media/characters/tene/front.svg",
  11353. extra: 814/750,
  11354. bottom: 36/850
  11355. }
  11356. },
  11357. stomping: {
  11358. height: math.unit(2.025, "meters"),
  11359. weight: math.unit(120, "lb"),
  11360. name: "Stomping",
  11361. image: {
  11362. source: "./media/characters/tene/stomping.svg",
  11363. extra: 885/821,
  11364. bottom: 15/900
  11365. }
  11366. },
  11367. sitting: {
  11368. height: math.unit(1, "meter"),
  11369. weight: math.unit(120, "lb"),
  11370. name: "Sitting",
  11371. image: {
  11372. source: "./media/characters/tene/sitting.svg",
  11373. extra: 396/366,
  11374. bottom: 79/475
  11375. }
  11376. },
  11377. smiling: {
  11378. height: math.unit(1.2, "feet"),
  11379. name: "Smiling",
  11380. image: {
  11381. source: "./media/characters/tene/smiling.svg",
  11382. extra: 1364/1071,
  11383. bottom: 0/1364
  11384. }
  11385. },
  11386. smug: {
  11387. height: math.unit(1.3, "feet"),
  11388. name: "Smug",
  11389. image: {
  11390. source: "./media/characters/tene/smug.svg",
  11391. extra: 1323/1082,
  11392. bottom: 0/1323
  11393. }
  11394. },
  11395. feral: {
  11396. height: math.unit(3.9, "feet"),
  11397. weight: math.unit(250, "lb"),
  11398. name: "Feral",
  11399. image: {
  11400. source: "./media/characters/tene/feral.svg",
  11401. extra: 717 / 458,
  11402. bottom: 0.179
  11403. }
  11404. },
  11405. },
  11406. [
  11407. {
  11408. name: "Normal",
  11409. height: math.unit(6, "feet")
  11410. },
  11411. {
  11412. name: "Macro",
  11413. height: math.unit(300, "feet"),
  11414. default: true
  11415. },
  11416. {
  11417. name: "Megamacro",
  11418. height: math.unit(5, "miles")
  11419. },
  11420. ]
  11421. ))
  11422. characterMakers.push(() => makeCharacter(
  11423. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11424. {
  11425. side: {
  11426. height: math.unit(6, "feet"),
  11427. name: "Side",
  11428. image: {
  11429. source: "./media/characters/evander/side.svg",
  11430. extra: 877 / 477
  11431. }
  11432. },
  11433. },
  11434. [
  11435. {
  11436. name: "Normal",
  11437. height: math.unit(0.83, "meters"),
  11438. default: true
  11439. },
  11440. ]
  11441. ))
  11442. characterMakers.push(() => makeCharacter(
  11443. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11444. {
  11445. front: {
  11446. height: math.unit(12, "feet"),
  11447. weight: math.unit(1000, "lb"),
  11448. name: "Front",
  11449. image: {
  11450. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11451. extra: 1762 / 1611
  11452. }
  11453. },
  11454. back: {
  11455. height: math.unit(12, "feet"),
  11456. weight: math.unit(1000, "lb"),
  11457. name: "Back",
  11458. image: {
  11459. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11460. extra: 1762 / 1611
  11461. }
  11462. },
  11463. },
  11464. [
  11465. {
  11466. name: "Normal",
  11467. height: math.unit(12, "feet"),
  11468. default: true
  11469. },
  11470. {
  11471. name: "Kaiju",
  11472. height: math.unit(150, "feet")
  11473. },
  11474. ]
  11475. ))
  11476. characterMakers.push(() => makeCharacter(
  11477. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11478. {
  11479. front: {
  11480. height: math.unit(6, "feet"),
  11481. weight: math.unit(150, "lb"),
  11482. name: "Front",
  11483. image: {
  11484. source: "./media/characters/zero-alurus/front.svg"
  11485. }
  11486. },
  11487. back: {
  11488. height: math.unit(6, "feet"),
  11489. weight: math.unit(150, "lb"),
  11490. name: "Back",
  11491. image: {
  11492. source: "./media/characters/zero-alurus/back.svg"
  11493. }
  11494. },
  11495. },
  11496. [
  11497. {
  11498. name: "Normal",
  11499. height: math.unit(5 + 10 / 12, "feet")
  11500. },
  11501. {
  11502. name: "Macro",
  11503. height: math.unit(60, "feet"),
  11504. default: true
  11505. },
  11506. {
  11507. name: "Macro+",
  11508. height: math.unit(450, "feet")
  11509. },
  11510. ]
  11511. ))
  11512. characterMakers.push(() => makeCharacter(
  11513. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11514. {
  11515. front: {
  11516. height: math.unit(6, "feet"),
  11517. weight: math.unit(200, "lb"),
  11518. name: "Front",
  11519. image: {
  11520. source: "./media/characters/mega-shi/front.svg",
  11521. extra: 1279 / 1250,
  11522. bottom: 0.02
  11523. }
  11524. },
  11525. back: {
  11526. height: math.unit(6, "feet"),
  11527. weight: math.unit(200, "lb"),
  11528. name: "Back",
  11529. image: {
  11530. source: "./media/characters/mega-shi/back.svg",
  11531. extra: 1279 / 1250,
  11532. bottom: 0.02
  11533. }
  11534. },
  11535. },
  11536. [
  11537. {
  11538. name: "Micro",
  11539. height: math.unit(16 + 6 / 12, "feet")
  11540. },
  11541. {
  11542. name: "Third Dimension",
  11543. height: math.unit(40, "meters")
  11544. },
  11545. {
  11546. name: "Normal",
  11547. height: math.unit(660, "feet"),
  11548. default: true
  11549. },
  11550. {
  11551. name: "Megamacro",
  11552. height: math.unit(10, "miles")
  11553. },
  11554. {
  11555. name: "Planetary Launch",
  11556. height: math.unit(500, "miles")
  11557. },
  11558. {
  11559. name: "Interstellar",
  11560. height: math.unit(1e9, "miles")
  11561. },
  11562. {
  11563. name: "Leaving the Universe",
  11564. height: math.unit(1, "gigaparsec")
  11565. },
  11566. {
  11567. name: "Travelling Universes",
  11568. height: math.unit(30e15, "parsecs")
  11569. },
  11570. ]
  11571. ))
  11572. characterMakers.push(() => makeCharacter(
  11573. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11574. {
  11575. front: {
  11576. height: math.unit(5 + 4/12, "feet"),
  11577. weight: math.unit(120, "lb"),
  11578. name: "Front",
  11579. image: {
  11580. source: "./media/characters/odyssey/front.svg",
  11581. extra: 1747/1571,
  11582. bottom: 47/1794
  11583. }
  11584. },
  11585. side: {
  11586. height: math.unit(5.1, "feet"),
  11587. weight: math.unit(120, "lb"),
  11588. name: "Side",
  11589. image: {
  11590. source: "./media/characters/odyssey/side.svg",
  11591. extra: 1847/1619,
  11592. bottom: 47/1894
  11593. }
  11594. },
  11595. lounging: {
  11596. height: math.unit(1.464, "feet"),
  11597. weight: math.unit(120, "lb"),
  11598. name: "Lounging",
  11599. image: {
  11600. source: "./media/characters/odyssey/lounging.svg",
  11601. extra: 1235/837,
  11602. bottom: 551/1786
  11603. }
  11604. },
  11605. },
  11606. [
  11607. {
  11608. name: "Normal",
  11609. height: math.unit(5 + 4 / 12, "feet")
  11610. },
  11611. {
  11612. name: "Macro",
  11613. height: math.unit(1, "km")
  11614. },
  11615. {
  11616. name: "Megamacro",
  11617. height: math.unit(3000, "km")
  11618. },
  11619. {
  11620. name: "Gigamacro",
  11621. height: math.unit(1, "AU"),
  11622. default: true
  11623. },
  11624. {
  11625. name: "Omniversal",
  11626. height: math.unit(100e14, "lightyears")
  11627. },
  11628. ]
  11629. ))
  11630. characterMakers.push(() => makeCharacter(
  11631. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11632. {
  11633. front: {
  11634. height: math.unit(5 + 10/12, "feet"),
  11635. name: "Front",
  11636. image: {
  11637. source: "./media/characters/mekuto/front.svg",
  11638. extra: 875/835,
  11639. bottom: 46/921
  11640. }
  11641. },
  11642. },
  11643. [
  11644. {
  11645. name: "Minimicro",
  11646. height: math.unit(0.2, "inches")
  11647. },
  11648. {
  11649. name: "Micro",
  11650. height: math.unit(1.5, "inches")
  11651. },
  11652. {
  11653. name: "Normal",
  11654. height: math.unit(5 + 10 / 12, "feet"),
  11655. default: true
  11656. },
  11657. {
  11658. name: "Minimacro",
  11659. height: math.unit(17 + 9 / 12, "feet")
  11660. },
  11661. {
  11662. name: "Macro",
  11663. height: math.unit(177.5, "feet")
  11664. },
  11665. {
  11666. name: "Megamacro",
  11667. height: math.unit(152, "miles")
  11668. },
  11669. ]
  11670. ))
  11671. characterMakers.push(() => makeCharacter(
  11672. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11673. {
  11674. front: {
  11675. height: math.unit(6.5, "inches"),
  11676. weight: math.unit(13, "oz"),
  11677. name: "Front",
  11678. image: {
  11679. source: "./media/characters/dafydd-tomos/front.svg",
  11680. extra: 2990 / 2603,
  11681. bottom: 0.03
  11682. }
  11683. },
  11684. },
  11685. [
  11686. {
  11687. name: "Micro",
  11688. height: math.unit(6.5, "inches"),
  11689. default: true
  11690. },
  11691. ]
  11692. ))
  11693. characterMakers.push(() => makeCharacter(
  11694. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11695. {
  11696. front: {
  11697. height: math.unit(6, "feet"),
  11698. weight: math.unit(150, "lb"),
  11699. name: "Front",
  11700. image: {
  11701. source: "./media/characters/splinter/front.svg",
  11702. extra: 2990 / 2882,
  11703. bottom: 0.04
  11704. }
  11705. },
  11706. back: {
  11707. height: math.unit(6, "feet"),
  11708. weight: math.unit(150, "lb"),
  11709. name: "Back",
  11710. image: {
  11711. source: "./media/characters/splinter/back.svg",
  11712. extra: 2990 / 2882,
  11713. bottom: 0.04
  11714. }
  11715. },
  11716. },
  11717. [
  11718. {
  11719. name: "Normal",
  11720. height: math.unit(6, "feet")
  11721. },
  11722. {
  11723. name: "Macro",
  11724. height: math.unit(230, "meters"),
  11725. default: true
  11726. },
  11727. ]
  11728. ))
  11729. characterMakers.push(() => makeCharacter(
  11730. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11731. {
  11732. front: {
  11733. height: math.unit(4 + 10 / 12, "feet"),
  11734. weight: math.unit(480, "lb"),
  11735. name: "Front",
  11736. image: {
  11737. source: "./media/characters/snow-gabumon/front.svg",
  11738. extra: 1140 / 963,
  11739. bottom: 0.058
  11740. }
  11741. },
  11742. back: {
  11743. height: math.unit(4 + 10 / 12, "feet"),
  11744. weight: math.unit(480, "lb"),
  11745. name: "Back",
  11746. image: {
  11747. source: "./media/characters/snow-gabumon/back.svg",
  11748. extra: 1115 / 962,
  11749. bottom: 0.041
  11750. }
  11751. },
  11752. frontUndresed: {
  11753. height: math.unit(4 + 10 / 12, "feet"),
  11754. weight: math.unit(480, "lb"),
  11755. name: "Front (Undressed)",
  11756. image: {
  11757. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11758. extra: 1061 / 960,
  11759. bottom: 0.045
  11760. }
  11761. },
  11762. },
  11763. [
  11764. {
  11765. name: "Micro",
  11766. height: math.unit(1, "inch")
  11767. },
  11768. {
  11769. name: "Normal",
  11770. height: math.unit(4 + 10 / 12, "feet"),
  11771. default: true
  11772. },
  11773. {
  11774. name: "Macro",
  11775. height: math.unit(200, "feet")
  11776. },
  11777. {
  11778. name: "Megamacro",
  11779. height: math.unit(120, "miles")
  11780. },
  11781. {
  11782. name: "Gigamacro",
  11783. height: math.unit(9800, "miles")
  11784. },
  11785. ]
  11786. ))
  11787. characterMakers.push(() => makeCharacter(
  11788. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11789. {
  11790. front: {
  11791. height: math.unit(1.7, "meters"),
  11792. weight: math.unit(140, "lb"),
  11793. name: "Front",
  11794. image: {
  11795. source: "./media/characters/moody/front.svg",
  11796. extra: 3226 / 3007,
  11797. bottom: 0.087
  11798. }
  11799. },
  11800. },
  11801. [
  11802. {
  11803. name: "Micro",
  11804. height: math.unit(1, "mm")
  11805. },
  11806. {
  11807. name: "Normal",
  11808. height: math.unit(1.7, "meters"),
  11809. default: true
  11810. },
  11811. {
  11812. name: "Macro",
  11813. height: math.unit(80, "meters")
  11814. },
  11815. {
  11816. name: "Macro+",
  11817. height: math.unit(500, "meters")
  11818. },
  11819. ]
  11820. ))
  11821. characterMakers.push(() => makeCharacter(
  11822. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11823. {
  11824. front: {
  11825. height: math.unit(6, "feet"),
  11826. weight: math.unit(150, "lb"),
  11827. name: "Front",
  11828. image: {
  11829. source: "./media/characters/zyas/front.svg",
  11830. extra: 1180 / 1120,
  11831. bottom: 0.045
  11832. }
  11833. },
  11834. },
  11835. [
  11836. {
  11837. name: "Normal",
  11838. height: math.unit(10, "feet"),
  11839. default: true
  11840. },
  11841. {
  11842. name: "Macro",
  11843. height: math.unit(500, "feet")
  11844. },
  11845. {
  11846. name: "Megamacro",
  11847. height: math.unit(5, "miles")
  11848. },
  11849. {
  11850. name: "Teramacro",
  11851. height: math.unit(150000, "miles")
  11852. },
  11853. ]
  11854. ))
  11855. characterMakers.push(() => makeCharacter(
  11856. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11857. {
  11858. front: {
  11859. height: math.unit(6, "feet"),
  11860. weight: math.unit(150, "lb"),
  11861. name: "Front",
  11862. image: {
  11863. source: "./media/characters/cuon/front.svg",
  11864. extra: 1390 / 1320,
  11865. bottom: 0.008
  11866. }
  11867. },
  11868. },
  11869. [
  11870. {
  11871. name: "Micro",
  11872. height: math.unit(3, "inches")
  11873. },
  11874. {
  11875. name: "Normal",
  11876. height: math.unit(18 + 9 / 12, "feet"),
  11877. default: true
  11878. },
  11879. {
  11880. name: "Macro",
  11881. height: math.unit(360, "feet")
  11882. },
  11883. {
  11884. name: "Megamacro",
  11885. height: math.unit(360, "miles")
  11886. },
  11887. ]
  11888. ))
  11889. characterMakers.push(() => makeCharacter(
  11890. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11891. {
  11892. front: {
  11893. height: math.unit(2.4, "meters"),
  11894. weight: math.unit(70, "kg"),
  11895. name: "Front",
  11896. image: {
  11897. source: "./media/characters/nyanuxk/front.svg",
  11898. extra: 1172 / 1084,
  11899. bottom: 0.065
  11900. }
  11901. },
  11902. side: {
  11903. height: math.unit(2.4, "meters"),
  11904. weight: math.unit(70, "kg"),
  11905. name: "Side",
  11906. image: {
  11907. source: "./media/characters/nyanuxk/side.svg",
  11908. extra: 1190 / 1132,
  11909. bottom: 0.007
  11910. }
  11911. },
  11912. back: {
  11913. height: math.unit(2.4, "meters"),
  11914. weight: math.unit(70, "kg"),
  11915. name: "Back",
  11916. image: {
  11917. source: "./media/characters/nyanuxk/back.svg",
  11918. extra: 1200 / 1141,
  11919. bottom: 0.015
  11920. }
  11921. },
  11922. foot: {
  11923. height: math.unit(0.52, "meters"),
  11924. name: "Foot",
  11925. image: {
  11926. source: "./media/characters/nyanuxk/foot.svg"
  11927. }
  11928. },
  11929. },
  11930. [
  11931. {
  11932. name: "Micro",
  11933. height: math.unit(2, "cm")
  11934. },
  11935. {
  11936. name: "Normal",
  11937. height: math.unit(2.4, "meters"),
  11938. default: true
  11939. },
  11940. {
  11941. name: "Smaller Macro",
  11942. height: math.unit(120, "meters")
  11943. },
  11944. {
  11945. name: "Bigger Macro",
  11946. height: math.unit(1.2, "km")
  11947. },
  11948. {
  11949. name: "Megamacro",
  11950. height: math.unit(15, "kilometers")
  11951. },
  11952. {
  11953. name: "Gigamacro",
  11954. height: math.unit(2000, "km")
  11955. },
  11956. {
  11957. name: "Teramacro",
  11958. height: math.unit(500000, "km")
  11959. },
  11960. ]
  11961. ))
  11962. characterMakers.push(() => makeCharacter(
  11963. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11964. {
  11965. side: {
  11966. height: math.unit(6, "feet"),
  11967. name: "Side",
  11968. image: {
  11969. source: "./media/characters/ailbhe/side.svg",
  11970. extra: 757 / 464,
  11971. bottom: 0.041
  11972. }
  11973. },
  11974. },
  11975. [
  11976. {
  11977. name: "Normal",
  11978. height: math.unit(1.07, "meters"),
  11979. default: true
  11980. },
  11981. ]
  11982. ))
  11983. characterMakers.push(() => makeCharacter(
  11984. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11985. {
  11986. front: {
  11987. height: math.unit(6, "feet"),
  11988. weight: math.unit(120, "kg"),
  11989. name: "Front",
  11990. image: {
  11991. source: "./media/characters/zevulfius/front.svg",
  11992. extra: 965 / 903
  11993. }
  11994. },
  11995. side: {
  11996. height: math.unit(6, "feet"),
  11997. weight: math.unit(120, "kg"),
  11998. name: "Side",
  11999. image: {
  12000. source: "./media/characters/zevulfius/side.svg",
  12001. extra: 939 / 900
  12002. }
  12003. },
  12004. back: {
  12005. height: math.unit(6, "feet"),
  12006. weight: math.unit(120, "kg"),
  12007. name: "Back",
  12008. image: {
  12009. source: "./media/characters/zevulfius/back.svg",
  12010. extra: 918 / 854,
  12011. bottom: 0.005
  12012. }
  12013. },
  12014. foot: {
  12015. height: math.unit(6 / 3.72, "feet"),
  12016. name: "Foot",
  12017. image: {
  12018. source: "./media/characters/zevulfius/foot.svg"
  12019. }
  12020. },
  12021. },
  12022. [
  12023. {
  12024. name: "Macro",
  12025. height: math.unit(750, "meters")
  12026. },
  12027. {
  12028. name: "Megamacro",
  12029. height: math.unit(20, "km"),
  12030. default: true
  12031. },
  12032. {
  12033. name: "Gigamacro",
  12034. height: math.unit(2000, "km")
  12035. },
  12036. {
  12037. name: "Teramacro",
  12038. height: math.unit(250000, "km")
  12039. },
  12040. ]
  12041. ))
  12042. characterMakers.push(() => makeCharacter(
  12043. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  12044. {
  12045. front: {
  12046. height: math.unit(100, "feet"),
  12047. weight: math.unit(350, "kg"),
  12048. name: "Front",
  12049. image: {
  12050. source: "./media/characters/rikes/front.svg",
  12051. extra: 1565 / 1483,
  12052. bottom: 0.017
  12053. }
  12054. },
  12055. },
  12056. [
  12057. {
  12058. name: "Macro",
  12059. height: math.unit(100, "feet"),
  12060. default: true
  12061. },
  12062. ]
  12063. ))
  12064. characterMakers.push(() => makeCharacter(
  12065. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  12066. {
  12067. front: {
  12068. height: math.unit(8, "feet"),
  12069. weight: math.unit(356, "lb"),
  12070. name: "Front",
  12071. image: {
  12072. source: "./media/characters/adam-silver-mane/front.svg",
  12073. extra: 1036/937,
  12074. bottom: 63/1099
  12075. }
  12076. },
  12077. side: {
  12078. height: math.unit(8, "feet"),
  12079. weight: math.unit(356, "lb"),
  12080. name: "Side",
  12081. image: {
  12082. source: "./media/characters/adam-silver-mane/side.svg",
  12083. extra: 997/901,
  12084. bottom: 59/1056
  12085. }
  12086. },
  12087. frontNsfw: {
  12088. height: math.unit(8, "feet"),
  12089. weight: math.unit(356, "lb"),
  12090. name: "Front (NSFW)",
  12091. image: {
  12092. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  12093. extra: 1036/937,
  12094. bottom: 63/1099
  12095. }
  12096. },
  12097. sideNsfw: {
  12098. height: math.unit(8, "feet"),
  12099. weight: math.unit(356, "lb"),
  12100. name: "Side (NSFW)",
  12101. image: {
  12102. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  12103. extra: 997/901,
  12104. bottom: 59/1056
  12105. }
  12106. },
  12107. dick: {
  12108. height: math.unit(2.1, "feet"),
  12109. name: "Dick",
  12110. image: {
  12111. source: "./media/characters/adam-silver-mane/dick.svg"
  12112. }
  12113. },
  12114. taur: {
  12115. height: math.unit(16, "feet"),
  12116. weight: math.unit(1500, "kg"),
  12117. name: "Taur",
  12118. image: {
  12119. source: "./media/characters/adam-silver-mane/taur.svg",
  12120. extra: 1713 / 1571,
  12121. bottom: 0.01
  12122. }
  12123. },
  12124. },
  12125. [
  12126. {
  12127. name: "Normal",
  12128. height: math.unit(8, "feet")
  12129. },
  12130. {
  12131. name: "Minimacro",
  12132. height: math.unit(80, "feet")
  12133. },
  12134. {
  12135. name: "MDA",
  12136. height: math.unit(80, "meters")
  12137. },
  12138. {
  12139. name: "Macro",
  12140. height: math.unit(800, "feet"),
  12141. default: true
  12142. },
  12143. {
  12144. name: "Megamacro",
  12145. height: math.unit(8000, "feet")
  12146. },
  12147. {
  12148. name: "Gigamacro",
  12149. height: math.unit(800, "miles")
  12150. },
  12151. {
  12152. name: "Teramacro",
  12153. height: math.unit(80000, "miles")
  12154. },
  12155. {
  12156. name: "Celestial",
  12157. height: math.unit(8e6, "miles")
  12158. },
  12159. {
  12160. name: "Star Dragon",
  12161. height: math.unit(800000, "parsecs")
  12162. },
  12163. {
  12164. name: "Godly",
  12165. height: math.unit(800, "teraparsecs")
  12166. },
  12167. ]
  12168. ))
  12169. characterMakers.push(() => makeCharacter(
  12170. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  12171. {
  12172. front: {
  12173. height: math.unit(6, "feet"),
  12174. weight: math.unit(150, "lb"),
  12175. name: "Front",
  12176. image: {
  12177. source: "./media/characters/ky'owin/front.svg",
  12178. extra: 3862/3053,
  12179. bottom: 74/3936
  12180. }
  12181. },
  12182. },
  12183. [
  12184. {
  12185. name: "Normal",
  12186. height: math.unit(6 + 8 / 12, "feet")
  12187. },
  12188. {
  12189. name: "Large",
  12190. height: math.unit(68, "feet")
  12191. },
  12192. {
  12193. name: "Macro",
  12194. height: math.unit(132, "feet")
  12195. },
  12196. {
  12197. name: "Macro+",
  12198. height: math.unit(340, "feet")
  12199. },
  12200. {
  12201. name: "Macro++",
  12202. height: math.unit(680, "feet"),
  12203. default: true
  12204. },
  12205. {
  12206. name: "Megamacro",
  12207. height: math.unit(1, "mile")
  12208. },
  12209. {
  12210. name: "Megamacro+",
  12211. height: math.unit(10, "miles")
  12212. },
  12213. ]
  12214. ))
  12215. characterMakers.push(() => makeCharacter(
  12216. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12217. {
  12218. front: {
  12219. height: math.unit(4, "feet"),
  12220. weight: math.unit(50, "lb"),
  12221. name: "Front",
  12222. image: {
  12223. source: "./media/characters/mal/front.svg",
  12224. extra: 785 / 724,
  12225. bottom: 0.07
  12226. }
  12227. },
  12228. },
  12229. [
  12230. {
  12231. name: "Micro",
  12232. height: math.unit(4, "inches")
  12233. },
  12234. {
  12235. name: "Normal",
  12236. height: math.unit(4, "feet"),
  12237. default: true
  12238. },
  12239. {
  12240. name: "Macro",
  12241. height: math.unit(200, "feet")
  12242. },
  12243. ]
  12244. ))
  12245. characterMakers.push(() => makeCharacter(
  12246. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12247. {
  12248. front: {
  12249. height: math.unit(6, "feet"),
  12250. weight: math.unit(150, "lb"),
  12251. name: "Front",
  12252. image: {
  12253. source: "./media/characters/jordan-deware/front.svg",
  12254. extra: 1191 / 1012
  12255. }
  12256. },
  12257. },
  12258. [
  12259. {
  12260. name: "Nano",
  12261. height: math.unit(0.01, "mm")
  12262. },
  12263. {
  12264. name: "Minimicro",
  12265. height: math.unit(1, "mm")
  12266. },
  12267. {
  12268. name: "Micro",
  12269. height: math.unit(0.5, "inches")
  12270. },
  12271. {
  12272. name: "Normal",
  12273. height: math.unit(4, "feet"),
  12274. default: true
  12275. },
  12276. {
  12277. name: "Minimacro",
  12278. height: math.unit(40, "meters")
  12279. },
  12280. {
  12281. name: "Small Macro",
  12282. height: math.unit(400, "meters")
  12283. },
  12284. {
  12285. name: "Macro",
  12286. height: math.unit(4, "miles")
  12287. },
  12288. {
  12289. name: "Megamacro",
  12290. height: math.unit(40, "miles")
  12291. },
  12292. {
  12293. name: "Megamacro+",
  12294. height: math.unit(400, "miles")
  12295. },
  12296. {
  12297. name: "Gigamacro",
  12298. height: math.unit(400000, "miles")
  12299. },
  12300. ]
  12301. ))
  12302. characterMakers.push(() => makeCharacter(
  12303. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12304. {
  12305. side: {
  12306. height: math.unit(6, "feet"),
  12307. weight: math.unit(150, "lb"),
  12308. name: "Side",
  12309. image: {
  12310. source: "./media/characters/kimiko/side.svg",
  12311. extra: 600 / 358
  12312. }
  12313. },
  12314. },
  12315. [
  12316. {
  12317. name: "Normal",
  12318. height: math.unit(15, "feet"),
  12319. default: true
  12320. },
  12321. {
  12322. name: "Macro",
  12323. height: math.unit(220, "feet")
  12324. },
  12325. {
  12326. name: "Macro+",
  12327. height: math.unit(1450, "feet")
  12328. },
  12329. {
  12330. name: "Megamacro",
  12331. height: math.unit(11500, "feet")
  12332. },
  12333. {
  12334. name: "Gigamacro",
  12335. height: math.unit(9500, "miles")
  12336. },
  12337. {
  12338. name: "Teramacro",
  12339. height: math.unit(2208005005, "miles")
  12340. },
  12341. {
  12342. name: "Examacro",
  12343. height: math.unit(2750, "parsecs")
  12344. },
  12345. {
  12346. name: "Zettamacro",
  12347. height: math.unit(101500, "parsecs")
  12348. },
  12349. ]
  12350. ))
  12351. characterMakers.push(() => makeCharacter(
  12352. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12353. {
  12354. front: {
  12355. height: math.unit(6, "feet"),
  12356. weight: math.unit(70, "kg"),
  12357. name: "Front",
  12358. image: {
  12359. source: "./media/characters/andrew-sleepy/front.svg"
  12360. }
  12361. },
  12362. side: {
  12363. height: math.unit(6, "feet"),
  12364. weight: math.unit(70, "kg"),
  12365. name: "Side",
  12366. image: {
  12367. source: "./media/characters/andrew-sleepy/side.svg"
  12368. }
  12369. },
  12370. },
  12371. [
  12372. {
  12373. name: "Micro",
  12374. height: math.unit(1, "mm"),
  12375. default: true
  12376. },
  12377. ]
  12378. ))
  12379. characterMakers.push(() => makeCharacter(
  12380. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12381. {
  12382. front: {
  12383. height: math.unit(6, "feet"),
  12384. weight: math.unit(150, "lb"),
  12385. name: "Front",
  12386. image: {
  12387. source: "./media/characters/judio/front.svg",
  12388. extra: 1258 / 1110
  12389. }
  12390. },
  12391. },
  12392. [
  12393. {
  12394. name: "Normal",
  12395. height: math.unit(5 + 6 / 12, "feet")
  12396. },
  12397. {
  12398. name: "Macro",
  12399. height: math.unit(1000, "feet"),
  12400. default: true
  12401. },
  12402. {
  12403. name: "Megamacro",
  12404. height: math.unit(10, "miles")
  12405. },
  12406. ]
  12407. ))
  12408. characterMakers.push(() => makeCharacter(
  12409. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12410. {
  12411. frontDressed: {
  12412. height: math.unit(6, "feet"),
  12413. weight: math.unit(68, "kg"),
  12414. name: "Front (Dressed)",
  12415. image: {
  12416. source: "./media/characters/nomaxice/front-dressed.svg",
  12417. extra: 1137/824,
  12418. bottom: 74/1211
  12419. }
  12420. },
  12421. frontShorts: {
  12422. height: math.unit(6, "feet"),
  12423. weight: math.unit(68, "kg"),
  12424. name: "Front (Shorts)",
  12425. image: {
  12426. source: "./media/characters/nomaxice/front-shorts.svg",
  12427. extra: 1137/824,
  12428. bottom: 74/1211
  12429. }
  12430. },
  12431. back: {
  12432. height: math.unit(6, "feet"),
  12433. weight: math.unit(68, "kg"),
  12434. name: "Back",
  12435. image: {
  12436. source: "./media/characters/nomaxice/back.svg",
  12437. extra: 822/786,
  12438. bottom: 39/861
  12439. }
  12440. },
  12441. hand: {
  12442. height: math.unit(0.565, "feet"),
  12443. name: "Hand",
  12444. image: {
  12445. source: "./media/characters/nomaxice/hand.svg"
  12446. }
  12447. },
  12448. foot: {
  12449. height: math.unit(1, "feet"),
  12450. name: "Foot",
  12451. image: {
  12452. source: "./media/characters/nomaxice/foot.svg"
  12453. }
  12454. },
  12455. },
  12456. [
  12457. {
  12458. name: "Micro",
  12459. height: math.unit(8, "cm")
  12460. },
  12461. {
  12462. name: "Norm",
  12463. height: math.unit(1.82, "m")
  12464. },
  12465. {
  12466. name: "Norm+",
  12467. height: math.unit(8.8, "feet"),
  12468. default: true
  12469. },
  12470. {
  12471. name: "Big",
  12472. height: math.unit(8, "meters")
  12473. },
  12474. {
  12475. name: "Macro",
  12476. height: math.unit(18, "meters")
  12477. },
  12478. {
  12479. name: "Macro+",
  12480. height: math.unit(88, "meters")
  12481. },
  12482. ]
  12483. ))
  12484. characterMakers.push(() => makeCharacter(
  12485. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12486. {
  12487. front: {
  12488. height: math.unit(12, "feet"),
  12489. weight: math.unit(1.5, "tons"),
  12490. name: "Front",
  12491. image: {
  12492. source: "./media/characters/dydros/front.svg",
  12493. extra: 863 / 800,
  12494. bottom: 0.015
  12495. }
  12496. },
  12497. back: {
  12498. height: math.unit(12, "feet"),
  12499. weight: math.unit(1.5, "tons"),
  12500. name: "Back",
  12501. image: {
  12502. source: "./media/characters/dydros/back.svg",
  12503. extra: 900 / 843,
  12504. bottom: 0.005
  12505. }
  12506. },
  12507. },
  12508. [
  12509. {
  12510. name: "Normal",
  12511. height: math.unit(12, "feet"),
  12512. default: true
  12513. },
  12514. ]
  12515. ))
  12516. characterMakers.push(() => makeCharacter(
  12517. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12518. {
  12519. front: {
  12520. height: math.unit(6, "feet"),
  12521. weight: math.unit(100, "kg"),
  12522. name: "Front",
  12523. image: {
  12524. source: "./media/characters/riggi/front.svg",
  12525. extra: 5787 / 5303
  12526. }
  12527. },
  12528. hyper: {
  12529. height: math.unit(6 * 5 / 3, "feet"),
  12530. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12531. name: "Hyper",
  12532. image: {
  12533. source: "./media/characters/riggi/hyper.svg",
  12534. extra: 3595 / 3485
  12535. }
  12536. },
  12537. },
  12538. [
  12539. {
  12540. name: "Small Macro",
  12541. height: math.unit(50, "feet")
  12542. },
  12543. {
  12544. name: "Default",
  12545. height: math.unit(200, "feet"),
  12546. default: true
  12547. },
  12548. {
  12549. name: "Loom",
  12550. height: math.unit(10000, "feet")
  12551. },
  12552. {
  12553. name: "Cruising Altitude",
  12554. height: math.unit(30000, "feet")
  12555. },
  12556. {
  12557. name: "Megamacro",
  12558. height: math.unit(100, "miles")
  12559. },
  12560. {
  12561. name: "Continent Sized",
  12562. height: math.unit(2800, "miles")
  12563. },
  12564. {
  12565. name: "Earth Sized",
  12566. height: math.unit(8000, "miles")
  12567. },
  12568. ]
  12569. ))
  12570. characterMakers.push(() => makeCharacter(
  12571. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12572. {
  12573. front: {
  12574. height: math.unit(6, "feet"),
  12575. weight: math.unit(250, "lb"),
  12576. name: "Front",
  12577. image: {
  12578. source: "./media/characters/alexi/front.svg",
  12579. extra: 3483 / 3291,
  12580. bottom: 0.04
  12581. }
  12582. },
  12583. back: {
  12584. height: math.unit(6, "feet"),
  12585. weight: math.unit(250, "lb"),
  12586. name: "Back",
  12587. image: {
  12588. source: "./media/characters/alexi/back.svg",
  12589. extra: 3533 / 3356,
  12590. bottom: 0.021
  12591. }
  12592. },
  12593. frontTransforming: {
  12594. height: math.unit(8.58, "feet"),
  12595. weight: math.unit(1300, "lb"),
  12596. name: "Transforming",
  12597. image: {
  12598. source: "./media/characters/alexi/front-transforming.svg",
  12599. extra: 437 / 409,
  12600. bottom: 19 / 458.66
  12601. }
  12602. },
  12603. frontTransformed: {
  12604. height: math.unit(12.5, "feet"),
  12605. weight: math.unit(4000, "lb"),
  12606. name: "Transformed",
  12607. image: {
  12608. source: "./media/characters/alexi/front-transformed.svg",
  12609. extra: 639 / 614,
  12610. bottom: 30.55 / 671
  12611. }
  12612. },
  12613. },
  12614. [
  12615. {
  12616. name: "Normal",
  12617. height: math.unit(14, "feet"),
  12618. default: true
  12619. },
  12620. {
  12621. name: "Minimacro",
  12622. height: math.unit(30, "meters")
  12623. },
  12624. {
  12625. name: "Macro",
  12626. height: math.unit(500, "meters")
  12627. },
  12628. {
  12629. name: "Megamacro",
  12630. height: math.unit(9000, "km")
  12631. },
  12632. {
  12633. name: "Teramacro",
  12634. height: math.unit(384000, "km")
  12635. },
  12636. ]
  12637. ))
  12638. characterMakers.push(() => makeCharacter(
  12639. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12640. {
  12641. front: {
  12642. height: math.unit(6, "feet"),
  12643. weight: math.unit(150, "lb"),
  12644. name: "Front",
  12645. image: {
  12646. source: "./media/characters/kayroo/front.svg",
  12647. extra: 1153 / 1038,
  12648. bottom: 0.06
  12649. }
  12650. },
  12651. foot: {
  12652. height: math.unit(6, "feet"),
  12653. weight: math.unit(150, "lb"),
  12654. name: "Foot",
  12655. image: {
  12656. source: "./media/characters/kayroo/foot.svg"
  12657. }
  12658. },
  12659. },
  12660. [
  12661. {
  12662. name: "Normal",
  12663. height: math.unit(8, "feet"),
  12664. default: true
  12665. },
  12666. {
  12667. name: "Minimacro",
  12668. height: math.unit(250, "feet")
  12669. },
  12670. {
  12671. name: "Macro",
  12672. height: math.unit(2800, "feet")
  12673. },
  12674. {
  12675. name: "Megamacro",
  12676. height: math.unit(5200, "feet")
  12677. },
  12678. {
  12679. name: "Gigamacro",
  12680. height: math.unit(27000, "feet")
  12681. },
  12682. {
  12683. name: "Omega",
  12684. height: math.unit(45000, "feet")
  12685. },
  12686. ]
  12687. ))
  12688. characterMakers.push(() => makeCharacter(
  12689. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12690. {
  12691. front: {
  12692. height: math.unit(18, "feet"),
  12693. weight: math.unit(5800, "lb"),
  12694. name: "Front",
  12695. image: {
  12696. source: "./media/characters/rhys/front.svg",
  12697. extra: 3386 / 3090,
  12698. bottom: 0.07
  12699. }
  12700. },
  12701. },
  12702. [
  12703. {
  12704. name: "Normal",
  12705. height: math.unit(18, "feet"),
  12706. default: true
  12707. },
  12708. {
  12709. name: "Working Size",
  12710. height: math.unit(200, "feet")
  12711. },
  12712. {
  12713. name: "Demolition Size",
  12714. height: math.unit(2000, "feet")
  12715. },
  12716. {
  12717. name: "Maximum Licensed Size",
  12718. height: math.unit(5, "miles")
  12719. },
  12720. {
  12721. name: "Maximum Observed Size",
  12722. height: math.unit(10, "yottameters")
  12723. },
  12724. ]
  12725. ))
  12726. characterMakers.push(() => makeCharacter(
  12727. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12728. {
  12729. front: {
  12730. height: math.unit(6, "feet"),
  12731. weight: math.unit(250, "lb"),
  12732. name: "Front",
  12733. image: {
  12734. source: "./media/characters/toto/front.svg",
  12735. extra: 527 / 479,
  12736. bottom: 0.05
  12737. }
  12738. },
  12739. },
  12740. [
  12741. {
  12742. name: "Micro",
  12743. height: math.unit(3, "feet")
  12744. },
  12745. {
  12746. name: "Normal",
  12747. height: math.unit(10, "feet")
  12748. },
  12749. {
  12750. name: "Macro",
  12751. height: math.unit(150, "feet"),
  12752. default: true
  12753. },
  12754. {
  12755. name: "Megamacro",
  12756. height: math.unit(1200, "feet")
  12757. },
  12758. ]
  12759. ))
  12760. characterMakers.push(() => makeCharacter(
  12761. { name: "King", species: ["lion"], tags: ["anthro"] },
  12762. {
  12763. back: {
  12764. height: math.unit(6, "feet"),
  12765. weight: math.unit(150, "lb"),
  12766. name: "Back",
  12767. image: {
  12768. source: "./media/characters/king/back.svg"
  12769. }
  12770. },
  12771. },
  12772. [
  12773. {
  12774. name: "Micro",
  12775. height: math.unit(2, "inches")
  12776. },
  12777. {
  12778. name: "Normal",
  12779. height: math.unit(8, "feet")
  12780. },
  12781. {
  12782. name: "Macro",
  12783. height: math.unit(200, "feet"),
  12784. default: true
  12785. },
  12786. {
  12787. name: "Megamacro",
  12788. height: math.unit(50, "miles")
  12789. },
  12790. ]
  12791. ))
  12792. characterMakers.push(() => makeCharacter(
  12793. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12794. {
  12795. front: {
  12796. height: math.unit(11, "feet"),
  12797. weight: math.unit(1400, "lb"),
  12798. name: "Front",
  12799. image: {
  12800. source: "./media/characters/cordite/front.svg",
  12801. extra: 1919/1827,
  12802. bottom: 40/1959
  12803. }
  12804. },
  12805. side: {
  12806. height: math.unit(11, "feet"),
  12807. weight: math.unit(1400, "lb"),
  12808. name: "Side",
  12809. image: {
  12810. source: "./media/characters/cordite/side.svg",
  12811. extra: 1908/1793,
  12812. bottom: 38/1946
  12813. }
  12814. },
  12815. back: {
  12816. height: math.unit(11, "feet"),
  12817. weight: math.unit(1400, "lb"),
  12818. name: "Back",
  12819. image: {
  12820. source: "./media/characters/cordite/back.svg",
  12821. extra: 1938/1837,
  12822. bottom: 10/1948
  12823. }
  12824. },
  12825. feral: {
  12826. height: math.unit(2, "feet"),
  12827. weight: math.unit(90, "lb"),
  12828. name: "Feral",
  12829. image: {
  12830. source: "./media/characters/cordite/feral.svg",
  12831. extra: 1260 / 755,
  12832. bottom: 0.05
  12833. }
  12834. },
  12835. },
  12836. [
  12837. {
  12838. name: "Normal",
  12839. height: math.unit(11, "feet"),
  12840. default: true
  12841. },
  12842. ]
  12843. ))
  12844. characterMakers.push(() => makeCharacter(
  12845. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12846. {
  12847. front: {
  12848. height: math.unit(6, "feet"),
  12849. weight: math.unit(150, "lb"),
  12850. name: "Front",
  12851. image: {
  12852. source: "./media/characters/pianostrong/front.svg",
  12853. extra: 6577 / 6254,
  12854. bottom: 0.02
  12855. }
  12856. },
  12857. side: {
  12858. height: math.unit(6, "feet"),
  12859. weight: math.unit(150, "lb"),
  12860. name: "Side",
  12861. image: {
  12862. source: "./media/characters/pianostrong/side.svg",
  12863. extra: 6106 / 5730
  12864. }
  12865. },
  12866. back: {
  12867. height: math.unit(6, "feet"),
  12868. weight: math.unit(150, "lb"),
  12869. name: "Back",
  12870. image: {
  12871. source: "./media/characters/pianostrong/back.svg",
  12872. extra: 6085 / 5733,
  12873. bottom: 0.01
  12874. }
  12875. },
  12876. },
  12877. [
  12878. {
  12879. name: "Macro",
  12880. height: math.unit(100, "feet")
  12881. },
  12882. {
  12883. name: "Macro+",
  12884. height: math.unit(300, "feet"),
  12885. default: true
  12886. },
  12887. {
  12888. name: "Macro++",
  12889. height: math.unit(1000, "feet")
  12890. },
  12891. ]
  12892. ))
  12893. characterMakers.push(() => makeCharacter(
  12894. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12895. {
  12896. front: {
  12897. height: math.unit(6, "feet"),
  12898. weight: math.unit(150, "lb"),
  12899. name: "Front",
  12900. image: {
  12901. source: "./media/characters/kona/front.svg",
  12902. extra: 2960 / 2629,
  12903. bottom: 0.005
  12904. }
  12905. },
  12906. },
  12907. [
  12908. {
  12909. name: "Normal",
  12910. height: math.unit(11 + 8 / 12, "feet")
  12911. },
  12912. {
  12913. name: "Macro",
  12914. height: math.unit(850, "feet"),
  12915. default: true
  12916. },
  12917. {
  12918. name: "Macro+",
  12919. height: math.unit(1.5, "km"),
  12920. default: true
  12921. },
  12922. {
  12923. name: "Megamacro",
  12924. height: math.unit(80, "miles")
  12925. },
  12926. {
  12927. name: "Gigamacro",
  12928. height: math.unit(3500, "miles")
  12929. },
  12930. ]
  12931. ))
  12932. characterMakers.push(() => makeCharacter(
  12933. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12934. {
  12935. side: {
  12936. height: math.unit(1.9, "meters"),
  12937. weight: math.unit(326, "kg"),
  12938. name: "Side",
  12939. image: {
  12940. source: "./media/characters/levi/side.svg",
  12941. extra: 1704 / 1334,
  12942. bottom: 0.02
  12943. }
  12944. },
  12945. },
  12946. [
  12947. {
  12948. name: "Normal",
  12949. height: math.unit(1.9, "meters"),
  12950. default: true
  12951. },
  12952. {
  12953. name: "Macro",
  12954. height: math.unit(20, "meters")
  12955. },
  12956. {
  12957. name: "Macro+",
  12958. height: math.unit(200, "meters")
  12959. },
  12960. {
  12961. name: "Megamacro",
  12962. height: math.unit(2, "km")
  12963. },
  12964. {
  12965. name: "Megamacro+",
  12966. height: math.unit(20, "km")
  12967. },
  12968. {
  12969. name: "Gigamacro",
  12970. height: math.unit(2500, "km")
  12971. },
  12972. {
  12973. name: "Gigamacro+",
  12974. height: math.unit(120000, "km")
  12975. },
  12976. {
  12977. name: "Teramacro",
  12978. height: math.unit(7.77e6, "km")
  12979. },
  12980. ]
  12981. ))
  12982. characterMakers.push(() => makeCharacter(
  12983. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12984. {
  12985. front: {
  12986. height: math.unit(6 + 4/12, "feet"),
  12987. weight: math.unit(190, "lb"),
  12988. name: "Front",
  12989. image: {
  12990. source: "./media/characters/bmc/front.svg",
  12991. extra: 1626/1472,
  12992. bottom: 79/1705
  12993. }
  12994. },
  12995. back: {
  12996. height: math.unit(6 + 4/12, "feet"),
  12997. weight: math.unit(190, "lb"),
  12998. name: "Back",
  12999. image: {
  13000. source: "./media/characters/bmc/back.svg",
  13001. extra: 1640/1479,
  13002. bottom: 45/1685
  13003. }
  13004. },
  13005. frontArmor: {
  13006. height: math.unit(6 + 4/12, "feet"),
  13007. weight: math.unit(190, "lb"),
  13008. name: "Front-armor",
  13009. image: {
  13010. source: "./media/characters/bmc/front-armor.svg",
  13011. extra: 1538/1468,
  13012. bottom: 79/1617
  13013. }
  13014. },
  13015. },
  13016. [
  13017. {
  13018. name: "Human-sized",
  13019. height: math.unit(6 + 4 / 12, "feet")
  13020. },
  13021. {
  13022. name: "Interactive Size",
  13023. height: math.unit(25, "feet")
  13024. },
  13025. {
  13026. name: "Small",
  13027. height: math.unit(250, "feet")
  13028. },
  13029. {
  13030. name: "Normal",
  13031. height: math.unit(1250, "feet"),
  13032. default: true
  13033. },
  13034. {
  13035. name: "Good Day",
  13036. height: math.unit(88, "miles")
  13037. },
  13038. {
  13039. name: "Largest Measured Size",
  13040. height: math.unit(105.960, "galaxies")
  13041. },
  13042. ]
  13043. ))
  13044. characterMakers.push(() => makeCharacter(
  13045. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  13046. {
  13047. front: {
  13048. height: math.unit(20, "feet"),
  13049. weight: math.unit(2016, "kg"),
  13050. name: "Front",
  13051. image: {
  13052. source: "./media/characters/sven-the-kaiju/front.svg",
  13053. extra: 1277/1250,
  13054. bottom: 35/1312
  13055. }
  13056. },
  13057. mouth: {
  13058. height: math.unit(1.85, "feet"),
  13059. name: "Mouth",
  13060. image: {
  13061. source: "./media/characters/sven-the-kaiju/mouth.svg"
  13062. }
  13063. },
  13064. },
  13065. [
  13066. {
  13067. name: "Fairy",
  13068. height: math.unit(6, "inches")
  13069. },
  13070. {
  13071. name: "Normal",
  13072. height: math.unit(20, "feet"),
  13073. default: true
  13074. },
  13075. {
  13076. name: "Rampage",
  13077. height: math.unit(200, "feet")
  13078. },
  13079. {
  13080. name: "Archfey Forest Guardian",
  13081. height: math.unit(1, "mile")
  13082. },
  13083. ]
  13084. ))
  13085. characterMakers.push(() => makeCharacter(
  13086. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  13087. {
  13088. front: {
  13089. height: math.unit(4, "meters"),
  13090. weight: math.unit(2, "tons"),
  13091. name: "Front",
  13092. image: {
  13093. source: "./media/characters/marik/front.svg",
  13094. extra: 1057 / 1003,
  13095. bottom: 0.08
  13096. }
  13097. },
  13098. },
  13099. [
  13100. {
  13101. name: "Normal",
  13102. height: math.unit(4, "meters"),
  13103. default: true
  13104. },
  13105. {
  13106. name: "Macro",
  13107. height: math.unit(20, "meters")
  13108. },
  13109. {
  13110. name: "Megamacro",
  13111. height: math.unit(50, "km")
  13112. },
  13113. {
  13114. name: "Gigamacro",
  13115. height: math.unit(100, "km")
  13116. },
  13117. {
  13118. name: "Alpha Macro",
  13119. height: math.unit(7.88e7, "yottameters")
  13120. },
  13121. ]
  13122. ))
  13123. characterMakers.push(() => makeCharacter(
  13124. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  13125. {
  13126. front: {
  13127. height: math.unit(6, "feet"),
  13128. weight: math.unit(110, "lb"),
  13129. name: "Front",
  13130. image: {
  13131. source: "./media/characters/mel/front.svg",
  13132. extra: 736 / 617,
  13133. bottom: 0.017
  13134. }
  13135. },
  13136. },
  13137. [
  13138. {
  13139. name: "Pico",
  13140. height: math.unit(3, "pm")
  13141. },
  13142. {
  13143. name: "Nano",
  13144. height: math.unit(3, "nm")
  13145. },
  13146. {
  13147. name: "Micro",
  13148. height: math.unit(0.3, "mm"),
  13149. default: true
  13150. },
  13151. {
  13152. name: "Micro+",
  13153. height: math.unit(3, "mm")
  13154. },
  13155. {
  13156. name: "Normal",
  13157. height: math.unit(5 + 10.5 / 12, "feet")
  13158. },
  13159. ]
  13160. ))
  13161. characterMakers.push(() => makeCharacter(
  13162. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  13163. {
  13164. kaiju: {
  13165. height: math.unit(1.75, "meters"),
  13166. weight: math.unit(55, "kg"),
  13167. name: "Kaiju",
  13168. image: {
  13169. source: "./media/characters/lykonous/kaiju.svg",
  13170. extra: 1055 / 946,
  13171. bottom: 0.135
  13172. }
  13173. },
  13174. },
  13175. [
  13176. {
  13177. name: "Normal",
  13178. height: math.unit(2.5, "meters"),
  13179. default: true
  13180. },
  13181. {
  13182. name: "Kaiju Dragon",
  13183. height: math.unit(60, "meters")
  13184. },
  13185. {
  13186. name: "Mega Kaiju",
  13187. height: math.unit(120, "km")
  13188. },
  13189. {
  13190. name: "Giga Kaiju",
  13191. height: math.unit(200, "megameters")
  13192. },
  13193. {
  13194. name: "Terra Kaiju",
  13195. height: math.unit(400, "gigameters")
  13196. },
  13197. {
  13198. name: "Kaiju Dragon God",
  13199. height: math.unit(13000, "exaparsecs")
  13200. },
  13201. ]
  13202. ))
  13203. characterMakers.push(() => makeCharacter(
  13204. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  13205. {
  13206. front: {
  13207. height: math.unit(6, "feet"),
  13208. weight: math.unit(150, "lb"),
  13209. name: "Front",
  13210. image: {
  13211. source: "./media/characters/blü/front.svg",
  13212. extra: 1883 / 1564,
  13213. bottom: 0.031
  13214. }
  13215. },
  13216. },
  13217. [
  13218. {
  13219. name: "Normal",
  13220. height: math.unit(13, "feet"),
  13221. default: true
  13222. },
  13223. {
  13224. name: "Big Boi",
  13225. height: math.unit(150, "meters")
  13226. },
  13227. {
  13228. name: "Mini Stomper",
  13229. height: math.unit(300, "meters")
  13230. },
  13231. {
  13232. name: "Macro",
  13233. height: math.unit(1000, "meters")
  13234. },
  13235. {
  13236. name: "Megamacro",
  13237. height: math.unit(11000, "meters")
  13238. },
  13239. {
  13240. name: "Gigamacro",
  13241. height: math.unit(11000, "km")
  13242. },
  13243. {
  13244. name: "Teramacro",
  13245. height: math.unit(420000, "km")
  13246. },
  13247. {
  13248. name: "Examacro",
  13249. height: math.unit(120, "parsecs")
  13250. },
  13251. {
  13252. name: "God Tho",
  13253. height: math.unit(98000000000, "parsecs")
  13254. },
  13255. ]
  13256. ))
  13257. characterMakers.push(() => makeCharacter(
  13258. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13259. {
  13260. taurFront: {
  13261. height: math.unit(6, "feet"),
  13262. weight: math.unit(200, "lb"),
  13263. name: "Taur (Front)",
  13264. image: {
  13265. source: "./media/characters/scales/taur-front.svg",
  13266. extra: 1,
  13267. bottom: 0.05
  13268. }
  13269. },
  13270. taurBack: {
  13271. height: math.unit(6, "feet"),
  13272. weight: math.unit(200, "lb"),
  13273. name: "Taur (Back)",
  13274. image: {
  13275. source: "./media/characters/scales/taur-back.svg",
  13276. extra: 1,
  13277. bottom: 0.08
  13278. }
  13279. },
  13280. anthro: {
  13281. height: math.unit(6 * 7 / 12, "feet"),
  13282. weight: math.unit(100, "lb"),
  13283. name: "Anthro",
  13284. image: {
  13285. source: "./media/characters/scales/anthro.svg",
  13286. extra: 1,
  13287. bottom: 0.06
  13288. }
  13289. },
  13290. },
  13291. [
  13292. {
  13293. name: "Normal",
  13294. height: math.unit(12, "feet"),
  13295. default: true
  13296. },
  13297. ]
  13298. ))
  13299. characterMakers.push(() => makeCharacter(
  13300. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13301. {
  13302. front: {
  13303. height: math.unit(6, "feet"),
  13304. weight: math.unit(150, "lb"),
  13305. name: "Front",
  13306. image: {
  13307. source: "./media/characters/koragos/front.svg",
  13308. extra: 841 / 794,
  13309. bottom: 0.035
  13310. }
  13311. },
  13312. back: {
  13313. height: math.unit(6, "feet"),
  13314. weight: math.unit(150, "lb"),
  13315. name: "Back",
  13316. image: {
  13317. source: "./media/characters/koragos/back.svg",
  13318. extra: 841 / 810,
  13319. bottom: 0.022
  13320. }
  13321. },
  13322. },
  13323. [
  13324. {
  13325. name: "Normal",
  13326. height: math.unit(6 + 11 / 12, "feet"),
  13327. default: true
  13328. },
  13329. {
  13330. name: "Macro",
  13331. height: math.unit(490, "feet")
  13332. },
  13333. {
  13334. name: "Megamacro",
  13335. height: math.unit(10, "miles")
  13336. },
  13337. {
  13338. name: "Gigamacro",
  13339. height: math.unit(50, "miles")
  13340. },
  13341. ]
  13342. ))
  13343. characterMakers.push(() => makeCharacter(
  13344. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13345. {
  13346. front: {
  13347. height: math.unit(6, "feet"),
  13348. weight: math.unit(250, "lb"),
  13349. name: "Front",
  13350. image: {
  13351. source: "./media/characters/xylrem/front.svg",
  13352. extra: 3323 / 3050,
  13353. bottom: 0.065
  13354. }
  13355. },
  13356. },
  13357. [
  13358. {
  13359. name: "Micro",
  13360. height: math.unit(4, "feet")
  13361. },
  13362. {
  13363. name: "Normal",
  13364. height: math.unit(16, "feet"),
  13365. default: true
  13366. },
  13367. {
  13368. name: "Macro",
  13369. height: math.unit(2720, "feet")
  13370. },
  13371. {
  13372. name: "Megamacro",
  13373. height: math.unit(25000, "miles")
  13374. },
  13375. ]
  13376. ))
  13377. characterMakers.push(() => makeCharacter(
  13378. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13379. {
  13380. front: {
  13381. height: math.unit(8, "feet"),
  13382. weight: math.unit(250, "kg"),
  13383. name: "Front",
  13384. image: {
  13385. source: "./media/characters/ikideru/front.svg",
  13386. extra: 930 / 870,
  13387. bottom: 0.087
  13388. }
  13389. },
  13390. back: {
  13391. height: math.unit(8, "feet"),
  13392. weight: math.unit(250, "kg"),
  13393. name: "Back",
  13394. image: {
  13395. source: "./media/characters/ikideru/back.svg",
  13396. extra: 919 / 852,
  13397. bottom: 0.055
  13398. }
  13399. },
  13400. },
  13401. [
  13402. {
  13403. name: "Rare",
  13404. height: math.unit(8, "feet"),
  13405. default: true
  13406. },
  13407. {
  13408. name: "Playful Loom",
  13409. height: math.unit(80, "feet")
  13410. },
  13411. {
  13412. name: "City Leaner",
  13413. height: math.unit(230, "feet")
  13414. },
  13415. {
  13416. name: "Megamacro",
  13417. height: math.unit(2500, "feet")
  13418. },
  13419. {
  13420. name: "Gigamacro",
  13421. height: math.unit(26400, "feet")
  13422. },
  13423. {
  13424. name: "Tectonic Shifter",
  13425. height: math.unit(1.7, "megameters")
  13426. },
  13427. {
  13428. name: "Planet Carer",
  13429. height: math.unit(21, "megameters")
  13430. },
  13431. {
  13432. name: "God",
  13433. height: math.unit(11157.22, "parsecs")
  13434. },
  13435. ]
  13436. ))
  13437. characterMakers.push(() => makeCharacter(
  13438. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13439. {
  13440. front: {
  13441. height: math.unit(6, "feet"),
  13442. weight: math.unit(120, "lb"),
  13443. name: "Front",
  13444. image: {
  13445. source: "./media/characters/neo/front.svg"
  13446. }
  13447. },
  13448. },
  13449. [
  13450. {
  13451. name: "Micro",
  13452. height: math.unit(2, "inches"),
  13453. default: true
  13454. },
  13455. {
  13456. name: "Human Size",
  13457. height: math.unit(5 + 8 / 12, "feet")
  13458. },
  13459. ]
  13460. ))
  13461. characterMakers.push(() => makeCharacter(
  13462. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13463. {
  13464. front: {
  13465. height: math.unit(13 + 10 / 12, "feet"),
  13466. weight: math.unit(5320, "lb"),
  13467. name: "Front",
  13468. image: {
  13469. source: "./media/characters/chauncey-chantz/front.svg",
  13470. extra: 1587 / 1435,
  13471. bottom: 0.02
  13472. }
  13473. },
  13474. },
  13475. [
  13476. {
  13477. name: "Normal",
  13478. height: math.unit(13 + 10 / 12, "feet"),
  13479. default: true
  13480. },
  13481. {
  13482. name: "Macro",
  13483. height: math.unit(45, "feet")
  13484. },
  13485. {
  13486. name: "Megamacro",
  13487. height: math.unit(250, "miles")
  13488. },
  13489. {
  13490. name: "Planetary",
  13491. height: math.unit(10000, "miles")
  13492. },
  13493. {
  13494. name: "Galactic",
  13495. height: math.unit(40000, "parsecs")
  13496. },
  13497. {
  13498. name: "Universal",
  13499. height: math.unit(1, "yottameter")
  13500. },
  13501. ]
  13502. ))
  13503. characterMakers.push(() => makeCharacter(
  13504. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13505. {
  13506. front: {
  13507. height: math.unit(6, "feet"),
  13508. weight: math.unit(150, "lb"),
  13509. name: "Front",
  13510. image: {
  13511. source: "./media/characters/epifox/front.svg",
  13512. extra: 1,
  13513. bottom: 0.075
  13514. }
  13515. },
  13516. },
  13517. [
  13518. {
  13519. name: "Micro",
  13520. height: math.unit(6, "inches")
  13521. },
  13522. {
  13523. name: "Normal",
  13524. height: math.unit(12, "feet"),
  13525. default: true
  13526. },
  13527. {
  13528. name: "Macro",
  13529. height: math.unit(3810, "feet")
  13530. },
  13531. {
  13532. name: "Megamacro",
  13533. height: math.unit(500, "miles")
  13534. },
  13535. ]
  13536. ))
  13537. characterMakers.push(() => makeCharacter(
  13538. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13539. {
  13540. front: {
  13541. height: math.unit(1.8796, "m"),
  13542. weight: math.unit(230, "lb"),
  13543. name: "Front",
  13544. image: {
  13545. source: "./media/characters/colin-t/front.svg",
  13546. extra: 1272 / 1193,
  13547. bottom: 0.07
  13548. }
  13549. },
  13550. },
  13551. [
  13552. {
  13553. name: "Micro",
  13554. height: math.unit(0.571, "meters")
  13555. },
  13556. {
  13557. name: "Normal",
  13558. height: math.unit(1.8796, "meters"),
  13559. default: true
  13560. },
  13561. {
  13562. name: "Tall",
  13563. height: math.unit(4, "meters")
  13564. },
  13565. {
  13566. name: "Macro",
  13567. height: math.unit(67.241, "meters")
  13568. },
  13569. {
  13570. name: "Megamacro",
  13571. height: math.unit(371.856, "meters")
  13572. },
  13573. {
  13574. name: "Planetary",
  13575. height: math.unit(12631.5689, "km")
  13576. },
  13577. ]
  13578. ))
  13579. characterMakers.push(() => makeCharacter(
  13580. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13581. {
  13582. front: {
  13583. height: math.unit(1.85, "meters"),
  13584. weight: math.unit(80, "kg"),
  13585. name: "Front",
  13586. image: {
  13587. source: "./media/characters/matvei/front.svg",
  13588. extra: 456/447,
  13589. bottom: 8/464
  13590. }
  13591. },
  13592. back: {
  13593. height: math.unit(1.85, "meters"),
  13594. weight: math.unit(80, "kg"),
  13595. name: "Back",
  13596. image: {
  13597. source: "./media/characters/matvei/back.svg",
  13598. extra: 434/427,
  13599. bottom: 11/445
  13600. }
  13601. },
  13602. },
  13603. [
  13604. {
  13605. name: "Normal",
  13606. height: math.unit(1.85, "meters"),
  13607. default: true
  13608. },
  13609. ]
  13610. ))
  13611. characterMakers.push(() => makeCharacter(
  13612. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13613. {
  13614. front: {
  13615. height: math.unit(5 + 9 / 12, "feet"),
  13616. weight: math.unit(70, "lb"),
  13617. name: "Front",
  13618. image: {
  13619. source: "./media/characters/quincy/front.svg",
  13620. extra: 3041 / 2751
  13621. }
  13622. },
  13623. back: {
  13624. height: math.unit(5 + 9 / 12, "feet"),
  13625. weight: math.unit(70, "lb"),
  13626. name: "Back",
  13627. image: {
  13628. source: "./media/characters/quincy/back.svg",
  13629. extra: 3041 / 2751
  13630. }
  13631. },
  13632. flying: {
  13633. height: math.unit(5 + 4 / 12, "feet"),
  13634. weight: math.unit(70, "lb"),
  13635. name: "Flying",
  13636. image: {
  13637. source: "./media/characters/quincy/flying.svg",
  13638. extra: 1044 / 930
  13639. }
  13640. },
  13641. },
  13642. [
  13643. {
  13644. name: "Micro",
  13645. height: math.unit(3, "cm")
  13646. },
  13647. {
  13648. name: "Normal",
  13649. height: math.unit(5 + 9 / 12, "feet")
  13650. },
  13651. {
  13652. name: "Macro",
  13653. height: math.unit(200, "meters"),
  13654. default: true
  13655. },
  13656. {
  13657. name: "Megamacro",
  13658. height: math.unit(1000, "meters")
  13659. },
  13660. ]
  13661. ))
  13662. characterMakers.push(() => makeCharacter(
  13663. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13664. {
  13665. front: {
  13666. height: math.unit(3 + 11/12, "feet"),
  13667. weight: math.unit(50, "lb"),
  13668. name: "Front",
  13669. image: {
  13670. source: "./media/characters/vanrel/front.svg",
  13671. extra: 1104/949,
  13672. bottom: 52/1156
  13673. }
  13674. },
  13675. back: {
  13676. height: math.unit(3 + 11/12, "feet"),
  13677. weight: math.unit(50, "lb"),
  13678. name: "Back",
  13679. image: {
  13680. source: "./media/characters/vanrel/back.svg",
  13681. extra: 1119/976,
  13682. bottom: 37/1156
  13683. }
  13684. },
  13685. tome: {
  13686. height: math.unit(1.35, "feet"),
  13687. weight: math.unit(10, "lb"),
  13688. name: "Vanrel's Tome",
  13689. rename: true,
  13690. image: {
  13691. source: "./media/characters/vanrel/tome.svg"
  13692. }
  13693. },
  13694. beans: {
  13695. height: math.unit(0.89, "feet"),
  13696. name: "Beans",
  13697. image: {
  13698. source: "./media/characters/vanrel/beans.svg"
  13699. }
  13700. },
  13701. },
  13702. [
  13703. {
  13704. name: "Normal",
  13705. height: math.unit(3 + 11/12, "feet"),
  13706. default: true
  13707. },
  13708. ]
  13709. ))
  13710. characterMakers.push(() => makeCharacter(
  13711. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13712. {
  13713. front: {
  13714. height: math.unit(7 + 5 / 12, "feet"),
  13715. name: "Front",
  13716. image: {
  13717. source: "./media/characters/kuiper-vanrel/front.svg",
  13718. extra: 1219/1169,
  13719. bottom: 69/1288
  13720. }
  13721. },
  13722. back: {
  13723. height: math.unit(7 + 5 / 12, "feet"),
  13724. name: "Back",
  13725. image: {
  13726. source: "./media/characters/kuiper-vanrel/back.svg",
  13727. extra: 1236/1193,
  13728. bottom: 27/1263
  13729. }
  13730. },
  13731. foot: {
  13732. height: math.unit(0.55, "meters"),
  13733. name: "Foot",
  13734. image: {
  13735. source: "./media/characters/kuiper-vanrel/foot.svg",
  13736. }
  13737. },
  13738. battle: {
  13739. height: math.unit(6.824, "feet"),
  13740. name: "Battle",
  13741. image: {
  13742. source: "./media/characters/kuiper-vanrel/battle.svg",
  13743. extra: 1466 / 1327,
  13744. bottom: 29 / 1492.5
  13745. }
  13746. },
  13747. meerkui: {
  13748. height: math.unit(18, "inches"),
  13749. name: "Meerkui",
  13750. image: {
  13751. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13752. extra: 1354/1289,
  13753. bottom: 69/1423
  13754. }
  13755. },
  13756. },
  13757. [
  13758. {
  13759. name: "Normal",
  13760. height: math.unit(7 + 5 / 12, "feet"),
  13761. default: true
  13762. },
  13763. ]
  13764. ))
  13765. characterMakers.push(() => makeCharacter(
  13766. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13767. {
  13768. front: {
  13769. height: math.unit(8 + 5 / 12, "feet"),
  13770. name: "Front",
  13771. image: {
  13772. source: "./media/characters/keset-vanrel/front.svg",
  13773. extra: 1231/1148,
  13774. bottom: 82/1313
  13775. }
  13776. },
  13777. back: {
  13778. height: math.unit(8 + 5 / 12, "feet"),
  13779. name: "Back",
  13780. image: {
  13781. source: "./media/characters/keset-vanrel/back.svg",
  13782. extra: 1240/1174,
  13783. bottom: 33/1273
  13784. }
  13785. },
  13786. hand: {
  13787. height: math.unit(0.6, "meters"),
  13788. name: "Hand",
  13789. image: {
  13790. source: "./media/characters/keset-vanrel/hand.svg"
  13791. }
  13792. },
  13793. foot: {
  13794. height: math.unit(0.94978, "meters"),
  13795. name: "Foot",
  13796. image: {
  13797. source: "./media/characters/keset-vanrel/foot.svg"
  13798. }
  13799. },
  13800. battle: {
  13801. height: math.unit(7.408, "feet"),
  13802. name: "Battle",
  13803. image: {
  13804. source: "./media/characters/keset-vanrel/battle.svg",
  13805. extra: 1890 / 1386,
  13806. bottom: 73.28 / 1970
  13807. }
  13808. },
  13809. },
  13810. [
  13811. {
  13812. name: "Normal",
  13813. height: math.unit(8 + 5 / 12, "feet"),
  13814. default: true
  13815. },
  13816. ]
  13817. ))
  13818. characterMakers.push(() => makeCharacter(
  13819. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13820. {
  13821. front: {
  13822. height: math.unit(6, "feet"),
  13823. weight: math.unit(150, "lb"),
  13824. name: "Front",
  13825. image: {
  13826. source: "./media/characters/neos/front.svg",
  13827. extra: 1696 / 992,
  13828. bottom: 0.14
  13829. }
  13830. },
  13831. },
  13832. [
  13833. {
  13834. name: "Normal",
  13835. height: math.unit(54, "cm"),
  13836. default: true
  13837. },
  13838. {
  13839. name: "Macro",
  13840. height: math.unit(100, "m")
  13841. },
  13842. {
  13843. name: "Megamacro",
  13844. height: math.unit(10, "km")
  13845. },
  13846. {
  13847. name: "Megamacro+",
  13848. height: math.unit(100, "km")
  13849. },
  13850. {
  13851. name: "Gigamacro",
  13852. height: math.unit(100, "Mm")
  13853. },
  13854. {
  13855. name: "Teramacro",
  13856. height: math.unit(100, "Gm")
  13857. },
  13858. {
  13859. name: "Examacro",
  13860. height: math.unit(100, "Em")
  13861. },
  13862. {
  13863. name: "Godly",
  13864. height: math.unit(10000, "Ym")
  13865. },
  13866. {
  13867. name: "Beyond Godly",
  13868. height: math.unit(25, "multiverses")
  13869. },
  13870. ]
  13871. ))
  13872. characterMakers.push(() => makeCharacter(
  13873. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13874. {
  13875. fluide_tame: {
  13876. height: math.unit(5, "feet"),
  13877. name: "Tame",
  13878. image: {
  13879. source: "./media/characters/sammy-mouse/fluide-tame.svg",
  13880. extra: 1655/1574,
  13881. bottom: 231/1886
  13882. },
  13883. form: "fluide",
  13884. default: true
  13885. },
  13886. fluide_nude: {
  13887. height: math.unit(5, "feet"),
  13888. name: "Nude",
  13889. image: {
  13890. source: "./media/characters/sammy-mouse/fluide-nude.svg",
  13891. extra: 1655/1574,
  13892. bottom: 231/1886
  13893. },
  13894. form: "fluide",
  13895. },
  13896. male_tame: {
  13897. height: math.unit(5, "feet"),
  13898. name: "Tame",
  13899. image: {
  13900. source: "./media/characters/sammy-mouse/male-tame.svg",
  13901. extra: 1655/1574,
  13902. bottom: 231/1886
  13903. },
  13904. form: "male",
  13905. default: true
  13906. },
  13907. male_nude: {
  13908. height: math.unit(5, "feet"),
  13909. name: "Nude",
  13910. image: {
  13911. source: "./media/characters/sammy-mouse/male-nude.svg",
  13912. extra: 1655/1574,
  13913. bottom: 231/1886
  13914. },
  13915. form: "male",
  13916. },
  13917. female_nude: {
  13918. height: math.unit(5, "feet"),
  13919. name: "Nude",
  13920. image: {
  13921. source: "./media/characters/sammy-mouse/female-nude.svg",
  13922. extra: 1655/1574,
  13923. bottom: 231/1886
  13924. },
  13925. form: "female",
  13926. default: true
  13927. },
  13928. mouth: {
  13929. height: math.unit(0.32, "feet"),
  13930. name: "Mouth",
  13931. image: {
  13932. source: "./media/characters/sammy-mouse/mouth.svg"
  13933. },
  13934. allForms: true
  13935. },
  13936. paw: {
  13937. height: math.unit(0.42, "feet"),
  13938. name: "Paw",
  13939. image: {
  13940. source: "./media/characters/sammy-mouse/paw.svg"
  13941. },
  13942. allForms: true
  13943. },
  13944. },
  13945. [
  13946. {
  13947. name: "Micro",
  13948. height: math.unit(5, "inches"),
  13949. allForms: true
  13950. },
  13951. {
  13952. name: "Normal",
  13953. height: math.unit(5, "feet"),
  13954. default: true,
  13955. allForms: true
  13956. },
  13957. {
  13958. name: "Macro",
  13959. height: math.unit(60, "feet"),
  13960. allForms: true
  13961. },
  13962. ],
  13963. {
  13964. "fluide": {
  13965. name: "Fluide",
  13966. default: true
  13967. },
  13968. "male": {
  13969. name: "Male",
  13970. },
  13971. "female": {
  13972. name: "Female",
  13973. },
  13974. }
  13975. ))
  13976. characterMakers.push(() => makeCharacter(
  13977. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13978. {
  13979. front: {
  13980. height: math.unit(4, "feet"),
  13981. weight: math.unit(50, "lb"),
  13982. name: "Front",
  13983. image: {
  13984. source: "./media/characters/kole/front.svg",
  13985. extra: 1423 / 1303,
  13986. bottom: 0.025
  13987. }
  13988. },
  13989. back: {
  13990. height: math.unit(4, "feet"),
  13991. weight: math.unit(50, "lb"),
  13992. name: "Back",
  13993. image: {
  13994. source: "./media/characters/kole/back.svg",
  13995. extra: 1426 / 1280,
  13996. bottom: 0.02
  13997. }
  13998. },
  13999. },
  14000. [
  14001. {
  14002. name: "Normal",
  14003. height: math.unit(4, "feet"),
  14004. default: true
  14005. },
  14006. ]
  14007. ))
  14008. characterMakers.push(() => makeCharacter(
  14009. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  14010. {
  14011. front: {
  14012. height: math.unit(2.5, "feet"),
  14013. weight: math.unit(32, "lb"),
  14014. name: "Front",
  14015. image: {
  14016. source: "./media/characters/rufran/front.svg",
  14017. extra: 1313/885,
  14018. bottom: 94/1407
  14019. }
  14020. },
  14021. side: {
  14022. height: math.unit(2.5, "feet"),
  14023. weight: math.unit(32, "lb"),
  14024. name: "Side",
  14025. image: {
  14026. source: "./media/characters/rufran/side.svg",
  14027. extra: 1109/852,
  14028. bottom: 118/1227
  14029. }
  14030. },
  14031. back: {
  14032. height: math.unit(2.5, "feet"),
  14033. weight: math.unit(32, "lb"),
  14034. name: "Back",
  14035. image: {
  14036. source: "./media/characters/rufran/back.svg",
  14037. extra: 1280/878,
  14038. bottom: 131/1411
  14039. }
  14040. },
  14041. mouth: {
  14042. height: math.unit(1.13, "feet"),
  14043. name: "Mouth",
  14044. image: {
  14045. source: "./media/characters/rufran/mouth.svg"
  14046. }
  14047. },
  14048. foot: {
  14049. height: math.unit(1.33, "feet"),
  14050. name: "Foot",
  14051. image: {
  14052. source: "./media/characters/rufran/foot.svg"
  14053. }
  14054. },
  14055. koboldFront: {
  14056. height: math.unit(2 + 6 / 12, "feet"),
  14057. weight: math.unit(20, "lb"),
  14058. name: "Front (Kobold)",
  14059. image: {
  14060. source: "./media/characters/rufran/kobold-front.svg",
  14061. extra: 2041 / 1839,
  14062. bottom: 0.055
  14063. }
  14064. },
  14065. koboldBack: {
  14066. height: math.unit(2 + 6 / 12, "feet"),
  14067. weight: math.unit(20, "lb"),
  14068. name: "Back (Kobold)",
  14069. image: {
  14070. source: "./media/characters/rufran/kobold-back.svg",
  14071. extra: 2054 / 1839,
  14072. bottom: 0.01
  14073. }
  14074. },
  14075. koboldHand: {
  14076. height: math.unit(0.2166, "meters"),
  14077. name: "Hand (Kobold)",
  14078. image: {
  14079. source: "./media/characters/rufran/kobold-hand.svg"
  14080. }
  14081. },
  14082. koboldFoot: {
  14083. height: math.unit(0.185, "meters"),
  14084. name: "Foot (Kobold)",
  14085. image: {
  14086. source: "./media/characters/rufran/kobold-foot.svg"
  14087. }
  14088. },
  14089. },
  14090. [
  14091. {
  14092. name: "Micro",
  14093. height: math.unit(1, "inch")
  14094. },
  14095. {
  14096. name: "Normal",
  14097. height: math.unit(2 + 6 / 12, "feet"),
  14098. default: true
  14099. },
  14100. {
  14101. name: "Big",
  14102. height: math.unit(60, "feet")
  14103. },
  14104. {
  14105. name: "Macro",
  14106. height: math.unit(325, "feet")
  14107. },
  14108. ]
  14109. ))
  14110. characterMakers.push(() => makeCharacter(
  14111. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  14112. {
  14113. front: {
  14114. height: math.unit(0.3, "meters"),
  14115. weight: math.unit(3.5, "kg"),
  14116. name: "Front",
  14117. image: {
  14118. source: "./media/characters/chip/front.svg",
  14119. extra: 748 / 674
  14120. }
  14121. },
  14122. },
  14123. [
  14124. {
  14125. name: "Micro",
  14126. height: math.unit(1, "inch"),
  14127. default: true
  14128. },
  14129. ]
  14130. ))
  14131. characterMakers.push(() => makeCharacter(
  14132. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  14133. {
  14134. side: {
  14135. height: math.unit(2.3, "meters"),
  14136. weight: math.unit(3500, "lb"),
  14137. name: "Side",
  14138. image: {
  14139. source: "./media/characters/torvid/side.svg",
  14140. extra: 1972 / 722,
  14141. bottom: 0.035
  14142. }
  14143. },
  14144. },
  14145. [
  14146. {
  14147. name: "Normal",
  14148. height: math.unit(2.3, "meters"),
  14149. default: true
  14150. },
  14151. ]
  14152. ))
  14153. characterMakers.push(() => makeCharacter(
  14154. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  14155. {
  14156. front: {
  14157. height: math.unit(2, "meters"),
  14158. weight: math.unit(150.5, "kg"),
  14159. name: "Front",
  14160. image: {
  14161. source: "./media/characters/susan/front.svg",
  14162. extra: 693 / 635,
  14163. bottom: 0.05
  14164. }
  14165. },
  14166. },
  14167. [
  14168. {
  14169. name: "Megamacro",
  14170. height: math.unit(505, "miles"),
  14171. default: true
  14172. },
  14173. ]
  14174. ))
  14175. characterMakers.push(() => makeCharacter(
  14176. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  14177. {
  14178. front: {
  14179. height: math.unit(6, "feet"),
  14180. weight: math.unit(150, "lb"),
  14181. name: "Front",
  14182. image: {
  14183. source: "./media/characters/raindrops/front.svg",
  14184. extra: 2655 / 2461,
  14185. bottom: 49 / 2705
  14186. }
  14187. },
  14188. back: {
  14189. height: math.unit(6, "feet"),
  14190. weight: math.unit(150, "lb"),
  14191. name: "Back",
  14192. image: {
  14193. source: "./media/characters/raindrops/back.svg",
  14194. extra: 2574 / 2400,
  14195. bottom: 65 / 2634
  14196. }
  14197. },
  14198. },
  14199. [
  14200. {
  14201. name: "Micro",
  14202. height: math.unit(6, "inches")
  14203. },
  14204. {
  14205. name: "Normal",
  14206. height: math.unit(6 + 2 / 12, "feet")
  14207. },
  14208. {
  14209. name: "Macro",
  14210. height: math.unit(131, "feet"),
  14211. default: true
  14212. },
  14213. {
  14214. name: "Megamacro",
  14215. height: math.unit(15, "miles")
  14216. },
  14217. {
  14218. name: "Gigamacro",
  14219. height: math.unit(4000, "miles")
  14220. },
  14221. {
  14222. name: "Teramacro",
  14223. height: math.unit(315000, "miles")
  14224. },
  14225. ]
  14226. ))
  14227. characterMakers.push(() => makeCharacter(
  14228. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  14229. {
  14230. front: {
  14231. height: math.unit(2.794, "meters"),
  14232. weight: math.unit(325, "kg"),
  14233. name: "Front",
  14234. image: {
  14235. source: "./media/characters/tezwa/front.svg",
  14236. extra: 2083 / 1906,
  14237. bottom: 0.031
  14238. }
  14239. },
  14240. foot: {
  14241. height: math.unit(0.687, "meters"),
  14242. name: "Foot",
  14243. image: {
  14244. source: "./media/characters/tezwa/foot.svg"
  14245. }
  14246. },
  14247. },
  14248. [
  14249. {
  14250. name: "Normal",
  14251. height: math.unit(9 + 2 / 12, "feet"),
  14252. default: true
  14253. },
  14254. ]
  14255. ))
  14256. characterMakers.push(() => makeCharacter(
  14257. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  14258. {
  14259. front: {
  14260. height: math.unit(58, "feet"),
  14261. weight: math.unit(89000, "lb"),
  14262. name: "Front",
  14263. image: {
  14264. source: "./media/characters/typhus/front.svg",
  14265. extra: 816 / 800,
  14266. bottom: 0.065
  14267. }
  14268. },
  14269. },
  14270. [
  14271. {
  14272. name: "Macro",
  14273. height: math.unit(58, "feet"),
  14274. default: true
  14275. },
  14276. ]
  14277. ))
  14278. characterMakers.push(() => makeCharacter(
  14279. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14280. {
  14281. front: {
  14282. height: math.unit(12, "feet"),
  14283. weight: math.unit(6, "tonnes"),
  14284. name: "Front",
  14285. image: {
  14286. source: "./media/characters/lyra-von-wulf/front.svg",
  14287. extra: 1,
  14288. bottom: 0.10
  14289. }
  14290. },
  14291. frontMecha: {
  14292. height: math.unit(12, "feet"),
  14293. weight: math.unit(12, "tonnes"),
  14294. name: "Front (Mecha)",
  14295. image: {
  14296. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14297. extra: 1,
  14298. bottom: 0.042
  14299. }
  14300. },
  14301. maw: {
  14302. height: math.unit(2.2, "feet"),
  14303. name: "Maw",
  14304. image: {
  14305. source: "./media/characters/lyra-von-wulf/maw.svg"
  14306. }
  14307. },
  14308. },
  14309. [
  14310. {
  14311. name: "Normal",
  14312. height: math.unit(12, "feet"),
  14313. default: true
  14314. },
  14315. {
  14316. name: "Classic",
  14317. height: math.unit(50, "feet")
  14318. },
  14319. {
  14320. name: "Macro",
  14321. height: math.unit(500, "feet")
  14322. },
  14323. {
  14324. name: "Megamacro",
  14325. height: math.unit(1, "mile")
  14326. },
  14327. {
  14328. name: "Gigamacro",
  14329. height: math.unit(400, "miles")
  14330. },
  14331. {
  14332. name: "Teramacro",
  14333. height: math.unit(22000, "miles")
  14334. },
  14335. {
  14336. name: "Solarmacro",
  14337. height: math.unit(8600000, "miles")
  14338. },
  14339. {
  14340. name: "Galactic",
  14341. height: math.unit(1057000, "lightyears")
  14342. },
  14343. ]
  14344. ))
  14345. characterMakers.push(() => makeCharacter(
  14346. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14347. {
  14348. front: {
  14349. height: math.unit(6 + 10 / 12, "feet"),
  14350. weight: math.unit(150, "lb"),
  14351. name: "Front",
  14352. image: {
  14353. source: "./media/characters/dixon/front.svg",
  14354. extra: 3361 / 3209,
  14355. bottom: 0.01
  14356. }
  14357. },
  14358. },
  14359. [
  14360. {
  14361. name: "Normal",
  14362. height: math.unit(6 + 10 / 12, "feet"),
  14363. default: true
  14364. },
  14365. {
  14366. name: "Big",
  14367. height: math.unit(12, "meters")
  14368. },
  14369. {
  14370. name: "Macro",
  14371. height: math.unit(500, "meters")
  14372. },
  14373. {
  14374. name: "Megamacro",
  14375. height: math.unit(2, "km")
  14376. },
  14377. ]
  14378. ))
  14379. characterMakers.push(() => makeCharacter(
  14380. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  14381. {
  14382. front: {
  14383. height: math.unit(185, "cm"),
  14384. weight: math.unit(68, "kg"),
  14385. name: "Front",
  14386. image: {
  14387. source: "./media/characters/kauko/front.svg",
  14388. extra: 1455 / 1421,
  14389. bottom: 0.03
  14390. }
  14391. },
  14392. back: {
  14393. height: math.unit(185, "cm"),
  14394. weight: math.unit(68, "kg"),
  14395. name: "Back",
  14396. image: {
  14397. source: "./media/characters/kauko/back.svg",
  14398. extra: 1455 / 1421,
  14399. bottom: 0.004
  14400. }
  14401. },
  14402. },
  14403. [
  14404. {
  14405. name: "Normal",
  14406. height: math.unit(185, "cm"),
  14407. default: true
  14408. },
  14409. ]
  14410. ))
  14411. characterMakers.push(() => makeCharacter(
  14412. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14413. {
  14414. frontSfw: {
  14415. height: math.unit(5, "meters"),
  14416. weight: math.unit(4250, "lb"),
  14417. name: "Front",
  14418. image: {
  14419. source: "./media/characters/varg/front-sfw.svg",
  14420. extra: 1103/1010,
  14421. bottom: 50/1153
  14422. },
  14423. form: "anthro",
  14424. default: true
  14425. },
  14426. backSfw: {
  14427. height: math.unit(5, "meters"),
  14428. weight: math.unit(4250, "lb"),
  14429. name: "Back",
  14430. image: {
  14431. source: "./media/characters/varg/back-sfw.svg",
  14432. extra: 1038/1022,
  14433. bottom: 36/1074
  14434. },
  14435. form: "anthro"
  14436. },
  14437. frontNsfw: {
  14438. height: math.unit(5, "meters"),
  14439. weight: math.unit(4250, "lb"),
  14440. name: "Front (NSFW)",
  14441. image: {
  14442. source: "./media/characters/varg/front-nsfw.svg",
  14443. extra: 1103/1010,
  14444. bottom: 50/1153
  14445. },
  14446. form: "anthro"
  14447. },
  14448. sheath: {
  14449. height: math.unit(3.8, "feet"),
  14450. weight: math.unit(90, "kilograms"),
  14451. name: "Sheath",
  14452. image: {
  14453. source: "./media/characters/varg/sheath.svg"
  14454. },
  14455. form: "anthro"
  14456. },
  14457. dick: {
  14458. height: math.unit(4.6, "feet"),
  14459. weight: math.unit(451, "kilograms"),
  14460. name: "Dick",
  14461. image: {
  14462. source: "./media/characters/varg/dick.svg"
  14463. },
  14464. form: "anthro"
  14465. },
  14466. feralSfw: {
  14467. height: math.unit(5, "meters"),
  14468. weight: math.unit(100000, "lb"),
  14469. name: "Side",
  14470. image: {
  14471. source: "./media/characters/varg/feral-sfw.svg",
  14472. extra: 1065/511,
  14473. bottom: 211/1276
  14474. },
  14475. form: "feral",
  14476. default: true
  14477. },
  14478. feralNsfw: {
  14479. height: math.unit(5, "meters"),
  14480. weight: math.unit(100000, "lb"),
  14481. name: "Side (NSFW)",
  14482. image: {
  14483. source: "./media/characters/varg/feral-nsfw.svg",
  14484. extra: 1065/511,
  14485. bottom: 211/1276
  14486. },
  14487. form: "feral",
  14488. },
  14489. feralSheath: {
  14490. height: math.unit(9.8, "feet"),
  14491. weight: math.unit(2000, "kilograms"),
  14492. name: "Sheath",
  14493. image: {
  14494. source: "./media/characters/varg/sheath.svg"
  14495. },
  14496. form: "feral"
  14497. },
  14498. feralDick: {
  14499. height: math.unit(13.11, "feet"),
  14500. weight: math.unit(10440, "kilograms"),
  14501. name: "Dick",
  14502. image: {
  14503. source: "./media/characters/varg/dick.svg"
  14504. },
  14505. form: "feral"
  14506. },
  14507. },
  14508. [
  14509. {
  14510. name: "Normal",
  14511. height: math.unit(5, "meters"),
  14512. form: "anthro"
  14513. },
  14514. {
  14515. name: "Macro",
  14516. height: math.unit(200, "meters"),
  14517. form: "anthro"
  14518. },
  14519. {
  14520. name: "Megamacro",
  14521. height: math.unit(20, "kilometers"),
  14522. form: "anthro"
  14523. },
  14524. {
  14525. name: "True Size",
  14526. height: math.unit(211, "km"),
  14527. form: "anthro",
  14528. default: true
  14529. },
  14530. {
  14531. name: "Gigamacro",
  14532. height: math.unit(1000, "km"),
  14533. form: "anthro"
  14534. },
  14535. {
  14536. name: "Gigamacro+",
  14537. height: math.unit(8000, "km"),
  14538. form: "anthro"
  14539. },
  14540. {
  14541. name: "Teramacro",
  14542. height: math.unit(1000000, "km"),
  14543. form: "anthro"
  14544. },
  14545. {
  14546. name: "Normal",
  14547. height: math.unit(5, "meters"),
  14548. form: "feral"
  14549. },
  14550. {
  14551. name: "Macro",
  14552. height: math.unit(200, "meters"),
  14553. form: "feral"
  14554. },
  14555. {
  14556. name: "Megamacro",
  14557. height: math.unit(20, "kilometers"),
  14558. form: "feral"
  14559. },
  14560. {
  14561. name: "True Size",
  14562. height: math.unit(211, "km"),
  14563. form: "feral",
  14564. default: true
  14565. },
  14566. {
  14567. name: "Gigamacro",
  14568. height: math.unit(1000, "km"),
  14569. form: "feral"
  14570. },
  14571. {
  14572. name: "Gigamacro+",
  14573. height: math.unit(8000, "km"),
  14574. form: "feral"
  14575. },
  14576. {
  14577. name: "Teramacro",
  14578. height: math.unit(1000000, "km"),
  14579. form: "feral"
  14580. },
  14581. ],
  14582. {
  14583. "anthro": {
  14584. name: "Anthro",
  14585. default: true
  14586. },
  14587. "feral": {
  14588. name: "Feral",
  14589. },
  14590. }
  14591. ))
  14592. characterMakers.push(() => makeCharacter(
  14593. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14594. {
  14595. front: {
  14596. height: math.unit(7 + 7 / 12, "feet"),
  14597. weight: math.unit(267, "lb"),
  14598. name: "Front",
  14599. image: {
  14600. source: "./media/characters/dayza/front.svg",
  14601. extra: 1262 / 1200,
  14602. bottom: 0.035
  14603. }
  14604. },
  14605. side: {
  14606. height: math.unit(7 + 7 / 12, "feet"),
  14607. weight: math.unit(267, "lb"),
  14608. name: "Side",
  14609. image: {
  14610. source: "./media/characters/dayza/side.svg",
  14611. extra: 1295 / 1245,
  14612. bottom: 0.05
  14613. }
  14614. },
  14615. back: {
  14616. height: math.unit(7 + 7 / 12, "feet"),
  14617. weight: math.unit(267, "lb"),
  14618. name: "Back",
  14619. image: {
  14620. source: "./media/characters/dayza/back.svg",
  14621. extra: 1241 / 1170
  14622. }
  14623. },
  14624. },
  14625. [
  14626. {
  14627. name: "Normal",
  14628. height: math.unit(7 + 7 / 12, "feet"),
  14629. default: true
  14630. },
  14631. {
  14632. name: "Macro",
  14633. height: math.unit(155, "feet")
  14634. },
  14635. ]
  14636. ))
  14637. characterMakers.push(() => makeCharacter(
  14638. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14639. {
  14640. front: {
  14641. height: math.unit(6 + 5 / 12, "feet"),
  14642. weight: math.unit(160, "lb"),
  14643. name: "Front",
  14644. image: {
  14645. source: "./media/characters/xanthos/front.svg",
  14646. extra: 1,
  14647. bottom: 0.04
  14648. }
  14649. },
  14650. back: {
  14651. height: math.unit(6 + 5 / 12, "feet"),
  14652. weight: math.unit(160, "lb"),
  14653. name: "Back",
  14654. image: {
  14655. source: "./media/characters/xanthos/back.svg",
  14656. extra: 1,
  14657. bottom: 0.03
  14658. }
  14659. },
  14660. hand: {
  14661. height: math.unit(0.928, "feet"),
  14662. name: "Hand",
  14663. image: {
  14664. source: "./media/characters/xanthos/hand.svg"
  14665. }
  14666. },
  14667. foot: {
  14668. height: math.unit(1.286, "feet"),
  14669. name: "Foot",
  14670. image: {
  14671. source: "./media/characters/xanthos/foot.svg"
  14672. }
  14673. },
  14674. },
  14675. [
  14676. {
  14677. name: "Normal",
  14678. height: math.unit(6 + 5 / 12, "feet"),
  14679. default: true
  14680. },
  14681. {
  14682. name: "Normal+",
  14683. height: math.unit(6, "meters")
  14684. },
  14685. {
  14686. name: "Macro",
  14687. height: math.unit(40, "feet")
  14688. },
  14689. {
  14690. name: "Macro+",
  14691. height: math.unit(200, "meters")
  14692. },
  14693. {
  14694. name: "Megamacro",
  14695. height: math.unit(20, "km")
  14696. },
  14697. {
  14698. name: "Megamacro+",
  14699. height: math.unit(100, "km")
  14700. },
  14701. {
  14702. name: "Gigamacro",
  14703. height: math.unit(200, "megameters")
  14704. },
  14705. {
  14706. name: "Gigamacro+",
  14707. height: math.unit(1.5, "gigameters")
  14708. },
  14709. ]
  14710. ))
  14711. characterMakers.push(() => makeCharacter(
  14712. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14713. {
  14714. front: {
  14715. height: math.unit(6 + 3 / 12, "feet"),
  14716. weight: math.unit(215, "lb"),
  14717. name: "Front",
  14718. image: {
  14719. source: "./media/characters/grynn/front.svg",
  14720. extra: 4627 / 4209,
  14721. bottom: 0.047
  14722. }
  14723. },
  14724. },
  14725. [
  14726. {
  14727. name: "Micro",
  14728. height: math.unit(6, "inches")
  14729. },
  14730. {
  14731. name: "Normal",
  14732. height: math.unit(6 + 3 / 12, "feet"),
  14733. default: true
  14734. },
  14735. {
  14736. name: "Big",
  14737. height: math.unit(104, "feet")
  14738. },
  14739. {
  14740. name: "Macro",
  14741. height: math.unit(944, "feet")
  14742. },
  14743. {
  14744. name: "Macro+",
  14745. height: math.unit(9480, "feet")
  14746. },
  14747. {
  14748. name: "Megamacro",
  14749. height: math.unit(78752, "feet")
  14750. },
  14751. {
  14752. name: "Megamacro+",
  14753. height: math.unit(630128, "feet")
  14754. },
  14755. {
  14756. name: "Megamacro++",
  14757. height: math.unit(3150695, "feet")
  14758. },
  14759. ]
  14760. ))
  14761. characterMakers.push(() => makeCharacter(
  14762. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14763. {
  14764. front: {
  14765. height: math.unit(7 + 5 / 12, "feet"),
  14766. weight: math.unit(450, "lb"),
  14767. name: "Front",
  14768. image: {
  14769. source: "./media/characters/mocha-aura/front.svg",
  14770. extra: 1907 / 1817,
  14771. bottom: 0.04
  14772. }
  14773. },
  14774. back: {
  14775. height: math.unit(7 + 5 / 12, "feet"),
  14776. weight: math.unit(450, "lb"),
  14777. name: "Back",
  14778. image: {
  14779. source: "./media/characters/mocha-aura/back.svg",
  14780. extra: 1900 / 1825,
  14781. bottom: 0.045
  14782. }
  14783. },
  14784. },
  14785. [
  14786. {
  14787. name: "Nano",
  14788. height: math.unit(1, "nm")
  14789. },
  14790. {
  14791. name: "Megamicro",
  14792. height: math.unit(1, "mm")
  14793. },
  14794. {
  14795. name: "Micro",
  14796. height: math.unit(3, "inches")
  14797. },
  14798. {
  14799. name: "Normal",
  14800. height: math.unit(7 + 5 / 12, "feet"),
  14801. default: true
  14802. },
  14803. {
  14804. name: "Macro",
  14805. height: math.unit(30, "feet")
  14806. },
  14807. {
  14808. name: "Megamacro",
  14809. height: math.unit(3500, "feet")
  14810. },
  14811. {
  14812. name: "Teramacro",
  14813. height: math.unit(500000, "miles")
  14814. },
  14815. {
  14816. name: "Petamacro",
  14817. height: math.unit(50000000000000000, "parsecs")
  14818. },
  14819. ]
  14820. ))
  14821. characterMakers.push(() => makeCharacter(
  14822. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14823. {
  14824. front: {
  14825. height: math.unit(6, "feet"),
  14826. weight: math.unit(150, "lb"),
  14827. name: "Front",
  14828. image: {
  14829. source: "./media/characters/ilisha-devya/front.svg",
  14830. extra: 1053/1049,
  14831. bottom: 270/1323
  14832. }
  14833. },
  14834. back: {
  14835. height: math.unit(6, "feet"),
  14836. weight: math.unit(150, "lb"),
  14837. name: "Back",
  14838. image: {
  14839. source: "./media/characters/ilisha-devya/back.svg",
  14840. extra: 1131/1128,
  14841. bottom: 39/1170
  14842. }
  14843. },
  14844. },
  14845. [
  14846. {
  14847. name: "Macro",
  14848. height: math.unit(500, "feet"),
  14849. default: true
  14850. },
  14851. {
  14852. name: "Megamacro",
  14853. height: math.unit(10, "miles")
  14854. },
  14855. {
  14856. name: "Gigamacro",
  14857. height: math.unit(100000, "miles")
  14858. },
  14859. {
  14860. name: "Examacro",
  14861. height: math.unit(1e9, "lightyears")
  14862. },
  14863. {
  14864. name: "Omniversal",
  14865. height: math.unit(1e33, "lightyears")
  14866. },
  14867. {
  14868. name: "Beyond Infinite",
  14869. height: math.unit(1e100, "lightyears")
  14870. },
  14871. ]
  14872. ))
  14873. characterMakers.push(() => makeCharacter(
  14874. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14875. {
  14876. Side: {
  14877. height: math.unit(6, "feet"),
  14878. weight: math.unit(150, "lb"),
  14879. name: "Side",
  14880. image: {
  14881. source: "./media/characters/mira/side.svg",
  14882. extra: 900 / 799,
  14883. bottom: 0.02
  14884. }
  14885. },
  14886. },
  14887. [
  14888. {
  14889. name: "Human Size",
  14890. height: math.unit(6, "feet")
  14891. },
  14892. {
  14893. name: "Macro",
  14894. height: math.unit(100, "feet"),
  14895. default: true
  14896. },
  14897. {
  14898. name: "Megamacro",
  14899. height: math.unit(10, "miles")
  14900. },
  14901. {
  14902. name: "Gigamacro",
  14903. height: math.unit(25000, "miles")
  14904. },
  14905. {
  14906. name: "Teramacro",
  14907. height: math.unit(300, "AU")
  14908. },
  14909. {
  14910. name: "Full Size",
  14911. height: math.unit(4.5e10, "lightyears")
  14912. },
  14913. ]
  14914. ))
  14915. characterMakers.push(() => makeCharacter(
  14916. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14917. {
  14918. front: {
  14919. height: math.unit(6, "feet"),
  14920. weight: math.unit(150, "lb"),
  14921. name: "Front",
  14922. image: {
  14923. source: "./media/characters/holly/front.svg",
  14924. extra: 639 / 606
  14925. }
  14926. },
  14927. back: {
  14928. height: math.unit(6, "feet"),
  14929. weight: math.unit(150, "lb"),
  14930. name: "Back",
  14931. image: {
  14932. source: "./media/characters/holly/back.svg",
  14933. extra: 623 / 598
  14934. }
  14935. },
  14936. frontWorking: {
  14937. height: math.unit(6, "feet"),
  14938. weight: math.unit(150, "lb"),
  14939. name: "Front (Working)",
  14940. image: {
  14941. source: "./media/characters/holly/front-working.svg",
  14942. extra: 607 / 577,
  14943. bottom: 0.048
  14944. }
  14945. },
  14946. },
  14947. [
  14948. {
  14949. name: "Normal",
  14950. height: math.unit(12 + 3 / 12, "feet"),
  14951. default: true
  14952. },
  14953. ]
  14954. ))
  14955. characterMakers.push(() => makeCharacter(
  14956. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14957. {
  14958. front: {
  14959. height: math.unit(6, "feet"),
  14960. weight: math.unit(150, "lb"),
  14961. name: "Front",
  14962. image: {
  14963. source: "./media/characters/porter/front.svg",
  14964. extra: 1,
  14965. bottom: 0.01
  14966. }
  14967. },
  14968. frontRobes: {
  14969. height: math.unit(6, "feet"),
  14970. weight: math.unit(150, "lb"),
  14971. name: "Front (Robes)",
  14972. image: {
  14973. source: "./media/characters/porter/front-robes.svg",
  14974. extra: 1.01,
  14975. bottom: 0.01
  14976. }
  14977. },
  14978. },
  14979. [
  14980. {
  14981. name: "Normal",
  14982. height: math.unit(11 + 9 / 12, "feet"),
  14983. default: true
  14984. },
  14985. ]
  14986. ))
  14987. characterMakers.push(() => makeCharacter(
  14988. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14989. {
  14990. legendary: {
  14991. height: math.unit(6, "feet"),
  14992. weight: math.unit(150, "lb"),
  14993. name: "Legendary",
  14994. image: {
  14995. source: "./media/characters/lucy/legendary.svg",
  14996. extra: 1355 / 1100,
  14997. bottom: 0.045
  14998. }
  14999. },
  15000. },
  15001. [
  15002. {
  15003. name: "Legendary",
  15004. height: math.unit(86882 * 2, "miles"),
  15005. default: true
  15006. },
  15007. ]
  15008. ))
  15009. characterMakers.push(() => makeCharacter(
  15010. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  15011. {
  15012. front: {
  15013. height: math.unit(6, "feet"),
  15014. weight: math.unit(150, "lb"),
  15015. name: "Front",
  15016. image: {
  15017. source: "./media/characters/drusilla/front.svg",
  15018. extra: 678 / 635,
  15019. bottom: 0.03
  15020. }
  15021. },
  15022. back: {
  15023. height: math.unit(6, "feet"),
  15024. weight: math.unit(150, "lb"),
  15025. name: "Back",
  15026. image: {
  15027. source: "./media/characters/drusilla/back.svg",
  15028. extra: 678 / 635,
  15029. bottom: 0.005
  15030. }
  15031. },
  15032. },
  15033. [
  15034. {
  15035. name: "Macro",
  15036. height: math.unit(100, "feet")
  15037. },
  15038. {
  15039. name: "Canon Height",
  15040. height: math.unit(2000, "feet"),
  15041. default: true
  15042. },
  15043. ]
  15044. ))
  15045. characterMakers.push(() => makeCharacter(
  15046. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  15047. {
  15048. front: {
  15049. height: math.unit(6, "feet"),
  15050. weight: math.unit(180, "lb"),
  15051. name: "Front",
  15052. image: {
  15053. source: "./media/characters/renard-thatch/front.svg",
  15054. extra: 2411 / 2275,
  15055. bottom: 0.01
  15056. }
  15057. },
  15058. frontPosing: {
  15059. height: math.unit(6, "feet"),
  15060. weight: math.unit(180, "lb"),
  15061. name: "Front (Posing)",
  15062. image: {
  15063. source: "./media/characters/renard-thatch/front-posing.svg",
  15064. extra: 2381 / 2261,
  15065. bottom: 0.01
  15066. }
  15067. },
  15068. back: {
  15069. height: math.unit(6, "feet"),
  15070. weight: math.unit(180, "lb"),
  15071. name: "Back",
  15072. image: {
  15073. source: "./media/characters/renard-thatch/back.svg",
  15074. extra: 2428 / 2288
  15075. }
  15076. },
  15077. },
  15078. [
  15079. {
  15080. name: "Micro",
  15081. height: math.unit(3, "inches")
  15082. },
  15083. {
  15084. name: "Default",
  15085. height: math.unit(6, "feet"),
  15086. default: true
  15087. },
  15088. {
  15089. name: "Macro",
  15090. height: math.unit(75, "feet")
  15091. },
  15092. ]
  15093. ))
  15094. characterMakers.push(() => makeCharacter(
  15095. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  15096. {
  15097. front: {
  15098. height: math.unit(1450, "feet"),
  15099. weight: math.unit(1.21e6, "tons"),
  15100. name: "Front",
  15101. image: {
  15102. source: "./media/characters/sekvra/front.svg",
  15103. extra: 1193/1190,
  15104. bottom: 78/1271
  15105. }
  15106. },
  15107. side: {
  15108. height: math.unit(1450, "feet"),
  15109. weight: math.unit(1.21e6, "tons"),
  15110. name: "Side",
  15111. image: {
  15112. source: "./media/characters/sekvra/side.svg",
  15113. extra: 1193/1190,
  15114. bottom: 52/1245
  15115. }
  15116. },
  15117. back: {
  15118. height: math.unit(1450, "feet"),
  15119. weight: math.unit(1.21e6, "tons"),
  15120. name: "Back",
  15121. image: {
  15122. source: "./media/characters/sekvra/back.svg",
  15123. extra: 1219/1216,
  15124. bottom: 21/1240
  15125. }
  15126. },
  15127. frontClothed: {
  15128. height: math.unit(1450, "feet"),
  15129. weight: math.unit(1.21e6, "tons"),
  15130. name: "Front (Clothed)",
  15131. image: {
  15132. source: "./media/characters/sekvra/front-clothed.svg",
  15133. extra: 1192/1189,
  15134. bottom: 79/1271
  15135. }
  15136. },
  15137. },
  15138. [
  15139. {
  15140. name: "Macro",
  15141. height: math.unit(1450, "feet"),
  15142. default: true
  15143. },
  15144. {
  15145. name: "Megamacro",
  15146. height: math.unit(15000, "feet")
  15147. },
  15148. ]
  15149. ))
  15150. characterMakers.push(() => makeCharacter(
  15151. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  15152. {
  15153. front: {
  15154. height: math.unit(6, "feet"),
  15155. weight: math.unit(150, "lb"),
  15156. name: "Front",
  15157. image: {
  15158. source: "./media/characters/carmine/front.svg",
  15159. extra: 1557/1538,
  15160. bottom: 68/1625
  15161. }
  15162. },
  15163. frontArmor: {
  15164. height: math.unit(6, "feet"),
  15165. weight: math.unit(150, "lb"),
  15166. name: "Front (Armor)",
  15167. image: {
  15168. source: "./media/characters/carmine/front-armor.svg",
  15169. extra: 1549/1530,
  15170. bottom: 82/1631
  15171. }
  15172. },
  15173. mouth: {
  15174. height: math.unit(0.55, "feet"),
  15175. name: "Mouth",
  15176. image: {
  15177. source: "./media/characters/carmine/mouth.svg"
  15178. }
  15179. },
  15180. hand: {
  15181. height: math.unit(1.05, "feet"),
  15182. name: "Hand",
  15183. image: {
  15184. source: "./media/characters/carmine/hand.svg"
  15185. }
  15186. },
  15187. foot: {
  15188. height: math.unit(0.6, "feet"),
  15189. name: "Foot",
  15190. image: {
  15191. source: "./media/characters/carmine/foot.svg"
  15192. }
  15193. },
  15194. },
  15195. [
  15196. {
  15197. name: "Large",
  15198. height: math.unit(1, "mile")
  15199. },
  15200. {
  15201. name: "Huge",
  15202. height: math.unit(40, "miles"),
  15203. default: true
  15204. },
  15205. {
  15206. name: "Colossal",
  15207. height: math.unit(2500, "miles")
  15208. },
  15209. ]
  15210. ))
  15211. characterMakers.push(() => makeCharacter(
  15212. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  15213. {
  15214. front: {
  15215. height: math.unit(6, "feet"),
  15216. weight: math.unit(150, "lb"),
  15217. name: "Front",
  15218. image: {
  15219. source: "./media/characters/elyssia/front.svg",
  15220. extra: 2201 / 2035,
  15221. bottom: 0.05
  15222. }
  15223. },
  15224. frontClothed: {
  15225. height: math.unit(6, "feet"),
  15226. weight: math.unit(150, "lb"),
  15227. name: "Front (Clothed)",
  15228. image: {
  15229. source: "./media/characters/elyssia/front-clothed.svg",
  15230. extra: 2201 / 2035,
  15231. bottom: 0.05
  15232. }
  15233. },
  15234. back: {
  15235. height: math.unit(6, "feet"),
  15236. weight: math.unit(150, "lb"),
  15237. name: "Back",
  15238. image: {
  15239. source: "./media/characters/elyssia/back.svg",
  15240. extra: 2201 / 2035,
  15241. bottom: 0.013
  15242. }
  15243. },
  15244. },
  15245. [
  15246. {
  15247. name: "Smaller",
  15248. height: math.unit(150, "feet")
  15249. },
  15250. {
  15251. name: "Standard",
  15252. height: math.unit(1400, "feet"),
  15253. default: true
  15254. },
  15255. {
  15256. name: "Distracted",
  15257. height: math.unit(15000, "feet")
  15258. },
  15259. ]
  15260. ))
  15261. characterMakers.push(() => makeCharacter(
  15262. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  15263. {
  15264. front: {
  15265. height: math.unit(7 + 4/12, "feet"),
  15266. weight: math.unit(690, "lb"),
  15267. name: "Front",
  15268. image: {
  15269. source: "./media/characters/geno-maxwell/front.svg",
  15270. extra: 984/856,
  15271. bottom: 87/1071
  15272. }
  15273. },
  15274. back: {
  15275. height: math.unit(7 + 4/12, "feet"),
  15276. weight: math.unit(690, "lb"),
  15277. name: "Back",
  15278. image: {
  15279. source: "./media/characters/geno-maxwell/back.svg",
  15280. extra: 981/854,
  15281. bottom: 57/1038
  15282. }
  15283. },
  15284. frontCostume: {
  15285. height: math.unit(7 + 4/12, "feet"),
  15286. weight: math.unit(690, "lb"),
  15287. name: "Front (Costume)",
  15288. image: {
  15289. source: "./media/characters/geno-maxwell/front-costume.svg",
  15290. extra: 984/856,
  15291. bottom: 87/1071
  15292. }
  15293. },
  15294. backcostume: {
  15295. height: math.unit(7 + 4/12, "feet"),
  15296. weight: math.unit(690, "lb"),
  15297. name: "Back (Costume)",
  15298. image: {
  15299. source: "./media/characters/geno-maxwell/back-costume.svg",
  15300. extra: 981/854,
  15301. bottom: 57/1038
  15302. }
  15303. },
  15304. },
  15305. [
  15306. {
  15307. name: "Micro",
  15308. height: math.unit(3, "inches")
  15309. },
  15310. {
  15311. name: "Normal",
  15312. height: math.unit(7 + 4 / 12, "feet"),
  15313. default: true
  15314. },
  15315. {
  15316. name: "Macro",
  15317. height: math.unit(220, "feet")
  15318. },
  15319. {
  15320. name: "Megamacro",
  15321. height: math.unit(11, "miles")
  15322. },
  15323. ]
  15324. ))
  15325. characterMakers.push(() => makeCharacter(
  15326. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15327. {
  15328. front: {
  15329. height: math.unit(7 + 4/12, "feet"),
  15330. weight: math.unit(750, "lb"),
  15331. name: "Front",
  15332. image: {
  15333. source: "./media/characters/regena-maxwell/front.svg",
  15334. extra: 984/856,
  15335. bottom: 87/1071
  15336. }
  15337. },
  15338. back: {
  15339. height: math.unit(7 + 4/12, "feet"),
  15340. weight: math.unit(750, "lb"),
  15341. name: "Back",
  15342. image: {
  15343. source: "./media/characters/regena-maxwell/back.svg",
  15344. extra: 981/854,
  15345. bottom: 57/1038
  15346. }
  15347. },
  15348. frontCostume: {
  15349. height: math.unit(7 + 4/12, "feet"),
  15350. weight: math.unit(750, "lb"),
  15351. name: "Front (Costume)",
  15352. image: {
  15353. source: "./media/characters/regena-maxwell/front-costume.svg",
  15354. extra: 984/856,
  15355. bottom: 87/1071
  15356. }
  15357. },
  15358. backcostume: {
  15359. height: math.unit(7 + 4/12, "feet"),
  15360. weight: math.unit(750, "lb"),
  15361. name: "Back (Costume)",
  15362. image: {
  15363. source: "./media/characters/regena-maxwell/back-costume.svg",
  15364. extra: 981/854,
  15365. bottom: 57/1038
  15366. }
  15367. },
  15368. },
  15369. [
  15370. {
  15371. name: "Normal",
  15372. height: math.unit(7 + 4 / 12, "feet"),
  15373. default: true
  15374. },
  15375. {
  15376. name: "Macro",
  15377. height: math.unit(220, "feet")
  15378. },
  15379. {
  15380. name: "Megamacro",
  15381. height: math.unit(11, "miles")
  15382. },
  15383. ]
  15384. ))
  15385. characterMakers.push(() => makeCharacter(
  15386. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15387. {
  15388. front: {
  15389. height: math.unit(6, "feet"),
  15390. weight: math.unit(150, "lb"),
  15391. name: "Front",
  15392. image: {
  15393. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15394. extra: 860 / 690,
  15395. bottom: 0.03
  15396. }
  15397. },
  15398. },
  15399. [
  15400. {
  15401. name: "Normal",
  15402. height: math.unit(1.7, "meters"),
  15403. default: true
  15404. },
  15405. ]
  15406. ))
  15407. characterMakers.push(() => makeCharacter(
  15408. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15409. {
  15410. front: {
  15411. height: math.unit(6, "feet"),
  15412. weight: math.unit(150, "lb"),
  15413. name: "Front",
  15414. image: {
  15415. source: "./media/characters/quilly/front.svg",
  15416. extra: 890 / 776
  15417. }
  15418. },
  15419. },
  15420. [
  15421. {
  15422. name: "Gigamacro",
  15423. height: math.unit(404090, "miles"),
  15424. default: true
  15425. },
  15426. ]
  15427. ))
  15428. characterMakers.push(() => makeCharacter(
  15429. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15430. {
  15431. front: {
  15432. height: math.unit(7 + 8 / 12, "feet"),
  15433. weight: math.unit(350, "lb"),
  15434. name: "Front",
  15435. image: {
  15436. source: "./media/characters/tempest/front.svg",
  15437. extra: 1175 / 1086,
  15438. bottom: 0.02
  15439. }
  15440. },
  15441. },
  15442. [
  15443. {
  15444. name: "Normal",
  15445. height: math.unit(7 + 8 / 12, "feet"),
  15446. default: true
  15447. },
  15448. ]
  15449. ))
  15450. characterMakers.push(() => makeCharacter(
  15451. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15452. {
  15453. side: {
  15454. height: math.unit(4 + 5 / 12, "feet"),
  15455. weight: math.unit(80, "lb"),
  15456. name: "Side",
  15457. image: {
  15458. source: "./media/characters/rodger/side.svg",
  15459. extra: 1235 / 1118
  15460. }
  15461. },
  15462. },
  15463. [
  15464. {
  15465. name: "Micro",
  15466. height: math.unit(1, "inch")
  15467. },
  15468. {
  15469. name: "Normal",
  15470. height: math.unit(4 + 5 / 12, "feet"),
  15471. default: true
  15472. },
  15473. {
  15474. name: "Macro",
  15475. height: math.unit(120, "feet")
  15476. },
  15477. ]
  15478. ))
  15479. characterMakers.push(() => makeCharacter(
  15480. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15481. {
  15482. front: {
  15483. height: math.unit(6, "feet"),
  15484. weight: math.unit(150, "lb"),
  15485. name: "Front",
  15486. image: {
  15487. source: "./media/characters/danyel/front.svg",
  15488. extra: 1185 / 1123,
  15489. bottom: 0.05
  15490. }
  15491. },
  15492. },
  15493. [
  15494. {
  15495. name: "Shrunken",
  15496. height: math.unit(0.5, "mm")
  15497. },
  15498. {
  15499. name: "Micro",
  15500. height: math.unit(1, "mm"),
  15501. default: true
  15502. },
  15503. {
  15504. name: "Upsized",
  15505. height: math.unit(5 + 5 / 12, "feet")
  15506. },
  15507. ]
  15508. ))
  15509. characterMakers.push(() => makeCharacter(
  15510. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15511. {
  15512. front: {
  15513. height: math.unit(5 + 6 / 12, "feet"),
  15514. weight: math.unit(200, "lb"),
  15515. name: "Front",
  15516. image: {
  15517. source: "./media/characters/vivian-bijoux/front.svg",
  15518. extra: 1217/1209,
  15519. bottom: 76/1293
  15520. }
  15521. },
  15522. back: {
  15523. height: math.unit(5 + 6 / 12, "feet"),
  15524. weight: math.unit(200, "lb"),
  15525. name: "Back",
  15526. image: {
  15527. source: "./media/characters/vivian-bijoux/back.svg",
  15528. extra: 1214/1208,
  15529. bottom: 51/1265
  15530. }
  15531. },
  15532. dressed: {
  15533. height: math.unit(5 + 6 / 12, "feet"),
  15534. weight: math.unit(200, "lb"),
  15535. name: "Dressed",
  15536. image: {
  15537. source: "./media/characters/vivian-bijoux/dressed.svg",
  15538. extra: 1217/1209,
  15539. bottom: 76/1293
  15540. }
  15541. },
  15542. },
  15543. [
  15544. {
  15545. name: "Normal",
  15546. height: math.unit(5 + 6 / 12, "feet"),
  15547. default: true
  15548. },
  15549. {
  15550. name: "Bad Dream",
  15551. height: math.unit(500, "feet")
  15552. },
  15553. {
  15554. name: "Nightmare",
  15555. height: math.unit(500, "miles")
  15556. },
  15557. ]
  15558. ))
  15559. characterMakers.push(() => makeCharacter(
  15560. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15561. {
  15562. front: {
  15563. height: math.unit(6 + 1 / 12, "feet"),
  15564. weight: math.unit(260, "lb"),
  15565. name: "Front",
  15566. image: {
  15567. source: "./media/characters/zeta/front.svg",
  15568. extra: 1968 / 1889,
  15569. bottom: 0.06
  15570. }
  15571. },
  15572. back: {
  15573. height: math.unit(6 + 1 / 12, "feet"),
  15574. weight: math.unit(260, "lb"),
  15575. name: "Back",
  15576. image: {
  15577. source: "./media/characters/zeta/back.svg",
  15578. extra: 1944 / 1858,
  15579. bottom: 0.03
  15580. }
  15581. },
  15582. hand: {
  15583. height: math.unit(1.112, "feet"),
  15584. name: "Hand",
  15585. image: {
  15586. source: "./media/characters/zeta/hand.svg"
  15587. }
  15588. },
  15589. foot: {
  15590. height: math.unit(1.48, "feet"),
  15591. name: "Foot",
  15592. image: {
  15593. source: "./media/characters/zeta/foot.svg"
  15594. }
  15595. },
  15596. },
  15597. [
  15598. {
  15599. name: "Micro",
  15600. height: math.unit(6, "inches")
  15601. },
  15602. {
  15603. name: "Normal",
  15604. height: math.unit(6 + 1 / 12, "feet"),
  15605. default: true
  15606. },
  15607. {
  15608. name: "Macro",
  15609. height: math.unit(20, "feet")
  15610. },
  15611. ]
  15612. ))
  15613. characterMakers.push(() => makeCharacter(
  15614. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15615. {
  15616. front: {
  15617. height: math.unit(6, "feet"),
  15618. weight: math.unit(150, "lb"),
  15619. name: "Front",
  15620. image: {
  15621. source: "./media/characters/jamie-larsen/front.svg",
  15622. extra: 962 / 933,
  15623. bottom: 0.02
  15624. }
  15625. },
  15626. back: {
  15627. height: math.unit(6, "feet"),
  15628. weight: math.unit(150, "lb"),
  15629. name: "Back",
  15630. image: {
  15631. source: "./media/characters/jamie-larsen/back.svg",
  15632. extra: 997 / 946
  15633. }
  15634. },
  15635. },
  15636. [
  15637. {
  15638. name: "Macro",
  15639. height: math.unit(28 + 7 / 12, "feet"),
  15640. default: true
  15641. },
  15642. {
  15643. name: "Macro+",
  15644. height: math.unit(180, "feet")
  15645. },
  15646. {
  15647. name: "Megamacro",
  15648. height: math.unit(10, "miles")
  15649. },
  15650. {
  15651. name: "Gigamacro",
  15652. height: math.unit(200000, "miles")
  15653. },
  15654. ]
  15655. ))
  15656. characterMakers.push(() => makeCharacter(
  15657. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15658. {
  15659. front: {
  15660. height: math.unit(6, "feet"),
  15661. weight: math.unit(120, "lb"),
  15662. name: "Front",
  15663. image: {
  15664. source: "./media/characters/vance/front.svg",
  15665. extra: 1980 / 1890,
  15666. bottom: 0.09
  15667. }
  15668. },
  15669. back: {
  15670. height: math.unit(6, "feet"),
  15671. weight: math.unit(120, "lb"),
  15672. name: "Back",
  15673. image: {
  15674. source: "./media/characters/vance/back.svg",
  15675. extra: 2081 / 1994,
  15676. bottom: 0.014
  15677. }
  15678. },
  15679. hand: {
  15680. height: math.unit(0.88, "feet"),
  15681. name: "Hand",
  15682. image: {
  15683. source: "./media/characters/vance/hand.svg"
  15684. }
  15685. },
  15686. foot: {
  15687. height: math.unit(0.64, "feet"),
  15688. name: "Foot",
  15689. image: {
  15690. source: "./media/characters/vance/foot.svg"
  15691. }
  15692. },
  15693. },
  15694. [
  15695. {
  15696. name: "Small",
  15697. height: math.unit(90, "feet"),
  15698. default: true
  15699. },
  15700. {
  15701. name: "Macro",
  15702. height: math.unit(100, "meters")
  15703. },
  15704. {
  15705. name: "Megamacro",
  15706. height: math.unit(15, "miles")
  15707. },
  15708. ]
  15709. ))
  15710. characterMakers.push(() => makeCharacter(
  15711. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15712. {
  15713. front: {
  15714. height: math.unit(6, "feet"),
  15715. weight: math.unit(180, "lb"),
  15716. name: "Front",
  15717. image: {
  15718. source: "./media/characters/xochitl/front.svg",
  15719. extra: 2297 / 2261,
  15720. bottom: 0.065
  15721. }
  15722. },
  15723. back: {
  15724. height: math.unit(6, "feet"),
  15725. weight: math.unit(180, "lb"),
  15726. name: "Back",
  15727. image: {
  15728. source: "./media/characters/xochitl/back.svg",
  15729. extra: 2386 / 2354,
  15730. bottom: 0.01
  15731. }
  15732. },
  15733. foot: {
  15734. height: math.unit(6 / 5 * 1.15, "feet"),
  15735. weight: math.unit(150, "lb"),
  15736. name: "Foot",
  15737. image: {
  15738. source: "./media/characters/xochitl/foot.svg"
  15739. }
  15740. },
  15741. },
  15742. [
  15743. {
  15744. name: "Macro",
  15745. height: math.unit(80, "feet")
  15746. },
  15747. {
  15748. name: "Macro+",
  15749. height: math.unit(400, "feet"),
  15750. default: true
  15751. },
  15752. {
  15753. name: "Gigamacro",
  15754. height: math.unit(80000, "miles")
  15755. },
  15756. {
  15757. name: "Gigamacro+",
  15758. height: math.unit(400000, "miles")
  15759. },
  15760. {
  15761. name: "Teramacro",
  15762. height: math.unit(300, "AU")
  15763. },
  15764. ]
  15765. ))
  15766. characterMakers.push(() => makeCharacter(
  15767. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15768. {
  15769. front: {
  15770. height: math.unit(6, "feet"),
  15771. weight: math.unit(150, "lb"),
  15772. name: "Front",
  15773. image: {
  15774. source: "./media/characters/vincent/front.svg",
  15775. extra: 1130 / 1080,
  15776. bottom: 0.055
  15777. }
  15778. },
  15779. beak: {
  15780. height: math.unit(6 * 0.1, "feet"),
  15781. name: "Beak",
  15782. image: {
  15783. source: "./media/characters/vincent/beak.svg"
  15784. }
  15785. },
  15786. hand: {
  15787. height: math.unit(6 * 0.85, "feet"),
  15788. weight: math.unit(150, "lb"),
  15789. name: "Hand",
  15790. image: {
  15791. source: "./media/characters/vincent/hand.svg"
  15792. }
  15793. },
  15794. foot: {
  15795. height: math.unit(6 * 0.19, "feet"),
  15796. weight: math.unit(150, "lb"),
  15797. name: "Foot",
  15798. image: {
  15799. source: "./media/characters/vincent/foot.svg"
  15800. }
  15801. },
  15802. },
  15803. [
  15804. {
  15805. name: "Base",
  15806. height: math.unit(6 + 5 / 12, "feet"),
  15807. default: true
  15808. },
  15809. {
  15810. name: "Macro",
  15811. height: math.unit(300, "feet")
  15812. },
  15813. {
  15814. name: "Megamacro",
  15815. height: math.unit(2, "miles")
  15816. },
  15817. {
  15818. name: "Gigamacro",
  15819. height: math.unit(1000, "miles")
  15820. },
  15821. ]
  15822. ))
  15823. characterMakers.push(() => makeCharacter(
  15824. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15825. {
  15826. front: {
  15827. height: math.unit(2, "meters"),
  15828. weight: math.unit(500, "kg"),
  15829. name: "Front",
  15830. image: {
  15831. source: "./media/characters/coatl/front.svg",
  15832. extra: 3948 / 3500,
  15833. bottom: 0.082
  15834. }
  15835. },
  15836. },
  15837. [
  15838. {
  15839. name: "Normal",
  15840. height: math.unit(4, "meters")
  15841. },
  15842. {
  15843. name: "Macro",
  15844. height: math.unit(100, "meters"),
  15845. default: true
  15846. },
  15847. {
  15848. name: "Macro+",
  15849. height: math.unit(300, "meters")
  15850. },
  15851. {
  15852. name: "Megamacro",
  15853. height: math.unit(3, "gigameters")
  15854. },
  15855. {
  15856. name: "Megamacro+",
  15857. height: math.unit(300, "terameters")
  15858. },
  15859. {
  15860. name: "Megamacro++",
  15861. height: math.unit(3, "lightyears")
  15862. },
  15863. ]
  15864. ))
  15865. characterMakers.push(() => makeCharacter(
  15866. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15867. {
  15868. front: {
  15869. height: math.unit(6, "feet"),
  15870. weight: math.unit(50, "kg"),
  15871. name: "front",
  15872. image: {
  15873. source: "./media/characters/shiroryu/front.svg",
  15874. extra: 1990 / 1935
  15875. }
  15876. },
  15877. },
  15878. [
  15879. {
  15880. name: "Mortal Mingling",
  15881. height: math.unit(3, "meters")
  15882. },
  15883. {
  15884. name: "Kaiju-ish",
  15885. height: math.unit(250, "meters")
  15886. },
  15887. {
  15888. name: "Somewhat Godly",
  15889. height: math.unit(400, "km"),
  15890. default: true
  15891. },
  15892. {
  15893. name: "Planetary",
  15894. height: math.unit(300, "megameters")
  15895. },
  15896. {
  15897. name: "Galaxy-dwarfing",
  15898. height: math.unit(450, "kiloparsecs")
  15899. },
  15900. {
  15901. name: "Universe Eater",
  15902. height: math.unit(150, "gigaparsecs")
  15903. },
  15904. {
  15905. name: "Almost Immeasurable",
  15906. height: math.unit(1.3e266, "yottaparsecs")
  15907. },
  15908. ]
  15909. ))
  15910. characterMakers.push(() => makeCharacter(
  15911. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15912. {
  15913. front: {
  15914. height: math.unit(6, "feet"),
  15915. weight: math.unit(150, "lb"),
  15916. name: "Front",
  15917. image: {
  15918. source: "./media/characters/umeko/front.svg",
  15919. extra: 1,
  15920. bottom: 0.019
  15921. }
  15922. },
  15923. frontArmored: {
  15924. height: math.unit(6, "feet"),
  15925. weight: math.unit(150, "lb"),
  15926. name: "Front (Armored)",
  15927. image: {
  15928. source: "./media/characters/umeko/front-armored.svg",
  15929. extra: 1,
  15930. bottom: 0.021
  15931. }
  15932. },
  15933. },
  15934. [
  15935. {
  15936. name: "Macro",
  15937. height: math.unit(220, "feet"),
  15938. default: true
  15939. },
  15940. {
  15941. name: "Guardian Dragon",
  15942. height: math.unit(50, "miles")
  15943. },
  15944. {
  15945. name: "Cosmic",
  15946. height: math.unit(800000, "miles")
  15947. },
  15948. ]
  15949. ))
  15950. characterMakers.push(() => makeCharacter(
  15951. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15952. {
  15953. front: {
  15954. height: math.unit(6, "feet"),
  15955. weight: math.unit(150, "lb"),
  15956. name: "Front",
  15957. image: {
  15958. source: "./media/characters/cassidy/front.svg",
  15959. extra: 810/808,
  15960. bottom: 41/851
  15961. }
  15962. },
  15963. },
  15964. [
  15965. {
  15966. name: "Canon Height",
  15967. height: math.unit(120, "feet"),
  15968. default: true
  15969. },
  15970. {
  15971. name: "Macro+",
  15972. height: math.unit(400, "feet")
  15973. },
  15974. {
  15975. name: "Macro++",
  15976. height: math.unit(4000, "feet")
  15977. },
  15978. {
  15979. name: "Megamacro",
  15980. height: math.unit(3, "miles")
  15981. },
  15982. ]
  15983. ))
  15984. characterMakers.push(() => makeCharacter(
  15985. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15986. {
  15987. front: {
  15988. height: math.unit(6, "feet"),
  15989. weight: math.unit(150, "lb"),
  15990. name: "Front",
  15991. image: {
  15992. source: "./media/characters/isaac/front.svg",
  15993. extra: 896 / 815,
  15994. bottom: 0.11
  15995. }
  15996. },
  15997. },
  15998. [
  15999. {
  16000. name: "Human Size",
  16001. height: math.unit(8, "feet"),
  16002. default: true
  16003. },
  16004. {
  16005. name: "Macro",
  16006. height: math.unit(400, "feet")
  16007. },
  16008. {
  16009. name: "Megamacro",
  16010. height: math.unit(50, "miles")
  16011. },
  16012. {
  16013. name: "Canon Height",
  16014. height: math.unit(200, "AU")
  16015. },
  16016. ]
  16017. ))
  16018. characterMakers.push(() => makeCharacter(
  16019. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  16020. {
  16021. front: {
  16022. height: math.unit(6, "feet"),
  16023. weight: math.unit(72, "kg"),
  16024. name: "Front",
  16025. image: {
  16026. source: "./media/characters/sleekit/front.svg",
  16027. extra: 4693 / 4487,
  16028. bottom: 0.012
  16029. }
  16030. },
  16031. },
  16032. [
  16033. {
  16034. name: "Minimum Height",
  16035. height: math.unit(10, "meters")
  16036. },
  16037. {
  16038. name: "Smaller",
  16039. height: math.unit(25, "meters")
  16040. },
  16041. {
  16042. name: "Larger",
  16043. height: math.unit(38, "meters"),
  16044. default: true
  16045. },
  16046. {
  16047. name: "Maximum height",
  16048. height: math.unit(100, "meters")
  16049. },
  16050. ]
  16051. ))
  16052. characterMakers.push(() => makeCharacter(
  16053. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  16054. {
  16055. front: {
  16056. height: math.unit(6, "feet"),
  16057. weight: math.unit(150, "lb"),
  16058. name: "Front",
  16059. image: {
  16060. source: "./media/characters/nillia/front.svg",
  16061. extra: 719/665,
  16062. bottom: 6/725
  16063. }
  16064. },
  16065. back: {
  16066. height: math.unit(6, "feet"),
  16067. weight: math.unit(150, "lb"),
  16068. name: "Back",
  16069. image: {
  16070. source: "./media/characters/nillia/back.svg",
  16071. extra: 705/651,
  16072. bottom: 5/710
  16073. }
  16074. },
  16075. },
  16076. [
  16077. {
  16078. name: "Canon Height",
  16079. height: math.unit(489, "feet"),
  16080. default: true
  16081. }
  16082. ]
  16083. ))
  16084. characterMakers.push(() => makeCharacter(
  16085. { name: "Mesmyriza", species: ["shark", "dragon", "robot", "deity"], tags: ["anthro"] },
  16086. {
  16087. front: {
  16088. height: math.unit(6, "feet"),
  16089. weight: math.unit(150, "lb"),
  16090. name: "Front",
  16091. image: {
  16092. source: "./media/characters/mesmyriza/front.svg",
  16093. extra: 1541/1291,
  16094. bottom: 87/1628
  16095. }
  16096. },
  16097. foot: {
  16098. height: math.unit(6 / (250 / 35), "feet"),
  16099. name: "Foot",
  16100. image: {
  16101. source: "./media/characters/mesmyriza/foot.svg"
  16102. }
  16103. },
  16104. },
  16105. [
  16106. {
  16107. name: "Macro",
  16108. height: math.unit(457, "meters"),
  16109. default: true
  16110. },
  16111. {
  16112. name: "Megamacro",
  16113. height: math.unit(8, "megameters")
  16114. },
  16115. ]
  16116. ))
  16117. characterMakers.push(() => makeCharacter(
  16118. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  16119. {
  16120. front: {
  16121. height: math.unit(6, "feet"),
  16122. weight: math.unit(250, "lb"),
  16123. name: "Front",
  16124. image: {
  16125. source: "./media/characters/saudade/front.svg",
  16126. extra: 1172 / 1139,
  16127. bottom: 0.035
  16128. }
  16129. },
  16130. },
  16131. [
  16132. {
  16133. name: "Micro",
  16134. height: math.unit(3, "inches")
  16135. },
  16136. {
  16137. name: "Normal",
  16138. height: math.unit(6, "feet"),
  16139. default: true
  16140. },
  16141. {
  16142. name: "Macro",
  16143. height: math.unit(50, "feet")
  16144. },
  16145. {
  16146. name: "Megamacro",
  16147. height: math.unit(2800, "feet")
  16148. },
  16149. ]
  16150. ))
  16151. characterMakers.push(() => makeCharacter(
  16152. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  16153. {
  16154. front: {
  16155. height: math.unit(5 + 4 / 12, "feet"),
  16156. weight: math.unit(100, "lb"),
  16157. name: "Front",
  16158. image: {
  16159. source: "./media/characters/keireer/front.svg",
  16160. extra: 716 / 666,
  16161. bottom: 0.05
  16162. }
  16163. },
  16164. },
  16165. [
  16166. {
  16167. name: "Normal",
  16168. height: math.unit(5 + 4 / 12, "feet"),
  16169. default: true
  16170. },
  16171. ]
  16172. ))
  16173. characterMakers.push(() => makeCharacter(
  16174. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  16175. {
  16176. front: {
  16177. height: math.unit(5.5, "feet"),
  16178. weight: math.unit(90, "kg"),
  16179. name: "Front",
  16180. image: {
  16181. source: "./media/characters/mirja/front.svg",
  16182. extra: 1452/1262,
  16183. bottom: 67/1519
  16184. }
  16185. },
  16186. frontDressed: {
  16187. height: math.unit(5.5, "feet"),
  16188. weight: math.unit(90, "lb"),
  16189. name: "Front (Dressed)",
  16190. image: {
  16191. source: "./media/characters/mirja/dressed.svg",
  16192. extra: 1452/1262,
  16193. bottom: 67/1519
  16194. }
  16195. },
  16196. back: {
  16197. height: math.unit(6, "feet"),
  16198. weight: math.unit(90, "lb"),
  16199. name: "Back",
  16200. image: {
  16201. source: "./media/characters/mirja/back.svg",
  16202. extra: 1892/1795,
  16203. bottom: 48/1940
  16204. }
  16205. },
  16206. maw: {
  16207. height: math.unit(1.312, "feet"),
  16208. name: "Maw",
  16209. image: {
  16210. source: "./media/characters/mirja/maw.svg"
  16211. }
  16212. },
  16213. paw: {
  16214. height: math.unit(1.15, "feet"),
  16215. name: "Paw",
  16216. image: {
  16217. source: "./media/characters/mirja/paw.svg"
  16218. }
  16219. },
  16220. },
  16221. [
  16222. {
  16223. name: "\"Incognito\"",
  16224. height: math.unit(3, "meters")
  16225. },
  16226. {
  16227. name: "Strolling Size",
  16228. height: math.unit(15, "km")
  16229. },
  16230. {
  16231. name: "Larger Strolling Size",
  16232. height: math.unit(400, "km")
  16233. },
  16234. {
  16235. name: "Preferred Size",
  16236. height: math.unit(5000, "km"),
  16237. default: true
  16238. },
  16239. {
  16240. name: "True Size",
  16241. height: math.unit(30657809462086840000000000000000, "parsecs"),
  16242. },
  16243. ]
  16244. ))
  16245. characterMakers.push(() => makeCharacter(
  16246. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  16247. {
  16248. front: {
  16249. height: math.unit(15, "feet"),
  16250. weight: math.unit(880, "kg"),
  16251. name: "Front",
  16252. image: {
  16253. source: "./media/characters/nightraver/front.svg",
  16254. extra: 2444 / 2160,
  16255. bottom: 0.027
  16256. }
  16257. },
  16258. back: {
  16259. height: math.unit(15, "feet"),
  16260. weight: math.unit(880, "kg"),
  16261. name: "Back",
  16262. image: {
  16263. source: "./media/characters/nightraver/back.svg",
  16264. extra: 2309 / 2180,
  16265. bottom: 0.005
  16266. }
  16267. },
  16268. sole: {
  16269. height: math.unit(2.878, "feet"),
  16270. name: "Sole",
  16271. image: {
  16272. source: "./media/characters/nightraver/sole.svg"
  16273. }
  16274. },
  16275. foot: {
  16276. height: math.unit(2.285, "feet"),
  16277. name: "Foot",
  16278. image: {
  16279. source: "./media/characters/nightraver/foot.svg"
  16280. }
  16281. },
  16282. maw: {
  16283. height: math.unit(2.67, "feet"),
  16284. name: "Maw",
  16285. image: {
  16286. source: "./media/characters/nightraver/maw.svg"
  16287. }
  16288. },
  16289. },
  16290. [
  16291. {
  16292. name: "Micro",
  16293. height: math.unit(1, "cm")
  16294. },
  16295. {
  16296. name: "Normal",
  16297. height: math.unit(15, "feet"),
  16298. default: true
  16299. },
  16300. {
  16301. name: "Macro",
  16302. height: math.unit(300, "feet")
  16303. },
  16304. {
  16305. name: "Megamacro",
  16306. height: math.unit(300, "miles")
  16307. },
  16308. {
  16309. name: "Gigamacro",
  16310. height: math.unit(10000, "miles")
  16311. },
  16312. ]
  16313. ))
  16314. characterMakers.push(() => makeCharacter(
  16315. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16316. {
  16317. side: {
  16318. height: math.unit(2, "inches"),
  16319. weight: math.unit(5, "grams"),
  16320. name: "Side",
  16321. image: {
  16322. source: "./media/characters/arc/side.svg"
  16323. }
  16324. },
  16325. },
  16326. [
  16327. {
  16328. name: "Micro",
  16329. height: math.unit(2, "inches"),
  16330. default: true
  16331. },
  16332. ]
  16333. ))
  16334. characterMakers.push(() => makeCharacter(
  16335. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16336. {
  16337. front: {
  16338. height: math.unit(1.1938, "meters"),
  16339. weight: math.unit(54, "kg"),
  16340. name: "Front",
  16341. image: {
  16342. source: "./media/characters/nebula-shahar/front.svg",
  16343. extra: 1642 / 1436,
  16344. bottom: 0.06
  16345. }
  16346. },
  16347. },
  16348. [
  16349. {
  16350. name: "Megamicro",
  16351. height: math.unit(0.3, "mm")
  16352. },
  16353. {
  16354. name: "Micro",
  16355. height: math.unit(3, "cm")
  16356. },
  16357. {
  16358. name: "Normal",
  16359. height: math.unit(138, "cm"),
  16360. default: true
  16361. },
  16362. {
  16363. name: "Macro",
  16364. height: math.unit(30, "m")
  16365. },
  16366. ]
  16367. ))
  16368. characterMakers.push(() => makeCharacter(
  16369. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16370. {
  16371. front: {
  16372. height: math.unit(5.24, "feet"),
  16373. weight: math.unit(150, "lb"),
  16374. name: "Front",
  16375. image: {
  16376. source: "./media/characters/shayla/front.svg",
  16377. extra: 1512 / 1414,
  16378. bottom: 0.01
  16379. }
  16380. },
  16381. back: {
  16382. height: math.unit(5.24, "feet"),
  16383. weight: math.unit(150, "lb"),
  16384. name: "Back",
  16385. image: {
  16386. source: "./media/characters/shayla/back.svg",
  16387. extra: 1512 / 1414
  16388. }
  16389. },
  16390. hand: {
  16391. height: math.unit(0.7781496062992126, "feet"),
  16392. name: "Hand",
  16393. image: {
  16394. source: "./media/characters/shayla/hand.svg"
  16395. }
  16396. },
  16397. foot: {
  16398. height: math.unit(1.4206036745406823, "feet"),
  16399. name: "Foot",
  16400. image: {
  16401. source: "./media/characters/shayla/foot.svg"
  16402. }
  16403. },
  16404. },
  16405. [
  16406. {
  16407. name: "Micro",
  16408. height: math.unit(0.32, "feet")
  16409. },
  16410. {
  16411. name: "Normal",
  16412. height: math.unit(5.24, "feet"),
  16413. default: true
  16414. },
  16415. {
  16416. name: "Macro",
  16417. height: math.unit(492.12, "feet")
  16418. },
  16419. {
  16420. name: "Megamacro",
  16421. height: math.unit(186.41, "miles")
  16422. },
  16423. ]
  16424. ))
  16425. characterMakers.push(() => makeCharacter(
  16426. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16427. {
  16428. front: {
  16429. height: math.unit(2.2, "m"),
  16430. weight: math.unit(120, "kg"),
  16431. name: "Front",
  16432. image: {
  16433. source: "./media/characters/pia-jr/front.svg",
  16434. extra: 1000 / 970,
  16435. bottom: 0.035
  16436. }
  16437. },
  16438. hand: {
  16439. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16440. name: "Hand",
  16441. image: {
  16442. source: "./media/characters/pia-jr/hand.svg"
  16443. }
  16444. },
  16445. paw: {
  16446. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16447. name: "Paw",
  16448. image: {
  16449. source: "./media/characters/pia-jr/paw.svg"
  16450. }
  16451. },
  16452. },
  16453. [
  16454. {
  16455. name: "Micro",
  16456. height: math.unit(1.2, "cm")
  16457. },
  16458. {
  16459. name: "Normal",
  16460. height: math.unit(2.2, "m"),
  16461. default: true
  16462. },
  16463. {
  16464. name: "Macro",
  16465. height: math.unit(180, "m")
  16466. },
  16467. {
  16468. name: "Megamacro",
  16469. height: math.unit(420, "km")
  16470. },
  16471. ]
  16472. ))
  16473. characterMakers.push(() => makeCharacter(
  16474. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16475. {
  16476. front: {
  16477. height: math.unit(2, "m"),
  16478. weight: math.unit(115, "kg"),
  16479. name: "Front",
  16480. image: {
  16481. source: "./media/characters/pia-sr/front.svg",
  16482. extra: 760 / 730,
  16483. bottom: 0.015
  16484. }
  16485. },
  16486. back: {
  16487. height: math.unit(2, "m"),
  16488. weight: math.unit(115, "kg"),
  16489. name: "Back",
  16490. image: {
  16491. source: "./media/characters/pia-sr/back.svg",
  16492. extra: 760 / 730,
  16493. bottom: 0.01
  16494. }
  16495. },
  16496. hand: {
  16497. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16498. name: "Hand",
  16499. image: {
  16500. source: "./media/characters/pia-sr/hand.svg"
  16501. }
  16502. },
  16503. foot: {
  16504. height: math.unit(1.83, "feet"),
  16505. name: "Foot",
  16506. image: {
  16507. source: "./media/characters/pia-sr/foot.svg"
  16508. }
  16509. },
  16510. },
  16511. [
  16512. {
  16513. name: "Micro",
  16514. height: math.unit(88, "mm")
  16515. },
  16516. {
  16517. name: "Normal",
  16518. height: math.unit(2, "m"),
  16519. default: true
  16520. },
  16521. {
  16522. name: "Macro",
  16523. height: math.unit(200, "m")
  16524. },
  16525. {
  16526. name: "Megamacro",
  16527. height: math.unit(420, "km")
  16528. },
  16529. ]
  16530. ))
  16531. characterMakers.push(() => makeCharacter(
  16532. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16533. {
  16534. front: {
  16535. height: math.unit(8 + 2 / 12, "feet"),
  16536. weight: math.unit(300, "lb"),
  16537. name: "Front",
  16538. image: {
  16539. source: "./media/characters/kibibyte/front.svg",
  16540. extra: 2221 / 2098,
  16541. bottom: 0.04
  16542. }
  16543. },
  16544. },
  16545. [
  16546. {
  16547. name: "Normal",
  16548. height: math.unit(8 + 2 / 12, "feet"),
  16549. default: true
  16550. },
  16551. {
  16552. name: "Socialable Macro",
  16553. height: math.unit(50, "feet")
  16554. },
  16555. {
  16556. name: "Macro",
  16557. height: math.unit(300, "feet")
  16558. },
  16559. {
  16560. name: "Megamacro",
  16561. height: math.unit(500, "miles")
  16562. },
  16563. ]
  16564. ))
  16565. characterMakers.push(() => makeCharacter(
  16566. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16567. {
  16568. front: {
  16569. height: math.unit(6, "feet"),
  16570. weight: math.unit(150, "lb"),
  16571. name: "Front",
  16572. image: {
  16573. source: "./media/characters/felix/front.svg",
  16574. extra: 762 / 722,
  16575. bottom: 0.02
  16576. }
  16577. },
  16578. frontClothed: {
  16579. height: math.unit(6, "feet"),
  16580. weight: math.unit(150, "lb"),
  16581. name: "Front (Clothed)",
  16582. image: {
  16583. source: "./media/characters/felix/front-clothed.svg",
  16584. extra: 762 / 722,
  16585. bottom: 0.02
  16586. }
  16587. },
  16588. },
  16589. [
  16590. {
  16591. name: "Normal",
  16592. height: math.unit(6 + 8 / 12, "feet"),
  16593. default: true
  16594. },
  16595. {
  16596. name: "Macro",
  16597. height: math.unit(2600, "feet")
  16598. },
  16599. {
  16600. name: "Megamacro",
  16601. height: math.unit(450, "miles")
  16602. },
  16603. ]
  16604. ))
  16605. characterMakers.push(() => makeCharacter(
  16606. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16607. {
  16608. front: {
  16609. height: math.unit(6 + 1 / 12, "feet"),
  16610. weight: math.unit(250, "lb"),
  16611. name: "Front",
  16612. image: {
  16613. source: "./media/characters/tobo/front.svg",
  16614. extra: 608 / 586,
  16615. bottom: 0.023
  16616. }
  16617. },
  16618. back: {
  16619. height: math.unit(6 + 1 / 12, "feet"),
  16620. weight: math.unit(250, "lb"),
  16621. name: "Back",
  16622. image: {
  16623. source: "./media/characters/tobo/back.svg",
  16624. extra: 608 / 586
  16625. }
  16626. },
  16627. },
  16628. [
  16629. {
  16630. name: "Nano",
  16631. height: math.unit(2, "nm")
  16632. },
  16633. {
  16634. name: "Megamicro",
  16635. height: math.unit(0.1, "mm")
  16636. },
  16637. {
  16638. name: "Micro",
  16639. height: math.unit(1, "inch"),
  16640. default: true
  16641. },
  16642. {
  16643. name: "Human-sized",
  16644. height: math.unit(6 + 1 / 12, "feet")
  16645. },
  16646. {
  16647. name: "Macro",
  16648. height: math.unit(250, "feet")
  16649. },
  16650. {
  16651. name: "Megamacro",
  16652. height: math.unit(75, "miles")
  16653. },
  16654. {
  16655. name: "Texas-sized",
  16656. height: math.unit(750, "miles")
  16657. },
  16658. {
  16659. name: "Teramacro",
  16660. height: math.unit(50000, "miles")
  16661. },
  16662. ]
  16663. ))
  16664. characterMakers.push(() => makeCharacter(
  16665. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16666. {
  16667. front: {
  16668. height: math.unit(6, "feet"),
  16669. weight: math.unit(269, "lb"),
  16670. name: "Front",
  16671. image: {
  16672. source: "./media/characters/danny-kapowsky/front.svg",
  16673. extra: 766 / 736,
  16674. bottom: 0.044
  16675. }
  16676. },
  16677. back: {
  16678. height: math.unit(6, "feet"),
  16679. weight: math.unit(269, "lb"),
  16680. name: "Back",
  16681. image: {
  16682. source: "./media/characters/danny-kapowsky/back.svg",
  16683. extra: 797 / 760,
  16684. bottom: 0.025
  16685. }
  16686. },
  16687. },
  16688. [
  16689. {
  16690. name: "Macro",
  16691. height: math.unit(150, "feet"),
  16692. default: true
  16693. },
  16694. {
  16695. name: "Macro+",
  16696. height: math.unit(200, "feet")
  16697. },
  16698. {
  16699. name: "Macro++",
  16700. height: math.unit(300, "feet")
  16701. },
  16702. {
  16703. name: "Macro+++",
  16704. height: math.unit(400, "feet")
  16705. },
  16706. ]
  16707. ))
  16708. characterMakers.push(() => makeCharacter(
  16709. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16710. {
  16711. side: {
  16712. height: math.unit(6, "feet"),
  16713. weight: math.unit(170, "lb"),
  16714. name: "Side",
  16715. image: {
  16716. source: "./media/characters/finn/side.svg",
  16717. extra: 1953 / 1807,
  16718. bottom: 0.057
  16719. }
  16720. },
  16721. },
  16722. [
  16723. {
  16724. name: "Megamacro",
  16725. height: math.unit(14445, "feet"),
  16726. default: true
  16727. },
  16728. ]
  16729. ))
  16730. characterMakers.push(() => makeCharacter(
  16731. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16732. {
  16733. front: {
  16734. height: math.unit(5 + 6 / 12, "feet"),
  16735. weight: math.unit(125, "lb"),
  16736. name: "Front",
  16737. image: {
  16738. source: "./media/characters/roy/front.svg",
  16739. extra: 1,
  16740. bottom: 0.11
  16741. }
  16742. },
  16743. },
  16744. [
  16745. {
  16746. name: "Micro",
  16747. height: math.unit(3, "inches"),
  16748. default: true
  16749. },
  16750. {
  16751. name: "Normal",
  16752. height: math.unit(5 + 6 / 12, "feet")
  16753. },
  16754. {
  16755. name: "Lesser Macro",
  16756. height: math.unit(60, "feet")
  16757. },
  16758. {
  16759. name: "Greater Macro",
  16760. height: math.unit(120, "feet")
  16761. },
  16762. ]
  16763. ))
  16764. characterMakers.push(() => makeCharacter(
  16765. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16766. {
  16767. front: {
  16768. height: math.unit(6, "feet"),
  16769. weight: math.unit(100, "lb"),
  16770. name: "Front",
  16771. image: {
  16772. source: "./media/characters/aevsivs/front.svg",
  16773. extra: 1,
  16774. bottom: 0.03
  16775. }
  16776. },
  16777. back: {
  16778. height: math.unit(6, "feet"),
  16779. weight: math.unit(100, "lb"),
  16780. name: "Back",
  16781. image: {
  16782. source: "./media/characters/aevsivs/back.svg"
  16783. }
  16784. },
  16785. },
  16786. [
  16787. {
  16788. name: "Micro",
  16789. height: math.unit(2, "inches"),
  16790. default: true
  16791. },
  16792. {
  16793. name: "Normal",
  16794. height: math.unit(5, "feet")
  16795. },
  16796. ]
  16797. ))
  16798. characterMakers.push(() => makeCharacter(
  16799. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16800. {
  16801. front: {
  16802. height: math.unit(5 + 7 / 12, "feet"),
  16803. weight: math.unit(159, "lb"),
  16804. name: "Front",
  16805. image: {
  16806. source: "./media/characters/hildegard/front.svg",
  16807. extra: 289 / 269,
  16808. bottom: 7.63 / 297.8
  16809. }
  16810. },
  16811. back: {
  16812. height: math.unit(5 + 7 / 12, "feet"),
  16813. weight: math.unit(159, "lb"),
  16814. name: "Back",
  16815. image: {
  16816. source: "./media/characters/hildegard/back.svg",
  16817. extra: 280 / 260,
  16818. bottom: 2.3 / 282
  16819. }
  16820. },
  16821. },
  16822. [
  16823. {
  16824. name: "Normal",
  16825. height: math.unit(5 + 7 / 12, "feet"),
  16826. default: true
  16827. },
  16828. ]
  16829. ))
  16830. characterMakers.push(() => makeCharacter(
  16831. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16832. {
  16833. bernard: {
  16834. height: math.unit(2 + 7 / 12, "feet"),
  16835. weight: math.unit(66, "lb"),
  16836. name: "Bernard",
  16837. rename: true,
  16838. image: {
  16839. source: "./media/characters/bernard-wilder/bernard.svg",
  16840. extra: 192 / 128,
  16841. bottom: 0.05
  16842. }
  16843. },
  16844. wilder: {
  16845. height: math.unit(5 + 8 / 12, "feet"),
  16846. weight: math.unit(143, "lb"),
  16847. name: "Wilder",
  16848. rename: true,
  16849. image: {
  16850. source: "./media/characters/bernard-wilder/wilder.svg",
  16851. extra: 361 / 312,
  16852. bottom: 0.02
  16853. }
  16854. },
  16855. },
  16856. [
  16857. {
  16858. name: "Normal",
  16859. height: math.unit(2 + 7 / 12, "feet"),
  16860. default: true
  16861. },
  16862. ]
  16863. ))
  16864. characterMakers.push(() => makeCharacter(
  16865. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16866. {
  16867. anthro: {
  16868. height: math.unit(6 + 1 / 12, "feet"),
  16869. weight: math.unit(155, "lb"),
  16870. name: "Anthro",
  16871. image: {
  16872. source: "./media/characters/hearth/anthro.svg",
  16873. extra: 1178/1136,
  16874. bottom: 28/1206
  16875. }
  16876. },
  16877. feral: {
  16878. height: math.unit(3.78, "feet"),
  16879. weight: math.unit(35, "kg"),
  16880. name: "Feral",
  16881. image: {
  16882. source: "./media/characters/hearth/feral.svg",
  16883. extra: 153 / 135,
  16884. bottom: 0.03
  16885. }
  16886. },
  16887. },
  16888. [
  16889. {
  16890. name: "Normal",
  16891. height: math.unit(6 + 1 / 12, "feet"),
  16892. default: true
  16893. },
  16894. ]
  16895. ))
  16896. characterMakers.push(() => makeCharacter(
  16897. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16898. {
  16899. front: {
  16900. height: math.unit(6, "feet"),
  16901. weight: math.unit(182, "lb"),
  16902. name: "Front",
  16903. image: {
  16904. source: "./media/characters/ingrid/front.svg",
  16905. extra: 294 / 268,
  16906. bottom: 0.027
  16907. }
  16908. },
  16909. },
  16910. [
  16911. {
  16912. name: "Normal",
  16913. height: math.unit(6, "feet"),
  16914. default: true
  16915. },
  16916. ]
  16917. ))
  16918. characterMakers.push(() => makeCharacter(
  16919. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16920. {
  16921. eevee: {
  16922. height: math.unit(2 + 10 / 12, "feet"),
  16923. weight: math.unit(86, "lb"),
  16924. name: "Malgam",
  16925. image: {
  16926. source: "./media/characters/malgam/eevee.svg",
  16927. extra: 952/784,
  16928. bottom: 38/990
  16929. }
  16930. },
  16931. sylveon: {
  16932. height: math.unit(4, "feet"),
  16933. weight: math.unit(101, "lb"),
  16934. name: "Future Malgam",
  16935. rename: true,
  16936. image: {
  16937. source: "./media/characters/malgam/sylveon.svg",
  16938. extra: 371 / 325,
  16939. bottom: 0.015
  16940. }
  16941. },
  16942. gigantamax: {
  16943. height: math.unit(50, "feet"),
  16944. name: "Gigantamax Malgam",
  16945. rename: true,
  16946. image: {
  16947. source: "./media/characters/malgam/gigantamax.svg"
  16948. }
  16949. },
  16950. },
  16951. [
  16952. {
  16953. name: "Normal",
  16954. height: math.unit(2 + 10 / 12, "feet"),
  16955. default: true
  16956. },
  16957. ]
  16958. ))
  16959. characterMakers.push(() => makeCharacter(
  16960. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16961. {
  16962. front: {
  16963. height: math.unit(5 + 11 / 12, "feet"),
  16964. weight: math.unit(188, "lb"),
  16965. name: "Front",
  16966. image: {
  16967. source: "./media/characters/fleur/front.svg",
  16968. extra: 309 / 283,
  16969. bottom: 0.007
  16970. }
  16971. },
  16972. },
  16973. [
  16974. {
  16975. name: "Normal",
  16976. height: math.unit(5 + 11 / 12, "feet"),
  16977. default: true
  16978. },
  16979. ]
  16980. ))
  16981. characterMakers.push(() => makeCharacter(
  16982. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16983. {
  16984. front: {
  16985. height: math.unit(5 + 4 / 12, "feet"),
  16986. weight: math.unit(122, "lb"),
  16987. name: "Front",
  16988. image: {
  16989. source: "./media/characters/jude/front.svg",
  16990. extra: 288 / 273,
  16991. bottom: 0.03
  16992. }
  16993. },
  16994. },
  16995. [
  16996. {
  16997. name: "Normal",
  16998. height: math.unit(5 + 4 / 12, "feet"),
  16999. default: true
  17000. },
  17001. ]
  17002. ))
  17003. characterMakers.push(() => makeCharacter(
  17004. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  17005. {
  17006. front: {
  17007. height: math.unit(5 + 11 / 12, "feet"),
  17008. weight: math.unit(190, "lb"),
  17009. name: "Front",
  17010. image: {
  17011. source: "./media/characters/seara/front.svg",
  17012. extra: 1,
  17013. bottom: 0.05
  17014. }
  17015. },
  17016. },
  17017. [
  17018. {
  17019. name: "Normal",
  17020. height: math.unit(5 + 11 / 12, "feet"),
  17021. default: true
  17022. },
  17023. ]
  17024. ))
  17025. characterMakers.push(() => makeCharacter(
  17026. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  17027. {
  17028. front: {
  17029. height: math.unit(16 + 5 / 12, "feet"),
  17030. weight: math.unit(524, "lb"),
  17031. name: "Front",
  17032. image: {
  17033. source: "./media/characters/caspian-lugia/front.svg",
  17034. extra: 1,
  17035. bottom: 0.04
  17036. }
  17037. },
  17038. },
  17039. [
  17040. {
  17041. name: "Normal",
  17042. height: math.unit(16 + 5 / 12, "feet"),
  17043. default: true
  17044. },
  17045. ]
  17046. ))
  17047. characterMakers.push(() => makeCharacter(
  17048. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  17049. {
  17050. front: {
  17051. height: math.unit(5 + 7 / 12, "feet"),
  17052. weight: math.unit(170, "lb"),
  17053. name: "Front",
  17054. image: {
  17055. source: "./media/characters/mika/front.svg",
  17056. extra: 1,
  17057. bottom: 0.016
  17058. }
  17059. },
  17060. },
  17061. [
  17062. {
  17063. name: "Normal",
  17064. height: math.unit(5 + 7 / 12, "feet"),
  17065. default: true
  17066. },
  17067. ]
  17068. ))
  17069. characterMakers.push(() => makeCharacter(
  17070. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  17071. {
  17072. front: {
  17073. height: math.unit(6 + 2 / 12, "feet"),
  17074. weight: math.unit(268, "lb"),
  17075. name: "Front",
  17076. image: {
  17077. source: "./media/characters/sol/front.svg",
  17078. extra: 247 / 231,
  17079. bottom: 0.05
  17080. }
  17081. },
  17082. },
  17083. [
  17084. {
  17085. name: "Normal",
  17086. height: math.unit(6 + 2 / 12, "feet"),
  17087. default: true
  17088. },
  17089. ]
  17090. ))
  17091. characterMakers.push(() => makeCharacter(
  17092. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  17093. {
  17094. buizel: {
  17095. height: math.unit(2 + 5 / 12, "feet"),
  17096. weight: math.unit(87, "lb"),
  17097. name: "Front",
  17098. image: {
  17099. source: "./media/characters/umiko/buizel.svg",
  17100. extra: 172 / 157,
  17101. bottom: 0.01
  17102. },
  17103. form: "buizel",
  17104. default: true
  17105. },
  17106. floatzel: {
  17107. height: math.unit(5 + 9 / 12, "feet"),
  17108. weight: math.unit(250, "lb"),
  17109. name: "Front",
  17110. image: {
  17111. source: "./media/characters/umiko/floatzel.svg",
  17112. extra: 1076/1006,
  17113. bottom: 15/1091
  17114. },
  17115. form: "floatzel",
  17116. default: true
  17117. },
  17118. },
  17119. [
  17120. {
  17121. name: "Normal",
  17122. height: math.unit(2 + 5 / 12, "feet"),
  17123. form: "buizel",
  17124. default: true
  17125. },
  17126. {
  17127. name: "Normal",
  17128. height: math.unit(5 + 9 / 12, "feet"),
  17129. form: "floatzel",
  17130. default: true
  17131. },
  17132. ],
  17133. {
  17134. "buizel": {
  17135. name: "Buizel"
  17136. },
  17137. "floatzel": {
  17138. name: "Floatzel",
  17139. default: true
  17140. }
  17141. }
  17142. ))
  17143. characterMakers.push(() => makeCharacter(
  17144. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  17145. {
  17146. front: {
  17147. height: math.unit(6 + 2 / 12, "feet"),
  17148. weight: math.unit(146, "lb"),
  17149. name: "Front",
  17150. image: {
  17151. source: "./media/characters/iliac/front.svg",
  17152. extra: 389 / 365,
  17153. bottom: 0.035
  17154. }
  17155. },
  17156. },
  17157. [
  17158. {
  17159. name: "Normal",
  17160. height: math.unit(6 + 2 / 12, "feet"),
  17161. default: true
  17162. },
  17163. ]
  17164. ))
  17165. characterMakers.push(() => makeCharacter(
  17166. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  17167. {
  17168. front: {
  17169. height: math.unit(6, "feet"),
  17170. weight: math.unit(170, "lb"),
  17171. name: "Front",
  17172. image: {
  17173. source: "./media/characters/topaz/front.svg",
  17174. extra: 317 / 303,
  17175. bottom: 0.055
  17176. }
  17177. },
  17178. },
  17179. [
  17180. {
  17181. name: "Normal",
  17182. height: math.unit(6, "feet"),
  17183. default: true
  17184. },
  17185. ]
  17186. ))
  17187. characterMakers.push(() => makeCharacter(
  17188. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  17189. {
  17190. front: {
  17191. height: math.unit(5 + 11 / 12, "feet"),
  17192. weight: math.unit(144, "lb"),
  17193. name: "Front",
  17194. image: {
  17195. source: "./media/characters/gabriel/front.svg",
  17196. extra: 285 / 262,
  17197. bottom: 0.004
  17198. }
  17199. },
  17200. },
  17201. [
  17202. {
  17203. name: "Normal",
  17204. height: math.unit(5 + 11 / 12, "feet"),
  17205. default: true
  17206. },
  17207. ]
  17208. ))
  17209. characterMakers.push(() => makeCharacter(
  17210. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  17211. {
  17212. side: {
  17213. height: math.unit(6 + 5 / 12, "feet"),
  17214. weight: math.unit(300, "lb"),
  17215. name: "Side",
  17216. image: {
  17217. source: "./media/characters/tempest-suicune/side.svg",
  17218. extra: 195 / 154,
  17219. bottom: 0.04
  17220. }
  17221. },
  17222. },
  17223. [
  17224. {
  17225. name: "Normal",
  17226. height: math.unit(6 + 5 / 12, "feet"),
  17227. default: true
  17228. },
  17229. ]
  17230. ))
  17231. characterMakers.push(() => makeCharacter(
  17232. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  17233. {
  17234. front: {
  17235. height: math.unit(7 + 2 / 12, "feet"),
  17236. weight: math.unit(322, "lb"),
  17237. name: "Front",
  17238. image: {
  17239. source: "./media/characters/vulcan/front.svg",
  17240. extra: 154 / 147,
  17241. bottom: 0.04
  17242. }
  17243. },
  17244. },
  17245. [
  17246. {
  17247. name: "Normal",
  17248. height: math.unit(7 + 2 / 12, "feet"),
  17249. default: true
  17250. },
  17251. ]
  17252. ))
  17253. characterMakers.push(() => makeCharacter(
  17254. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  17255. {
  17256. front: {
  17257. height: math.unit(5 + 10 / 12, "feet"),
  17258. weight: math.unit(264, "lb"),
  17259. name: "Front",
  17260. image: {
  17261. source: "./media/characters/gault/front.svg",
  17262. extra: 161 / 140,
  17263. bottom: 0.028
  17264. }
  17265. },
  17266. },
  17267. [
  17268. {
  17269. name: "Normal",
  17270. height: math.unit(5 + 10 / 12, "feet"),
  17271. default: true
  17272. },
  17273. ]
  17274. ))
  17275. characterMakers.push(() => makeCharacter(
  17276. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  17277. {
  17278. front: {
  17279. height: math.unit(6, "feet"),
  17280. weight: math.unit(150, "lb"),
  17281. name: "Front",
  17282. image: {
  17283. source: "./media/characters/shard/front.svg",
  17284. extra: 273 / 238,
  17285. bottom: 0.02
  17286. }
  17287. },
  17288. },
  17289. [
  17290. {
  17291. name: "Normal",
  17292. height: math.unit(3 + 6 / 12, "feet"),
  17293. default: true
  17294. },
  17295. ]
  17296. ))
  17297. characterMakers.push(() => makeCharacter(
  17298. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17299. {
  17300. front: {
  17301. height: math.unit(5 + 11 / 12, "feet"),
  17302. weight: math.unit(146, "lb"),
  17303. name: "Front",
  17304. image: {
  17305. source: "./media/characters/ashe/front.svg",
  17306. extra: 400 / 373,
  17307. bottom: 0.01
  17308. }
  17309. },
  17310. },
  17311. [
  17312. {
  17313. name: "Normal",
  17314. height: math.unit(5 + 11 / 12, "feet"),
  17315. default: true
  17316. },
  17317. ]
  17318. ))
  17319. characterMakers.push(() => makeCharacter(
  17320. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17321. {
  17322. front: {
  17323. height: math.unit(5 + 5 / 12, "feet"),
  17324. weight: math.unit(135, "lb"),
  17325. name: "Front",
  17326. image: {
  17327. source: "./media/characters/beatrix/front.svg",
  17328. extra: 392 / 379,
  17329. bottom: 0.01
  17330. }
  17331. },
  17332. },
  17333. [
  17334. {
  17335. name: "Normal",
  17336. height: math.unit(6, "feet"),
  17337. default: true
  17338. },
  17339. ]
  17340. ))
  17341. characterMakers.push(() => makeCharacter(
  17342. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17343. {
  17344. front: {
  17345. height: math.unit(6 + 2/12, "feet"),
  17346. weight: math.unit(135, "lb"),
  17347. name: "Front",
  17348. image: {
  17349. source: "./media/characters/ignatius/front.svg",
  17350. extra: 1380/1259,
  17351. bottom: 27/1407
  17352. }
  17353. },
  17354. },
  17355. [
  17356. {
  17357. name: "Normal",
  17358. height: math.unit(6 + 2/12, "feet"),
  17359. default: true
  17360. },
  17361. ]
  17362. ))
  17363. characterMakers.push(() => makeCharacter(
  17364. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17365. {
  17366. front: {
  17367. height: math.unit(6 + 2 / 12, "feet"),
  17368. weight: math.unit(138, "lb"),
  17369. name: "Front",
  17370. image: {
  17371. source: "./media/characters/mei-li/front.svg",
  17372. extra: 237 / 229,
  17373. bottom: 0.03
  17374. }
  17375. },
  17376. },
  17377. [
  17378. {
  17379. name: "Normal",
  17380. height: math.unit(6 + 2 / 12, "feet"),
  17381. default: true
  17382. },
  17383. ]
  17384. ))
  17385. characterMakers.push(() => makeCharacter(
  17386. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17387. {
  17388. front: {
  17389. height: math.unit(2 + 4 / 12, "feet"),
  17390. weight: math.unit(62, "lb"),
  17391. name: "Front",
  17392. image: {
  17393. source: "./media/characters/puru/front.svg",
  17394. extra: 206 / 149,
  17395. bottom: 0.06
  17396. }
  17397. },
  17398. },
  17399. [
  17400. {
  17401. name: "Normal",
  17402. height: math.unit(2 + 4 / 12, "feet"),
  17403. default: true
  17404. },
  17405. ]
  17406. ))
  17407. characterMakers.push(() => makeCharacter(
  17408. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17409. {
  17410. anthro: {
  17411. height: math.unit(5 + 8/12, "feet"),
  17412. weight: math.unit(200, "lb"),
  17413. energyNeed: math.unit(2000, "kcal"),
  17414. name: "Anthro",
  17415. image: {
  17416. source: "./media/characters/kee/anthro.svg",
  17417. extra: 3251/3184,
  17418. bottom: 250/3501
  17419. }
  17420. },
  17421. taur: {
  17422. height: math.unit(11, "feet"),
  17423. weight: math.unit(500, "lb"),
  17424. energyNeed: math.unit(5000, "kcal"),
  17425. name: "Taur",
  17426. image: {
  17427. source: "./media/characters/kee/taur.svg",
  17428. extra: 1362/1320,
  17429. bottom: 83/1445
  17430. }
  17431. },
  17432. },
  17433. [
  17434. {
  17435. name: "Normal",
  17436. height: math.unit(5 + 8/12, "feet"),
  17437. default: true
  17438. },
  17439. {
  17440. name: "Macro",
  17441. height: math.unit(35, "feet")
  17442. },
  17443. ]
  17444. ))
  17445. characterMakers.push(() => makeCharacter(
  17446. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17447. {
  17448. anthro: {
  17449. height: math.unit(7, "feet"),
  17450. weight: math.unit(190, "lb"),
  17451. name: "Anthro",
  17452. image: {
  17453. source: "./media/characters/cobalt-dracha/anthro.svg",
  17454. extra: 231 / 225,
  17455. bottom: 0.04
  17456. }
  17457. },
  17458. feral: {
  17459. height: math.unit(9 + 7 / 12, "feet"),
  17460. weight: math.unit(294, "lb"),
  17461. name: "Feral",
  17462. image: {
  17463. source: "./media/characters/cobalt-dracha/feral.svg",
  17464. extra: 692 / 633,
  17465. bottom: 0.05
  17466. }
  17467. },
  17468. },
  17469. [
  17470. {
  17471. name: "Normal",
  17472. height: math.unit(7, "feet"),
  17473. default: true
  17474. },
  17475. ]
  17476. ))
  17477. characterMakers.push(() => makeCharacter(
  17478. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17479. {
  17480. fallen: {
  17481. height: math.unit(11 + 8 / 12, "feet"),
  17482. weight: math.unit(485, "lb"),
  17483. name: "Java (Fallen)",
  17484. rename: true,
  17485. image: {
  17486. source: "./media/characters/java/fallen.svg",
  17487. extra: 226 / 208,
  17488. bottom: 0.005
  17489. }
  17490. },
  17491. godkin: {
  17492. height: math.unit(10 + 6 / 12, "feet"),
  17493. weight: math.unit(328, "lb"),
  17494. name: "Java (Godkin)",
  17495. rename: true,
  17496. image: {
  17497. source: "./media/characters/java/godkin.svg",
  17498. extra: 1104/1068,
  17499. bottom: 36/1140
  17500. }
  17501. },
  17502. },
  17503. [
  17504. {
  17505. name: "Normal",
  17506. height: math.unit(11 + 8 / 12, "feet"),
  17507. default: true
  17508. },
  17509. ]
  17510. ))
  17511. characterMakers.push(() => makeCharacter(
  17512. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17513. {
  17514. front: {
  17515. height: math.unit(5 + 9 / 12, "feet"),
  17516. weight: math.unit(170, "lb"),
  17517. name: "Front",
  17518. image: {
  17519. source: "./media/characters/purna/front.svg",
  17520. extra: 239 / 229,
  17521. bottom: 0.01
  17522. }
  17523. },
  17524. },
  17525. [
  17526. {
  17527. name: "Normal",
  17528. height: math.unit(5 + 9 / 12, "feet"),
  17529. default: true
  17530. },
  17531. ]
  17532. ))
  17533. characterMakers.push(() => makeCharacter(
  17534. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17535. {
  17536. front: {
  17537. height: math.unit(5 + 9 / 12, "feet"),
  17538. weight: math.unit(142, "lb"),
  17539. name: "Front",
  17540. image: {
  17541. source: "./media/characters/kuva/front.svg",
  17542. extra: 281 / 271,
  17543. bottom: 0.006
  17544. }
  17545. },
  17546. },
  17547. [
  17548. {
  17549. name: "Normal",
  17550. height: math.unit(5 + 9 / 12, "feet"),
  17551. default: true
  17552. },
  17553. ]
  17554. ))
  17555. characterMakers.push(() => makeCharacter(
  17556. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17557. {
  17558. anthro: {
  17559. height: math.unit(9 + 2 / 12, "feet"),
  17560. weight: math.unit(270, "lb"),
  17561. name: "Anthro",
  17562. image: {
  17563. source: "./media/characters/embra/anthro.svg",
  17564. extra: 200 / 187,
  17565. bottom: 0.02
  17566. }
  17567. },
  17568. feral: {
  17569. height: math.unit(18 + 8 / 12, "feet"),
  17570. weight: math.unit(576, "lb"),
  17571. name: "Feral",
  17572. image: {
  17573. source: "./media/characters/embra/feral.svg",
  17574. extra: 152 / 137,
  17575. bottom: 0.037
  17576. }
  17577. },
  17578. },
  17579. [
  17580. {
  17581. name: "Normal",
  17582. height: math.unit(9 + 2 / 12, "feet"),
  17583. default: true
  17584. },
  17585. ]
  17586. ))
  17587. characterMakers.push(() => makeCharacter(
  17588. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17589. {
  17590. anthro: {
  17591. height: math.unit(10 + 9 / 12, "feet"),
  17592. weight: math.unit(224, "lb"),
  17593. name: "Anthro",
  17594. image: {
  17595. source: "./media/characters/grottos/anthro.svg",
  17596. extra: 350 / 332,
  17597. bottom: 0.045
  17598. }
  17599. },
  17600. feral: {
  17601. height: math.unit(20 + 7 / 12, "feet"),
  17602. weight: math.unit(629, "lb"),
  17603. name: "Feral",
  17604. image: {
  17605. source: "./media/characters/grottos/feral.svg",
  17606. extra: 207 / 190,
  17607. bottom: 0.05
  17608. }
  17609. },
  17610. },
  17611. [
  17612. {
  17613. name: "Normal",
  17614. height: math.unit(10 + 9 / 12, "feet"),
  17615. default: true
  17616. },
  17617. ]
  17618. ))
  17619. characterMakers.push(() => makeCharacter(
  17620. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17621. {
  17622. anthro: {
  17623. height: math.unit(9 + 6 / 12, "feet"),
  17624. weight: math.unit(298, "lb"),
  17625. name: "Anthro",
  17626. image: {
  17627. source: "./media/characters/frifna/anthro.svg",
  17628. extra: 282 / 269,
  17629. bottom: 0.015
  17630. }
  17631. },
  17632. feral: {
  17633. height: math.unit(16 + 2 / 12, "feet"),
  17634. weight: math.unit(624, "lb"),
  17635. name: "Feral",
  17636. image: {
  17637. source: "./media/characters/frifna/feral.svg"
  17638. }
  17639. },
  17640. },
  17641. [
  17642. {
  17643. name: "Normal",
  17644. height: math.unit(9 + 6 / 12, "feet"),
  17645. default: true
  17646. },
  17647. ]
  17648. ))
  17649. characterMakers.push(() => makeCharacter(
  17650. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17651. {
  17652. front: {
  17653. height: math.unit(6 + 2 / 12, "feet"),
  17654. weight: math.unit(168, "lb"),
  17655. name: "Front",
  17656. image: {
  17657. source: "./media/characters/elise/front.svg",
  17658. extra: 276 / 271
  17659. }
  17660. },
  17661. },
  17662. [
  17663. {
  17664. name: "Normal",
  17665. height: math.unit(6 + 2 / 12, "feet"),
  17666. default: true
  17667. },
  17668. ]
  17669. ))
  17670. characterMakers.push(() => makeCharacter(
  17671. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17672. {
  17673. front: {
  17674. height: math.unit(5 + 10 / 12, "feet"),
  17675. weight: math.unit(210, "lb"),
  17676. name: "Front",
  17677. image: {
  17678. source: "./media/characters/glade/front.svg",
  17679. extra: 258 / 247,
  17680. bottom: 0.008
  17681. }
  17682. },
  17683. },
  17684. [
  17685. {
  17686. name: "Normal",
  17687. height: math.unit(5 + 10 / 12, "feet"),
  17688. default: true
  17689. },
  17690. ]
  17691. ))
  17692. characterMakers.push(() => makeCharacter(
  17693. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17694. {
  17695. front: {
  17696. height: math.unit(5 + 10 / 12, "feet"),
  17697. weight: math.unit(129, "lb"),
  17698. name: "Front",
  17699. image: {
  17700. source: "./media/characters/rina/front.svg",
  17701. extra: 266 / 255,
  17702. bottom: 0.005
  17703. }
  17704. },
  17705. },
  17706. [
  17707. {
  17708. name: "Normal",
  17709. height: math.unit(5 + 10 / 12, "feet"),
  17710. default: true
  17711. },
  17712. ]
  17713. ))
  17714. characterMakers.push(() => makeCharacter(
  17715. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17716. {
  17717. front: {
  17718. height: math.unit(6 + 1 / 12, "feet"),
  17719. weight: math.unit(192, "lb"),
  17720. name: "Front",
  17721. image: {
  17722. source: "./media/characters/veronica/front.svg",
  17723. extra: 319 / 309,
  17724. bottom: 0.005
  17725. }
  17726. },
  17727. },
  17728. [
  17729. {
  17730. name: "Normal",
  17731. height: math.unit(6 + 1 / 12, "feet"),
  17732. default: true
  17733. },
  17734. ]
  17735. ))
  17736. characterMakers.push(() => makeCharacter(
  17737. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17738. {
  17739. front: {
  17740. height: math.unit(9 + 3 / 12, "feet"),
  17741. weight: math.unit(1100, "lb"),
  17742. name: "Front",
  17743. image: {
  17744. source: "./media/characters/braxton/front.svg",
  17745. extra: 1057 / 984,
  17746. bottom: 0.05
  17747. }
  17748. },
  17749. },
  17750. [
  17751. {
  17752. name: "Normal",
  17753. height: math.unit(9 + 3 / 12, "feet")
  17754. },
  17755. {
  17756. name: "Giant",
  17757. height: math.unit(300, "feet"),
  17758. default: true
  17759. },
  17760. {
  17761. name: "Macro",
  17762. height: math.unit(700, "feet")
  17763. },
  17764. {
  17765. name: "Megamacro",
  17766. height: math.unit(6000, "feet")
  17767. },
  17768. ]
  17769. ))
  17770. characterMakers.push(() => makeCharacter(
  17771. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17772. {
  17773. front: {
  17774. height: math.unit(6 + 7 / 12, "feet"),
  17775. weight: math.unit(150, "lb"),
  17776. name: "Front",
  17777. image: {
  17778. source: "./media/characters/blue-feyonics/front.svg",
  17779. extra: 1403 / 1306,
  17780. bottom: 0.047
  17781. }
  17782. },
  17783. },
  17784. [
  17785. {
  17786. name: "Normal",
  17787. height: math.unit(6 + 7 / 12, "feet"),
  17788. default: true
  17789. },
  17790. ]
  17791. ))
  17792. characterMakers.push(() => makeCharacter(
  17793. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17794. {
  17795. front: {
  17796. height: math.unit(1.8, "meters"),
  17797. weight: math.unit(60, "kg"),
  17798. name: "Front",
  17799. image: {
  17800. source: "./media/characters/maxwell/front.svg",
  17801. extra: 2060 / 1873
  17802. }
  17803. },
  17804. },
  17805. [
  17806. {
  17807. name: "Micro",
  17808. height: math.unit(1, "mm")
  17809. },
  17810. {
  17811. name: "Normal",
  17812. height: math.unit(1.8, "meter"),
  17813. default: true
  17814. },
  17815. {
  17816. name: "Macro",
  17817. height: math.unit(30, "meters")
  17818. },
  17819. {
  17820. name: "Megamacro",
  17821. height: math.unit(10, "km")
  17822. },
  17823. ]
  17824. ))
  17825. characterMakers.push(() => makeCharacter(
  17826. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17827. {
  17828. front: {
  17829. height: math.unit(6, "feet"),
  17830. weight: math.unit(150, "lb"),
  17831. name: "Front",
  17832. image: {
  17833. source: "./media/characters/jack/front.svg",
  17834. extra: 1754 / 1640,
  17835. bottom: 0.01
  17836. }
  17837. },
  17838. },
  17839. [
  17840. {
  17841. name: "Normal",
  17842. height: math.unit(80000, "feet"),
  17843. default: true
  17844. },
  17845. {
  17846. name: "Max size",
  17847. height: math.unit(10, "lightyears")
  17848. },
  17849. ]
  17850. ))
  17851. characterMakers.push(() => makeCharacter(
  17852. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17853. {
  17854. urban: {
  17855. height: math.unit(5, "feet"),
  17856. weight: math.unit(240, "lb"),
  17857. name: "Urban",
  17858. image: {
  17859. source: "./media/characters/cafat/urban.svg",
  17860. extra: 1223/1126,
  17861. bottom: 205/1428
  17862. }
  17863. },
  17864. summer: {
  17865. height: math.unit(5, "feet"),
  17866. weight: math.unit(240, "lb"),
  17867. name: "Summer",
  17868. image: {
  17869. source: "./media/characters/cafat/summer.svg",
  17870. extra: 1223/1126,
  17871. bottom: 205/1428
  17872. }
  17873. },
  17874. winter: {
  17875. height: math.unit(5, "feet"),
  17876. weight: math.unit(240, "lb"),
  17877. name: "Winter",
  17878. image: {
  17879. source: "./media/characters/cafat/winter.svg",
  17880. extra: 1223/1126,
  17881. bottom: 205/1428
  17882. }
  17883. },
  17884. lingerie: {
  17885. height: math.unit(5, "feet"),
  17886. weight: math.unit(240, "lb"),
  17887. name: "Lingerie",
  17888. image: {
  17889. source: "./media/characters/cafat/lingerie.svg",
  17890. extra: 1223/1126,
  17891. bottom: 205/1428
  17892. }
  17893. },
  17894. upright: {
  17895. height: math.unit(6.3, "feet"),
  17896. weight: math.unit(240, "lb"),
  17897. name: "Upright",
  17898. image: {
  17899. source: "./media/characters/cafat/upright.svg",
  17900. bottom: 0.01
  17901. }
  17902. },
  17903. uprightFull: {
  17904. height: math.unit(6.3, "feet"),
  17905. weight: math.unit(240, "lb"),
  17906. name: "Upright (Full)",
  17907. image: {
  17908. source: "./media/characters/cafat/upright-full.svg",
  17909. bottom: 0.01
  17910. }
  17911. },
  17912. },
  17913. [
  17914. {
  17915. name: "Small",
  17916. height: math.unit(5, "feet"),
  17917. default: true
  17918. },
  17919. {
  17920. name: "Large",
  17921. height: math.unit(13, "feet")
  17922. },
  17923. ]
  17924. ))
  17925. characterMakers.push(() => makeCharacter(
  17926. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17927. {
  17928. front: {
  17929. height: math.unit(6, "feet"),
  17930. weight: math.unit(150, "lb"),
  17931. name: "Front",
  17932. image: {
  17933. source: "./media/characters/verin-raharra/front.svg",
  17934. extra: 5019 / 4835,
  17935. bottom: 0.023
  17936. }
  17937. },
  17938. },
  17939. [
  17940. {
  17941. name: "Normal",
  17942. height: math.unit(7 + 5 / 12, "feet"),
  17943. default: true
  17944. },
  17945. {
  17946. name: "Upsized",
  17947. height: math.unit(20, "feet")
  17948. },
  17949. ]
  17950. ))
  17951. characterMakers.push(() => makeCharacter(
  17952. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17953. {
  17954. front: {
  17955. height: math.unit(7, "feet"),
  17956. weight: math.unit(230, "lb"),
  17957. name: "Front",
  17958. image: {
  17959. source: "./media/characters/nakata/front.svg",
  17960. extra: 1.005,
  17961. bottom: 0.01
  17962. }
  17963. },
  17964. },
  17965. [
  17966. {
  17967. name: "Normal",
  17968. height: math.unit(7, "feet"),
  17969. default: true
  17970. },
  17971. {
  17972. name: "Big",
  17973. height: math.unit(14, "feet")
  17974. },
  17975. {
  17976. name: "Macro",
  17977. height: math.unit(400, "feet")
  17978. },
  17979. ]
  17980. ))
  17981. characterMakers.push(() => makeCharacter(
  17982. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17983. {
  17984. front: {
  17985. height: math.unit(4.91, "feet"),
  17986. weight: math.unit(100, "lb"),
  17987. name: "Front",
  17988. image: {
  17989. source: "./media/characters/lily/front.svg",
  17990. extra: 1585 / 1415,
  17991. bottom: 0.02
  17992. }
  17993. },
  17994. },
  17995. [
  17996. {
  17997. name: "Normal",
  17998. height: math.unit(4.91, "feet"),
  17999. default: true
  18000. },
  18001. ]
  18002. ))
  18003. characterMakers.push(() => makeCharacter(
  18004. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  18005. {
  18006. laying: {
  18007. height: math.unit(4 + 4 / 12, "feet"),
  18008. weight: math.unit(600, "lb"),
  18009. name: "Laying",
  18010. image: {
  18011. source: "./media/characters/sheila/laying.svg",
  18012. extra: 1333 / 1265,
  18013. bottom: 0.16
  18014. }
  18015. },
  18016. },
  18017. [
  18018. {
  18019. name: "Normal",
  18020. height: math.unit(4 + 4 / 12, "feet"),
  18021. default: true
  18022. },
  18023. ]
  18024. ))
  18025. characterMakers.push(() => makeCharacter(
  18026. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  18027. {
  18028. front: {
  18029. height: math.unit(6, "feet"),
  18030. weight: math.unit(190, "lb"),
  18031. name: "Front",
  18032. image: {
  18033. source: "./media/characters/sax/front.svg",
  18034. extra: 1187 / 973,
  18035. bottom: 0.042
  18036. }
  18037. },
  18038. },
  18039. [
  18040. {
  18041. name: "Micro",
  18042. height: math.unit(4, "inches"),
  18043. default: true
  18044. },
  18045. ]
  18046. ))
  18047. characterMakers.push(() => makeCharacter(
  18048. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  18049. {
  18050. front: {
  18051. height: math.unit(6, "feet"),
  18052. weight: math.unit(150, "lb"),
  18053. name: "Front",
  18054. image: {
  18055. source: "./media/characters/pandora/front.svg",
  18056. extra: 2720 / 2556,
  18057. bottom: 0.015
  18058. }
  18059. },
  18060. back: {
  18061. height: math.unit(6, "feet"),
  18062. weight: math.unit(150, "lb"),
  18063. name: "Back",
  18064. image: {
  18065. source: "./media/characters/pandora/back.svg",
  18066. extra: 2720 / 2556,
  18067. bottom: 0.01
  18068. }
  18069. },
  18070. beans: {
  18071. height: math.unit(6 / 8, "feet"),
  18072. name: "Beans",
  18073. image: {
  18074. source: "./media/characters/pandora/beans.svg"
  18075. }
  18076. },
  18077. collar: {
  18078. height: math.unit(0.31, "feet"),
  18079. name: "Collar",
  18080. image: {
  18081. source: "./media/characters/pandora/collar.svg"
  18082. }
  18083. },
  18084. skirt: {
  18085. height: math.unit(6, "feet"),
  18086. weight: math.unit(150, "lb"),
  18087. name: "Skirt",
  18088. image: {
  18089. source: "./media/characters/pandora/skirt.svg",
  18090. extra: 1622 / 1525,
  18091. bottom: 0.015
  18092. }
  18093. },
  18094. hoodie: {
  18095. height: math.unit(6, "feet"),
  18096. weight: math.unit(150, "lb"),
  18097. name: "Hoodie",
  18098. image: {
  18099. source: "./media/characters/pandora/hoodie.svg",
  18100. extra: 1622 / 1525,
  18101. bottom: 0.015
  18102. }
  18103. },
  18104. casual: {
  18105. height: math.unit(6, "feet"),
  18106. weight: math.unit(150, "lb"),
  18107. name: "Casual",
  18108. image: {
  18109. source: "./media/characters/pandora/casual.svg",
  18110. extra: 1622 / 1525,
  18111. bottom: 0.015
  18112. }
  18113. },
  18114. },
  18115. [
  18116. {
  18117. name: "Normal",
  18118. height: math.unit(6, "feet")
  18119. },
  18120. {
  18121. name: "Big Steppy",
  18122. height: math.unit(1, "km"),
  18123. default: true
  18124. },
  18125. {
  18126. name: "Galactic Steppy",
  18127. height: math.unit(2, "gigameters")
  18128. },
  18129. ]
  18130. ))
  18131. characterMakers.push(() => makeCharacter(
  18132. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  18133. {
  18134. side: {
  18135. height: math.unit(10, "feet"),
  18136. weight: math.unit(800, "kg"),
  18137. name: "Side",
  18138. image: {
  18139. source: "./media/characters/venio-darcony/side.svg",
  18140. extra: 1373 / 1003,
  18141. bottom: 0.037
  18142. }
  18143. },
  18144. front: {
  18145. height: math.unit(19, "feet"),
  18146. weight: math.unit(800, "kg"),
  18147. name: "Front",
  18148. image: {
  18149. source: "./media/characters/venio-darcony/front.svg"
  18150. }
  18151. },
  18152. back: {
  18153. height: math.unit(19, "feet"),
  18154. weight: math.unit(800, "kg"),
  18155. name: "Back",
  18156. image: {
  18157. source: "./media/characters/venio-darcony/back.svg"
  18158. }
  18159. },
  18160. sideNsfw: {
  18161. height: math.unit(10, "feet"),
  18162. weight: math.unit(800, "kg"),
  18163. name: "Side (NSFW)",
  18164. image: {
  18165. source: "./media/characters/venio-darcony/side-nsfw.svg",
  18166. extra: 1373 / 1003,
  18167. bottom: 0.037
  18168. }
  18169. },
  18170. frontNsfw: {
  18171. height: math.unit(19, "feet"),
  18172. weight: math.unit(800, "kg"),
  18173. name: "Front (NSFW)",
  18174. image: {
  18175. source: "./media/characters/venio-darcony/front-nsfw.svg"
  18176. }
  18177. },
  18178. backNsfw: {
  18179. height: math.unit(19, "feet"),
  18180. weight: math.unit(800, "kg"),
  18181. name: "Back (NSFW)",
  18182. image: {
  18183. source: "./media/characters/venio-darcony/back-nsfw.svg"
  18184. }
  18185. },
  18186. sideArmored: {
  18187. height: math.unit(10, "feet"),
  18188. weight: math.unit(800, "kg"),
  18189. name: "Side (Armored)",
  18190. image: {
  18191. source: "./media/characters/venio-darcony/side-armored.svg",
  18192. extra: 1373 / 1003,
  18193. bottom: 0.037
  18194. }
  18195. },
  18196. frontArmored: {
  18197. height: math.unit(19, "feet"),
  18198. weight: math.unit(900, "kg"),
  18199. name: "Front (Armored)",
  18200. image: {
  18201. source: "./media/characters/venio-darcony/front-armored.svg"
  18202. }
  18203. },
  18204. backArmored: {
  18205. height: math.unit(19, "feet"),
  18206. weight: math.unit(900, "kg"),
  18207. name: "Back (Armored)",
  18208. image: {
  18209. source: "./media/characters/venio-darcony/back-armored.svg"
  18210. }
  18211. },
  18212. sword: {
  18213. height: math.unit(10, "feet"),
  18214. weight: math.unit(50, "lb"),
  18215. name: "Sword",
  18216. image: {
  18217. source: "./media/characters/venio-darcony/sword.svg"
  18218. }
  18219. },
  18220. },
  18221. [
  18222. {
  18223. name: "Normal",
  18224. height: math.unit(10, "feet")
  18225. },
  18226. {
  18227. name: "Macro",
  18228. height: math.unit(130, "feet"),
  18229. default: true
  18230. },
  18231. {
  18232. name: "Macro+",
  18233. height: math.unit(240, "feet")
  18234. },
  18235. ]
  18236. ))
  18237. characterMakers.push(() => makeCharacter(
  18238. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  18239. {
  18240. front: {
  18241. height: math.unit(6, "feet"),
  18242. weight: math.unit(150, "lb"),
  18243. name: "Front",
  18244. image: {
  18245. source: "./media/characters/veski/front.svg",
  18246. extra: 1299 / 1225,
  18247. bottom: 0.04
  18248. }
  18249. },
  18250. back: {
  18251. height: math.unit(6, "feet"),
  18252. weight: math.unit(150, "lb"),
  18253. name: "Back",
  18254. image: {
  18255. source: "./media/characters/veski/back.svg",
  18256. extra: 1299 / 1225,
  18257. bottom: 0.008
  18258. }
  18259. },
  18260. maw: {
  18261. height: math.unit(1.5 * 1.21, "feet"),
  18262. name: "Maw",
  18263. image: {
  18264. source: "./media/characters/veski/maw.svg"
  18265. }
  18266. },
  18267. },
  18268. [
  18269. {
  18270. name: "Macro",
  18271. height: math.unit(2, "km"),
  18272. default: true
  18273. },
  18274. ]
  18275. ))
  18276. characterMakers.push(() => makeCharacter(
  18277. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18278. {
  18279. front: {
  18280. height: math.unit(5 + 7 / 12, "feet"),
  18281. name: "Front",
  18282. image: {
  18283. source: "./media/characters/isabelle/front.svg",
  18284. extra: 2130 / 1976,
  18285. bottom: 0.05
  18286. }
  18287. },
  18288. },
  18289. [
  18290. {
  18291. name: "Supermicro",
  18292. height: math.unit(10, "micrometers")
  18293. },
  18294. {
  18295. name: "Micro",
  18296. height: math.unit(1, "inch")
  18297. },
  18298. {
  18299. name: "Tiny",
  18300. height: math.unit(5, "inches")
  18301. },
  18302. {
  18303. name: "Standard",
  18304. height: math.unit(5 + 7 / 12, "inches")
  18305. },
  18306. {
  18307. name: "Macro",
  18308. height: math.unit(80, "meters"),
  18309. default: true
  18310. },
  18311. {
  18312. name: "Megamacro",
  18313. height: math.unit(250, "meters")
  18314. },
  18315. {
  18316. name: "Gigamacro",
  18317. height: math.unit(5, "km")
  18318. },
  18319. {
  18320. name: "Cosmic",
  18321. height: math.unit(2.5e6, "miles")
  18322. },
  18323. ]
  18324. ))
  18325. characterMakers.push(() => makeCharacter(
  18326. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18327. {
  18328. front: {
  18329. height: math.unit(6, "feet"),
  18330. weight: math.unit(150, "lb"),
  18331. name: "Front",
  18332. image: {
  18333. source: "./media/characters/hanzo/front.svg",
  18334. extra: 374 / 344,
  18335. bottom: 0.02
  18336. }
  18337. },
  18338. },
  18339. [
  18340. {
  18341. name: "Normal",
  18342. height: math.unit(8, "feet"),
  18343. default: true
  18344. },
  18345. ]
  18346. ))
  18347. characterMakers.push(() => makeCharacter(
  18348. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18349. {
  18350. front: {
  18351. height: math.unit(7, "feet"),
  18352. weight: math.unit(130, "lb"),
  18353. name: "Front",
  18354. image: {
  18355. source: "./media/characters/anna/front.svg",
  18356. extra: 169 / 145,
  18357. bottom: 0.06
  18358. }
  18359. },
  18360. full: {
  18361. height: math.unit(4.96, "feet"),
  18362. weight: math.unit(220, "lb"),
  18363. name: "Full",
  18364. image: {
  18365. source: "./media/characters/anna/full.svg",
  18366. extra: 138 / 114,
  18367. bottom: 0.15
  18368. }
  18369. },
  18370. tongue: {
  18371. height: math.unit(2.53, "feet"),
  18372. name: "Tongue",
  18373. image: {
  18374. source: "./media/characters/anna/tongue.svg"
  18375. }
  18376. },
  18377. },
  18378. [
  18379. {
  18380. name: "Normal",
  18381. height: math.unit(7, "feet"),
  18382. default: true
  18383. },
  18384. ]
  18385. ))
  18386. characterMakers.push(() => makeCharacter(
  18387. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18388. {
  18389. front: {
  18390. height: math.unit(7, "feet"),
  18391. weight: math.unit(150, "lb"),
  18392. name: "Front",
  18393. image: {
  18394. source: "./media/characters/ian-corvid/front.svg",
  18395. extra: 150 / 142,
  18396. bottom: 0.02
  18397. }
  18398. },
  18399. back: {
  18400. height: math.unit(7, "feet"),
  18401. weight: math.unit(150, "lb"),
  18402. name: "Back",
  18403. image: {
  18404. source: "./media/characters/ian-corvid/back.svg",
  18405. extra: 150 / 143,
  18406. bottom: 0.01
  18407. }
  18408. },
  18409. stomping: {
  18410. height: math.unit(7, "feet"),
  18411. weight: math.unit(150, "lb"),
  18412. name: "Stomping",
  18413. image: {
  18414. source: "./media/characters/ian-corvid/stomping.svg",
  18415. extra: 76 / 72
  18416. }
  18417. },
  18418. sitting: {
  18419. height: math.unit(7 / 1.8, "feet"),
  18420. weight: math.unit(150, "lb"),
  18421. name: "Sitting",
  18422. image: {
  18423. source: "./media/characters/ian-corvid/sitting.svg",
  18424. extra: 1400 / 1269,
  18425. bottom: 0.15
  18426. }
  18427. },
  18428. },
  18429. [
  18430. {
  18431. name: "Tiny Microw",
  18432. height: math.unit(1, "inch")
  18433. },
  18434. {
  18435. name: "Microw",
  18436. height: math.unit(6, "inches")
  18437. },
  18438. {
  18439. name: "Crow",
  18440. height: math.unit(7 + 1 / 12, "feet"),
  18441. default: true
  18442. },
  18443. {
  18444. name: "Macrow",
  18445. height: math.unit(176, "feet")
  18446. },
  18447. ]
  18448. ))
  18449. characterMakers.push(() => makeCharacter(
  18450. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18451. {
  18452. front: {
  18453. height: math.unit(5 + 7 / 12, "feet"),
  18454. weight: math.unit(147, "lb"),
  18455. name: "Front",
  18456. image: {
  18457. source: "./media/characters/natalie-kellon/front.svg",
  18458. extra: 1214 / 1141,
  18459. bottom: 0.02
  18460. }
  18461. },
  18462. },
  18463. [
  18464. {
  18465. name: "Micro",
  18466. height: math.unit(1 / 16, "inch")
  18467. },
  18468. {
  18469. name: "Tiny",
  18470. height: math.unit(4, "inches")
  18471. },
  18472. {
  18473. name: "Normal",
  18474. height: math.unit(5 + 7 / 12, "feet"),
  18475. default: true
  18476. },
  18477. {
  18478. name: "Amazon",
  18479. height: math.unit(12, "feet")
  18480. },
  18481. {
  18482. name: "Giantess",
  18483. height: math.unit(160, "meters")
  18484. },
  18485. {
  18486. name: "Titaness",
  18487. height: math.unit(800, "meters")
  18488. },
  18489. ]
  18490. ))
  18491. characterMakers.push(() => makeCharacter(
  18492. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18493. {
  18494. front: {
  18495. height: math.unit(6, "feet"),
  18496. weight: math.unit(150, "lb"),
  18497. name: "Front",
  18498. image: {
  18499. source: "./media/characters/alluria/front.svg",
  18500. extra: 806 / 738,
  18501. bottom: 0.01
  18502. }
  18503. },
  18504. side: {
  18505. height: math.unit(6, "feet"),
  18506. weight: math.unit(150, "lb"),
  18507. name: "Side",
  18508. image: {
  18509. source: "./media/characters/alluria/side.svg",
  18510. extra: 800 / 750,
  18511. }
  18512. },
  18513. back: {
  18514. height: math.unit(6, "feet"),
  18515. weight: math.unit(150, "lb"),
  18516. name: "Back",
  18517. image: {
  18518. source: "./media/characters/alluria/back.svg",
  18519. extra: 806 / 738,
  18520. }
  18521. },
  18522. frontMaid: {
  18523. height: math.unit(6, "feet"),
  18524. weight: math.unit(150, "lb"),
  18525. name: "Front (Maid)",
  18526. image: {
  18527. source: "./media/characters/alluria/front-maid.svg",
  18528. extra: 806 / 738,
  18529. bottom: 0.01
  18530. }
  18531. },
  18532. sideMaid: {
  18533. height: math.unit(6, "feet"),
  18534. weight: math.unit(150, "lb"),
  18535. name: "Side (Maid)",
  18536. image: {
  18537. source: "./media/characters/alluria/side-maid.svg",
  18538. extra: 800 / 750,
  18539. bottom: 0.005
  18540. }
  18541. },
  18542. backMaid: {
  18543. height: math.unit(6, "feet"),
  18544. weight: math.unit(150, "lb"),
  18545. name: "Back (Maid)",
  18546. image: {
  18547. source: "./media/characters/alluria/back-maid.svg",
  18548. extra: 806 / 738,
  18549. }
  18550. },
  18551. },
  18552. [
  18553. {
  18554. name: "Micro",
  18555. height: math.unit(6, "inches"),
  18556. default: true
  18557. },
  18558. ]
  18559. ))
  18560. characterMakers.push(() => makeCharacter(
  18561. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18562. {
  18563. front: {
  18564. height: math.unit(6, "feet"),
  18565. weight: math.unit(150, "lb"),
  18566. name: "Front",
  18567. image: {
  18568. source: "./media/characters/kyle/front.svg",
  18569. extra: 1069 / 962,
  18570. bottom: 77.228 / 1727.45
  18571. }
  18572. },
  18573. },
  18574. [
  18575. {
  18576. name: "Macro",
  18577. height: math.unit(150, "feet"),
  18578. default: true
  18579. },
  18580. ]
  18581. ))
  18582. characterMakers.push(() => makeCharacter(
  18583. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18584. {
  18585. front: {
  18586. height: math.unit(6, "feet"),
  18587. weight: math.unit(300, "lb"),
  18588. name: "Front",
  18589. image: {
  18590. source: "./media/characters/duncan/front.svg",
  18591. extra: 1650 / 1482,
  18592. bottom: 0.05
  18593. }
  18594. },
  18595. },
  18596. [
  18597. {
  18598. name: "Macro",
  18599. height: math.unit(100, "feet"),
  18600. default: true
  18601. },
  18602. ]
  18603. ))
  18604. characterMakers.push(() => makeCharacter(
  18605. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18606. {
  18607. front: {
  18608. height: math.unit(5 + 4 / 12, "feet"),
  18609. weight: math.unit(220, "lb"),
  18610. name: "Front",
  18611. image: {
  18612. source: "./media/characters/memory/front.svg",
  18613. extra: 3641 / 3545,
  18614. bottom: 0.03
  18615. }
  18616. },
  18617. back: {
  18618. height: math.unit(5 + 4 / 12, "feet"),
  18619. weight: math.unit(220, "lb"),
  18620. name: "Back",
  18621. image: {
  18622. source: "./media/characters/memory/back.svg",
  18623. extra: 3641 / 3545,
  18624. bottom: 0.025
  18625. }
  18626. },
  18627. frontSkirt: {
  18628. height: math.unit(5 + 4 / 12, "feet"),
  18629. weight: math.unit(220, "lb"),
  18630. name: "Front (Skirt)",
  18631. image: {
  18632. source: "./media/characters/memory/front-skirt.svg",
  18633. extra: 3641 / 3545,
  18634. bottom: 0.03
  18635. }
  18636. },
  18637. frontDress: {
  18638. height: math.unit(5 + 4 / 12, "feet"),
  18639. weight: math.unit(220, "lb"),
  18640. name: "Front (Dress)",
  18641. image: {
  18642. source: "./media/characters/memory/front-dress.svg",
  18643. extra: 3641 / 3545,
  18644. bottom: 0.03
  18645. }
  18646. },
  18647. },
  18648. [
  18649. {
  18650. name: "Micro",
  18651. height: math.unit(6, "inches"),
  18652. default: true
  18653. },
  18654. {
  18655. name: "Normal",
  18656. height: math.unit(5 + 4 / 12, "feet")
  18657. },
  18658. ]
  18659. ))
  18660. characterMakers.push(() => makeCharacter(
  18661. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18662. {
  18663. front: {
  18664. height: math.unit(4 + 11 / 12, "feet"),
  18665. weight: math.unit(100, "lb"),
  18666. name: "Front",
  18667. image: {
  18668. source: "./media/characters/luno/front.svg",
  18669. extra: 1535 / 1487,
  18670. bottom: 0.03
  18671. }
  18672. },
  18673. },
  18674. [
  18675. {
  18676. name: "Micro",
  18677. height: math.unit(3, "inches")
  18678. },
  18679. {
  18680. name: "Normal",
  18681. height: math.unit(4 + 11 / 12, "feet"),
  18682. default: true
  18683. },
  18684. {
  18685. name: "Macro",
  18686. height: math.unit(300, "feet")
  18687. },
  18688. {
  18689. name: "Megamacro",
  18690. height: math.unit(700, "miles")
  18691. },
  18692. ]
  18693. ))
  18694. characterMakers.push(() => makeCharacter(
  18695. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18696. {
  18697. front: {
  18698. height: math.unit(6 + 2 / 12, "feet"),
  18699. weight: math.unit(170, "lb"),
  18700. name: "Front",
  18701. image: {
  18702. source: "./media/characters/jamesy/front.svg",
  18703. extra: 440 / 382,
  18704. bottom: 0.005
  18705. }
  18706. },
  18707. },
  18708. [
  18709. {
  18710. name: "Micro",
  18711. height: math.unit(3, "inches")
  18712. },
  18713. {
  18714. name: "Normal",
  18715. height: math.unit(6 + 2 / 12, "feet"),
  18716. default: true
  18717. },
  18718. {
  18719. name: "Macro",
  18720. height: math.unit(300, "feet")
  18721. },
  18722. {
  18723. name: "Megamacro",
  18724. height: math.unit(700, "miles")
  18725. },
  18726. ]
  18727. ))
  18728. characterMakers.push(() => makeCharacter(
  18729. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18730. {
  18731. front: {
  18732. height: math.unit(6, "feet"),
  18733. weight: math.unit(160, "lb"),
  18734. name: "Front",
  18735. image: {
  18736. source: "./media/characters/mark/front.svg",
  18737. extra: 3300 / 3100,
  18738. bottom: 136.42 / 3440.47
  18739. }
  18740. },
  18741. },
  18742. [
  18743. {
  18744. name: "Macro",
  18745. height: math.unit(120, "meters")
  18746. },
  18747. {
  18748. name: "Bigger Macro",
  18749. height: math.unit(350, "meters")
  18750. },
  18751. {
  18752. name: "Megamacro",
  18753. height: math.unit(8, "km"),
  18754. default: true
  18755. },
  18756. {
  18757. name: "Continental",
  18758. height: math.unit(4550, "km")
  18759. },
  18760. {
  18761. name: "Planetary",
  18762. height: math.unit(65000, "km")
  18763. },
  18764. ]
  18765. ))
  18766. characterMakers.push(() => makeCharacter(
  18767. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18768. {
  18769. front: {
  18770. height: math.unit(6, "feet"),
  18771. weight: math.unit(400, "lb"),
  18772. name: "Front",
  18773. image: {
  18774. source: "./media/characters/mac/front.svg",
  18775. extra: 1048 / 987.7,
  18776. bottom: 60 / 1107.6,
  18777. }
  18778. },
  18779. },
  18780. [
  18781. {
  18782. name: "Macro",
  18783. height: math.unit(500, "feet"),
  18784. default: true
  18785. },
  18786. ]
  18787. ))
  18788. characterMakers.push(() => makeCharacter(
  18789. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18790. {
  18791. front: {
  18792. height: math.unit(5 + 2 / 12, "feet"),
  18793. weight: math.unit(190, "lb"),
  18794. name: "Front",
  18795. image: {
  18796. source: "./media/characters/bari/front.svg",
  18797. extra: 3156 / 2880,
  18798. bottom: 0.03
  18799. }
  18800. },
  18801. back: {
  18802. height: math.unit(5 + 2 / 12, "feet"),
  18803. weight: math.unit(190, "lb"),
  18804. name: "Back",
  18805. image: {
  18806. source: "./media/characters/bari/back.svg",
  18807. extra: 3260 / 2834,
  18808. bottom: 0.025
  18809. }
  18810. },
  18811. frontPlush: {
  18812. height: math.unit(5 + 2 / 12, "feet"),
  18813. weight: math.unit(190, "lb"),
  18814. name: "Front (Plush)",
  18815. image: {
  18816. source: "./media/characters/bari/front-plush.svg",
  18817. extra: 1112 / 1061,
  18818. bottom: 0.002
  18819. }
  18820. },
  18821. },
  18822. [
  18823. {
  18824. name: "Micro",
  18825. height: math.unit(3, "inches")
  18826. },
  18827. {
  18828. name: "Normal",
  18829. height: math.unit(5 + 2 / 12, "feet"),
  18830. default: true
  18831. },
  18832. {
  18833. name: "Macro",
  18834. height: math.unit(20, "feet")
  18835. },
  18836. ]
  18837. ))
  18838. characterMakers.push(() => makeCharacter(
  18839. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18840. {
  18841. front: {
  18842. height: math.unit(6 + 1 / 12, "feet"),
  18843. weight: math.unit(275, "lb"),
  18844. name: "Front",
  18845. image: {
  18846. source: "./media/characters/hunter-misha-raven/front.svg"
  18847. }
  18848. },
  18849. },
  18850. [
  18851. {
  18852. name: "Mortal",
  18853. height: math.unit(6 + 1 / 12, "feet")
  18854. },
  18855. {
  18856. name: "Divine",
  18857. height: math.unit(1.12134e34, "parsecs"),
  18858. default: true
  18859. },
  18860. ]
  18861. ))
  18862. characterMakers.push(() => makeCharacter(
  18863. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18864. {
  18865. front: {
  18866. height: math.unit(6 + 3 / 12, "feet"),
  18867. weight: math.unit(220, "lb"),
  18868. name: "Front",
  18869. image: {
  18870. source: "./media/characters/max-calore/front.svg",
  18871. extra: 1700 / 1648,
  18872. bottom: 0.01
  18873. }
  18874. },
  18875. back: {
  18876. height: math.unit(6 + 3 / 12, "feet"),
  18877. weight: math.unit(220, "lb"),
  18878. name: "Back",
  18879. image: {
  18880. source: "./media/characters/max-calore/back.svg",
  18881. extra: 1700 / 1648,
  18882. bottom: 0.01
  18883. }
  18884. },
  18885. },
  18886. [
  18887. {
  18888. name: "Normal",
  18889. height: math.unit(6 + 3 / 12, "feet"),
  18890. default: true
  18891. },
  18892. ]
  18893. ))
  18894. characterMakers.push(() => makeCharacter(
  18895. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18896. {
  18897. side: {
  18898. height: math.unit(2 + 8 / 12, "feet"),
  18899. weight: math.unit(99, "lb"),
  18900. name: "Side",
  18901. image: {
  18902. source: "./media/characters/aspen/side.svg",
  18903. extra: 152 / 138,
  18904. bottom: 0.032
  18905. }
  18906. },
  18907. },
  18908. [
  18909. {
  18910. name: "Normal",
  18911. height: math.unit(2 + 8 / 12, "feet"),
  18912. default: true
  18913. },
  18914. ]
  18915. ))
  18916. characterMakers.push(() => makeCharacter(
  18917. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18918. {
  18919. side: {
  18920. height: math.unit(3 + 2 / 12, "feet"),
  18921. weight: math.unit(224, "lb"),
  18922. name: "Side",
  18923. image: {
  18924. source: "./media/characters/sheila-feral-wolf/side.svg",
  18925. extra: 179 / 166,
  18926. bottom: 0.03
  18927. }
  18928. },
  18929. },
  18930. [
  18931. {
  18932. name: "Normal",
  18933. height: math.unit(3 + 2 / 12, "feet"),
  18934. default: true
  18935. },
  18936. ]
  18937. ))
  18938. characterMakers.push(() => makeCharacter(
  18939. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18940. {
  18941. side: {
  18942. height: math.unit(1 + 9 / 12, "feet"),
  18943. weight: math.unit(38, "lb"),
  18944. name: "Side",
  18945. image: {
  18946. source: "./media/characters/michelle/side.svg",
  18947. extra: 147 / 136.7,
  18948. bottom: 0.03
  18949. }
  18950. },
  18951. },
  18952. [
  18953. {
  18954. name: "Normal",
  18955. height: math.unit(1 + 9 / 12, "feet"),
  18956. default: true
  18957. },
  18958. ]
  18959. ))
  18960. characterMakers.push(() => makeCharacter(
  18961. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18962. {
  18963. front: {
  18964. height: math.unit(1.54, "feet"),
  18965. weight: math.unit(50, "lb"),
  18966. name: "Front",
  18967. image: {
  18968. source: "./media/characters/nino/front.svg"
  18969. }
  18970. },
  18971. },
  18972. [
  18973. {
  18974. name: "Normal",
  18975. height: math.unit(1.54, "feet"),
  18976. default: true
  18977. },
  18978. ]
  18979. ))
  18980. characterMakers.push(() => makeCharacter(
  18981. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18982. {
  18983. front: {
  18984. height: math.unit(1.49, "feet"),
  18985. weight: math.unit(45, "lb"),
  18986. name: "Front",
  18987. image: {
  18988. source: "./media/characters/viola/front.svg"
  18989. }
  18990. },
  18991. },
  18992. [
  18993. {
  18994. name: "Normal",
  18995. height: math.unit(1.49, "feet"),
  18996. default: true
  18997. },
  18998. ]
  18999. ))
  19000. characterMakers.push(() => makeCharacter(
  19001. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  19002. {
  19003. front: {
  19004. height: math.unit(6 + 5 / 12, "feet"),
  19005. weight: math.unit(580, "lb"),
  19006. name: "Front",
  19007. image: {
  19008. source: "./media/characters/atlas/front.svg",
  19009. extra: 298.5 / 290,
  19010. bottom: 0.015
  19011. }
  19012. },
  19013. },
  19014. [
  19015. {
  19016. name: "Normal",
  19017. height: math.unit(6 + 5 / 12, "feet"),
  19018. default: true
  19019. },
  19020. ]
  19021. ))
  19022. characterMakers.push(() => makeCharacter(
  19023. { name: "Davy", species: ["cat"], tags: ["feral"] },
  19024. {
  19025. side: {
  19026. height: math.unit(15.6, "inches"),
  19027. weight: math.unit(10, "lb"),
  19028. name: "Side",
  19029. image: {
  19030. source: "./media/characters/davy/side.svg",
  19031. extra: 200 / 170,
  19032. bottom: 0.01
  19033. }
  19034. },
  19035. },
  19036. [
  19037. {
  19038. name: "Normal",
  19039. height: math.unit(15.6, "inches"),
  19040. default: true
  19041. },
  19042. ]
  19043. ))
  19044. characterMakers.push(() => makeCharacter(
  19045. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  19046. {
  19047. side: {
  19048. height: math.unit(4 + 8 / 12, "feet"),
  19049. weight: math.unit(166, "lb"),
  19050. name: "Side",
  19051. image: {
  19052. source: "./media/characters/fiona/side.svg",
  19053. extra: 232 / 220,
  19054. bottom: 0.03
  19055. }
  19056. },
  19057. },
  19058. [
  19059. {
  19060. name: "Normal",
  19061. height: math.unit(4 + 8 / 12, "feet"),
  19062. default: true
  19063. },
  19064. ]
  19065. ))
  19066. characterMakers.push(() => makeCharacter(
  19067. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  19068. {
  19069. front: {
  19070. height: math.unit(26, "inches"),
  19071. weight: math.unit(35, "lb"),
  19072. name: "Front",
  19073. image: {
  19074. source: "./media/characters/lyla/front.svg",
  19075. bottom: 0.1
  19076. }
  19077. },
  19078. },
  19079. [
  19080. {
  19081. name: "Normal",
  19082. height: math.unit(3, "feet"),
  19083. default: true
  19084. },
  19085. ]
  19086. ))
  19087. characterMakers.push(() => makeCharacter(
  19088. { name: "Perseus", species: ["monitor-lizard", "deity"], tags: ["feral"] },
  19089. {
  19090. side: {
  19091. height: math.unit(1.8, "feet"),
  19092. weight: math.unit(44, "lb"),
  19093. name: "Side",
  19094. image: {
  19095. source: "./media/characters/perseus/side.svg",
  19096. bottom: 0.21
  19097. }
  19098. },
  19099. },
  19100. [
  19101. {
  19102. name: "Normal",
  19103. height: math.unit(1.8, "feet"),
  19104. default: true
  19105. },
  19106. ]
  19107. ))
  19108. characterMakers.push(() => makeCharacter(
  19109. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  19110. {
  19111. side: {
  19112. height: math.unit(4 + 2 / 12, "feet"),
  19113. weight: math.unit(20, "lb"),
  19114. name: "Side",
  19115. image: {
  19116. source: "./media/characters/remus/side.svg"
  19117. }
  19118. },
  19119. },
  19120. [
  19121. {
  19122. name: "Normal",
  19123. height: math.unit(4 + 2 / 12, "feet"),
  19124. default: true
  19125. },
  19126. ]
  19127. ))
  19128. characterMakers.push(() => makeCharacter(
  19129. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  19130. {
  19131. front: {
  19132. height: math.unit(4 + 11 / 12, "feet"),
  19133. weight: math.unit(114, "lb"),
  19134. name: "Front",
  19135. image: {
  19136. source: "./media/characters/raf/front.svg",
  19137. extra: 1504/1339,
  19138. bottom: 26/1530
  19139. }
  19140. },
  19141. side: {
  19142. height: math.unit(4 + 11 / 12, "feet"),
  19143. weight: math.unit(114, "lb"),
  19144. name: "Side",
  19145. image: {
  19146. source: "./media/characters/raf/side.svg",
  19147. extra: 1466/1316,
  19148. bottom: 29/1495
  19149. }
  19150. },
  19151. paw: {
  19152. height: math.unit(1.45, "feet"),
  19153. name: "Paw",
  19154. image: {
  19155. source: "./media/characters/raf/paw.svg"
  19156. },
  19157. extraAttributes: {
  19158. "toeSize": {
  19159. name: "Toe Size",
  19160. power: 2,
  19161. type: "area",
  19162. base: math.unit(0.004, "m^2")
  19163. },
  19164. "padSize": {
  19165. name: "Pad Size",
  19166. power: 2,
  19167. type: "area",
  19168. base: math.unit(0.04, "m^2")
  19169. },
  19170. "footSize": {
  19171. name: "Foot Size",
  19172. power: 2,
  19173. type: "area",
  19174. base: math.unit(0.08, "m^2")
  19175. },
  19176. }
  19177. },
  19178. },
  19179. [
  19180. {
  19181. name: "Micro",
  19182. height: math.unit(2, "inches")
  19183. },
  19184. {
  19185. name: "Normal",
  19186. height: math.unit(4 + 11 / 12, "feet"),
  19187. default: true
  19188. },
  19189. {
  19190. name: "Macro",
  19191. height: math.unit(70, "feet")
  19192. },
  19193. ]
  19194. ))
  19195. characterMakers.push(() => makeCharacter(
  19196. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  19197. {
  19198. front: {
  19199. height: math.unit(1.5, "meters"),
  19200. weight: math.unit(68, "kg"),
  19201. name: "Front",
  19202. image: {
  19203. source: "./media/characters/liam-einarr/front.svg",
  19204. extra: 2822 / 2666
  19205. }
  19206. },
  19207. back: {
  19208. height: math.unit(1.5, "meters"),
  19209. weight: math.unit(68, "kg"),
  19210. name: "Back",
  19211. image: {
  19212. source: "./media/characters/liam-einarr/back.svg",
  19213. extra: 2822 / 2666,
  19214. bottom: 0.015
  19215. }
  19216. },
  19217. },
  19218. [
  19219. {
  19220. name: "Normal",
  19221. height: math.unit(1.5, "meters"),
  19222. default: true
  19223. },
  19224. {
  19225. name: "Macro",
  19226. height: math.unit(150, "meters")
  19227. },
  19228. {
  19229. name: "Megamacro",
  19230. height: math.unit(35, "km")
  19231. },
  19232. ]
  19233. ))
  19234. characterMakers.push(() => makeCharacter(
  19235. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  19236. {
  19237. front: {
  19238. height: math.unit(6, "feet"),
  19239. weight: math.unit(75, "kg"),
  19240. name: "Front",
  19241. image: {
  19242. source: "./media/characters/linda/front.svg",
  19243. extra: 930 / 874,
  19244. bottom: 0.004
  19245. }
  19246. },
  19247. },
  19248. [
  19249. {
  19250. name: "Normal",
  19251. height: math.unit(6, "feet"),
  19252. default: true
  19253. },
  19254. ]
  19255. ))
  19256. characterMakers.push(() => makeCharacter(
  19257. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  19258. {
  19259. front: {
  19260. height: math.unit(6 + 8 / 12, "feet"),
  19261. weight: math.unit(220, "lb"),
  19262. name: "Front",
  19263. image: {
  19264. source: "./media/characters/caylex/front.svg",
  19265. extra: 821 / 772,
  19266. bottom: 0.07
  19267. }
  19268. },
  19269. back: {
  19270. height: math.unit(6 + 8 / 12, "feet"),
  19271. weight: math.unit(220, "lb"),
  19272. name: "Back",
  19273. image: {
  19274. source: "./media/characters/caylex/back.svg",
  19275. extra: 821 / 772,
  19276. bottom: 0.022
  19277. }
  19278. },
  19279. hand: {
  19280. height: math.unit(1.25, "feet"),
  19281. name: "Hand",
  19282. image: {
  19283. source: "./media/characters/caylex/hand.svg"
  19284. }
  19285. },
  19286. foot: {
  19287. height: math.unit(1.6, "feet"),
  19288. name: "Foot",
  19289. image: {
  19290. source: "./media/characters/caylex/foot.svg"
  19291. }
  19292. },
  19293. armored: {
  19294. height: math.unit(6 + 8 / 12, "feet"),
  19295. weight: math.unit(250, "lb"),
  19296. name: "Armored",
  19297. image: {
  19298. source: "./media/characters/caylex/armored.svg",
  19299. extra: 1420 / 1310,
  19300. bottom: 0.045
  19301. }
  19302. },
  19303. },
  19304. [
  19305. {
  19306. name: "Normal",
  19307. height: math.unit(6 + 8 / 12, "feet"),
  19308. default: true
  19309. },
  19310. {
  19311. name: "Normal+",
  19312. height: math.unit(12, "feet")
  19313. },
  19314. ]
  19315. ))
  19316. characterMakers.push(() => makeCharacter(
  19317. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19318. {
  19319. front: {
  19320. height: math.unit(7 + 6 / 12, "feet"),
  19321. weight: math.unit(288, "lb"),
  19322. name: "Front",
  19323. image: {
  19324. source: "./media/characters/alana/front.svg",
  19325. extra: 679 / 653,
  19326. bottom: 22.5 / 701
  19327. }
  19328. },
  19329. },
  19330. [
  19331. {
  19332. name: "Normal",
  19333. height: math.unit(7 + 6 / 12, "feet")
  19334. },
  19335. {
  19336. name: "Large",
  19337. height: math.unit(50, "feet")
  19338. },
  19339. {
  19340. name: "Macro",
  19341. height: math.unit(100, "feet"),
  19342. default: true
  19343. },
  19344. {
  19345. name: "Macro+",
  19346. height: math.unit(200, "feet")
  19347. },
  19348. ]
  19349. ))
  19350. characterMakers.push(() => makeCharacter(
  19351. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19352. {
  19353. front: {
  19354. height: math.unit(6 + 1 / 12, "feet"),
  19355. weight: math.unit(210, "lb"),
  19356. name: "Front",
  19357. image: {
  19358. source: "./media/characters/hasani/front.svg",
  19359. extra: 244 / 232,
  19360. bottom: 0.01
  19361. }
  19362. },
  19363. back: {
  19364. height: math.unit(6 + 1 / 12, "feet"),
  19365. weight: math.unit(210, "lb"),
  19366. name: "Back",
  19367. image: {
  19368. source: "./media/characters/hasani/back.svg",
  19369. extra: 244 / 232,
  19370. bottom: 0.01
  19371. }
  19372. },
  19373. },
  19374. [
  19375. {
  19376. name: "Normal",
  19377. height: math.unit(6 + 1 / 12, "feet")
  19378. },
  19379. {
  19380. name: "Macro",
  19381. height: math.unit(175, "feet"),
  19382. default: true
  19383. },
  19384. ]
  19385. ))
  19386. characterMakers.push(() => makeCharacter(
  19387. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19388. {
  19389. front: {
  19390. height: math.unit(1.82, "meters"),
  19391. weight: math.unit(140, "lb"),
  19392. name: "Front",
  19393. image: {
  19394. source: "./media/characters/nita/front.svg",
  19395. extra: 2473 / 2363,
  19396. bottom: 0.01
  19397. }
  19398. },
  19399. },
  19400. [
  19401. {
  19402. name: "Normal",
  19403. height: math.unit(1.82, "m")
  19404. },
  19405. {
  19406. name: "Macro",
  19407. height: math.unit(300, "m")
  19408. },
  19409. {
  19410. name: "Mistake Canon",
  19411. height: math.unit(0.5, "miles"),
  19412. default: true
  19413. },
  19414. {
  19415. name: "Big Mistake",
  19416. height: math.unit(13, "miles")
  19417. },
  19418. {
  19419. name: "Playing God",
  19420. height: math.unit(2450, "miles")
  19421. },
  19422. ]
  19423. ))
  19424. characterMakers.push(() => makeCharacter(
  19425. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19426. {
  19427. front: {
  19428. height: math.unit(4, "feet"),
  19429. weight: math.unit(120, "lb"),
  19430. name: "Front",
  19431. image: {
  19432. source: "./media/characters/shiriko/front.svg",
  19433. extra: 970/934,
  19434. bottom: 5/975
  19435. }
  19436. },
  19437. },
  19438. [
  19439. {
  19440. name: "Normal",
  19441. height: math.unit(4, "feet"),
  19442. default: true
  19443. },
  19444. ]
  19445. ))
  19446. characterMakers.push(() => makeCharacter(
  19447. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19448. {
  19449. front: {
  19450. height: math.unit(6, "feet"),
  19451. name: "front",
  19452. image: {
  19453. source: "./media/characters/deja/front.svg",
  19454. extra: 926 / 840,
  19455. bottom: 0.07
  19456. }
  19457. },
  19458. },
  19459. [
  19460. {
  19461. name: "Planck Length",
  19462. height: math.unit(1.6e-35, "meters")
  19463. },
  19464. {
  19465. name: "Normal",
  19466. height: math.unit(30.48, "meters"),
  19467. default: true
  19468. },
  19469. {
  19470. name: "Universal",
  19471. height: math.unit(8.8e26, "meters")
  19472. },
  19473. ]
  19474. ))
  19475. characterMakers.push(() => makeCharacter(
  19476. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19477. {
  19478. side: {
  19479. height: math.unit(8, "feet"),
  19480. weight: math.unit(6300, "lb"),
  19481. name: "Side",
  19482. image: {
  19483. source: "./media/characters/anima/side.svg",
  19484. bottom: 0.035
  19485. }
  19486. },
  19487. },
  19488. [
  19489. {
  19490. name: "Normal",
  19491. height: math.unit(8, "feet"),
  19492. default: true
  19493. },
  19494. ]
  19495. ))
  19496. characterMakers.push(() => makeCharacter(
  19497. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19498. {
  19499. front: {
  19500. height: math.unit(8, "feet"),
  19501. weight: math.unit(350, "lb"),
  19502. name: "Front",
  19503. image: {
  19504. source: "./media/characters/bianca/front.svg",
  19505. extra: 234 / 225,
  19506. bottom: 0.03
  19507. }
  19508. },
  19509. },
  19510. [
  19511. {
  19512. name: "Normal",
  19513. height: math.unit(8, "feet"),
  19514. default: true
  19515. },
  19516. ]
  19517. ))
  19518. characterMakers.push(() => makeCharacter(
  19519. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19520. {
  19521. front: {
  19522. height: math.unit(11 + 5/12, "feet"),
  19523. weight: math.unit(1200, "lb"),
  19524. name: "Front",
  19525. image: {
  19526. source: "./media/characters/adinia/front.svg",
  19527. extra: 1767/1641,
  19528. bottom: 44/1811
  19529. },
  19530. extraAttributes: {
  19531. "energyIntake": {
  19532. name: "Energy Intake",
  19533. power: 3,
  19534. type: "energy",
  19535. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19536. },
  19537. }
  19538. },
  19539. back: {
  19540. height: math.unit(11 + 5/12, "feet"),
  19541. weight: math.unit(1200, "lb"),
  19542. name: "Back",
  19543. image: {
  19544. source: "./media/characters/adinia/back.svg",
  19545. extra: 1834/1684,
  19546. bottom: 14/1848
  19547. },
  19548. extraAttributes: {
  19549. "energyIntake": {
  19550. name: "Energy Intake",
  19551. power: 3,
  19552. type: "energy",
  19553. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19554. },
  19555. }
  19556. },
  19557. maw: {
  19558. height: math.unit(3.79, "feet"),
  19559. name: "Maw",
  19560. image: {
  19561. source: "./media/characters/adinia/maw.svg"
  19562. }
  19563. },
  19564. rump: {
  19565. height: math.unit(4.6, "feet"),
  19566. name: "Rump",
  19567. image: {
  19568. source: "./media/characters/adinia/rump.svg"
  19569. }
  19570. },
  19571. },
  19572. [
  19573. {
  19574. name: "Normal",
  19575. height: math.unit(11 + 5 / 12, "feet"),
  19576. default: true
  19577. },
  19578. ]
  19579. ))
  19580. characterMakers.push(() => makeCharacter(
  19581. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19582. {
  19583. front: {
  19584. height: math.unit(3, "meters"),
  19585. weight: math.unit(200, "kg"),
  19586. name: "Front",
  19587. image: {
  19588. source: "./media/characters/lykasa/front.svg",
  19589. extra: 1076 / 976,
  19590. bottom: 0.06
  19591. }
  19592. },
  19593. },
  19594. [
  19595. {
  19596. name: "Normal",
  19597. height: math.unit(3, "meters")
  19598. },
  19599. {
  19600. name: "Kaiju",
  19601. height: math.unit(120, "meters"),
  19602. default: true
  19603. },
  19604. {
  19605. name: "Mega Kaiju",
  19606. height: math.unit(240, "km")
  19607. },
  19608. {
  19609. name: "Giga Kaiju",
  19610. height: math.unit(400, "megameters")
  19611. },
  19612. {
  19613. name: "Tera Kaiju",
  19614. height: math.unit(800, "gigameters")
  19615. },
  19616. {
  19617. name: "Kaiju Dragon Goddess",
  19618. height: math.unit(26, "zettaparsecs")
  19619. },
  19620. ]
  19621. ))
  19622. characterMakers.push(() => makeCharacter(
  19623. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19624. {
  19625. side: {
  19626. height: math.unit(283 / 124 * 6, "feet"),
  19627. weight: math.unit(35000, "lb"),
  19628. name: "Side",
  19629. image: {
  19630. source: "./media/characters/malfaren/side.svg",
  19631. extra: 1310/529,
  19632. bottom: 24/1334
  19633. }
  19634. },
  19635. front: {
  19636. height: math.unit(22.36, "feet"),
  19637. weight: math.unit(35000, "lb"),
  19638. name: "Front",
  19639. image: {
  19640. source: "./media/characters/malfaren/front.svg",
  19641. extra: 1237/1115,
  19642. bottom: 32/1269
  19643. }
  19644. },
  19645. maw: {
  19646. height: math.unit(6.9, "feet"),
  19647. name: "Maw",
  19648. image: {
  19649. source: "./media/characters/malfaren/maw.svg"
  19650. }
  19651. },
  19652. dick: {
  19653. height: math.unit(6.19, "feet"),
  19654. name: "Dick",
  19655. image: {
  19656. source: "./media/characters/malfaren/dick.svg"
  19657. }
  19658. },
  19659. eye: {
  19660. height: math.unit(0.69, "feet"),
  19661. name: "Eye",
  19662. image: {
  19663. source: "./media/characters/malfaren/eye.svg"
  19664. }
  19665. },
  19666. },
  19667. [
  19668. {
  19669. name: "Big",
  19670. height: math.unit(283 / 162 * 6, "feet"),
  19671. },
  19672. {
  19673. name: "Bigger",
  19674. height: math.unit(283 / 124 * 6, "feet")
  19675. },
  19676. {
  19677. name: "Massive",
  19678. height: math.unit(283 / 92 * 6, "feet"),
  19679. default: true
  19680. },
  19681. {
  19682. name: "👀💦",
  19683. height: math.unit(283 / 73 * 6, "feet"),
  19684. },
  19685. ]
  19686. ))
  19687. characterMakers.push(() => makeCharacter(
  19688. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19689. {
  19690. front: {
  19691. height: math.unit(1.7, "m"),
  19692. weight: math.unit(70, "kg"),
  19693. name: "Front",
  19694. image: {
  19695. source: "./media/characters/kernel/front.svg",
  19696. extra: 1960/1821,
  19697. bottom: 17/1977
  19698. }
  19699. },
  19700. },
  19701. [
  19702. {
  19703. name: "Nano",
  19704. height: math.unit(17, "micrometers")
  19705. },
  19706. {
  19707. name: "Micro",
  19708. height: math.unit(1.7, "mm")
  19709. },
  19710. {
  19711. name: "Small",
  19712. height: math.unit(1.7, "cm")
  19713. },
  19714. {
  19715. name: "Normal",
  19716. height: math.unit(1.7, "m"),
  19717. default: true
  19718. },
  19719. ]
  19720. ))
  19721. characterMakers.push(() => makeCharacter(
  19722. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19723. {
  19724. front: {
  19725. height: math.unit(1.75, "meters"),
  19726. weight: math.unit(65, "kg"),
  19727. name: "Front",
  19728. image: {
  19729. source: "./media/characters/jayne-folest/front.svg",
  19730. extra: 2115 / 2007,
  19731. bottom: 0.02
  19732. }
  19733. },
  19734. back: {
  19735. height: math.unit(1.75, "meters"),
  19736. weight: math.unit(65, "kg"),
  19737. name: "Back",
  19738. image: {
  19739. source: "./media/characters/jayne-folest/back.svg",
  19740. extra: 2115 / 2007,
  19741. bottom: 0.005
  19742. }
  19743. },
  19744. frontClothed: {
  19745. height: math.unit(1.75, "meters"),
  19746. weight: math.unit(65, "kg"),
  19747. name: "Front (Clothed)",
  19748. image: {
  19749. source: "./media/characters/jayne-folest/front-clothed.svg",
  19750. extra: 2115 / 2007,
  19751. bottom: 0.035
  19752. }
  19753. },
  19754. hand: {
  19755. height: math.unit(1 / 1.260, "feet"),
  19756. name: "Hand",
  19757. image: {
  19758. source: "./media/characters/jayne-folest/hand.svg"
  19759. }
  19760. },
  19761. foot: {
  19762. height: math.unit(1 / 0.918, "feet"),
  19763. name: "Foot",
  19764. image: {
  19765. source: "./media/characters/jayne-folest/foot.svg"
  19766. }
  19767. },
  19768. },
  19769. [
  19770. {
  19771. name: "Micro",
  19772. height: math.unit(4, "cm")
  19773. },
  19774. {
  19775. name: "Normal",
  19776. height: math.unit(1.75, "meters")
  19777. },
  19778. {
  19779. name: "Macro",
  19780. height: math.unit(47.5, "meters"),
  19781. default: true
  19782. },
  19783. ]
  19784. ))
  19785. characterMakers.push(() => makeCharacter(
  19786. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19787. {
  19788. front: {
  19789. height: math.unit(180, "cm"),
  19790. weight: math.unit(70, "kg"),
  19791. name: "Front",
  19792. image: {
  19793. source: "./media/characters/algier/front.svg",
  19794. extra: 596 / 572,
  19795. bottom: 0.04
  19796. }
  19797. },
  19798. back: {
  19799. height: math.unit(180, "cm"),
  19800. weight: math.unit(70, "kg"),
  19801. name: "Back",
  19802. image: {
  19803. source: "./media/characters/algier/back.svg",
  19804. extra: 596 / 572,
  19805. bottom: 0.025
  19806. }
  19807. },
  19808. frontdressed: {
  19809. height: math.unit(180, "cm"),
  19810. weight: math.unit(150, "kg"),
  19811. name: "Front-dressed",
  19812. image: {
  19813. source: "./media/characters/algier/front-dressed.svg",
  19814. extra: 596 / 572,
  19815. bottom: 0.038
  19816. }
  19817. },
  19818. },
  19819. [
  19820. {
  19821. name: "Micro",
  19822. height: math.unit(5, "cm")
  19823. },
  19824. {
  19825. name: "Normal",
  19826. height: math.unit(180, "cm"),
  19827. default: true
  19828. },
  19829. {
  19830. name: "Macro",
  19831. height: math.unit(64, "m")
  19832. },
  19833. ]
  19834. ))
  19835. characterMakers.push(() => makeCharacter(
  19836. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19837. {
  19838. upright: {
  19839. height: math.unit(7, "feet"),
  19840. weight: math.unit(300, "lb"),
  19841. name: "Upright",
  19842. image: {
  19843. source: "./media/characters/pretzel/upright.svg",
  19844. extra: 534 / 522,
  19845. bottom: 0.065
  19846. }
  19847. },
  19848. sprawling: {
  19849. height: math.unit(3.75, "feet"),
  19850. weight: math.unit(300, "lb"),
  19851. name: "Sprawling",
  19852. image: {
  19853. source: "./media/characters/pretzel/sprawling.svg",
  19854. extra: 314 / 281,
  19855. bottom: 0.1
  19856. }
  19857. },
  19858. tongue: {
  19859. height: math.unit(2, "feet"),
  19860. name: "Tongue",
  19861. image: {
  19862. source: "./media/characters/pretzel/tongue.svg"
  19863. }
  19864. },
  19865. },
  19866. [
  19867. {
  19868. name: "Normal",
  19869. height: math.unit(7, "feet"),
  19870. default: true
  19871. },
  19872. {
  19873. name: "Oversized",
  19874. height: math.unit(15, "feet")
  19875. },
  19876. {
  19877. name: "Huge",
  19878. height: math.unit(30, "feet")
  19879. },
  19880. {
  19881. name: "Macro",
  19882. height: math.unit(250, "feet")
  19883. },
  19884. ]
  19885. ))
  19886. characterMakers.push(() => makeCharacter(
  19887. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19888. {
  19889. sideFront: {
  19890. height: math.unit(5 + 2 / 12, "feet"),
  19891. weight: math.unit(120, "lb"),
  19892. name: "Front Side",
  19893. image: {
  19894. source: "./media/characters/roxi/side-front.svg",
  19895. extra: 2924 / 2717,
  19896. bottom: 0.08
  19897. }
  19898. },
  19899. sideBack: {
  19900. height: math.unit(5 + 2 / 12, "feet"),
  19901. weight: math.unit(120, "lb"),
  19902. name: "Back Side",
  19903. image: {
  19904. source: "./media/characters/roxi/side-back.svg",
  19905. extra: 2904 / 2693,
  19906. bottom: 0.06
  19907. }
  19908. },
  19909. front: {
  19910. height: math.unit(5 + 2 / 12, "feet"),
  19911. weight: math.unit(120, "lb"),
  19912. name: "Front",
  19913. image: {
  19914. source: "./media/characters/roxi/front.svg",
  19915. extra: 2028 / 1907,
  19916. bottom: 0.01
  19917. }
  19918. },
  19919. frontAlt: {
  19920. height: math.unit(5 + 2 / 12, "feet"),
  19921. weight: math.unit(120, "lb"),
  19922. name: "Front (Alt)",
  19923. image: {
  19924. source: "./media/characters/roxi/front-alt.svg",
  19925. extra: 1828 / 1798,
  19926. bottom: 0.01
  19927. }
  19928. },
  19929. sitting: {
  19930. height: math.unit(2.8, "feet"),
  19931. weight: math.unit(120, "lb"),
  19932. name: "Sitting",
  19933. image: {
  19934. source: "./media/characters/roxi/sitting.svg",
  19935. extra: 2660 / 2462,
  19936. bottom: 0.1
  19937. }
  19938. },
  19939. },
  19940. [
  19941. {
  19942. name: "Normal",
  19943. height: math.unit(5 + 2 / 12, "feet"),
  19944. default: true
  19945. },
  19946. ]
  19947. ))
  19948. characterMakers.push(() => makeCharacter(
  19949. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19950. {
  19951. side: {
  19952. height: math.unit(55, "feet"),
  19953. weight: math.unit(153, "tons"),
  19954. name: "Side",
  19955. image: {
  19956. source: "./media/characters/shadow/side.svg",
  19957. extra: 701 / 628,
  19958. bottom: 0.02
  19959. }
  19960. },
  19961. flying: {
  19962. height: math.unit(145, "feet"),
  19963. weight: math.unit(153, "tons"),
  19964. name: "Flying",
  19965. image: {
  19966. source: "./media/characters/shadow/flying.svg"
  19967. }
  19968. },
  19969. },
  19970. [
  19971. {
  19972. name: "Normal",
  19973. height: math.unit(55, "feet"),
  19974. default: true
  19975. },
  19976. ]
  19977. ))
  19978. characterMakers.push(() => makeCharacter(
  19979. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19980. {
  19981. front: {
  19982. height: math.unit(6, "feet"),
  19983. weight: math.unit(200, "lb"),
  19984. name: "Front",
  19985. image: {
  19986. source: "./media/characters/marcie/front.svg",
  19987. extra: 960 / 876,
  19988. bottom: 58 / 1017.87
  19989. }
  19990. },
  19991. },
  19992. [
  19993. {
  19994. name: "Macro",
  19995. height: math.unit(1, "mile"),
  19996. default: true
  19997. },
  19998. ]
  19999. ))
  20000. characterMakers.push(() => makeCharacter(
  20001. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  20002. {
  20003. front: {
  20004. height: math.unit(7, "feet"),
  20005. weight: math.unit(200, "lb"),
  20006. name: "Front",
  20007. image: {
  20008. source: "./media/characters/kachina/front.svg",
  20009. extra: 1290.68 / 1119,
  20010. bottom: 36.5 / 1327.18
  20011. }
  20012. },
  20013. },
  20014. [
  20015. {
  20016. name: "Normal",
  20017. height: math.unit(7, "feet"),
  20018. default: true
  20019. },
  20020. ]
  20021. ))
  20022. characterMakers.push(() => makeCharacter(
  20023. { name: "Kash", species: ["canine"], tags: ["feral"] },
  20024. {
  20025. looking: {
  20026. height: math.unit(2, "meters"),
  20027. weight: math.unit(300, "kg"),
  20028. name: "Looking",
  20029. image: {
  20030. source: "./media/characters/kash/looking.svg",
  20031. extra: 474 / 344,
  20032. bottom: 0.03
  20033. }
  20034. },
  20035. side: {
  20036. height: math.unit(2, "meters"),
  20037. weight: math.unit(300, "kg"),
  20038. name: "Side",
  20039. image: {
  20040. source: "./media/characters/kash/side.svg",
  20041. extra: 302 / 251,
  20042. bottom: 0.03
  20043. }
  20044. },
  20045. front: {
  20046. height: math.unit(2, "meters"),
  20047. weight: math.unit(300, "kg"),
  20048. name: "Front",
  20049. image: {
  20050. source: "./media/characters/kash/front.svg",
  20051. extra: 495 / 360,
  20052. bottom: 0.015
  20053. }
  20054. },
  20055. },
  20056. [
  20057. {
  20058. name: "Normal",
  20059. height: math.unit(2, "meters"),
  20060. default: true
  20061. },
  20062. {
  20063. name: "Big",
  20064. height: math.unit(3, "meters")
  20065. },
  20066. {
  20067. name: "Large",
  20068. height: math.unit(5, "meters")
  20069. },
  20070. ]
  20071. ))
  20072. characterMakers.push(() => makeCharacter(
  20073. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  20074. {
  20075. feeding: {
  20076. height: math.unit(6.7, "feet"),
  20077. weight: math.unit(350, "lb"),
  20078. name: "Feeding",
  20079. image: {
  20080. source: "./media/characters/lalim/feeding.svg",
  20081. }
  20082. },
  20083. },
  20084. [
  20085. {
  20086. name: "Normal",
  20087. height: math.unit(6.7, "feet"),
  20088. default: true
  20089. },
  20090. ]
  20091. ))
  20092. characterMakers.push(() => makeCharacter(
  20093. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  20094. {
  20095. front: {
  20096. height: math.unit(9.5, "feet"),
  20097. weight: math.unit(600, "lb"),
  20098. name: "Front",
  20099. image: {
  20100. source: "./media/characters/de'vout/front.svg",
  20101. extra: 1443 / 1328,
  20102. bottom: 0.025
  20103. }
  20104. },
  20105. back: {
  20106. height: math.unit(9.5, "feet"),
  20107. weight: math.unit(600, "lb"),
  20108. name: "Back",
  20109. image: {
  20110. source: "./media/characters/de'vout/back.svg",
  20111. extra: 1443 / 1328
  20112. }
  20113. },
  20114. frontDressed: {
  20115. height: math.unit(9.5, "feet"),
  20116. weight: math.unit(600, "lb"),
  20117. name: "Front (Dressed",
  20118. image: {
  20119. source: "./media/characters/de'vout/front-dressed.svg",
  20120. extra: 1443 / 1328,
  20121. bottom: 0.025
  20122. }
  20123. },
  20124. backDressed: {
  20125. height: math.unit(9.5, "feet"),
  20126. weight: math.unit(600, "lb"),
  20127. name: "Back (Dressed",
  20128. image: {
  20129. source: "./media/characters/de'vout/back-dressed.svg",
  20130. extra: 1443 / 1328
  20131. }
  20132. },
  20133. },
  20134. [
  20135. {
  20136. name: "Normal",
  20137. height: math.unit(9.5, "feet"),
  20138. default: true
  20139. },
  20140. ]
  20141. ))
  20142. characterMakers.push(() => makeCharacter(
  20143. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  20144. {
  20145. front: {
  20146. height: math.unit(8, "feet"),
  20147. weight: math.unit(225, "lb"),
  20148. name: "Front",
  20149. image: {
  20150. source: "./media/characters/talana/front.svg",
  20151. extra: 1410 / 1300,
  20152. bottom: 0.015
  20153. }
  20154. },
  20155. frontDressed: {
  20156. height: math.unit(8, "feet"),
  20157. weight: math.unit(225, "lb"),
  20158. name: "Front (Dressed",
  20159. image: {
  20160. source: "./media/characters/talana/front-dressed.svg",
  20161. extra: 1410 / 1300,
  20162. bottom: 0.015
  20163. }
  20164. },
  20165. },
  20166. [
  20167. {
  20168. name: "Normal",
  20169. height: math.unit(8, "feet"),
  20170. default: true
  20171. },
  20172. ]
  20173. ))
  20174. characterMakers.push(() => makeCharacter(
  20175. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  20176. {
  20177. side: {
  20178. height: math.unit(7.2, "feet"),
  20179. weight: math.unit(150, "lb"),
  20180. name: "Side",
  20181. image: {
  20182. source: "./media/characters/xeauvok/side.svg",
  20183. extra: 1975 / 1523,
  20184. bottom: 0.07
  20185. }
  20186. },
  20187. },
  20188. [
  20189. {
  20190. name: "Normal",
  20191. height: math.unit(7.2, "feet"),
  20192. default: true
  20193. },
  20194. ]
  20195. ))
  20196. characterMakers.push(() => makeCharacter(
  20197. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  20198. {
  20199. side: {
  20200. height: math.unit(4, "meters"),
  20201. weight: math.unit(2200, "kg"),
  20202. name: "Side",
  20203. image: {
  20204. source: "./media/characters/zara/side.svg",
  20205. extra: 765/744,
  20206. bottom: 156/921
  20207. }
  20208. },
  20209. },
  20210. [
  20211. {
  20212. name: "Normal",
  20213. height: math.unit(4, "meters"),
  20214. default: true
  20215. },
  20216. ]
  20217. ))
  20218. characterMakers.push(() => makeCharacter(
  20219. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  20220. {
  20221. side: {
  20222. height: math.unit(6, "feet"),
  20223. weight: math.unit(150, "lb"),
  20224. name: "Side",
  20225. image: {
  20226. source: "./media/characters/richard-dragon/side.svg",
  20227. extra: 845 / 340,
  20228. bottom: 0.017
  20229. }
  20230. },
  20231. maw: {
  20232. height: math.unit(2.97, "feet"),
  20233. name: "Maw",
  20234. image: {
  20235. source: "./media/characters/richard-dragon/maw.svg"
  20236. }
  20237. },
  20238. },
  20239. [
  20240. ]
  20241. ))
  20242. characterMakers.push(() => makeCharacter(
  20243. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  20244. {
  20245. front: {
  20246. height: math.unit(4, "feet"),
  20247. weight: math.unit(100, "lb"),
  20248. name: "Front",
  20249. image: {
  20250. source: "./media/characters/richard-smeargle/front.svg",
  20251. extra: 2952 / 2820,
  20252. bottom: 0.028
  20253. }
  20254. },
  20255. },
  20256. [
  20257. {
  20258. name: "Normal",
  20259. height: math.unit(4, "feet"),
  20260. default: true
  20261. },
  20262. {
  20263. name: "Dynamax",
  20264. height: math.unit(20, "meters")
  20265. },
  20266. ]
  20267. ))
  20268. characterMakers.push(() => makeCharacter(
  20269. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  20270. {
  20271. front: {
  20272. height: math.unit(6, "feet"),
  20273. weight: math.unit(110, "lb"),
  20274. name: "Front",
  20275. image: {
  20276. source: "./media/characters/klay/front.svg",
  20277. extra: 962 / 883,
  20278. bottom: 0.04
  20279. }
  20280. },
  20281. back: {
  20282. height: math.unit(6, "feet"),
  20283. weight: math.unit(110, "lb"),
  20284. name: "Back",
  20285. image: {
  20286. source: "./media/characters/klay/back.svg",
  20287. extra: 962 / 883
  20288. }
  20289. },
  20290. beans: {
  20291. height: math.unit(1.15, "feet"),
  20292. name: "Beans",
  20293. image: {
  20294. source: "./media/characters/klay/beans.svg"
  20295. }
  20296. },
  20297. },
  20298. [
  20299. {
  20300. name: "Micro",
  20301. height: math.unit(6, "inches")
  20302. },
  20303. {
  20304. name: "Mini",
  20305. height: math.unit(3, "feet")
  20306. },
  20307. {
  20308. name: "Normal",
  20309. height: math.unit(6, "feet"),
  20310. default: true
  20311. },
  20312. {
  20313. name: "Big",
  20314. height: math.unit(25, "feet")
  20315. },
  20316. {
  20317. name: "Macro",
  20318. height: math.unit(100, "feet")
  20319. },
  20320. {
  20321. name: "Megamacro",
  20322. height: math.unit(400, "feet")
  20323. },
  20324. ]
  20325. ))
  20326. characterMakers.push(() => makeCharacter(
  20327. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20328. {
  20329. front: {
  20330. height: math.unit(6, "feet"),
  20331. weight: math.unit(160, "lb"),
  20332. name: "Front",
  20333. image: {
  20334. source: "./media/characters/marcus/front.svg",
  20335. extra: 734 / 676,
  20336. bottom: 0.03
  20337. }
  20338. },
  20339. },
  20340. [
  20341. {
  20342. name: "Little",
  20343. height: math.unit(6, "feet")
  20344. },
  20345. {
  20346. name: "Normal",
  20347. height: math.unit(110, "feet"),
  20348. default: true
  20349. },
  20350. {
  20351. name: "Macro",
  20352. height: math.unit(250, "feet")
  20353. },
  20354. {
  20355. name: "Megamacro",
  20356. height: math.unit(1000, "feet")
  20357. },
  20358. ]
  20359. ))
  20360. characterMakers.push(() => makeCharacter(
  20361. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20362. {
  20363. front: {
  20364. height: math.unit(7, "feet"),
  20365. weight: math.unit(275, "lb"),
  20366. name: "Front",
  20367. image: {
  20368. source: "./media/characters/claude-delroute/front.svg",
  20369. extra: 902/827,
  20370. bottom: 26/928
  20371. }
  20372. },
  20373. side: {
  20374. height: math.unit(7, "feet"),
  20375. weight: math.unit(275, "lb"),
  20376. name: "Side",
  20377. image: {
  20378. source: "./media/characters/claude-delroute/side.svg",
  20379. extra: 908/853,
  20380. bottom: 16/924
  20381. }
  20382. },
  20383. back: {
  20384. height: math.unit(7, "feet"),
  20385. weight: math.unit(275, "lb"),
  20386. name: "Back",
  20387. image: {
  20388. source: "./media/characters/claude-delroute/back.svg",
  20389. extra: 911/829,
  20390. bottom: 18/929
  20391. }
  20392. },
  20393. maw: {
  20394. height: math.unit(0.6407, "meters"),
  20395. name: "Maw",
  20396. image: {
  20397. source: "./media/characters/claude-delroute/maw.svg"
  20398. }
  20399. },
  20400. },
  20401. [
  20402. {
  20403. name: "Normal",
  20404. height: math.unit(7, "feet"),
  20405. default: true
  20406. },
  20407. {
  20408. name: "Lorge",
  20409. height: math.unit(20, "feet")
  20410. },
  20411. ]
  20412. ))
  20413. characterMakers.push(() => makeCharacter(
  20414. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20415. {
  20416. front: {
  20417. height: math.unit(8 + 4 / 12, "feet"),
  20418. weight: math.unit(600, "lb"),
  20419. name: "Front",
  20420. image: {
  20421. source: "./media/characters/dragonien/front.svg",
  20422. extra: 100 / 94,
  20423. bottom: 3.3 / 103.3445
  20424. }
  20425. },
  20426. back: {
  20427. height: math.unit(8 + 4 / 12, "feet"),
  20428. weight: math.unit(600, "lb"),
  20429. name: "Back",
  20430. image: {
  20431. source: "./media/characters/dragonien/back.svg",
  20432. extra: 776 / 746,
  20433. bottom: 6.4 / 782.0616
  20434. }
  20435. },
  20436. foot: {
  20437. height: math.unit(1.54, "feet"),
  20438. name: "Foot",
  20439. image: {
  20440. source: "./media/characters/dragonien/foot.svg",
  20441. }
  20442. },
  20443. },
  20444. [
  20445. {
  20446. name: "Normal",
  20447. height: math.unit(8 + 4 / 12, "feet"),
  20448. default: true
  20449. },
  20450. {
  20451. name: "Macro",
  20452. height: math.unit(200, "feet")
  20453. },
  20454. {
  20455. name: "Megamacro",
  20456. height: math.unit(1, "mile")
  20457. },
  20458. {
  20459. name: "Gigamacro",
  20460. height: math.unit(1000, "miles")
  20461. },
  20462. ]
  20463. ))
  20464. characterMakers.push(() => makeCharacter(
  20465. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20466. {
  20467. front: {
  20468. height: math.unit(5 + 2 / 12, "feet"),
  20469. weight: math.unit(110, "lb"),
  20470. name: "Front",
  20471. image: {
  20472. source: "./media/characters/desta/front.svg",
  20473. extra: 767 / 726,
  20474. bottom: 11.7 / 779
  20475. }
  20476. },
  20477. back: {
  20478. height: math.unit(5 + 2 / 12, "feet"),
  20479. weight: math.unit(110, "lb"),
  20480. name: "Back",
  20481. image: {
  20482. source: "./media/characters/desta/back.svg",
  20483. extra: 777 / 728,
  20484. bottom: 6 / 784
  20485. }
  20486. },
  20487. frontAlt: {
  20488. height: math.unit(5 + 2 / 12, "feet"),
  20489. weight: math.unit(110, "lb"),
  20490. name: "Front",
  20491. image: {
  20492. source: "./media/characters/desta/front-alt.svg",
  20493. extra: 1482 / 1417
  20494. }
  20495. },
  20496. side: {
  20497. height: math.unit(5 + 2 / 12, "feet"),
  20498. weight: math.unit(110, "lb"),
  20499. name: "Side",
  20500. image: {
  20501. source: "./media/characters/desta/side.svg",
  20502. extra: 2579 / 2491,
  20503. bottom: 0.053
  20504. }
  20505. },
  20506. },
  20507. [
  20508. {
  20509. name: "Micro",
  20510. height: math.unit(6, "inches")
  20511. },
  20512. {
  20513. name: "Normal",
  20514. height: math.unit(5 + 2 / 12, "feet"),
  20515. default: true
  20516. },
  20517. {
  20518. name: "Macro",
  20519. height: math.unit(62, "feet")
  20520. },
  20521. {
  20522. name: "Megamacro",
  20523. height: math.unit(1800, "feet")
  20524. },
  20525. ]
  20526. ))
  20527. characterMakers.push(() => makeCharacter(
  20528. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20529. {
  20530. front: {
  20531. height: math.unit(10, "feet"),
  20532. weight: math.unit(700, "lb"),
  20533. name: "Front",
  20534. image: {
  20535. source: "./media/characters/storm-alystar/front.svg",
  20536. extra: 2112 / 1898,
  20537. bottom: 0.034
  20538. }
  20539. },
  20540. },
  20541. [
  20542. {
  20543. name: "Micro",
  20544. height: math.unit(3.5, "inches")
  20545. },
  20546. {
  20547. name: "Normal",
  20548. height: math.unit(10, "feet"),
  20549. default: true
  20550. },
  20551. {
  20552. name: "Macro",
  20553. height: math.unit(400, "feet")
  20554. },
  20555. {
  20556. name: "Deific",
  20557. height: math.unit(60, "miles")
  20558. },
  20559. ]
  20560. ))
  20561. characterMakers.push(() => makeCharacter(
  20562. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20563. {
  20564. front: {
  20565. height: math.unit(2.35, "meters"),
  20566. weight: math.unit(119, "kg"),
  20567. name: "Front",
  20568. image: {
  20569. source: "./media/characters/ilia/front.svg",
  20570. extra: 1285 / 1255,
  20571. bottom: 0.06
  20572. }
  20573. },
  20574. },
  20575. [
  20576. {
  20577. name: "Normal",
  20578. height: math.unit(2.35, "meters")
  20579. },
  20580. {
  20581. name: "Macro",
  20582. height: math.unit(140, "meters"),
  20583. default: true
  20584. },
  20585. {
  20586. name: "Megamacro",
  20587. height: math.unit(100, "miles")
  20588. },
  20589. ]
  20590. ))
  20591. characterMakers.push(() => makeCharacter(
  20592. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20593. {
  20594. front: {
  20595. height: math.unit(6 + 5 / 12, "feet"),
  20596. weight: math.unit(190, "lb"),
  20597. name: "Front",
  20598. image: {
  20599. source: "./media/characters/kingdead/front.svg",
  20600. extra: 1228 / 1177
  20601. }
  20602. },
  20603. },
  20604. [
  20605. {
  20606. name: "Micro",
  20607. height: math.unit(7, "inches")
  20608. },
  20609. {
  20610. name: "Normal",
  20611. height: math.unit(6 + 5 / 12, "feet")
  20612. },
  20613. {
  20614. name: "Macro",
  20615. height: math.unit(150, "feet"),
  20616. default: true
  20617. },
  20618. {
  20619. name: "Megamacro",
  20620. height: math.unit(200, "miles")
  20621. },
  20622. ]
  20623. ))
  20624. characterMakers.push(() => makeCharacter(
  20625. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20626. {
  20627. front: {
  20628. height: math.unit(8, "feet"),
  20629. weight: math.unit(600, "lb"),
  20630. name: "Front",
  20631. image: {
  20632. source: "./media/characters/kyrehx/front.svg",
  20633. extra: 1195 / 1095,
  20634. bottom: 0.034
  20635. }
  20636. },
  20637. },
  20638. [
  20639. {
  20640. name: "Micro",
  20641. height: math.unit(2, "inches")
  20642. },
  20643. {
  20644. name: "Normal",
  20645. height: math.unit(8, "feet"),
  20646. default: true
  20647. },
  20648. {
  20649. name: "Macro",
  20650. height: math.unit(255, "feet")
  20651. },
  20652. ]
  20653. ))
  20654. characterMakers.push(() => makeCharacter(
  20655. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20656. {
  20657. front: {
  20658. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20659. weight: math.unit(184, "lb"),
  20660. name: "Front",
  20661. image: {
  20662. source: "./media/characters/xang/front.svg",
  20663. extra: 845 / 755
  20664. }
  20665. },
  20666. },
  20667. [
  20668. {
  20669. name: "Normal",
  20670. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20671. default: true
  20672. },
  20673. {
  20674. name: "Macro",
  20675. height: math.unit(0.935 * 146, "feet")
  20676. },
  20677. {
  20678. name: "Megamacro",
  20679. height: math.unit(0.935 * 3, "miles")
  20680. },
  20681. ]
  20682. ))
  20683. characterMakers.push(() => makeCharacter(
  20684. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20685. {
  20686. frontDressed: {
  20687. height: math.unit(5 + 7 / 12, "feet"),
  20688. weight: math.unit(140, "lb"),
  20689. name: "Front (Dressed)",
  20690. image: {
  20691. source: "./media/characters/doc-weardno/front-dressed.svg",
  20692. extra: 263 / 234
  20693. }
  20694. },
  20695. backDressed: {
  20696. height: math.unit(5 + 7 / 12, "feet"),
  20697. weight: math.unit(140, "lb"),
  20698. name: "Back (Dressed)",
  20699. image: {
  20700. source: "./media/characters/doc-weardno/back-dressed.svg",
  20701. extra: 266 / 238
  20702. }
  20703. },
  20704. front: {
  20705. height: math.unit(5 + 7 / 12, "feet"),
  20706. weight: math.unit(140, "lb"),
  20707. name: "Front",
  20708. image: {
  20709. source: "./media/characters/doc-weardno/front.svg",
  20710. extra: 254 / 233
  20711. }
  20712. },
  20713. },
  20714. [
  20715. {
  20716. name: "Micro",
  20717. height: math.unit(3, "inches")
  20718. },
  20719. {
  20720. name: "Normal",
  20721. height: math.unit(5 + 7 / 12, "feet"),
  20722. default: true
  20723. },
  20724. {
  20725. name: "Macro",
  20726. height: math.unit(25, "feet")
  20727. },
  20728. {
  20729. name: "Megamacro",
  20730. height: math.unit(2, "miles")
  20731. },
  20732. ]
  20733. ))
  20734. characterMakers.push(() => makeCharacter(
  20735. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20736. {
  20737. front: {
  20738. height: math.unit(6 + 2 / 12, "feet"),
  20739. weight: math.unit(153, "lb"),
  20740. name: "Front",
  20741. image: {
  20742. source: "./media/characters/seth-whilst/front.svg",
  20743. bottom: 0.07
  20744. }
  20745. },
  20746. },
  20747. [
  20748. {
  20749. name: "Micro",
  20750. height: math.unit(5, "inches")
  20751. },
  20752. {
  20753. name: "Normal",
  20754. height: math.unit(6 + 2 / 12, "feet"),
  20755. default: true
  20756. },
  20757. ]
  20758. ))
  20759. characterMakers.push(() => makeCharacter(
  20760. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20761. {
  20762. front: {
  20763. height: math.unit(3, "inches"),
  20764. weight: math.unit(8, "grams"),
  20765. name: "Front",
  20766. image: {
  20767. source: "./media/characters/pocket-jabari/front.svg",
  20768. extra: 1024 / 974,
  20769. bottom: 0.039
  20770. }
  20771. },
  20772. },
  20773. [
  20774. {
  20775. name: "Minimicro",
  20776. height: math.unit(8, "mm")
  20777. },
  20778. {
  20779. name: "Micro",
  20780. height: math.unit(3, "inches"),
  20781. default: true
  20782. },
  20783. {
  20784. name: "Normal",
  20785. height: math.unit(3, "feet")
  20786. },
  20787. ]
  20788. ))
  20789. characterMakers.push(() => makeCharacter(
  20790. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20791. {
  20792. frontDressed: {
  20793. height: math.unit(15, "feet"),
  20794. weight: math.unit(3280, "lb"),
  20795. name: "Front (Dressed)",
  20796. image: {
  20797. source: "./media/characters/sapphy/front-dressed.svg",
  20798. extra: 1951/1654,
  20799. bottom: 194/2145
  20800. },
  20801. form: "anthro",
  20802. default: true
  20803. },
  20804. backDressed: {
  20805. height: math.unit(15, "feet"),
  20806. weight: math.unit(3280, "lb"),
  20807. name: "Back (Dressed)",
  20808. image: {
  20809. source: "./media/characters/sapphy/back-dressed.svg",
  20810. extra: 2058/1918,
  20811. bottom: 125/2183
  20812. },
  20813. form: "anthro"
  20814. },
  20815. frontNude: {
  20816. height: math.unit(15, "feet"),
  20817. weight: math.unit(3280, "lb"),
  20818. name: "Front (Nude)",
  20819. image: {
  20820. source: "./media/characters/sapphy/front-nude.svg",
  20821. extra: 1951/1654,
  20822. bottom: 194/2145
  20823. },
  20824. form: "anthro"
  20825. },
  20826. backNude: {
  20827. height: math.unit(15, "feet"),
  20828. weight: math.unit(3280, "lb"),
  20829. name: "Back (Nude)",
  20830. image: {
  20831. source: "./media/characters/sapphy/back-nude.svg",
  20832. extra: 2058/1918,
  20833. bottom: 125/2183
  20834. },
  20835. form: "anthro"
  20836. },
  20837. full: {
  20838. height: math.unit(15, "feet"),
  20839. weight: math.unit(3280, "lb"),
  20840. name: "Full",
  20841. image: {
  20842. source: "./media/characters/sapphy/full.svg",
  20843. extra: 1396/1317,
  20844. bottom: 44/1440
  20845. },
  20846. form: "anthro"
  20847. },
  20848. dick: {
  20849. height: math.unit(3.8, "feet"),
  20850. name: "Dick",
  20851. image: {
  20852. source: "./media/characters/sapphy/dick.svg"
  20853. },
  20854. form: "anthro"
  20855. },
  20856. feral: {
  20857. height: math.unit(35, "feet"),
  20858. weight: math.unit(160, "tons"),
  20859. name: "Feral",
  20860. image: {
  20861. source: "./media/characters/sapphy/feral.svg",
  20862. extra: 1050/573,
  20863. bottom: 60/1110
  20864. },
  20865. form: "feral",
  20866. default: true
  20867. },
  20868. },
  20869. [
  20870. {
  20871. name: "Normal",
  20872. height: math.unit(15, "feet"),
  20873. form: "anthro"
  20874. },
  20875. {
  20876. name: "Casual Macro",
  20877. height: math.unit(120, "feet"),
  20878. form: "anthro"
  20879. },
  20880. {
  20881. name: "Macro",
  20882. height: math.unit(2150, "feet"),
  20883. default: true,
  20884. form: "anthro"
  20885. },
  20886. {
  20887. name: "Megamacro",
  20888. height: math.unit(8, "miles"),
  20889. form: "anthro"
  20890. },
  20891. {
  20892. name: "Galaxy Mom",
  20893. height: math.unit(6, "megalightyears"),
  20894. form: "anthro"
  20895. },
  20896. {
  20897. name: "Normal",
  20898. height: math.unit(35, "feet"),
  20899. form: "feral",
  20900. default: true
  20901. },
  20902. {
  20903. name: "Macro",
  20904. height: math.unit(300, "feet"),
  20905. form: "feral"
  20906. },
  20907. {
  20908. name: "Galaxy Mom",
  20909. height: math.unit(10, "megalightyears"),
  20910. form: "feral"
  20911. },
  20912. ],
  20913. {
  20914. "anthro": {
  20915. name: "Anthro",
  20916. default: true
  20917. },
  20918. "feral": {
  20919. name: "Feral"
  20920. }
  20921. }
  20922. ))
  20923. characterMakers.push(() => makeCharacter(
  20924. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20925. {
  20926. hyenaFront: {
  20927. height: math.unit(6, "feet"),
  20928. weight: math.unit(190, "lb"),
  20929. name: "Front",
  20930. image: {
  20931. source: "./media/characters/kiro/hyena-front.svg",
  20932. extra: 927/839,
  20933. bottom: 91/1018
  20934. },
  20935. form: "hyena",
  20936. default: true
  20937. },
  20938. front: {
  20939. height: math.unit(6, "feet"),
  20940. weight: math.unit(170, "lb"),
  20941. name: "Front",
  20942. image: {
  20943. source: "./media/characters/kiro/front.svg",
  20944. extra: 1064 / 1012,
  20945. bottom: 0.052
  20946. },
  20947. form: "folf",
  20948. default: true
  20949. },
  20950. },
  20951. [
  20952. {
  20953. name: "Micro",
  20954. height: math.unit(6, "inches"),
  20955. form: "folf"
  20956. },
  20957. {
  20958. name: "Normal",
  20959. height: math.unit(6, "feet"),
  20960. form: "folf",
  20961. default: true
  20962. },
  20963. {
  20964. name: "Macro",
  20965. height: math.unit(72, "feet"),
  20966. form: "folf"
  20967. },
  20968. {
  20969. name: "Micro",
  20970. height: math.unit(6, "inches"),
  20971. form: "hyena"
  20972. },
  20973. {
  20974. name: "Normal",
  20975. height: math.unit(6, "feet"),
  20976. form: "hyena",
  20977. default: true
  20978. },
  20979. {
  20980. name: "Macro",
  20981. height: math.unit(72, "feet"),
  20982. form: "hyena"
  20983. },
  20984. ],
  20985. {
  20986. "hyena": {
  20987. name: "Hyena",
  20988. default: true
  20989. },
  20990. "folf": {
  20991. name: "Folf",
  20992. },
  20993. }
  20994. ))
  20995. characterMakers.push(() => makeCharacter(
  20996. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20997. {
  20998. front: {
  20999. height: math.unit(5 + 9 / 12, "feet"),
  21000. weight: math.unit(175, "lb"),
  21001. name: "Front",
  21002. image: {
  21003. source: "./media/characters/irishfox/front.svg",
  21004. extra: 1912 / 1680,
  21005. bottom: 0.02
  21006. }
  21007. },
  21008. },
  21009. [
  21010. {
  21011. name: "Nano",
  21012. height: math.unit(1, "mm")
  21013. },
  21014. {
  21015. name: "Micro",
  21016. height: math.unit(2, "inches")
  21017. },
  21018. {
  21019. name: "Normal",
  21020. height: math.unit(5 + 9 / 12, "feet"),
  21021. default: true
  21022. },
  21023. {
  21024. name: "Macro",
  21025. height: math.unit(45, "feet")
  21026. },
  21027. ]
  21028. ))
  21029. characterMakers.push(() => makeCharacter(
  21030. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  21031. {
  21032. front: {
  21033. height: math.unit(6 + 1 / 12, "feet"),
  21034. weight: math.unit(75, "lb"),
  21035. name: "Front",
  21036. image: {
  21037. source: "./media/characters/aronai-sieyes/front.svg",
  21038. extra: 1532/1450,
  21039. bottom: 42/1574
  21040. }
  21041. },
  21042. side: {
  21043. height: math.unit(6 + 1 / 12, "feet"),
  21044. weight: math.unit(75, "lb"),
  21045. name: "Side",
  21046. image: {
  21047. source: "./media/characters/aronai-sieyes/side.svg",
  21048. extra: 1422/1365,
  21049. bottom: 148/1570
  21050. }
  21051. },
  21052. back: {
  21053. height: math.unit(6 + 1 / 12, "feet"),
  21054. weight: math.unit(75, "lb"),
  21055. name: "Back",
  21056. image: {
  21057. source: "./media/characters/aronai-sieyes/back.svg",
  21058. extra: 1526/1464,
  21059. bottom: 51/1577
  21060. }
  21061. },
  21062. dressed: {
  21063. height: math.unit(6 + 1 / 12, "feet"),
  21064. weight: math.unit(75, "lb"),
  21065. name: "Dressed",
  21066. image: {
  21067. source: "./media/characters/aronai-sieyes/dressed.svg",
  21068. extra: 1559/1483,
  21069. bottom: 39/1598
  21070. }
  21071. },
  21072. slit: {
  21073. height: math.unit(1.3, "feet"),
  21074. name: "Slit",
  21075. image: {
  21076. source: "./media/characters/aronai-sieyes/slit.svg"
  21077. }
  21078. },
  21079. slitSpread: {
  21080. height: math.unit(0.9, "feet"),
  21081. name: "Slit (Spread)",
  21082. image: {
  21083. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  21084. }
  21085. },
  21086. rump: {
  21087. height: math.unit(1.3, "feet"),
  21088. name: "Rump",
  21089. image: {
  21090. source: "./media/characters/aronai-sieyes/rump.svg"
  21091. }
  21092. },
  21093. maw: {
  21094. height: math.unit(1.25, "feet"),
  21095. name: "Maw",
  21096. image: {
  21097. source: "./media/characters/aronai-sieyes/maw.svg"
  21098. }
  21099. },
  21100. feral: {
  21101. height: math.unit(18, "feet"),
  21102. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  21103. name: "Feral",
  21104. image: {
  21105. source: "./media/characters/aronai-sieyes/feral.svg",
  21106. extra: 1530 / 1240,
  21107. bottom: 0.035
  21108. }
  21109. },
  21110. },
  21111. [
  21112. {
  21113. name: "Micro",
  21114. height: math.unit(2, "inches")
  21115. },
  21116. {
  21117. name: "Normal",
  21118. height: math.unit(6 + 1 / 12, "feet"),
  21119. default: true
  21120. }
  21121. ]
  21122. ))
  21123. characterMakers.push(() => makeCharacter(
  21124. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  21125. {
  21126. front: {
  21127. height: math.unit(12, "feet"),
  21128. weight: math.unit(410, "kg"),
  21129. name: "Front",
  21130. image: {
  21131. source: "./media/characters/xuna/front.svg",
  21132. extra: 2184 / 1980
  21133. }
  21134. },
  21135. side: {
  21136. height: math.unit(12, "feet"),
  21137. weight: math.unit(410, "kg"),
  21138. name: "Side",
  21139. image: {
  21140. source: "./media/characters/xuna/side.svg",
  21141. extra: 2184 / 1980
  21142. }
  21143. },
  21144. back: {
  21145. height: math.unit(12, "feet"),
  21146. weight: math.unit(410, "kg"),
  21147. name: "Back",
  21148. image: {
  21149. source: "./media/characters/xuna/back.svg",
  21150. extra: 2184 / 1980
  21151. }
  21152. },
  21153. },
  21154. [
  21155. {
  21156. name: "Nano glow",
  21157. height: math.unit(10, "nm")
  21158. },
  21159. {
  21160. name: "Micro floof",
  21161. height: math.unit(0.3, "m")
  21162. },
  21163. {
  21164. name: "Huggable softy boi",
  21165. height: math.unit(3.6576, "m"),
  21166. default: true
  21167. },
  21168. {
  21169. name: "Admirable floof",
  21170. height: math.unit(80, "meters")
  21171. },
  21172. {
  21173. name: "Gentle macro",
  21174. height: math.unit(300, "meters")
  21175. },
  21176. {
  21177. name: "Very careful floof",
  21178. height: math.unit(3200, "meters")
  21179. },
  21180. {
  21181. name: "The mega floof",
  21182. height: math.unit(36000, "meters")
  21183. },
  21184. {
  21185. name: "Giga-fur-Wicker",
  21186. height: math.unit(4800000, "meters")
  21187. },
  21188. {
  21189. name: "Licky world",
  21190. height: math.unit(20000000, "meters")
  21191. },
  21192. {
  21193. name: "Floofy cyan sun",
  21194. height: math.unit(1500000000, "meters")
  21195. },
  21196. {
  21197. name: "Milky Wicker",
  21198. height: math.unit(1000000000000000000000, "meters")
  21199. },
  21200. {
  21201. name: "The observing Wicker",
  21202. height: math.unit(999999999999999999999999999, "meters")
  21203. },
  21204. ]
  21205. ))
  21206. characterMakers.push(() => makeCharacter(
  21207. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21208. {
  21209. front: {
  21210. height: math.unit(5 + 9 / 12, "feet"),
  21211. weight: math.unit(150, "lb"),
  21212. name: "Front",
  21213. image: {
  21214. source: "./media/characters/arokha-sieyes/front.svg",
  21215. extra: 1425 / 1284,
  21216. bottom: 0.05
  21217. }
  21218. },
  21219. },
  21220. [
  21221. {
  21222. name: "Normal",
  21223. height: math.unit(5 + 9 / 12, "feet")
  21224. },
  21225. {
  21226. name: "Macro",
  21227. height: math.unit(30, "meters"),
  21228. default: true
  21229. },
  21230. ]
  21231. ))
  21232. characterMakers.push(() => makeCharacter(
  21233. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21234. {
  21235. front: {
  21236. height: math.unit(6, "feet"),
  21237. weight: math.unit(180, "lb"),
  21238. name: "Front",
  21239. image: {
  21240. source: "./media/characters/arokh-sieyes/front.svg",
  21241. extra: 1830 / 1769,
  21242. bottom: 0.01
  21243. }
  21244. },
  21245. },
  21246. [
  21247. {
  21248. name: "Normal",
  21249. height: math.unit(6, "feet")
  21250. },
  21251. {
  21252. name: "Macro",
  21253. height: math.unit(30, "meters"),
  21254. default: true
  21255. },
  21256. ]
  21257. ))
  21258. characterMakers.push(() => makeCharacter(
  21259. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  21260. {
  21261. side: {
  21262. height: math.unit(13 + 1 / 12, "feet"),
  21263. weight: math.unit(8.5, "tonnes"),
  21264. preyCapacity: math.unit(36, "people"),
  21265. name: "Side",
  21266. image: {
  21267. source: "./media/characters/goldeneye/side.svg",
  21268. extra: 1139/741,
  21269. bottom: 98/1237
  21270. }
  21271. },
  21272. front: {
  21273. height: math.unit(5.1, "feet"),
  21274. weight: math.unit(8.5, "tonnes"),
  21275. preyCapacity: math.unit(36, "people"),
  21276. name: "Front",
  21277. image: {
  21278. source: "./media/characters/goldeneye/front.svg",
  21279. extra: 635/365,
  21280. bottom: 598/1233
  21281. }
  21282. },
  21283. maw: {
  21284. height: math.unit(6.6, "feet"),
  21285. name: "Maw",
  21286. image: {
  21287. source: "./media/characters/goldeneye/maw.svg"
  21288. }
  21289. },
  21290. headFront: {
  21291. height: math.unit(8, "feet"),
  21292. name: "Head (Front)",
  21293. image: {
  21294. source: "./media/characters/goldeneye/head-front.svg"
  21295. }
  21296. },
  21297. headSide: {
  21298. height: math.unit(6, "feet"),
  21299. name: "Head (Side)",
  21300. image: {
  21301. source: "./media/characters/goldeneye/head-side.svg"
  21302. }
  21303. },
  21304. headBack: {
  21305. height: math.unit(8, "feet"),
  21306. name: "Head (Back)",
  21307. image: {
  21308. source: "./media/characters/goldeneye/head-back.svg"
  21309. }
  21310. },
  21311. paw: {
  21312. height: math.unit(3.4, "feet"),
  21313. name: "Paw",
  21314. image: {
  21315. source: "./media/characters/goldeneye/paw.svg"
  21316. }
  21317. },
  21318. toering: {
  21319. height: math.unit(0.45, "feet"),
  21320. name: "Toering",
  21321. image: {
  21322. source: "./media/characters/goldeneye/toering.svg"
  21323. }
  21324. },
  21325. eyes: {
  21326. height: math.unit(0.5, "feet"),
  21327. name: "Eyes",
  21328. image: {
  21329. source: "./media/characters/goldeneye/eyes.svg"
  21330. }
  21331. },
  21332. },
  21333. [
  21334. {
  21335. name: "Normal",
  21336. height: math.unit(13 + 1 / 12, "feet"),
  21337. default: true
  21338. },
  21339. ]
  21340. ))
  21341. characterMakers.push(() => makeCharacter(
  21342. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21343. {
  21344. front: {
  21345. height: math.unit(6 + 1 / 12, "feet"),
  21346. weight: math.unit(210, "lb"),
  21347. name: "Front",
  21348. image: {
  21349. source: "./media/characters/leonardo-lycheborne/front.svg",
  21350. extra: 776/723,
  21351. bottom: 34/810
  21352. }
  21353. },
  21354. side: {
  21355. height: math.unit(6 + 1 / 12, "feet"),
  21356. weight: math.unit(210, "lb"),
  21357. name: "Side",
  21358. image: {
  21359. source: "./media/characters/leonardo-lycheborne/side.svg",
  21360. extra: 780/728,
  21361. bottom: 12/792
  21362. }
  21363. },
  21364. back: {
  21365. height: math.unit(6 + 1 / 12, "feet"),
  21366. weight: math.unit(210, "lb"),
  21367. name: "Back",
  21368. image: {
  21369. source: "./media/characters/leonardo-lycheborne/back.svg",
  21370. extra: 775/721,
  21371. bottom: 17/792
  21372. }
  21373. },
  21374. hand: {
  21375. height: math.unit(1.08, "feet"),
  21376. name: "Hand",
  21377. image: {
  21378. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21379. }
  21380. },
  21381. foot: {
  21382. height: math.unit(1.32, "feet"),
  21383. name: "Foot",
  21384. image: {
  21385. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21386. }
  21387. },
  21388. maw: {
  21389. height: math.unit(1, "feet"),
  21390. name: "Maw",
  21391. image: {
  21392. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21393. }
  21394. },
  21395. were: {
  21396. height: math.unit(20, "feet"),
  21397. weight: math.unit(7800, "lb"),
  21398. name: "Were",
  21399. image: {
  21400. source: "./media/characters/leonardo-lycheborne/were.svg",
  21401. extra: 1224/1165,
  21402. bottom: 72/1296
  21403. }
  21404. },
  21405. feral: {
  21406. height: math.unit(7.5, "feet"),
  21407. weight: math.unit(600, "lb"),
  21408. name: "Feral",
  21409. image: {
  21410. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21411. extra: 797/702,
  21412. bottom: 139/936
  21413. }
  21414. },
  21415. taur: {
  21416. height: math.unit(11, "feet"),
  21417. weight: math.unit(3300, "lb"),
  21418. name: "Taur",
  21419. image: {
  21420. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21421. extra: 1271/1197,
  21422. bottom: 47/1318
  21423. }
  21424. },
  21425. barghest: {
  21426. height: math.unit(11, "feet"),
  21427. weight: math.unit(1300, "lb"),
  21428. name: "Barghest",
  21429. image: {
  21430. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21431. extra: 1291/1204,
  21432. bottom: 37/1328
  21433. }
  21434. },
  21435. dick: {
  21436. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21437. name: "Dick",
  21438. image: {
  21439. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21440. }
  21441. },
  21442. dickWere: {
  21443. height: math.unit((20) / 3.8, "feet"),
  21444. name: "Dick (Were)",
  21445. image: {
  21446. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21447. }
  21448. },
  21449. },
  21450. [
  21451. {
  21452. name: "Normal",
  21453. height: math.unit(6 + 1 / 12, "feet"),
  21454. default: true
  21455. },
  21456. ]
  21457. ))
  21458. characterMakers.push(() => makeCharacter(
  21459. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21460. {
  21461. front: {
  21462. height: math.unit(10, "feet"),
  21463. weight: math.unit(350, "lb"),
  21464. name: "Front",
  21465. image: {
  21466. source: "./media/characters/jet/front.svg",
  21467. extra: 2050 / 1980,
  21468. bottom: 0.013
  21469. }
  21470. },
  21471. back: {
  21472. height: math.unit(10, "feet"),
  21473. weight: math.unit(350, "lb"),
  21474. name: "Back",
  21475. image: {
  21476. source: "./media/characters/jet/back.svg",
  21477. extra: 2050 / 1980,
  21478. bottom: 0.013
  21479. }
  21480. },
  21481. },
  21482. [
  21483. {
  21484. name: "Micro",
  21485. height: math.unit(6, "inches")
  21486. },
  21487. {
  21488. name: "Normal",
  21489. height: math.unit(10, "feet"),
  21490. default: true
  21491. },
  21492. {
  21493. name: "Macro",
  21494. height: math.unit(100, "feet")
  21495. },
  21496. ]
  21497. ))
  21498. characterMakers.push(() => makeCharacter(
  21499. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21500. {
  21501. front: {
  21502. height: math.unit(15, "feet"),
  21503. weight: math.unit(2800, "lb"),
  21504. name: "Front",
  21505. image: {
  21506. source: "./media/characters/tanarath/front.svg",
  21507. extra: 2392 / 2220,
  21508. bottom: 0.03
  21509. }
  21510. },
  21511. back: {
  21512. height: math.unit(15, "feet"),
  21513. weight: math.unit(2800, "lb"),
  21514. name: "Back",
  21515. image: {
  21516. source: "./media/characters/tanarath/back.svg",
  21517. extra: 2392 / 2220,
  21518. bottom: 0.03
  21519. }
  21520. },
  21521. },
  21522. [
  21523. {
  21524. name: "Normal",
  21525. height: math.unit(15, "feet"),
  21526. default: true
  21527. },
  21528. ]
  21529. ))
  21530. characterMakers.push(() => makeCharacter(
  21531. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21532. {
  21533. front: {
  21534. height: math.unit(7 + 1 / 12, "feet"),
  21535. weight: math.unit(175, "lb"),
  21536. name: "Front",
  21537. image: {
  21538. source: "./media/characters/patty-cattybatty/front.svg",
  21539. extra: 908 / 874,
  21540. bottom: 0.025
  21541. }
  21542. },
  21543. },
  21544. [
  21545. {
  21546. name: "Micro",
  21547. height: math.unit(1, "inch")
  21548. },
  21549. {
  21550. name: "Normal",
  21551. height: math.unit(7 + 1 / 12, "feet")
  21552. },
  21553. {
  21554. name: "Mini Macro",
  21555. height: math.unit(155, "feet")
  21556. },
  21557. {
  21558. name: "Macro",
  21559. height: math.unit(1077, "feet")
  21560. },
  21561. {
  21562. name: "Mega Macro",
  21563. height: math.unit(47650, "feet"),
  21564. default: true
  21565. },
  21566. {
  21567. name: "Giga Macro",
  21568. height: math.unit(440, "miles")
  21569. },
  21570. {
  21571. name: "Tera Macro",
  21572. height: math.unit(8700, "miles")
  21573. },
  21574. {
  21575. name: "Planetary Macro",
  21576. height: math.unit(32700, "miles")
  21577. },
  21578. {
  21579. name: "Solar Macro",
  21580. height: math.unit(550000, "miles")
  21581. },
  21582. {
  21583. name: "Celestial Macro",
  21584. height: math.unit(2.5, "AU")
  21585. },
  21586. ]
  21587. ))
  21588. characterMakers.push(() => makeCharacter(
  21589. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21590. {
  21591. front: {
  21592. height: math.unit(4 + 5 / 12, "feet"),
  21593. weight: math.unit(90, "lb"),
  21594. name: "Front",
  21595. image: {
  21596. source: "./media/characters/cappu/front.svg",
  21597. extra: 1247 / 1152,
  21598. bottom: 0.012
  21599. }
  21600. },
  21601. },
  21602. [
  21603. {
  21604. name: "Normal",
  21605. height: math.unit(4 + 5 / 12, "feet"),
  21606. default: true
  21607. },
  21608. ]
  21609. ))
  21610. characterMakers.push(() => makeCharacter(
  21611. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21612. {
  21613. frontDressed: {
  21614. height: math.unit(70, "cm"),
  21615. weight: math.unit(6, "kg"),
  21616. name: "Front (Dressed)",
  21617. image: {
  21618. source: "./media/characters/sebi/front-dressed.svg",
  21619. extra: 713.5 / 686.5,
  21620. bottom: 0.003
  21621. }
  21622. },
  21623. front: {
  21624. height: math.unit(70, "cm"),
  21625. weight: math.unit(5, "kg"),
  21626. name: "Front",
  21627. image: {
  21628. source: "./media/characters/sebi/front.svg",
  21629. extra: 713.5 / 686.5,
  21630. bottom: 0.003
  21631. }
  21632. }
  21633. },
  21634. [
  21635. {
  21636. name: "Normal",
  21637. height: math.unit(70, "cm"),
  21638. default: true
  21639. },
  21640. {
  21641. name: "Macro",
  21642. height: math.unit(8, "meters")
  21643. },
  21644. ]
  21645. ))
  21646. characterMakers.push(() => makeCharacter(
  21647. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21648. {
  21649. front: {
  21650. height: math.unit(6, "feet"),
  21651. weight: math.unit(150, "lb"),
  21652. name: "Front",
  21653. image: {
  21654. source: "./media/characters/typhek/front.svg",
  21655. extra: 1948 / 1929,
  21656. bottom: 0.025
  21657. }
  21658. },
  21659. side: {
  21660. height: math.unit(6, "feet"),
  21661. weight: math.unit(150, "lb"),
  21662. name: "Side",
  21663. image: {
  21664. source: "./media/characters/typhek/side.svg",
  21665. extra: 2034 / 2010,
  21666. bottom: 0.003
  21667. }
  21668. },
  21669. back: {
  21670. height: math.unit(6, "feet"),
  21671. weight: math.unit(150, "lb"),
  21672. name: "Back",
  21673. image: {
  21674. source: "./media/characters/typhek/back.svg",
  21675. extra: 2005 / 1978,
  21676. bottom: 0.004
  21677. }
  21678. },
  21679. palm: {
  21680. height: math.unit(1.2, "feet"),
  21681. name: "Palm",
  21682. image: {
  21683. source: "./media/characters/typhek/palm.svg"
  21684. }
  21685. },
  21686. fist: {
  21687. height: math.unit(1.1, "feet"),
  21688. name: "Fist",
  21689. image: {
  21690. source: "./media/characters/typhek/fist.svg"
  21691. }
  21692. },
  21693. foot: {
  21694. height: math.unit(1.57, "feet"),
  21695. name: "Foot",
  21696. image: {
  21697. source: "./media/characters/typhek/foot.svg"
  21698. }
  21699. },
  21700. sole: {
  21701. height: math.unit(2.05, "feet"),
  21702. name: "Sole",
  21703. image: {
  21704. source: "./media/characters/typhek/sole.svg"
  21705. }
  21706. },
  21707. },
  21708. [
  21709. {
  21710. name: "Macro",
  21711. height: math.unit(40, "stories"),
  21712. default: true
  21713. },
  21714. {
  21715. name: "Megamacro",
  21716. height: math.unit(1, "mile")
  21717. },
  21718. {
  21719. name: "Gigamacro",
  21720. height: math.unit(4000, "solarradii")
  21721. },
  21722. {
  21723. name: "Universal",
  21724. height: math.unit(1.1, "universes")
  21725. }
  21726. ]
  21727. ))
  21728. characterMakers.push(() => makeCharacter(
  21729. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21730. {
  21731. side: {
  21732. height: math.unit(5 + 7 / 12, "feet"),
  21733. weight: math.unit(150, "lb"),
  21734. name: "Side",
  21735. image: {
  21736. source: "./media/characters/kassy/side.svg",
  21737. extra: 1280 / 1225,
  21738. bottom: 0.002
  21739. }
  21740. },
  21741. front: {
  21742. height: math.unit(5 + 7 / 12, "feet"),
  21743. weight: math.unit(150, "lb"),
  21744. name: "Front",
  21745. image: {
  21746. source: "./media/characters/kassy/front.svg",
  21747. extra: 1280 / 1225,
  21748. bottom: 0.025
  21749. }
  21750. },
  21751. back: {
  21752. height: math.unit(5 + 7 / 12, "feet"),
  21753. weight: math.unit(150, "lb"),
  21754. name: "Back",
  21755. image: {
  21756. source: "./media/characters/kassy/back.svg",
  21757. extra: 1280 / 1225,
  21758. bottom: 0.002
  21759. }
  21760. },
  21761. foot: {
  21762. height: math.unit(1.266, "feet"),
  21763. name: "Foot",
  21764. image: {
  21765. source: "./media/characters/kassy/foot.svg"
  21766. }
  21767. },
  21768. },
  21769. [
  21770. {
  21771. name: "Normal",
  21772. height: math.unit(5 + 7 / 12, "feet")
  21773. },
  21774. {
  21775. name: "Macro",
  21776. height: math.unit(137, "feet"),
  21777. default: true
  21778. },
  21779. {
  21780. name: "Megamacro",
  21781. height: math.unit(1, "mile")
  21782. },
  21783. ]
  21784. ))
  21785. characterMakers.push(() => makeCharacter(
  21786. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21787. {
  21788. front: {
  21789. height: math.unit(6 + 1 / 12, "feet"),
  21790. weight: math.unit(200, "lb"),
  21791. name: "Front",
  21792. image: {
  21793. source: "./media/characters/neil/front.svg",
  21794. extra: 1326 / 1250,
  21795. bottom: 0.023
  21796. }
  21797. },
  21798. },
  21799. [
  21800. {
  21801. name: "Normal",
  21802. height: math.unit(6 + 1 / 12, "feet"),
  21803. default: true
  21804. },
  21805. {
  21806. name: "Macro",
  21807. height: math.unit(200, "feet")
  21808. },
  21809. ]
  21810. ))
  21811. characterMakers.push(() => makeCharacter(
  21812. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21813. {
  21814. front: {
  21815. height: math.unit(5 + 9 / 12, "feet"),
  21816. weight: math.unit(190, "lb"),
  21817. name: "Front",
  21818. image: {
  21819. source: "./media/characters/atticus/front.svg",
  21820. extra: 2934 / 2785,
  21821. bottom: 0.025
  21822. }
  21823. },
  21824. },
  21825. [
  21826. {
  21827. name: "Normal",
  21828. height: math.unit(5 + 9 / 12, "feet"),
  21829. default: true
  21830. },
  21831. {
  21832. name: "Macro",
  21833. height: math.unit(180, "feet")
  21834. },
  21835. ]
  21836. ))
  21837. characterMakers.push(() => makeCharacter(
  21838. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21839. {
  21840. side: {
  21841. height: math.unit(9, "feet"),
  21842. weight: math.unit(650, "lb"),
  21843. name: "Side",
  21844. image: {
  21845. source: "./media/characters/milo/side.svg",
  21846. extra: 2644 / 2310,
  21847. bottom: 0.032
  21848. }
  21849. },
  21850. },
  21851. [
  21852. {
  21853. name: "Normal",
  21854. height: math.unit(9, "feet"),
  21855. default: true
  21856. },
  21857. {
  21858. name: "Macro",
  21859. height: math.unit(300, "feet")
  21860. },
  21861. ]
  21862. ))
  21863. characterMakers.push(() => makeCharacter(
  21864. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21865. {
  21866. side: {
  21867. height: math.unit(8, "meters"),
  21868. weight: math.unit(90000, "kg"),
  21869. name: "Side",
  21870. image: {
  21871. source: "./media/characters/ijzer/side.svg",
  21872. extra: 2756 / 1600,
  21873. bottom: 0.01
  21874. }
  21875. },
  21876. },
  21877. [
  21878. {
  21879. name: "Small",
  21880. height: math.unit(3, "meters")
  21881. },
  21882. {
  21883. name: "Normal",
  21884. height: math.unit(8, "meters"),
  21885. default: true
  21886. },
  21887. {
  21888. name: "Normal+",
  21889. height: math.unit(10, "meters")
  21890. },
  21891. {
  21892. name: "Bigger",
  21893. height: math.unit(24, "meters")
  21894. },
  21895. {
  21896. name: "Huge",
  21897. height: math.unit(80, "meters")
  21898. },
  21899. ]
  21900. ))
  21901. characterMakers.push(() => makeCharacter(
  21902. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21903. {
  21904. front: {
  21905. height: math.unit(6 + 2 / 12, "feet"),
  21906. weight: math.unit(153, "lb"),
  21907. name: "Front",
  21908. image: {
  21909. source: "./media/characters/luca-cervicum/front.svg",
  21910. extra: 370 / 327,
  21911. bottom: 0.015
  21912. }
  21913. },
  21914. back: {
  21915. height: math.unit(6 + 2 / 12, "feet"),
  21916. weight: math.unit(153, "lb"),
  21917. name: "Back",
  21918. image: {
  21919. source: "./media/characters/luca-cervicum/back.svg",
  21920. extra: 367 / 333,
  21921. bottom: 0.005
  21922. }
  21923. },
  21924. frontGear: {
  21925. height: math.unit(6 + 2 / 12, "feet"),
  21926. weight: math.unit(173, "lb"),
  21927. name: "Front (Gear)",
  21928. image: {
  21929. source: "./media/characters/luca-cervicum/front-gear.svg",
  21930. extra: 377 / 333,
  21931. bottom: 0.006
  21932. }
  21933. },
  21934. },
  21935. [
  21936. {
  21937. name: "Normal",
  21938. height: math.unit(6 + 2 / 12, "feet"),
  21939. default: true
  21940. },
  21941. ]
  21942. ))
  21943. characterMakers.push(() => makeCharacter(
  21944. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21945. {
  21946. front: {
  21947. height: math.unit(6 + 1 / 12, "feet"),
  21948. weight: math.unit(304, "lb"),
  21949. name: "Front",
  21950. image: {
  21951. source: "./media/characters/oliver/front.svg",
  21952. extra: 157 / 143,
  21953. bottom: 0.08
  21954. }
  21955. },
  21956. },
  21957. [
  21958. {
  21959. name: "Normal",
  21960. height: math.unit(6 + 1 / 12, "feet"),
  21961. default: true
  21962. },
  21963. ]
  21964. ))
  21965. characterMakers.push(() => makeCharacter(
  21966. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21967. {
  21968. front: {
  21969. height: math.unit(5 + 7 / 12, "feet"),
  21970. weight: math.unit(140, "lb"),
  21971. name: "Front",
  21972. image: {
  21973. source: "./media/characters/shane/front.svg",
  21974. extra: 304 / 289,
  21975. bottom: 0.005
  21976. }
  21977. },
  21978. },
  21979. [
  21980. {
  21981. name: "Normal",
  21982. height: math.unit(5 + 7 / 12, "feet"),
  21983. default: true
  21984. },
  21985. ]
  21986. ))
  21987. characterMakers.push(() => makeCharacter(
  21988. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21989. {
  21990. front: {
  21991. height: math.unit(5 + 9 / 12, "feet"),
  21992. weight: math.unit(178, "lb"),
  21993. name: "Front",
  21994. image: {
  21995. source: "./media/characters/shin/front.svg",
  21996. extra: 159 / 151,
  21997. bottom: 0.015
  21998. }
  21999. },
  22000. },
  22001. [
  22002. {
  22003. name: "Normal",
  22004. height: math.unit(5 + 9 / 12, "feet"),
  22005. default: true
  22006. },
  22007. ]
  22008. ))
  22009. characterMakers.push(() => makeCharacter(
  22010. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  22011. {
  22012. front: {
  22013. height: math.unit(5 + 10 / 12, "feet"),
  22014. weight: math.unit(168, "lb"),
  22015. name: "Front",
  22016. image: {
  22017. source: "./media/characters/xerxes/front.svg",
  22018. extra: 282 / 260,
  22019. bottom: 0.045
  22020. }
  22021. },
  22022. },
  22023. [
  22024. {
  22025. name: "Normal",
  22026. height: math.unit(5 + 10 / 12, "feet"),
  22027. default: true
  22028. },
  22029. ]
  22030. ))
  22031. characterMakers.push(() => makeCharacter(
  22032. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  22033. {
  22034. front: {
  22035. height: math.unit(6 + 7 / 12, "feet"),
  22036. weight: math.unit(208, "lb"),
  22037. name: "Front",
  22038. image: {
  22039. source: "./media/characters/chaska/front.svg",
  22040. extra: 332 / 319,
  22041. bottom: 0.015
  22042. }
  22043. },
  22044. },
  22045. [
  22046. {
  22047. name: "Normal",
  22048. height: math.unit(6 + 7 / 12, "feet"),
  22049. default: true
  22050. },
  22051. ]
  22052. ))
  22053. characterMakers.push(() => makeCharacter(
  22054. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  22055. {
  22056. front: {
  22057. height: math.unit(5 + 8 / 12, "feet"),
  22058. weight: math.unit(208, "lb"),
  22059. name: "Front",
  22060. image: {
  22061. source: "./media/characters/enuk/front.svg",
  22062. extra: 437 / 406,
  22063. bottom: 0.02
  22064. }
  22065. },
  22066. },
  22067. [
  22068. {
  22069. name: "Normal",
  22070. height: math.unit(5 + 8 / 12, "feet"),
  22071. default: true
  22072. },
  22073. ]
  22074. ))
  22075. characterMakers.push(() => makeCharacter(
  22076. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  22077. {
  22078. front: {
  22079. height: math.unit(5 + 10 / 12, "feet"),
  22080. weight: math.unit(252, "lb"),
  22081. name: "Front",
  22082. image: {
  22083. source: "./media/characters/bruun/front.svg",
  22084. extra: 197 / 187,
  22085. bottom: 0.012
  22086. }
  22087. },
  22088. },
  22089. [
  22090. {
  22091. name: "Normal",
  22092. height: math.unit(5 + 10 / 12, "feet"),
  22093. default: true
  22094. },
  22095. ]
  22096. ))
  22097. characterMakers.push(() => makeCharacter(
  22098. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  22099. {
  22100. front: {
  22101. height: math.unit(6 + 10 / 12, "feet"),
  22102. weight: math.unit(255, "lb"),
  22103. name: "Front",
  22104. image: {
  22105. source: "./media/characters/alexeev/front.svg",
  22106. extra: 213 / 200,
  22107. bottom: 0.05
  22108. }
  22109. },
  22110. },
  22111. [
  22112. {
  22113. name: "Normal",
  22114. height: math.unit(6 + 10 / 12, "feet"),
  22115. default: true
  22116. },
  22117. ]
  22118. ))
  22119. characterMakers.push(() => makeCharacter(
  22120. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  22121. {
  22122. front: {
  22123. height: math.unit(2 + 8 / 12, "feet"),
  22124. weight: math.unit(22, "lb"),
  22125. name: "Front",
  22126. image: {
  22127. source: "./media/characters/evelyn/front.svg",
  22128. extra: 208 / 180
  22129. }
  22130. },
  22131. },
  22132. [
  22133. {
  22134. name: "Normal",
  22135. height: math.unit(2 + 8 / 12, "feet"),
  22136. default: true
  22137. },
  22138. ]
  22139. ))
  22140. characterMakers.push(() => makeCharacter(
  22141. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  22142. {
  22143. front: {
  22144. height: math.unit(5 + 9 / 12, "feet"),
  22145. weight: math.unit(139, "lb"),
  22146. name: "Front",
  22147. image: {
  22148. source: "./media/characters/inca/front.svg",
  22149. extra: 294 / 291,
  22150. bottom: 0.03
  22151. }
  22152. },
  22153. },
  22154. [
  22155. {
  22156. name: "Normal",
  22157. height: math.unit(5 + 9 / 12, "feet"),
  22158. default: true
  22159. },
  22160. ]
  22161. ))
  22162. characterMakers.push(() => makeCharacter(
  22163. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  22164. {
  22165. front: {
  22166. height: math.unit(6 + 3 / 12, "feet"),
  22167. weight: math.unit(185, "lb"),
  22168. name: "Front",
  22169. image: {
  22170. source: "./media/characters/mera/front.svg",
  22171. extra: 291 / 277,
  22172. bottom: 0.03
  22173. }
  22174. },
  22175. },
  22176. [
  22177. {
  22178. name: "Normal",
  22179. height: math.unit(6 + 3 / 12, "feet"),
  22180. default: true
  22181. },
  22182. ]
  22183. ))
  22184. characterMakers.push(() => makeCharacter(
  22185. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  22186. {
  22187. front: {
  22188. height: math.unit(6 + 7 / 12, "feet"),
  22189. weight: math.unit(160, "lb"),
  22190. name: "Front",
  22191. image: {
  22192. source: "./media/characters/ceres/front.svg",
  22193. extra: 1023 / 950,
  22194. bottom: 0.027
  22195. }
  22196. },
  22197. back: {
  22198. height: math.unit(6 + 7 / 12, "feet"),
  22199. weight: math.unit(160, "lb"),
  22200. name: "Back",
  22201. image: {
  22202. source: "./media/characters/ceres/back.svg",
  22203. extra: 1023 / 950
  22204. }
  22205. },
  22206. },
  22207. [
  22208. {
  22209. name: "Normal",
  22210. height: math.unit(6 + 7 / 12, "feet"),
  22211. default: true
  22212. },
  22213. ]
  22214. ))
  22215. characterMakers.push(() => makeCharacter(
  22216. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  22217. {
  22218. front: {
  22219. height: math.unit(5 + 10 / 12, "feet"),
  22220. weight: math.unit(150, "lb"),
  22221. name: "Front",
  22222. image: {
  22223. source: "./media/characters/kris/front.svg",
  22224. extra: 885 / 803,
  22225. bottom: 0.03
  22226. }
  22227. },
  22228. },
  22229. [
  22230. {
  22231. name: "Normal",
  22232. height: math.unit(5 + 10 / 12, "feet"),
  22233. default: true
  22234. },
  22235. ]
  22236. ))
  22237. characterMakers.push(() => makeCharacter(
  22238. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  22239. {
  22240. dragon_front: {
  22241. height: math.unit(5, "feet"),
  22242. name: "Front",
  22243. image: {
  22244. source: "./media/characters/taluthus/dragon-front.svg",
  22245. extra: 1203/1098,
  22246. bottom: 46/1249
  22247. },
  22248. form: "dragon",
  22249. default: true
  22250. },
  22251. dragon_maw: {
  22252. height: math.unit(2.35, "feet"),
  22253. name: "Maw",
  22254. image: {
  22255. source: "./media/characters/taluthus/dragon-maw.svg"
  22256. },
  22257. form: "dragon",
  22258. },
  22259. kitsune_front: {
  22260. height: math.unit(7, "feet"),
  22261. name: "Front",
  22262. image: {
  22263. source: "./media/characters/taluthus/kitsune-front.svg",
  22264. extra: 900/841,
  22265. bottom: 65/965
  22266. },
  22267. form: "kitsune",
  22268. default: true
  22269. },
  22270. },
  22271. [
  22272. {
  22273. name: "Normal",
  22274. height: math.unit(5, "feet"),
  22275. form: "dragon",
  22276. default: true,
  22277. },
  22278. {
  22279. name: "Normal",
  22280. height: math.unit(7, "feet"),
  22281. form: "kitsune",
  22282. default: true
  22283. },
  22284. {
  22285. name: "Macro",
  22286. height: math.unit(300, "feet"),
  22287. allForms: true
  22288. },
  22289. ],
  22290. {
  22291. "dragon": {
  22292. name: "Dragon",
  22293. default: true
  22294. },
  22295. "kitsune": {
  22296. name: "Kitsune",
  22297. },
  22298. }
  22299. ))
  22300. characterMakers.push(() => makeCharacter(
  22301. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22302. {
  22303. front: {
  22304. height: math.unit(5 + 9 / 12, "feet"),
  22305. weight: math.unit(145, "lb"),
  22306. name: "Front",
  22307. image: {
  22308. source: "./media/characters/dawn/front.svg",
  22309. extra: 2094 / 2016,
  22310. bottom: 0.025
  22311. }
  22312. },
  22313. back: {
  22314. height: math.unit(5 + 9 / 12, "feet"),
  22315. weight: math.unit(160, "lb"),
  22316. name: "Back",
  22317. image: {
  22318. source: "./media/characters/dawn/back.svg",
  22319. extra: 2112 / 2080,
  22320. bottom: 0.005
  22321. }
  22322. },
  22323. },
  22324. [
  22325. {
  22326. name: "Normal",
  22327. height: math.unit(6 + 7 / 12, "feet"),
  22328. default: true
  22329. },
  22330. ]
  22331. ))
  22332. characterMakers.push(() => makeCharacter(
  22333. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22334. {
  22335. anthro: {
  22336. height: math.unit(8 + 3 / 12, "feet"),
  22337. weight: math.unit(450, "lb"),
  22338. name: "Anthro",
  22339. image: {
  22340. source: "./media/characters/arador/anthro.svg",
  22341. extra: 1835 / 1718,
  22342. bottom: 0.025
  22343. }
  22344. },
  22345. feral: {
  22346. height: math.unit(4, "feet"),
  22347. weight: math.unit(200, "lb"),
  22348. name: "Feral",
  22349. image: {
  22350. source: "./media/characters/arador/feral.svg",
  22351. extra: 1683 / 1514,
  22352. bottom: 0.07
  22353. }
  22354. },
  22355. },
  22356. [
  22357. {
  22358. name: "Normal",
  22359. height: math.unit(8 + 3 / 12, "feet")
  22360. },
  22361. {
  22362. name: "Macro",
  22363. height: math.unit(82.5, "feet"),
  22364. default: true
  22365. },
  22366. ]
  22367. ))
  22368. characterMakers.push(() => makeCharacter(
  22369. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22370. {
  22371. front: {
  22372. height: math.unit(5 + 10 / 12, "feet"),
  22373. weight: math.unit(125, "lb"),
  22374. name: "Front",
  22375. image: {
  22376. source: "./media/characters/dharsi/front.svg",
  22377. extra: 716 / 630,
  22378. bottom: 0.035
  22379. }
  22380. },
  22381. },
  22382. [
  22383. {
  22384. name: "Nano",
  22385. height: math.unit(100, "nm")
  22386. },
  22387. {
  22388. name: "Micro",
  22389. height: math.unit(2, "inches")
  22390. },
  22391. {
  22392. name: "Normal",
  22393. height: math.unit(5 + 10 / 12, "feet"),
  22394. default: true
  22395. },
  22396. {
  22397. name: "Macro",
  22398. height: math.unit(1000, "feet")
  22399. },
  22400. {
  22401. name: "Megamacro",
  22402. height: math.unit(10, "miles")
  22403. },
  22404. {
  22405. name: "Gigamacro",
  22406. height: math.unit(3000, "miles")
  22407. },
  22408. {
  22409. name: "Teramacro",
  22410. height: math.unit(500000, "miles")
  22411. },
  22412. {
  22413. name: "Teramacro+",
  22414. height: math.unit(30, "galaxies")
  22415. },
  22416. ]
  22417. ))
  22418. characterMakers.push(() => makeCharacter(
  22419. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22420. {
  22421. front: {
  22422. height: math.unit(6, "feet"),
  22423. weight: math.unit(150, "lb"),
  22424. name: "Front",
  22425. image: {
  22426. source: "./media/characters/deathy/front.svg",
  22427. extra: 1552 / 1463,
  22428. bottom: 0.025
  22429. }
  22430. },
  22431. side: {
  22432. height: math.unit(6, "feet"),
  22433. weight: math.unit(150, "lb"),
  22434. name: "Side",
  22435. image: {
  22436. source: "./media/characters/deathy/side.svg",
  22437. extra: 1604 / 1455,
  22438. bottom: 0.025
  22439. }
  22440. },
  22441. back: {
  22442. height: math.unit(6, "feet"),
  22443. weight: math.unit(150, "lb"),
  22444. name: "Back",
  22445. image: {
  22446. source: "./media/characters/deathy/back.svg",
  22447. extra: 1580 / 1463,
  22448. bottom: 0.005
  22449. }
  22450. },
  22451. },
  22452. [
  22453. {
  22454. name: "Micro",
  22455. height: math.unit(5, "millimeters")
  22456. },
  22457. {
  22458. name: "Normal",
  22459. height: math.unit(6 + 5 / 12, "feet"),
  22460. default: true
  22461. },
  22462. ]
  22463. ))
  22464. characterMakers.push(() => makeCharacter(
  22465. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22466. {
  22467. front: {
  22468. height: math.unit(16, "feet"),
  22469. weight: math.unit(4000, "lb"),
  22470. name: "Front",
  22471. image: {
  22472. source: "./media/characters/juniper/front.svg",
  22473. bottom: 0.04
  22474. }
  22475. },
  22476. },
  22477. [
  22478. {
  22479. name: "Normal",
  22480. height: math.unit(16, "feet"),
  22481. default: true
  22482. },
  22483. ]
  22484. ))
  22485. characterMakers.push(() => makeCharacter(
  22486. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22487. {
  22488. front: {
  22489. height: math.unit(6, "feet"),
  22490. weight: math.unit(150, "lb"),
  22491. name: "Front",
  22492. image: {
  22493. source: "./media/characters/hipster/front.svg",
  22494. extra: 1312 / 1209,
  22495. bottom: 0.025
  22496. }
  22497. },
  22498. back: {
  22499. height: math.unit(6, "feet"),
  22500. weight: math.unit(150, "lb"),
  22501. name: "Back",
  22502. image: {
  22503. source: "./media/characters/hipster/back.svg",
  22504. extra: 1281 / 1196,
  22505. bottom: 0.01
  22506. }
  22507. },
  22508. },
  22509. [
  22510. {
  22511. name: "Micro",
  22512. height: math.unit(1, "mm")
  22513. },
  22514. {
  22515. name: "Normal",
  22516. height: math.unit(4, "inches"),
  22517. default: true
  22518. },
  22519. {
  22520. name: "Macro",
  22521. height: math.unit(500, "feet")
  22522. },
  22523. {
  22524. name: "Megamacro",
  22525. height: math.unit(1000, "miles")
  22526. },
  22527. ]
  22528. ))
  22529. characterMakers.push(() => makeCharacter(
  22530. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22531. {
  22532. front: {
  22533. height: math.unit(6, "feet"),
  22534. weight: math.unit(150, "lb"),
  22535. name: "Front",
  22536. image: {
  22537. source: "./media/characters/tendirmuldr/front.svg",
  22538. extra: 1878 / 1772,
  22539. bottom: 0.015
  22540. }
  22541. },
  22542. },
  22543. [
  22544. {
  22545. name: "Megamacro",
  22546. height: math.unit(1500, "miles"),
  22547. default: true
  22548. },
  22549. ]
  22550. ))
  22551. characterMakers.push(() => makeCharacter(
  22552. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22553. {
  22554. front: {
  22555. height: math.unit(14, "feet"),
  22556. weight: math.unit(12000, "lb"),
  22557. name: "Front",
  22558. image: {
  22559. source: "./media/characters/mort/front.svg",
  22560. extra: 365 / 318,
  22561. bottom: 0.01
  22562. }
  22563. },
  22564. side: {
  22565. height: math.unit(14, "feet"),
  22566. weight: math.unit(12000, "lb"),
  22567. name: "Side",
  22568. image: {
  22569. source: "./media/characters/mort/side.svg",
  22570. extra: 365 / 318,
  22571. bottom: 0.052
  22572. },
  22573. default: true
  22574. },
  22575. back: {
  22576. height: math.unit(14, "feet"),
  22577. weight: math.unit(12000, "lb"),
  22578. name: "Back",
  22579. image: {
  22580. source: "./media/characters/mort/back.svg",
  22581. extra: 371 / 332,
  22582. bottom: 0.18
  22583. }
  22584. },
  22585. },
  22586. [
  22587. {
  22588. name: "Normal",
  22589. height: math.unit(14, "feet"),
  22590. default: true
  22591. },
  22592. ]
  22593. ))
  22594. characterMakers.push(() => makeCharacter(
  22595. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22596. {
  22597. front: {
  22598. height: math.unit(8, "feet"),
  22599. weight: math.unit(1, "ton"),
  22600. name: "Front",
  22601. image: {
  22602. source: "./media/characters/lycoa/front.svg",
  22603. extra: 1836/1728,
  22604. bottom: 81/1917
  22605. }
  22606. },
  22607. back: {
  22608. height: math.unit(8, "feet"),
  22609. weight: math.unit(1, "ton"),
  22610. name: "Back",
  22611. image: {
  22612. source: "./media/characters/lycoa/back.svg",
  22613. extra: 1785/1720,
  22614. bottom: 91/1876
  22615. }
  22616. },
  22617. head: {
  22618. height: math.unit(1.6243, "feet"),
  22619. name: "Head",
  22620. image: {
  22621. source: "./media/characters/lycoa/head.svg",
  22622. extra: 1011/782,
  22623. bottom: 0/1011
  22624. }
  22625. },
  22626. tailmaw: {
  22627. height: math.unit(1.9, "feet"),
  22628. name: "Tailmaw",
  22629. image: {
  22630. source: "./media/characters/lycoa/tailmaw.svg"
  22631. }
  22632. },
  22633. tentacles: {
  22634. height: math.unit(2.1, "feet"),
  22635. name: "Tentacles",
  22636. image: {
  22637. source: "./media/characters/lycoa/tentacles.svg"
  22638. }
  22639. },
  22640. dick: {
  22641. height: math.unit(1.73, "feet"),
  22642. name: "Dick",
  22643. image: {
  22644. source: "./media/characters/lycoa/dick.svg"
  22645. }
  22646. },
  22647. },
  22648. [
  22649. {
  22650. name: "Normal",
  22651. height: math.unit(8, "feet"),
  22652. default: true
  22653. },
  22654. {
  22655. name: "Macro",
  22656. height: math.unit(30, "feet")
  22657. },
  22658. ]
  22659. ))
  22660. characterMakers.push(() => makeCharacter(
  22661. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22662. {
  22663. front: {
  22664. height: math.unit(4 + 2 / 12, "feet"),
  22665. weight: math.unit(70, "lb"),
  22666. name: "Front",
  22667. image: {
  22668. source: "./media/characters/naldara/front.svg",
  22669. extra: 1664/1387,
  22670. bottom: 81/1745
  22671. },
  22672. form: "anthro",
  22673. default: true
  22674. },
  22675. naga: {
  22676. height: math.unit(20, "feet"),
  22677. weight: math.unit(15000, "kg"),
  22678. name: "Front",
  22679. image: {
  22680. source: "./media/characters/naldara/naga.svg",
  22681. extra: 1590/1396,
  22682. bottom: 285/1875
  22683. },
  22684. form: "naga",
  22685. default: true
  22686. },
  22687. },
  22688. [
  22689. {
  22690. name: "Normal",
  22691. height: math.unit(4 + 2 / 12, "feet"),
  22692. form: "anthro",
  22693. default: true
  22694. },
  22695. {
  22696. name: "Normal",
  22697. height: math.unit(20, "feet"),
  22698. form: "naga",
  22699. default: true
  22700. },
  22701. ],
  22702. {
  22703. "anthro": {
  22704. name: "Anthro",
  22705. default: true
  22706. },
  22707. "naga": {
  22708. name: "Naga"
  22709. }
  22710. }
  22711. ))
  22712. characterMakers.push(() => makeCharacter(
  22713. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22714. {
  22715. front: {
  22716. height: math.unit(13 + 7 / 12, "feet"),
  22717. weight: math.unit(1500, "lb"),
  22718. name: "Front",
  22719. image: {
  22720. source: "./media/characters/briar/front.svg",
  22721. extra: 1223/1157,
  22722. bottom: 123/1346
  22723. }
  22724. },
  22725. },
  22726. [
  22727. {
  22728. name: "Normal",
  22729. height: math.unit(13 + 7 / 12, "feet"),
  22730. default: true
  22731. },
  22732. ]
  22733. ))
  22734. characterMakers.push(() => makeCharacter(
  22735. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22736. {
  22737. side: {
  22738. height: math.unit(16, "feet"),
  22739. weight: math.unit(500, "lb"),
  22740. name: "Side",
  22741. image: {
  22742. source: "./media/characters/vanguard/side.svg",
  22743. extra: 1022/914,
  22744. bottom: 30/1052
  22745. }
  22746. },
  22747. sideAlt: {
  22748. height: math.unit(10, "feet"),
  22749. weight: math.unit(500, "lb"),
  22750. name: "Side (Alt)",
  22751. image: {
  22752. source: "./media/characters/vanguard/side-alt.svg",
  22753. extra: 502 / 425,
  22754. bottom: 0.087
  22755. }
  22756. },
  22757. },
  22758. [
  22759. {
  22760. name: "Normal",
  22761. height: math.unit(17.71, "feet"),
  22762. default: true
  22763. },
  22764. ]
  22765. ))
  22766. characterMakers.push(() => makeCharacter(
  22767. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22768. {
  22769. front: {
  22770. height: math.unit(7.5, "feet"),
  22771. weight: math.unit(2, "lb"),
  22772. name: "Front",
  22773. image: {
  22774. source: "./media/characters/artemis/work-safe-front.svg",
  22775. extra: 1192 / 1075,
  22776. bottom: 0.07
  22777. },
  22778. form: "work-safe",
  22779. default: true
  22780. },
  22781. frontNsfw: {
  22782. height: math.unit(7.5, "feet"),
  22783. weight: math.unit(2, "lb"),
  22784. name: "Front",
  22785. image: {
  22786. source: "./media/characters/artemis/calibrating-front.svg",
  22787. extra: 1192 / 1075,
  22788. bottom: 0.07
  22789. },
  22790. form: "calibrating",
  22791. default: true
  22792. },
  22793. frontNsfwer: {
  22794. height: math.unit(7.5, "feet"),
  22795. weight: math.unit(2, "lb"),
  22796. name: "Front",
  22797. image: {
  22798. source: "./media/characters/artemis/oversize-load-front.svg",
  22799. extra: 1192 / 1075,
  22800. bottom: 0.07
  22801. },
  22802. form: "oversize-load",
  22803. default: true
  22804. },
  22805. side: {
  22806. height: math.unit(7.5, "feet"),
  22807. weight: math.unit(2, "lb"),
  22808. name: "Side",
  22809. image: {
  22810. source: "./media/characters/artemis/work-safe-side.svg",
  22811. extra: 1192 / 1075,
  22812. bottom: 0.07
  22813. },
  22814. form: "work-safe"
  22815. },
  22816. sideNsfw: {
  22817. height: math.unit(7.5, "feet"),
  22818. weight: math.unit(2, "lb"),
  22819. name: "Side",
  22820. image: {
  22821. source: "./media/characters/artemis/calibrating-side.svg",
  22822. extra: 1192 / 1075,
  22823. bottom: 0.07
  22824. },
  22825. form: "calibrating"
  22826. },
  22827. sideNsfwer: {
  22828. height: math.unit(7.5, "feet"),
  22829. weight: math.unit(2, "lb"),
  22830. name: "Side",
  22831. image: {
  22832. source: "./media/characters/artemis/oversize-load-side.svg",
  22833. extra: 1192 / 1075,
  22834. bottom: 0.07
  22835. },
  22836. form: "oversize-load"
  22837. },
  22838. maw: {
  22839. height: math.unit(1.1, "feet"),
  22840. name: "Maw",
  22841. image: {
  22842. source: "./media/characters/artemis/maw.svg"
  22843. },
  22844. form: "work-safe"
  22845. },
  22846. stomach: {
  22847. height: math.unit(0.95, "feet"),
  22848. name: "Stomach",
  22849. image: {
  22850. source: "./media/characters/artemis/stomach.svg"
  22851. },
  22852. form: "work-safe"
  22853. },
  22854. dickCanine: {
  22855. height: math.unit(1, "feet"),
  22856. name: "Dick (Canine)",
  22857. image: {
  22858. source: "./media/characters/artemis/dick-canine.svg"
  22859. },
  22860. form: "calibrating"
  22861. },
  22862. dickEquine: {
  22863. height: math.unit(0.85, "feet"),
  22864. name: "Dick (Equine)",
  22865. image: {
  22866. source: "./media/characters/artemis/dick-equine.svg"
  22867. },
  22868. form: "calibrating"
  22869. },
  22870. dickExotic: {
  22871. height: math.unit(0.85, "feet"),
  22872. name: "Dick (Exotic)",
  22873. image: {
  22874. source: "./media/characters/artemis/dick-exotic.svg"
  22875. },
  22876. form: "calibrating"
  22877. },
  22878. dickCanineBigger: {
  22879. height: math.unit(1 * 1.33, "feet"),
  22880. name: "Dick (Canine)",
  22881. image: {
  22882. source: "./media/characters/artemis/dick-canine.svg"
  22883. },
  22884. form: "oversize-load"
  22885. },
  22886. dickEquineBigger: {
  22887. height: math.unit(0.85 * 1.33, "feet"),
  22888. name: "Dick (Equine)",
  22889. image: {
  22890. source: "./media/characters/artemis/dick-equine.svg"
  22891. },
  22892. form: "oversize-load"
  22893. },
  22894. dickExoticBigger: {
  22895. height: math.unit(0.85 * 1.33, "feet"),
  22896. name: "Dick (Exotic)",
  22897. image: {
  22898. source: "./media/characters/artemis/dick-exotic.svg"
  22899. },
  22900. form: "oversize-load"
  22901. },
  22902. },
  22903. [
  22904. {
  22905. name: "Normal",
  22906. height: math.unit(7.5, "feet"),
  22907. form: "work-safe",
  22908. default: true
  22909. },
  22910. {
  22911. name: "Normal",
  22912. height: math.unit(7.5, "feet"),
  22913. form: "calibrating",
  22914. default: true
  22915. },
  22916. {
  22917. name: "Normal",
  22918. height: math.unit(7.5, "feet"),
  22919. form: "oversize-load",
  22920. default: true
  22921. },
  22922. {
  22923. name: "Enlarged",
  22924. height: math.unit(12, "feet"),
  22925. form: "work-safe",
  22926. },
  22927. {
  22928. name: "Enlarged",
  22929. height: math.unit(12, "feet"),
  22930. form: "calibrating",
  22931. },
  22932. {
  22933. name: "Enlarged",
  22934. height: math.unit(12, "feet"),
  22935. form: "oversize-load",
  22936. },
  22937. ],
  22938. {
  22939. "work-safe": {
  22940. name: "Work-Safe",
  22941. default: true
  22942. },
  22943. "calibrating": {
  22944. name: "Calibrating"
  22945. },
  22946. "oversize-load": {
  22947. name: "Oversize Load"
  22948. }
  22949. }
  22950. ))
  22951. characterMakers.push(() => makeCharacter(
  22952. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22953. {
  22954. front: {
  22955. height: math.unit(5 + 3 / 12, "feet"),
  22956. weight: math.unit(160, "lb"),
  22957. name: "Front",
  22958. image: {
  22959. source: "./media/characters/kira/front.svg",
  22960. extra: 906 / 786,
  22961. bottom: 0.01
  22962. }
  22963. },
  22964. back: {
  22965. height: math.unit(5 + 3 / 12, "feet"),
  22966. weight: math.unit(160, "lb"),
  22967. name: "Back",
  22968. image: {
  22969. source: "./media/characters/kira/back.svg",
  22970. extra: 882 / 757,
  22971. bottom: 0.005
  22972. }
  22973. },
  22974. frontDressed: {
  22975. height: math.unit(5 + 3 / 12, "feet"),
  22976. weight: math.unit(160, "lb"),
  22977. name: "Front (Dressed)",
  22978. image: {
  22979. source: "./media/characters/kira/front-dressed.svg",
  22980. extra: 906 / 786,
  22981. bottom: 0.01
  22982. }
  22983. },
  22984. beans: {
  22985. height: math.unit(0.92, "feet"),
  22986. name: "Beans",
  22987. image: {
  22988. source: "./media/characters/kira/beans.svg"
  22989. }
  22990. },
  22991. },
  22992. [
  22993. {
  22994. name: "Normal",
  22995. height: math.unit(5 + 3 / 12, "feet"),
  22996. default: true
  22997. },
  22998. ]
  22999. ))
  23000. characterMakers.push(() => makeCharacter(
  23001. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  23002. {
  23003. front: {
  23004. height: math.unit(5 + 4 / 12, "feet"),
  23005. weight: math.unit(145, "lb"),
  23006. name: "Front",
  23007. image: {
  23008. source: "./media/characters/scramble/front.svg",
  23009. extra: 763 / 727,
  23010. bottom: 0.05
  23011. }
  23012. },
  23013. back: {
  23014. height: math.unit(5 + 4 / 12, "feet"),
  23015. weight: math.unit(145, "lb"),
  23016. name: "Back",
  23017. image: {
  23018. source: "./media/characters/scramble/back.svg",
  23019. extra: 826 / 737,
  23020. bottom: 0.002
  23021. }
  23022. },
  23023. },
  23024. [
  23025. {
  23026. name: "Normal",
  23027. height: math.unit(5 + 4 / 12, "feet"),
  23028. default: true
  23029. },
  23030. ]
  23031. ))
  23032. characterMakers.push(() => makeCharacter(
  23033. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  23034. {
  23035. side: {
  23036. height: math.unit(6 + 2 / 12, "feet"),
  23037. weight: math.unit(190, "lb"),
  23038. name: "Side",
  23039. image: {
  23040. source: "./media/characters/biscuit/side.svg",
  23041. extra: 858 / 791,
  23042. bottom: 0.044
  23043. }
  23044. },
  23045. },
  23046. [
  23047. {
  23048. name: "Normal",
  23049. height: math.unit(6 + 2 / 12, "feet"),
  23050. default: true
  23051. },
  23052. ]
  23053. ))
  23054. characterMakers.push(() => makeCharacter(
  23055. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  23056. {
  23057. front: {
  23058. height: math.unit(5 + 2 / 12, "feet"),
  23059. weight: math.unit(120, "lb"),
  23060. name: "Front",
  23061. image: {
  23062. source: "./media/characters/poffin/front.svg",
  23063. extra: 786 / 680,
  23064. bottom: 0.005
  23065. }
  23066. },
  23067. },
  23068. [
  23069. {
  23070. name: "Normal",
  23071. height: math.unit(5 + 2 / 12, "feet"),
  23072. default: true
  23073. },
  23074. ]
  23075. ))
  23076. characterMakers.push(() => makeCharacter(
  23077. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  23078. {
  23079. front: {
  23080. height: math.unit(6 + 3 / 12, "feet"),
  23081. weight: math.unit(519, "lb"),
  23082. name: "Front",
  23083. image: {
  23084. source: "./media/characters/dhari/front.svg",
  23085. extra: 1048 / 946,
  23086. bottom: 0.015
  23087. }
  23088. },
  23089. back: {
  23090. height: math.unit(6 + 3 / 12, "feet"),
  23091. weight: math.unit(519, "lb"),
  23092. name: "Back",
  23093. image: {
  23094. source: "./media/characters/dhari/back.svg",
  23095. extra: 1048 / 931,
  23096. bottom: 0.005
  23097. }
  23098. },
  23099. frontDressed: {
  23100. height: math.unit(6 + 3 / 12, "feet"),
  23101. weight: math.unit(519, "lb"),
  23102. name: "Front (Dressed)",
  23103. image: {
  23104. source: "./media/characters/dhari/front-dressed.svg",
  23105. extra: 1713 / 1546,
  23106. bottom: 0.02
  23107. }
  23108. },
  23109. backDressed: {
  23110. height: math.unit(6 + 3 / 12, "feet"),
  23111. weight: math.unit(519, "lb"),
  23112. name: "Back (Dressed)",
  23113. image: {
  23114. source: "./media/characters/dhari/back-dressed.svg",
  23115. extra: 1699 / 1537,
  23116. bottom: 0.01
  23117. }
  23118. },
  23119. maw: {
  23120. height: math.unit(0.95, "feet"),
  23121. name: "Maw",
  23122. image: {
  23123. source: "./media/characters/dhari/maw.svg"
  23124. }
  23125. },
  23126. wereFront: {
  23127. height: math.unit(12 + 8 / 12, "feet"),
  23128. weight: math.unit(4000, "lb"),
  23129. name: "Front (Were)",
  23130. image: {
  23131. source: "./media/characters/dhari/were-front.svg",
  23132. extra: 1065 / 969,
  23133. bottom: 0.015
  23134. }
  23135. },
  23136. wereBack: {
  23137. height: math.unit(12 + 8 / 12, "feet"),
  23138. weight: math.unit(4000, "lb"),
  23139. name: "Back (Were)",
  23140. image: {
  23141. source: "./media/characters/dhari/were-back.svg",
  23142. extra: 1065 / 969,
  23143. bottom: 0.012
  23144. }
  23145. },
  23146. wereMaw: {
  23147. height: math.unit(0.625, "meters"),
  23148. name: "Maw (Were)",
  23149. image: {
  23150. source: "./media/characters/dhari/were-maw.svg"
  23151. }
  23152. },
  23153. },
  23154. [
  23155. {
  23156. name: "Normal",
  23157. height: math.unit(6 + 3 / 12, "feet"),
  23158. default: true
  23159. },
  23160. ]
  23161. ))
  23162. characterMakers.push(() => makeCharacter(
  23163. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  23164. {
  23165. anthro: {
  23166. height: math.unit(5 + 7 / 12, "feet"),
  23167. weight: math.unit(175, "lb"),
  23168. name: "Anthro",
  23169. image: {
  23170. source: "./media/characters/rena-dyne/anthro.svg",
  23171. extra: 1849 / 1785,
  23172. bottom: 0.005
  23173. }
  23174. },
  23175. taur: {
  23176. height: math.unit(15 + 6 / 12, "feet"),
  23177. weight: math.unit(8000, "lb"),
  23178. name: "Taur",
  23179. image: {
  23180. source: "./media/characters/rena-dyne/taur.svg",
  23181. extra: 2315 / 2234,
  23182. bottom: 0.033
  23183. }
  23184. },
  23185. },
  23186. [
  23187. {
  23188. name: "Normal",
  23189. height: math.unit(5 + 7 / 12, "feet"),
  23190. default: true
  23191. },
  23192. ]
  23193. ))
  23194. characterMakers.push(() => makeCharacter(
  23195. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  23196. {
  23197. front: {
  23198. height: math.unit(8, "feet"),
  23199. weight: math.unit(600, "lb"),
  23200. name: "Front",
  23201. image: {
  23202. source: "./media/characters/weremeep/front.svg",
  23203. extra: 970/849,
  23204. bottom: 7/977
  23205. }
  23206. },
  23207. },
  23208. [
  23209. {
  23210. name: "Normal",
  23211. height: math.unit(8, "feet"),
  23212. default: true
  23213. },
  23214. {
  23215. name: "Lorg",
  23216. height: math.unit(12, "feet")
  23217. },
  23218. {
  23219. name: "Oh Lawd She Comin'",
  23220. height: math.unit(20, "feet")
  23221. },
  23222. ]
  23223. ))
  23224. characterMakers.push(() => makeCharacter(
  23225. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  23226. {
  23227. front: {
  23228. height: math.unit(4, "feet"),
  23229. weight: math.unit(90, "lb"),
  23230. name: "Front",
  23231. image: {
  23232. source: "./media/characters/reza/front.svg",
  23233. extra: 1183 / 1111,
  23234. bottom: 0.017
  23235. }
  23236. },
  23237. back: {
  23238. height: math.unit(4, "feet"),
  23239. weight: math.unit(90, "lb"),
  23240. name: "Back",
  23241. image: {
  23242. source: "./media/characters/reza/back.svg",
  23243. extra: 1183 / 1111,
  23244. bottom: 0.01
  23245. }
  23246. },
  23247. drake: {
  23248. height: math.unit(30, "feet"),
  23249. weight: math.unit(246960, "lb"),
  23250. name: "Drake",
  23251. image: {
  23252. source: "./media/characters/reza/drake.svg",
  23253. extra: 2350 / 2024,
  23254. bottom: 60.7 / 2403
  23255. }
  23256. },
  23257. },
  23258. [
  23259. {
  23260. name: "Normal",
  23261. height: math.unit(4, "feet"),
  23262. default: true
  23263. },
  23264. ]
  23265. ))
  23266. characterMakers.push(() => makeCharacter(
  23267. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  23268. {
  23269. side: {
  23270. height: math.unit(15, "feet"),
  23271. weight: math.unit(14, "tons"),
  23272. name: "Side",
  23273. image: {
  23274. source: "./media/characters/athea/side.svg",
  23275. extra: 960 / 540,
  23276. bottom: 0.003
  23277. }
  23278. },
  23279. sitting: {
  23280. height: math.unit(6 * 2.85, "feet"),
  23281. weight: math.unit(14, "tons"),
  23282. name: "Sitting",
  23283. image: {
  23284. source: "./media/characters/athea/sitting.svg",
  23285. extra: 621 / 581,
  23286. bottom: 0.075
  23287. }
  23288. },
  23289. maw: {
  23290. height: math.unit(7.59498031496063, "feet"),
  23291. name: "Maw",
  23292. image: {
  23293. source: "./media/characters/athea/maw.svg"
  23294. }
  23295. },
  23296. },
  23297. [
  23298. {
  23299. name: "Lap Cat",
  23300. height: math.unit(2.5, "feet")
  23301. },
  23302. {
  23303. name: "Minimacro",
  23304. height: math.unit(15, "feet"),
  23305. default: true
  23306. },
  23307. {
  23308. name: "Macro",
  23309. height: math.unit(120, "feet")
  23310. },
  23311. {
  23312. name: "Macro+",
  23313. height: math.unit(640, "feet")
  23314. },
  23315. {
  23316. name: "Colossus",
  23317. height: math.unit(2.2, "miles")
  23318. },
  23319. ]
  23320. ))
  23321. characterMakers.push(() => makeCharacter(
  23322. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23323. {
  23324. front: {
  23325. height: math.unit(8 + 8 / 12, "feet"),
  23326. weight: math.unit(130, "kg"),
  23327. name: "Front",
  23328. image: {
  23329. source: "./media/characters/seroko/front.svg",
  23330. extra: 1385 / 1280,
  23331. bottom: 0.025
  23332. }
  23333. },
  23334. back: {
  23335. height: math.unit(8 + 8 / 12, "feet"),
  23336. weight: math.unit(130, "kg"),
  23337. name: "Back",
  23338. image: {
  23339. source: "./media/characters/seroko/back.svg",
  23340. extra: 1369 / 1238,
  23341. bottom: 0.018
  23342. }
  23343. },
  23344. frontDressed: {
  23345. height: math.unit(8 + 8 / 12, "feet"),
  23346. weight: math.unit(130, "kg"),
  23347. name: "Front (Dressed)",
  23348. image: {
  23349. source: "./media/characters/seroko/front-dressed.svg",
  23350. extra: 1366 / 1275,
  23351. bottom: 0.03
  23352. }
  23353. },
  23354. },
  23355. [
  23356. {
  23357. name: "Normal",
  23358. height: math.unit(8 + 8 / 12, "feet"),
  23359. default: true
  23360. },
  23361. ]
  23362. ))
  23363. characterMakers.push(() => makeCharacter(
  23364. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23365. {
  23366. front: {
  23367. height: math.unit(5.5, "feet"),
  23368. weight: math.unit(160, "lb"),
  23369. name: "Front",
  23370. image: {
  23371. source: "./media/characters/quatzi/front.svg",
  23372. extra: 2346 / 2242,
  23373. bottom: 0.015
  23374. }
  23375. },
  23376. },
  23377. [
  23378. {
  23379. name: "Normal",
  23380. height: math.unit(5.5, "feet"),
  23381. default: true
  23382. },
  23383. {
  23384. name: "Big",
  23385. height: math.unit(7.7, "feet")
  23386. },
  23387. ]
  23388. ))
  23389. characterMakers.push(() => makeCharacter(
  23390. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23391. {
  23392. front: {
  23393. height: math.unit(5 + 11 / 12, "feet"),
  23394. weight: math.unit(180, "lb"),
  23395. name: "Front",
  23396. image: {
  23397. source: "./media/characters/sen/front.svg",
  23398. extra: 1321 / 1254,
  23399. bottom: 0.015
  23400. }
  23401. },
  23402. side: {
  23403. height: math.unit(5 + 11 / 12, "feet"),
  23404. weight: math.unit(180, "lb"),
  23405. name: "Side",
  23406. image: {
  23407. source: "./media/characters/sen/side.svg",
  23408. extra: 1321 / 1254,
  23409. bottom: 0.007
  23410. }
  23411. },
  23412. back: {
  23413. height: math.unit(5 + 11 / 12, "feet"),
  23414. weight: math.unit(180, "lb"),
  23415. name: "Back",
  23416. image: {
  23417. source: "./media/characters/sen/back.svg",
  23418. extra: 1321 / 1254
  23419. }
  23420. },
  23421. },
  23422. [
  23423. {
  23424. name: "Normal",
  23425. height: math.unit(5 + 11 / 12, "feet"),
  23426. default: true
  23427. },
  23428. ]
  23429. ))
  23430. characterMakers.push(() => makeCharacter(
  23431. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23432. {
  23433. front: {
  23434. height: math.unit(166.6, "cm"),
  23435. weight: math.unit(66.6, "kg"),
  23436. name: "Front",
  23437. image: {
  23438. source: "./media/characters/fruity/front.svg",
  23439. extra: 1510 / 1386,
  23440. bottom: 0.04
  23441. }
  23442. },
  23443. back: {
  23444. height: math.unit(166.6, "cm"),
  23445. weight: math.unit(66.6, "lb"),
  23446. name: "Back",
  23447. image: {
  23448. source: "./media/characters/fruity/back.svg",
  23449. extra: 1563 / 1435,
  23450. bottom: 0.005
  23451. }
  23452. },
  23453. },
  23454. [
  23455. {
  23456. name: "Normal",
  23457. height: math.unit(166.6, "cm"),
  23458. default: true
  23459. },
  23460. {
  23461. name: "Demonic",
  23462. height: math.unit(166.6, "feet")
  23463. },
  23464. ]
  23465. ))
  23466. characterMakers.push(() => makeCharacter(
  23467. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23468. {
  23469. side: {
  23470. height: math.unit(10, "feet"),
  23471. weight: math.unit(500, "lb"),
  23472. name: "Side",
  23473. image: {
  23474. source: "./media/characters/zost/side.svg",
  23475. extra: 2870/2533,
  23476. bottom: 252/3122
  23477. }
  23478. },
  23479. mawFront: {
  23480. height: math.unit(1.08, "meters"),
  23481. name: "Maw (Front)",
  23482. image: {
  23483. source: "./media/characters/zost/maw-front.svg"
  23484. }
  23485. },
  23486. mawSide: {
  23487. height: math.unit(2.66, "feet"),
  23488. name: "Maw (Side)",
  23489. image: {
  23490. source: "./media/characters/zost/maw-side.svg"
  23491. }
  23492. },
  23493. wingspan: {
  23494. height: math.unit(7.4, "feet"),
  23495. name: "Wingspan",
  23496. image: {
  23497. source: "./media/characters/zost/wingspan.svg"
  23498. }
  23499. },
  23500. },
  23501. [
  23502. {
  23503. name: "Normal",
  23504. height: math.unit(10, "feet"),
  23505. default: true
  23506. },
  23507. ]
  23508. ))
  23509. characterMakers.push(() => makeCharacter(
  23510. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23511. {
  23512. front: {
  23513. height: math.unit(5 + 4 / 12, "feet"),
  23514. weight: math.unit(120, "lb"),
  23515. name: "Front",
  23516. image: {
  23517. source: "./media/characters/luci/front.svg",
  23518. extra: 1985 / 1884,
  23519. bottom: 0.04
  23520. }
  23521. },
  23522. back: {
  23523. height: math.unit(5 + 4 / 12, "feet"),
  23524. weight: math.unit(120, "lb"),
  23525. name: "Back",
  23526. image: {
  23527. source: "./media/characters/luci/back.svg",
  23528. extra: 1892 / 1791,
  23529. bottom: 0.002
  23530. }
  23531. },
  23532. },
  23533. [
  23534. {
  23535. name: "Normal",
  23536. height: math.unit(5 + 4 / 12, "feet"),
  23537. default: true
  23538. },
  23539. ]
  23540. ))
  23541. characterMakers.push(() => makeCharacter(
  23542. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23543. {
  23544. front: {
  23545. height: math.unit(1500, "feet"),
  23546. weight: math.unit(3.8e6, "tons"),
  23547. name: "Front",
  23548. image: {
  23549. source: "./media/characters/2th/front.svg",
  23550. extra: 3489 / 3350,
  23551. bottom: 0.1
  23552. }
  23553. },
  23554. foot: {
  23555. height: math.unit(461, "feet"),
  23556. name: "Foot",
  23557. image: {
  23558. source: "./media/characters/2th/foot.svg"
  23559. }
  23560. },
  23561. },
  23562. [
  23563. {
  23564. name: "\"Micro\"",
  23565. height: math.unit(15 + 7 / 12, "feet")
  23566. },
  23567. {
  23568. name: "Normal",
  23569. height: math.unit(1500, "feet"),
  23570. default: true
  23571. },
  23572. {
  23573. name: "Macro",
  23574. height: math.unit(5000, "feet")
  23575. },
  23576. {
  23577. name: "Megamacro",
  23578. height: math.unit(15, "miles")
  23579. },
  23580. {
  23581. name: "Gigamacro",
  23582. height: math.unit(4000, "miles")
  23583. },
  23584. {
  23585. name: "Galactic",
  23586. height: math.unit(50, "AU")
  23587. },
  23588. ]
  23589. ))
  23590. characterMakers.push(() => makeCharacter(
  23591. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23592. {
  23593. front: {
  23594. height: math.unit(5 + 6 / 12, "feet"),
  23595. weight: math.unit(220, "lb"),
  23596. name: "Front",
  23597. image: {
  23598. source: "./media/characters/amethyst/front.svg",
  23599. extra: 2078 / 2040,
  23600. bottom: 0.045
  23601. }
  23602. },
  23603. back: {
  23604. height: math.unit(5 + 6 / 12, "feet"),
  23605. weight: math.unit(220, "lb"),
  23606. name: "Back",
  23607. image: {
  23608. source: "./media/characters/amethyst/back.svg",
  23609. extra: 2021 / 1989,
  23610. bottom: 0.02
  23611. }
  23612. },
  23613. },
  23614. [
  23615. {
  23616. name: "Normal",
  23617. height: math.unit(5 + 6 / 12, "feet"),
  23618. default: true
  23619. },
  23620. ]
  23621. ))
  23622. characterMakers.push(() => makeCharacter(
  23623. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23624. {
  23625. front: {
  23626. height: math.unit(4 + 11 / 12, "feet"),
  23627. weight: math.unit(120, "lb"),
  23628. name: "Front",
  23629. image: {
  23630. source: "./media/characters/yumi-akiyama/front.svg",
  23631. extra: 1327 / 1235,
  23632. bottom: 0.02
  23633. }
  23634. },
  23635. back: {
  23636. height: math.unit(4 + 11 / 12, "feet"),
  23637. weight: math.unit(120, "lb"),
  23638. name: "Back",
  23639. image: {
  23640. source: "./media/characters/yumi-akiyama/back.svg",
  23641. extra: 1287 / 1245,
  23642. bottom: 0.002
  23643. }
  23644. },
  23645. },
  23646. [
  23647. {
  23648. name: "Galactic",
  23649. height: math.unit(50, "galaxies"),
  23650. default: true
  23651. },
  23652. {
  23653. name: "Universal",
  23654. height: math.unit(100, "universes")
  23655. },
  23656. ]
  23657. ))
  23658. characterMakers.push(() => makeCharacter(
  23659. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23660. {
  23661. front: {
  23662. height: math.unit(8, "feet"),
  23663. weight: math.unit(500, "lb"),
  23664. name: "Front",
  23665. image: {
  23666. source: "./media/characters/rifter-yrmori/front.svg",
  23667. extra: 1180 / 1125,
  23668. bottom: 0.02
  23669. }
  23670. },
  23671. back: {
  23672. height: math.unit(8, "feet"),
  23673. weight: math.unit(500, "lb"),
  23674. name: "Back",
  23675. image: {
  23676. source: "./media/characters/rifter-yrmori/back.svg",
  23677. extra: 1190 / 1145,
  23678. bottom: 0.001
  23679. }
  23680. },
  23681. wings: {
  23682. height: math.unit(7.75, "feet"),
  23683. weight: math.unit(500, "lb"),
  23684. name: "Wings",
  23685. image: {
  23686. source: "./media/characters/rifter-yrmori/wings.svg",
  23687. extra: 1357 / 1285
  23688. }
  23689. },
  23690. maw: {
  23691. height: math.unit(0.8, "feet"),
  23692. name: "Maw",
  23693. image: {
  23694. source: "./media/characters/rifter-yrmori/maw.svg"
  23695. }
  23696. },
  23697. mawfront: {
  23698. height: math.unit(1.45, "feet"),
  23699. name: "Maw (Front)",
  23700. image: {
  23701. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23702. }
  23703. },
  23704. },
  23705. [
  23706. {
  23707. name: "Normal",
  23708. height: math.unit(8, "feet"),
  23709. default: true
  23710. },
  23711. {
  23712. name: "Macro",
  23713. height: math.unit(42, "meters")
  23714. },
  23715. ]
  23716. ))
  23717. characterMakers.push(() => makeCharacter(
  23718. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23719. {
  23720. were: {
  23721. height: math.unit(25 + 6 / 12, "feet"),
  23722. weight: math.unit(10000, "lb"),
  23723. name: "Were",
  23724. image: {
  23725. source: "./media/characters/tahajin/were.svg",
  23726. extra: 801 / 770,
  23727. bottom: 0.042
  23728. }
  23729. },
  23730. aquatic: {
  23731. height: math.unit(6 + 4 / 12, "feet"),
  23732. weight: math.unit(160, "lb"),
  23733. name: "Aquatic",
  23734. image: {
  23735. source: "./media/characters/tahajin/aquatic.svg",
  23736. extra: 572 / 542,
  23737. bottom: 0.04
  23738. }
  23739. },
  23740. chow: {
  23741. height: math.unit(8 + 11 / 12, "feet"),
  23742. weight: math.unit(450, "lb"),
  23743. name: "Chow",
  23744. image: {
  23745. source: "./media/characters/tahajin/chow.svg",
  23746. extra: 660 / 640,
  23747. bottom: 0.015
  23748. }
  23749. },
  23750. demiNaga: {
  23751. height: math.unit(6 + 8 / 12, "feet"),
  23752. weight: math.unit(300, "lb"),
  23753. name: "Demi Naga",
  23754. image: {
  23755. source: "./media/characters/tahajin/demi-naga.svg",
  23756. extra: 643 / 615,
  23757. bottom: 0.1
  23758. }
  23759. },
  23760. data: {
  23761. height: math.unit(5, "inches"),
  23762. weight: math.unit(0.1, "lb"),
  23763. name: "Data",
  23764. image: {
  23765. source: "./media/characters/tahajin/data.svg"
  23766. }
  23767. },
  23768. fluu: {
  23769. height: math.unit(5 + 7 / 12, "feet"),
  23770. weight: math.unit(140, "lb"),
  23771. name: "Fluu",
  23772. image: {
  23773. source: "./media/characters/tahajin/fluu.svg",
  23774. extra: 628 / 592,
  23775. bottom: 0.02
  23776. }
  23777. },
  23778. starWarrior: {
  23779. height: math.unit(4 + 5 / 12, "feet"),
  23780. weight: math.unit(50, "lb"),
  23781. name: "Star Warrior",
  23782. image: {
  23783. source: "./media/characters/tahajin/star-warrior.svg"
  23784. }
  23785. },
  23786. },
  23787. [
  23788. {
  23789. name: "Normal",
  23790. height: math.unit(25 + 6 / 12, "feet"),
  23791. default: true
  23792. },
  23793. ]
  23794. ))
  23795. characterMakers.push(() => makeCharacter(
  23796. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23797. {
  23798. front: {
  23799. height: math.unit(8, "feet"),
  23800. weight: math.unit(350, "lb"),
  23801. name: "Front",
  23802. image: {
  23803. source: "./media/characters/gabira/front.svg",
  23804. extra: 1261/1154,
  23805. bottom: 51/1312
  23806. }
  23807. },
  23808. back: {
  23809. height: math.unit(8, "feet"),
  23810. weight: math.unit(350, "lb"),
  23811. name: "Back",
  23812. image: {
  23813. source: "./media/characters/gabira/back.svg",
  23814. extra: 1265/1163,
  23815. bottom: 46/1311
  23816. }
  23817. },
  23818. head: {
  23819. height: math.unit(2.85, "feet"),
  23820. name: "Head",
  23821. image: {
  23822. source: "./media/characters/gabira/head.svg"
  23823. }
  23824. },
  23825. },
  23826. [
  23827. {
  23828. name: "Normal",
  23829. height: math.unit(8, "feet"),
  23830. default: true
  23831. },
  23832. ]
  23833. ))
  23834. characterMakers.push(() => makeCharacter(
  23835. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23836. {
  23837. front: {
  23838. height: math.unit(5 + 3 / 12, "feet"),
  23839. weight: math.unit(137, "lb"),
  23840. name: "Front",
  23841. image: {
  23842. source: "./media/characters/sasha-katraine/front.svg",
  23843. extra: 1745/1694,
  23844. bottom: 37/1782
  23845. }
  23846. },
  23847. back: {
  23848. height: math.unit(5 + 3 / 12, "feet"),
  23849. weight: math.unit(137, "lb"),
  23850. name: "Back",
  23851. image: {
  23852. source: "./media/characters/sasha-katraine/back.svg",
  23853. extra: 1776/1699,
  23854. bottom: 26/1802
  23855. }
  23856. },
  23857. },
  23858. [
  23859. {
  23860. name: "Micro",
  23861. height: math.unit(5, "inches")
  23862. },
  23863. {
  23864. name: "Normal",
  23865. height: math.unit(5 + 3 / 12, "feet"),
  23866. default: true
  23867. },
  23868. ]
  23869. ))
  23870. characterMakers.push(() => makeCharacter(
  23871. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23872. {
  23873. side: {
  23874. height: math.unit(4, "inches"),
  23875. weight: math.unit(200, "grams"),
  23876. name: "Side",
  23877. image: {
  23878. source: "./media/characters/der/side.svg",
  23879. extra: 719 / 400,
  23880. bottom: 30.6 / 749.9187
  23881. }
  23882. },
  23883. },
  23884. [
  23885. {
  23886. name: "Micro",
  23887. height: math.unit(4, "inches"),
  23888. default: true
  23889. },
  23890. ]
  23891. ))
  23892. characterMakers.push(() => makeCharacter(
  23893. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23894. {
  23895. side: {
  23896. height: math.unit(30, "meters"),
  23897. weight: math.unit(700, "tonnes"),
  23898. name: "Side",
  23899. image: {
  23900. source: "./media/characters/fixerdragon/side.svg",
  23901. extra: (1293.0514 - 116.03) / 1106.86,
  23902. bottom: 116.03 / 1293.0514
  23903. }
  23904. },
  23905. },
  23906. [
  23907. {
  23908. name: "Planck",
  23909. height: math.unit(1.6e-35, "meters")
  23910. },
  23911. {
  23912. name: "Micro",
  23913. height: math.unit(0.4, "meters")
  23914. },
  23915. {
  23916. name: "Normal",
  23917. height: math.unit(30, "meters"),
  23918. default: true
  23919. },
  23920. {
  23921. name: "Megamacro",
  23922. height: math.unit(1.2, "megameters")
  23923. },
  23924. {
  23925. name: "Teramacro",
  23926. height: math.unit(130, "terameters")
  23927. },
  23928. {
  23929. name: "Yottamacro",
  23930. height: math.unit(6200, "yottameters")
  23931. },
  23932. ]
  23933. ));
  23934. characterMakers.push(() => makeCharacter(
  23935. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23936. {
  23937. front: {
  23938. height: math.unit(8, "feet"),
  23939. weight: math.unit(250, "lb"),
  23940. name: "Front",
  23941. image: {
  23942. source: "./media/characters/kite/front.svg",
  23943. extra: 2796 / 2659,
  23944. bottom: 0.002
  23945. }
  23946. },
  23947. },
  23948. [
  23949. {
  23950. name: "Normal",
  23951. height: math.unit(8, "feet"),
  23952. default: true
  23953. },
  23954. {
  23955. name: "Macro",
  23956. height: math.unit(360, "feet")
  23957. },
  23958. {
  23959. name: "Megamacro",
  23960. height: math.unit(1500, "feet")
  23961. },
  23962. ]
  23963. ))
  23964. characterMakers.push(() => makeCharacter(
  23965. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23966. {
  23967. anthro_front: {
  23968. height: math.unit(5 + 11/12, "feet"),
  23969. weight: math.unit(170, "lb"),
  23970. name: "Front",
  23971. image: {
  23972. source: "./media/characters/poojawa-vynar/anthro-front.svg",
  23973. extra: 1735/1585,
  23974. bottom: 96/1831
  23975. },
  23976. form: "anthro",
  23977. default: true
  23978. },
  23979. anthro_back: {
  23980. height: math.unit(5 + 11/12, "feet"),
  23981. weight: math.unit(170, "lb"),
  23982. name: "Back",
  23983. image: {
  23984. source: "./media/characters/poojawa-vynar/anthro-back.svg",
  23985. extra: 1749/1607,
  23986. bottom: 28/1777
  23987. },
  23988. form: "anthro"
  23989. },
  23990. anthro_male: {
  23991. height: math.unit(5 + 11/12, "feet"),
  23992. weight: math.unit(170, "lb"),
  23993. name: "Male",
  23994. image: {
  23995. source: "./media/characters/poojawa-vynar/anthro-front-male.svg",
  23996. extra: 1855/1713,
  23997. bottom: 63/1918
  23998. },
  23999. form: "anthro"
  24000. },
  24001. taur_front: {
  24002. height: math.unit(5 + 7/12, "feet"),
  24003. weight: math.unit(170, "lb"),
  24004. name: "Front",
  24005. image: {
  24006. source: "./media/characters/poojawa-vynar/taur-front.svg",
  24007. extra: 1151/1059,
  24008. bottom: 356/1507
  24009. },
  24010. form: "taur",
  24011. default: true
  24012. },
  24013. anthro_frontDressed: {
  24014. height: math.unit(5 + 11/12, "feet"),
  24015. weight: math.unit(170, "lb"),
  24016. name: "Front (Dressed)",
  24017. image: {
  24018. source: "./media/characters/poojawa-vynar/anthro-front-dressed.svg",
  24019. extra: 1735/1585,
  24020. bottom: 96/1831
  24021. },
  24022. form: "anthro"
  24023. },
  24024. anthro_backDressed: {
  24025. height: math.unit(5 + 11/12, "feet"),
  24026. weight: math.unit(170, "lb"),
  24027. name: "Back (Dressed)",
  24028. image: {
  24029. source: "./media/characters/poojawa-vynar/anthro-back-dressed.svg",
  24030. extra: 1749/1607,
  24031. bottom: 28/1777
  24032. },
  24033. form: "anthro"
  24034. },
  24035. anthro_maleDressed: {
  24036. height: math.unit(5 + 11/12, "feet"),
  24037. weight: math.unit(170, "lb"),
  24038. name: "Male (Dressed)",
  24039. image: {
  24040. source: "./media/characters/poojawa-vynar/anthro-front-male-dressed.svg",
  24041. extra: 1855/1713,
  24042. bottom: 63/1918
  24043. },
  24044. form: "anthro"
  24045. },
  24046. taur_frontDressed: {
  24047. height: math.unit(5 + 7/12, "feet"),
  24048. weight: math.unit(170, "lb"),
  24049. name: "Front (Dressed)",
  24050. image: {
  24051. source: "./media/characters/poojawa-vynar/taur-front-dressed.svg",
  24052. extra: 1151/1059,
  24053. bottom: 356/1507
  24054. },
  24055. form: "taur"
  24056. },
  24057. maw: {
  24058. height: math.unit(1.46, "feet"),
  24059. name: "Maw",
  24060. image: {
  24061. source: "./media/characters/poojawa-vynar/maw.svg"
  24062. },
  24063. allForms: true
  24064. },
  24065. head: {
  24066. height: math.unit(2.34, "feet"),
  24067. name: "Head",
  24068. image: {
  24069. source: "./media/characters/poojawa-vynar/head.svg"
  24070. },
  24071. allForms: true
  24072. },
  24073. leftPaw: {
  24074. height: math.unit(1.72, "feet"),
  24075. name: "Left Paw",
  24076. image: {
  24077. source: "./media/characters/poojawa-vynar/paw-left.svg"
  24078. },
  24079. allForms: true
  24080. },
  24081. rightPaw: {
  24082. height: math.unit(1.61, "feet"),
  24083. name: "Right Paw",
  24084. image: {
  24085. source: "./media/characters/poojawa-vynar/paw-right.svg"
  24086. },
  24087. allForms: true
  24088. },
  24089. toering: {
  24090. height: math.unit(2.9, "inches"),
  24091. name: "Toering",
  24092. image: {
  24093. source: "./media/characters/poojawa-vynar/toering.svg"
  24094. },
  24095. allForms: true
  24096. },
  24097. shaft: {
  24098. height: math.unit(0.625, "feet"),
  24099. name: "Shaft",
  24100. image: {
  24101. source: "./media/characters/poojawa-vynar/shaft.svg"
  24102. },
  24103. allForms: true
  24104. },
  24105. spade: {
  24106. height: math.unit(0.42, "feet"),
  24107. name: "Spade",
  24108. image: {
  24109. source: "./media/characters/poojawa-vynar/spade.svg"
  24110. },
  24111. allForms: true
  24112. },
  24113. },
  24114. [
  24115. {
  24116. name: "Shortstack",
  24117. height: math.unit(4, "feet"),
  24118. form: "anthro"
  24119. },
  24120. {
  24121. name: "Normal",
  24122. height: math.unit(5 + 11 / 12, "feet"),
  24123. form: "anthro",
  24124. default: true
  24125. },
  24126. {
  24127. name: "Tauric",
  24128. height: math.unit(4, "meters"),
  24129. form: "taur",
  24130. default: true
  24131. },
  24132. ],
  24133. {
  24134. "anthro": {
  24135. name: "Anthro",
  24136. default: true
  24137. },
  24138. "taur": {
  24139. name: "Taur",
  24140. },
  24141. }
  24142. ))
  24143. characterMakers.push(() => makeCharacter(
  24144. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  24145. {
  24146. front: {
  24147. height: math.unit(293, "meters"),
  24148. weight: math.unit(70400, "tons"),
  24149. name: "Front",
  24150. image: {
  24151. source: "./media/characters/violette/front.svg",
  24152. extra: 1227 / 1180,
  24153. bottom: 0.005
  24154. }
  24155. },
  24156. back: {
  24157. height: math.unit(293, "meters"),
  24158. weight: math.unit(70400, "tons"),
  24159. name: "Back",
  24160. image: {
  24161. source: "./media/characters/violette/back.svg",
  24162. extra: 1227 / 1180,
  24163. bottom: 0.005
  24164. }
  24165. },
  24166. },
  24167. [
  24168. {
  24169. name: "Macro",
  24170. height: math.unit(293, "meters"),
  24171. default: true
  24172. },
  24173. ]
  24174. ))
  24175. characterMakers.push(() => makeCharacter(
  24176. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  24177. {
  24178. front: {
  24179. height: math.unit(1050, "feet"),
  24180. weight: math.unit(200000, "tons"),
  24181. name: "Front",
  24182. image: {
  24183. source: "./media/characters/alessandra/front.svg",
  24184. extra: 960 / 912,
  24185. bottom: 0.06
  24186. }
  24187. },
  24188. },
  24189. [
  24190. {
  24191. name: "Macro",
  24192. height: math.unit(1050, "feet")
  24193. },
  24194. {
  24195. name: "Macro+",
  24196. height: math.unit(900, "meters"),
  24197. default: true
  24198. },
  24199. ]
  24200. ))
  24201. characterMakers.push(() => makeCharacter(
  24202. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  24203. {
  24204. front: {
  24205. height: math.unit(5, "feet"),
  24206. weight: math.unit(187, "lb"),
  24207. name: "Front",
  24208. image: {
  24209. source: "./media/characters/person/front.svg",
  24210. extra: 3087 / 2945,
  24211. bottom: 91 / 3181
  24212. }
  24213. },
  24214. },
  24215. [
  24216. {
  24217. name: "Micro",
  24218. height: math.unit(3, "inches")
  24219. },
  24220. {
  24221. name: "Normal",
  24222. height: math.unit(5, "feet"),
  24223. default: true
  24224. },
  24225. {
  24226. name: "Macro",
  24227. height: math.unit(90, "feet")
  24228. },
  24229. {
  24230. name: "Max Size",
  24231. height: math.unit(280, "feet")
  24232. },
  24233. ]
  24234. ))
  24235. characterMakers.push(() => makeCharacter(
  24236. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  24237. {
  24238. front: {
  24239. height: math.unit(4.5, "meters"),
  24240. weight: math.unit(3200, "lb"),
  24241. name: "Front",
  24242. image: {
  24243. source: "./media/characters/ty/front.svg",
  24244. extra: 1038 / 960,
  24245. bottom: 31.156 / 1068
  24246. }
  24247. },
  24248. back: {
  24249. height: math.unit(4.5, "meters"),
  24250. weight: math.unit(3200, "lb"),
  24251. name: "Back",
  24252. image: {
  24253. source: "./media/characters/ty/back.svg",
  24254. extra: 1044 / 966,
  24255. bottom: 7.48 / 1049
  24256. }
  24257. },
  24258. },
  24259. [
  24260. {
  24261. name: "Normal",
  24262. height: math.unit(4.5, "meters"),
  24263. default: true
  24264. },
  24265. ]
  24266. ))
  24267. characterMakers.push(() => makeCharacter(
  24268. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  24269. {
  24270. front: {
  24271. height: math.unit(5 + 4 / 12, "feet"),
  24272. weight: math.unit(115, "lb"),
  24273. name: "Front",
  24274. image: {
  24275. source: "./media/characters/rocky/front.svg",
  24276. extra: 1012 / 975,
  24277. bottom: 54 / 1066
  24278. }
  24279. },
  24280. },
  24281. [
  24282. {
  24283. name: "Normal",
  24284. height: math.unit(5 + 4 / 12, "feet"),
  24285. default: true
  24286. },
  24287. ]
  24288. ))
  24289. characterMakers.push(() => makeCharacter(
  24290. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  24291. {
  24292. upright: {
  24293. height: math.unit(6, "meters"),
  24294. weight: math.unit(4000, "kg"),
  24295. name: "Upright",
  24296. image: {
  24297. source: "./media/characters/ruin/upright.svg",
  24298. extra: 668 / 661,
  24299. bottom: 42 / 799.8396
  24300. }
  24301. },
  24302. },
  24303. [
  24304. {
  24305. name: "Normal",
  24306. height: math.unit(6, "meters"),
  24307. default: true
  24308. },
  24309. ]
  24310. ))
  24311. characterMakers.push(() => makeCharacter(
  24312. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24313. {
  24314. front: {
  24315. height: math.unit(5, "feet"),
  24316. weight: math.unit(106, "lb"),
  24317. name: "Front",
  24318. image: {
  24319. source: "./media/characters/robin/front.svg",
  24320. extra: 862 / 799,
  24321. bottom: 42.4 / 914.8856
  24322. }
  24323. },
  24324. },
  24325. [
  24326. {
  24327. name: "Normal",
  24328. height: math.unit(5, "feet"),
  24329. default: true
  24330. },
  24331. ]
  24332. ))
  24333. characterMakers.push(() => makeCharacter(
  24334. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24335. {
  24336. side: {
  24337. height: math.unit(3, "feet"),
  24338. weight: math.unit(225, "lb"),
  24339. name: "Side",
  24340. image: {
  24341. source: "./media/characters/saian/side.svg",
  24342. extra: 566 / 356,
  24343. bottom: 79.7 / 643
  24344. }
  24345. },
  24346. maw: {
  24347. height: math.unit(2.85, "feet"),
  24348. name: "Maw",
  24349. image: {
  24350. source: "./media/characters/saian/maw.svg"
  24351. }
  24352. },
  24353. },
  24354. [
  24355. {
  24356. name: "Normal",
  24357. height: math.unit(3, "feet"),
  24358. default: true
  24359. },
  24360. ]
  24361. ))
  24362. characterMakers.push(() => makeCharacter(
  24363. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24364. {
  24365. side: {
  24366. height: math.unit(8, "feet"),
  24367. weight: math.unit(300, "lb"),
  24368. name: "Side",
  24369. image: {
  24370. source: "./media/characters/equus-silvermane/side.svg",
  24371. extra: 2176 / 2050,
  24372. bottom: 65.7 / 2245
  24373. }
  24374. },
  24375. front: {
  24376. height: math.unit(8, "feet"),
  24377. weight: math.unit(300, "lb"),
  24378. name: "Front",
  24379. image: {
  24380. source: "./media/characters/equus-silvermane/front.svg",
  24381. extra: 4633 / 4400,
  24382. bottom: 71.3 / 4706.915
  24383. }
  24384. },
  24385. sideStepping: {
  24386. height: math.unit(8, "feet"),
  24387. weight: math.unit(300, "lb"),
  24388. name: "Side (Stepping)",
  24389. image: {
  24390. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24391. extra: 1968 / 1860,
  24392. bottom: 16.4 / 1989
  24393. }
  24394. },
  24395. },
  24396. [
  24397. {
  24398. name: "Normal",
  24399. height: math.unit(8, "feet")
  24400. },
  24401. {
  24402. name: "Minimacro",
  24403. height: math.unit(75, "feet"),
  24404. default: true
  24405. },
  24406. {
  24407. name: "Macro",
  24408. height: math.unit(150, "feet")
  24409. },
  24410. {
  24411. name: "Macro+",
  24412. height: math.unit(1000, "feet")
  24413. },
  24414. {
  24415. name: "Megamacro",
  24416. height: math.unit(1, "mile")
  24417. },
  24418. ]
  24419. ))
  24420. characterMakers.push(() => makeCharacter(
  24421. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24422. {
  24423. side: {
  24424. height: math.unit(20, "feet"),
  24425. weight: math.unit(30000, "kg"),
  24426. name: "Side",
  24427. image: {
  24428. source: "./media/characters/windar/side.svg",
  24429. extra: 1491 / 1248,
  24430. bottom: 82.56 / 1568
  24431. }
  24432. },
  24433. },
  24434. [
  24435. {
  24436. name: "Normal",
  24437. height: math.unit(20, "feet"),
  24438. default: true
  24439. },
  24440. ]
  24441. ))
  24442. characterMakers.push(() => makeCharacter(
  24443. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24444. {
  24445. side: {
  24446. height: math.unit(15.66, "feet"),
  24447. weight: math.unit(150, "lb"),
  24448. name: "Side",
  24449. image: {
  24450. source: "./media/characters/melody/side.svg",
  24451. extra: 1097 / 944,
  24452. bottom: 11.8 / 1109
  24453. }
  24454. },
  24455. sideOutfit: {
  24456. height: math.unit(15.66, "feet"),
  24457. weight: math.unit(150, "lb"),
  24458. name: "Side (Outfit)",
  24459. image: {
  24460. source: "./media/characters/melody/side-outfit.svg",
  24461. extra: 1097 / 944,
  24462. bottom: 11.8 / 1109
  24463. }
  24464. },
  24465. },
  24466. [
  24467. {
  24468. name: "Normal",
  24469. height: math.unit(15.66, "feet"),
  24470. default: true
  24471. },
  24472. ]
  24473. ))
  24474. characterMakers.push(() => makeCharacter(
  24475. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24476. {
  24477. armoredFront: {
  24478. height: math.unit(8, "feet"),
  24479. weight: math.unit(325, "lb"),
  24480. name: "Front",
  24481. image: {
  24482. source: "./media/characters/windera/armored-front.svg",
  24483. extra: 1830/1598,
  24484. bottom: 151/1981
  24485. },
  24486. form: "armored",
  24487. default: true
  24488. },
  24489. macroFront: {
  24490. height: math.unit(70, "feet"),
  24491. weight: math.unit(315453, "lb"),
  24492. name: "Front",
  24493. image: {
  24494. source: "./media/characters/windera/macro-front.svg",
  24495. extra: 963/883,
  24496. bottom: 23/986
  24497. },
  24498. form: "macro",
  24499. default: true
  24500. },
  24501. },
  24502. [
  24503. {
  24504. name: "Normal",
  24505. height: math.unit(8, "feet"),
  24506. default: true,
  24507. form: "armored"
  24508. },
  24509. {
  24510. name: "Normal",
  24511. height: math.unit(70, "feet"),
  24512. default: true,
  24513. form: "macro"
  24514. },
  24515. ],
  24516. {
  24517. "armored": {
  24518. name: "Armored",
  24519. default: true
  24520. },
  24521. "macro": {
  24522. name: "Macro",
  24523. },
  24524. }
  24525. ))
  24526. characterMakers.push(() => makeCharacter(
  24527. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24528. {
  24529. front: {
  24530. height: math.unit(28.75, "feet"),
  24531. weight: math.unit(2000, "kg"),
  24532. name: "Front",
  24533. image: {
  24534. source: "./media/characters/sonear/front.svg",
  24535. extra: 1041.1 / 964.9,
  24536. bottom: 53.7 / 1096.6
  24537. }
  24538. },
  24539. },
  24540. [
  24541. {
  24542. name: "Normal",
  24543. height: math.unit(28.75, "feet"),
  24544. default: true
  24545. },
  24546. ]
  24547. ))
  24548. characterMakers.push(() => makeCharacter(
  24549. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24550. {
  24551. side: {
  24552. height: math.unit(25.5, "feet"),
  24553. weight: math.unit(23000, "kg"),
  24554. name: "Side",
  24555. image: {
  24556. source: "./media/characters/kanara/side.svg"
  24557. }
  24558. },
  24559. },
  24560. [
  24561. {
  24562. name: "Normal",
  24563. height: math.unit(25.5, "feet"),
  24564. default: true
  24565. },
  24566. ]
  24567. ))
  24568. characterMakers.push(() => makeCharacter(
  24569. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24570. {
  24571. side: {
  24572. height: math.unit(10, "feet"),
  24573. weight: math.unit(1000, "kg"),
  24574. name: "Side",
  24575. image: {
  24576. source: "./media/characters/ereus/side.svg",
  24577. extra: 1157 / 959,
  24578. bottom: 153 / 1312.5
  24579. }
  24580. },
  24581. },
  24582. [
  24583. {
  24584. name: "Normal",
  24585. height: math.unit(10, "feet"),
  24586. default: true
  24587. },
  24588. ]
  24589. ))
  24590. characterMakers.push(() => makeCharacter(
  24591. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24592. {
  24593. side: {
  24594. height: math.unit(4.5, "feet"),
  24595. weight: math.unit(500, "lb"),
  24596. name: "Side",
  24597. image: {
  24598. source: "./media/characters/e-ter/side.svg",
  24599. extra: 1550 / 1248,
  24600. bottom: 146 / 1694
  24601. }
  24602. },
  24603. },
  24604. [
  24605. {
  24606. name: "Normal",
  24607. height: math.unit(4.5, "feet"),
  24608. default: true
  24609. },
  24610. ]
  24611. ))
  24612. characterMakers.push(() => makeCharacter(
  24613. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24614. {
  24615. side: {
  24616. height: math.unit(9.7, "feet"),
  24617. weight: math.unit(4000, "kg"),
  24618. name: "Side",
  24619. image: {
  24620. source: "./media/characters/yamie/side.svg"
  24621. }
  24622. },
  24623. },
  24624. [
  24625. {
  24626. name: "Normal",
  24627. height: math.unit(9.7, "feet"),
  24628. default: true
  24629. },
  24630. ]
  24631. ))
  24632. characterMakers.push(() => makeCharacter(
  24633. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24634. {
  24635. front: {
  24636. height: math.unit(50, "feet"),
  24637. weight: math.unit(50000, "kg"),
  24638. name: "Front",
  24639. image: {
  24640. source: "./media/characters/anders/front.svg",
  24641. extra: 570 / 539,
  24642. bottom: 14.7 / 586.7
  24643. }
  24644. },
  24645. },
  24646. [
  24647. {
  24648. name: "Large",
  24649. height: math.unit(50, "feet")
  24650. },
  24651. {
  24652. name: "Macro",
  24653. height: math.unit(2000, "feet"),
  24654. default: true
  24655. },
  24656. {
  24657. name: "Megamacro",
  24658. height: math.unit(12, "miles")
  24659. },
  24660. ]
  24661. ))
  24662. characterMakers.push(() => makeCharacter(
  24663. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24664. {
  24665. front: {
  24666. height: math.unit(7 + 2 / 12, "feet"),
  24667. weight: math.unit(300, "lb"),
  24668. name: "Front",
  24669. image: {
  24670. source: "./media/characters/reban/front.svg",
  24671. extra: 1287/1212,
  24672. bottom: 148/1435
  24673. }
  24674. },
  24675. head: {
  24676. height: math.unit(1.95, "feet"),
  24677. name: "Head",
  24678. image: {
  24679. source: "./media/characters/reban/head.svg"
  24680. }
  24681. },
  24682. maw: {
  24683. height: math.unit(0.95, "feet"),
  24684. name: "Maw",
  24685. image: {
  24686. source: "./media/characters/reban/maw.svg"
  24687. }
  24688. },
  24689. foot: {
  24690. height: math.unit(1.65, "feet"),
  24691. name: "Foot",
  24692. image: {
  24693. source: "./media/characters/reban/foot.svg"
  24694. }
  24695. },
  24696. dick: {
  24697. height: math.unit(7 / 5, "feet"),
  24698. name: "Dick",
  24699. image: {
  24700. source: "./media/characters/reban/dick.svg"
  24701. }
  24702. },
  24703. },
  24704. [
  24705. {
  24706. name: "Natural Height",
  24707. height: math.unit(7 + 2 / 12, "feet")
  24708. },
  24709. {
  24710. name: "Macro",
  24711. height: math.unit(500, "feet"),
  24712. default: true
  24713. },
  24714. {
  24715. name: "Canon Height",
  24716. height: math.unit(50, "AU")
  24717. },
  24718. ]
  24719. ))
  24720. characterMakers.push(() => makeCharacter(
  24721. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24722. {
  24723. front: {
  24724. height: math.unit(6, "feet"),
  24725. weight: math.unit(150, "lb"),
  24726. name: "Front",
  24727. image: {
  24728. source: "./media/characters/terrance-keayes/front.svg",
  24729. extra: 1.005,
  24730. bottom: 151 / 1615
  24731. }
  24732. },
  24733. side: {
  24734. height: math.unit(6, "feet"),
  24735. weight: math.unit(150, "lb"),
  24736. name: "Side",
  24737. image: {
  24738. source: "./media/characters/terrance-keayes/side.svg",
  24739. extra: 1.005,
  24740. bottom: 129.4 / 1544
  24741. }
  24742. },
  24743. back: {
  24744. height: math.unit(6, "feet"),
  24745. weight: math.unit(150, "lb"),
  24746. name: "Back",
  24747. image: {
  24748. source: "./media/characters/terrance-keayes/back.svg",
  24749. extra: 1.005,
  24750. bottom: 58.4 / 1557.3
  24751. }
  24752. },
  24753. dick: {
  24754. height: math.unit(6 * 0.208, "feet"),
  24755. name: "Dick",
  24756. image: {
  24757. source: "./media/characters/terrance-keayes/dick.svg"
  24758. }
  24759. },
  24760. },
  24761. [
  24762. {
  24763. name: "Canon Height",
  24764. height: math.unit(35, "miles"),
  24765. default: true
  24766. },
  24767. ]
  24768. ))
  24769. characterMakers.push(() => makeCharacter(
  24770. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24771. {
  24772. front: {
  24773. height: math.unit(6, "feet"),
  24774. weight: math.unit(150, "lb"),
  24775. name: "Front",
  24776. image: {
  24777. source: "./media/characters/ofelia/front.svg",
  24778. extra: 1130/1117,
  24779. bottom: 91/1221
  24780. }
  24781. },
  24782. back: {
  24783. height: math.unit(6, "feet"),
  24784. weight: math.unit(150, "lb"),
  24785. name: "Back",
  24786. image: {
  24787. source: "./media/characters/ofelia/back.svg",
  24788. extra: 1172/1159,
  24789. bottom: 28/1200
  24790. }
  24791. },
  24792. maw: {
  24793. height: math.unit(1, "feet"),
  24794. name: "Maw",
  24795. image: {
  24796. source: "./media/characters/ofelia/maw.svg"
  24797. }
  24798. },
  24799. foot: {
  24800. height: math.unit(1.949, "feet"),
  24801. name: "Foot",
  24802. image: {
  24803. source: "./media/characters/ofelia/foot.svg"
  24804. }
  24805. },
  24806. },
  24807. [
  24808. {
  24809. name: "Canon Height",
  24810. height: math.unit(2000, "miles"),
  24811. default: true
  24812. },
  24813. ]
  24814. ))
  24815. characterMakers.push(() => makeCharacter(
  24816. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24817. {
  24818. front: {
  24819. height: math.unit(6, "feet"),
  24820. weight: math.unit(150, "lb"),
  24821. name: "Front",
  24822. image: {
  24823. source: "./media/characters/samuel/front.svg",
  24824. extra: 265 / 258,
  24825. bottom: 2 / 266.1566
  24826. }
  24827. },
  24828. },
  24829. [
  24830. {
  24831. name: "Macro",
  24832. height: math.unit(100, "feet"),
  24833. default: true
  24834. },
  24835. {
  24836. name: "Full Size",
  24837. height: math.unit(1000, "miles")
  24838. },
  24839. ]
  24840. ))
  24841. characterMakers.push(() => makeCharacter(
  24842. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24843. {
  24844. front: {
  24845. height: math.unit(6, "feet"),
  24846. weight: math.unit(300, "lb"),
  24847. name: "Front",
  24848. image: {
  24849. source: "./media/characters/beishir-kiel/front.svg",
  24850. extra: 569 / 547,
  24851. bottom: 41.9 / 609
  24852. }
  24853. },
  24854. maw: {
  24855. height: math.unit(6 * 0.202, "feet"),
  24856. name: "Maw",
  24857. image: {
  24858. source: "./media/characters/beishir-kiel/maw.svg"
  24859. }
  24860. },
  24861. },
  24862. [
  24863. {
  24864. name: "Macro",
  24865. height: math.unit(300, "feet"),
  24866. default: true
  24867. },
  24868. ]
  24869. ))
  24870. characterMakers.push(() => makeCharacter(
  24871. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24872. {
  24873. front: {
  24874. height: math.unit(5 + 7/12, "feet"),
  24875. weight: math.unit(120, "lb"),
  24876. name: "Front",
  24877. image: {
  24878. source: "./media/characters/logan-grey/front.svg",
  24879. extra: 1836/1738,
  24880. bottom: 108/1944
  24881. }
  24882. },
  24883. back: {
  24884. height: math.unit(5 + 7/12, "feet"),
  24885. weight: math.unit(120, "lb"),
  24886. name: "Back",
  24887. image: {
  24888. source: "./media/characters/logan-grey/back.svg",
  24889. extra: 1880/1794,
  24890. bottom: 24/1904
  24891. }
  24892. },
  24893. frontSfw: {
  24894. height: math.unit(5 + 7/12, "feet"),
  24895. weight: math.unit(120, "lb"),
  24896. name: "Front (SFW)",
  24897. image: {
  24898. source: "./media/characters/logan-grey/front-sfw.svg",
  24899. extra: 1836/1738,
  24900. bottom: 108/1944
  24901. }
  24902. },
  24903. backSfw: {
  24904. height: math.unit(5 + 7/12, "feet"),
  24905. weight: math.unit(120, "lb"),
  24906. name: "Back (SFW)",
  24907. image: {
  24908. source: "./media/characters/logan-grey/back-sfw.svg",
  24909. extra: 1880/1794,
  24910. bottom: 24/1904
  24911. }
  24912. },
  24913. hands: {
  24914. height: math.unit(0.84, "feet"),
  24915. name: "Hands",
  24916. image: {
  24917. source: "./media/characters/logan-grey/hands.svg"
  24918. }
  24919. },
  24920. paws: {
  24921. height: math.unit(0.72, "feet"),
  24922. name: "Paws",
  24923. image: {
  24924. source: "./media/characters/logan-grey/paws.svg"
  24925. }
  24926. },
  24927. cock: {
  24928. height: math.unit(1.45, "feet"),
  24929. name: "Cock",
  24930. image: {
  24931. source: "./media/characters/logan-grey/cock.svg"
  24932. }
  24933. },
  24934. cockAlt: {
  24935. height: math.unit(1.437, "feet"),
  24936. name: "Cock (alt)",
  24937. image: {
  24938. source: "./media/characters/logan-grey/cock-alt.svg"
  24939. }
  24940. },
  24941. },
  24942. [
  24943. {
  24944. name: "Normal",
  24945. height: math.unit(5 + 8 / 12, "feet")
  24946. },
  24947. {
  24948. name: "The 500 Foot Femboy",
  24949. height: math.unit(500, "feet"),
  24950. default: true
  24951. },
  24952. {
  24953. name: "Megmacro",
  24954. height: math.unit(20, "miles")
  24955. },
  24956. ]
  24957. ))
  24958. characterMakers.push(() => makeCharacter(
  24959. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24960. {
  24961. front: {
  24962. height: math.unit(8 + 2 / 12, "feet"),
  24963. weight: math.unit(275, "lb"),
  24964. name: "Front",
  24965. image: {
  24966. source: "./media/characters/draganta/front.svg",
  24967. extra: 1177 / 1135,
  24968. bottom: 33.46 / 1212.1
  24969. }
  24970. },
  24971. },
  24972. [
  24973. {
  24974. name: "Normal",
  24975. height: math.unit(8 + 6 / 12, "feet"),
  24976. default: true
  24977. },
  24978. {
  24979. name: "Macro",
  24980. height: math.unit(150, "feet")
  24981. },
  24982. {
  24983. name: "Megamacro",
  24984. height: math.unit(1000, "miles")
  24985. },
  24986. ]
  24987. ))
  24988. characterMakers.push(() => makeCharacter(
  24989. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24990. {
  24991. front: {
  24992. height: math.unit(1.72, "m"),
  24993. weight: math.unit(80, "lb"),
  24994. name: "Front",
  24995. image: {
  24996. source: "./media/characters/voski/front.svg",
  24997. extra: 2076.22 / 2022.4,
  24998. bottom: 102.7 / 2177.3866
  24999. }
  25000. },
  25001. frontFlaccid: {
  25002. height: math.unit(1.72, "m"),
  25003. weight: math.unit(80, "lb"),
  25004. name: "Front (Flaccid)",
  25005. image: {
  25006. source: "./media/characters/voski/front-flaccid.svg",
  25007. extra: 2076.22 / 2022.4,
  25008. bottom: 102.7 / 2177.3866
  25009. }
  25010. },
  25011. frontErect: {
  25012. height: math.unit(1.72, "m"),
  25013. weight: math.unit(80, "lb"),
  25014. name: "Front (Erect)",
  25015. image: {
  25016. source: "./media/characters/voski/front-erect.svg",
  25017. extra: 2076.22 / 2022.4,
  25018. bottom: 102.7 / 2177.3866
  25019. }
  25020. },
  25021. back: {
  25022. height: math.unit(1.72, "m"),
  25023. weight: math.unit(80, "lb"),
  25024. name: "Back",
  25025. image: {
  25026. source: "./media/characters/voski/back.svg",
  25027. extra: 2104 / 2051,
  25028. bottom: 10.45 / 2113.63
  25029. }
  25030. },
  25031. },
  25032. [
  25033. {
  25034. name: "Normal",
  25035. height: math.unit(1.72, "m")
  25036. },
  25037. {
  25038. name: "Macro",
  25039. height: math.unit(55, "m"),
  25040. default: true
  25041. },
  25042. {
  25043. name: "Macro+",
  25044. height: math.unit(300, "m")
  25045. },
  25046. {
  25047. name: "Macro++",
  25048. height: math.unit(700, "m")
  25049. },
  25050. {
  25051. name: "Macro+++",
  25052. height: math.unit(4500, "m")
  25053. },
  25054. {
  25055. name: "Macro++++",
  25056. height: math.unit(45, "km")
  25057. },
  25058. {
  25059. name: "Macro+++++",
  25060. height: math.unit(1220, "km")
  25061. },
  25062. ]
  25063. ))
  25064. characterMakers.push(() => makeCharacter(
  25065. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  25066. {
  25067. front: {
  25068. height: math.unit(2.3, "m"),
  25069. weight: math.unit(304, "kg"),
  25070. name: "Front",
  25071. image: {
  25072. source: "./media/characters/icowom-lee/front.svg",
  25073. extra: 985 / 955,
  25074. bottom: 25.4 / 1012
  25075. }
  25076. },
  25077. fronttentacles: {
  25078. height: math.unit(2.3, "m"),
  25079. weight: math.unit(304, "kg"),
  25080. name: "Front-tentacles",
  25081. image: {
  25082. source: "./media/characters/icowom-lee/front-tentacles.svg",
  25083. extra: 985 / 955,
  25084. bottom: 25.4 / 1012
  25085. }
  25086. },
  25087. back: {
  25088. height: math.unit(2.3, "m"),
  25089. weight: math.unit(304, "kg"),
  25090. name: "Back",
  25091. image: {
  25092. source: "./media/characters/icowom-lee/back.svg",
  25093. extra: 975 / 954,
  25094. bottom: 9.5 / 985
  25095. }
  25096. },
  25097. backtentacles: {
  25098. height: math.unit(2.3, "m"),
  25099. weight: math.unit(304, "kg"),
  25100. name: "Back-tentacles",
  25101. image: {
  25102. source: "./media/characters/icowom-lee/back-tentacles.svg",
  25103. extra: 975 / 954,
  25104. bottom: 9.5 / 985
  25105. }
  25106. },
  25107. frontDressed: {
  25108. height: math.unit(2.3, "m"),
  25109. weight: math.unit(304, "kg"),
  25110. name: "Front (Dressed)",
  25111. image: {
  25112. source: "./media/characters/icowom-lee/front-dressed.svg",
  25113. extra: 3076 / 2933,
  25114. bottom: 51.4 / 3125.1889
  25115. }
  25116. },
  25117. rump: {
  25118. height: math.unit(0.776, "meters"),
  25119. name: "Rump",
  25120. image: {
  25121. source: "./media/characters/icowom-lee/rump.svg"
  25122. }
  25123. },
  25124. genitals: {
  25125. height: math.unit(0.78, "meters"),
  25126. name: "Genitals",
  25127. image: {
  25128. source: "./media/characters/icowom-lee/genitals.svg"
  25129. }
  25130. },
  25131. },
  25132. [
  25133. {
  25134. name: "Normal",
  25135. height: math.unit(2.3, "meters"),
  25136. default: true
  25137. },
  25138. {
  25139. name: "Macro",
  25140. height: math.unit(94, "meters"),
  25141. default: true
  25142. },
  25143. ]
  25144. ))
  25145. characterMakers.push(() => makeCharacter(
  25146. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  25147. {
  25148. front: {
  25149. height: math.unit(22, "meters"),
  25150. weight: math.unit(21000, "kg"),
  25151. name: "Front",
  25152. image: {
  25153. source: "./media/characters/shock-diamond/front.svg",
  25154. extra: 2204 / 2053,
  25155. bottom: 65 / 2239.47
  25156. }
  25157. },
  25158. frontNude: {
  25159. height: math.unit(22, "meters"),
  25160. weight: math.unit(21000, "kg"),
  25161. name: "Front (Nude)",
  25162. image: {
  25163. source: "./media/characters/shock-diamond/front-nude.svg",
  25164. extra: 2514 / 2285,
  25165. bottom: 13 / 2527.56
  25166. }
  25167. },
  25168. },
  25169. [
  25170. {
  25171. name: "Normal",
  25172. height: math.unit(3, "meters")
  25173. },
  25174. {
  25175. name: "Macro",
  25176. height: math.unit(22, "meters"),
  25177. default: true
  25178. },
  25179. ]
  25180. ))
  25181. characterMakers.push(() => makeCharacter(
  25182. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  25183. {
  25184. front: {
  25185. height: math.unit(5 + 4/12, "feet"),
  25186. weight: math.unit(125, "lb"),
  25187. name: "Front",
  25188. image: {
  25189. source: "./media/characters/rory/front.svg",
  25190. extra: 1790/1681,
  25191. bottom: 66/1856
  25192. },
  25193. form: "normal",
  25194. default: true
  25195. },
  25196. back: {
  25197. height: math.unit(5 + 4/12, "feet"),
  25198. weight: math.unit(125, "lb"),
  25199. name: "Back",
  25200. image: {
  25201. source: "./media/characters/rory/back.svg",
  25202. extra: 1805/1690,
  25203. bottom: 56/1861
  25204. },
  25205. form: "normal"
  25206. },
  25207. frontDressed: {
  25208. height: math.unit(5 + 4/12, "feet"),
  25209. weight: math.unit(125, "lb"),
  25210. name: "Front (Dressed)",
  25211. image: {
  25212. source: "./media/characters/rory/front-dressed.svg",
  25213. extra: 1790/1681,
  25214. bottom: 66/1856
  25215. },
  25216. form: "normal"
  25217. },
  25218. backDressed: {
  25219. height: math.unit(5 + 4/12, "feet"),
  25220. weight: math.unit(125, "lb"),
  25221. name: "Back (Dressed)",
  25222. image: {
  25223. source: "./media/characters/rory/back-dressed.svg",
  25224. extra: 1805/1690,
  25225. bottom: 56/1861
  25226. },
  25227. form: "normal"
  25228. },
  25229. frontNsfw: {
  25230. height: math.unit(5 + 4/12, "feet"),
  25231. weight: math.unit(125, "lb"),
  25232. name: "Front (NSFW)",
  25233. image: {
  25234. source: "./media/characters/rory/front-nsfw.svg",
  25235. extra: 1790/1681,
  25236. bottom: 66/1856
  25237. },
  25238. form: "normal"
  25239. },
  25240. backNsfw: {
  25241. height: math.unit(5 + 4/12, "feet"),
  25242. weight: math.unit(125, "lb"),
  25243. name: "Back (NSFW)",
  25244. image: {
  25245. source: "./media/characters/rory/back-nsfw.svg",
  25246. extra: 1805/1690,
  25247. bottom: 56/1861
  25248. },
  25249. form: "normal"
  25250. },
  25251. dick: {
  25252. height: math.unit(0.8, "feet"),
  25253. name: "Dick",
  25254. image: {
  25255. source: "./media/characters/rory/dick.svg"
  25256. },
  25257. form: "normal"
  25258. },
  25259. thicc_front: {
  25260. height: math.unit(5 + 4/12, "feet"),
  25261. weight: math.unit(195, "lb"),
  25262. name: "Front",
  25263. image: {
  25264. source: "./media/characters/rory/thicc-front.svg",
  25265. extra: 1220/1100,
  25266. bottom: 103/1323
  25267. },
  25268. form: "thicc",
  25269. default: true
  25270. },
  25271. thicc_back: {
  25272. height: math.unit(5 + 4/12, "feet"),
  25273. weight: math.unit(195, "lb"),
  25274. name: "Back",
  25275. image: {
  25276. source: "./media/characters/rory/thicc-back.svg",
  25277. extra: 1166/1086,
  25278. bottom: 35/1201
  25279. },
  25280. form: "thicc"
  25281. },
  25282. },
  25283. [
  25284. {
  25285. name: "Micro",
  25286. height: math.unit(3, "inches"),
  25287. allForms: true
  25288. },
  25289. {
  25290. name: "Normal",
  25291. height: math.unit(5 + 4/12, "feet"),
  25292. allForms: true,
  25293. default: true
  25294. },
  25295. {
  25296. name: "Macro",
  25297. height: math.unit(90, "feet"),
  25298. allForms: true
  25299. },
  25300. {
  25301. name: "Supercharged",
  25302. height: math.unit(270, "feet"),
  25303. allForms: true
  25304. },
  25305. ],
  25306. {
  25307. "normal": {
  25308. name: "Normal",
  25309. default: true
  25310. },
  25311. "thicc": {
  25312. name: "Thicc",
  25313. },
  25314. }
  25315. ))
  25316. characterMakers.push(() => makeCharacter(
  25317. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25318. {
  25319. front: {
  25320. height: math.unit(5 + 9 / 12, "feet"),
  25321. weight: math.unit(190, "lb"),
  25322. name: "Front",
  25323. image: {
  25324. source: "./media/characters/sprisk/front.svg",
  25325. extra: 1225 / 1180,
  25326. bottom: 42.7 / 1266.4
  25327. }
  25328. },
  25329. frontNsfw: {
  25330. height: math.unit(5 + 9 / 12, "feet"),
  25331. weight: math.unit(190, "lb"),
  25332. name: "Front (NSFW)",
  25333. image: {
  25334. source: "./media/characters/sprisk/front-nsfw.svg",
  25335. extra: 1225 / 1180,
  25336. bottom: 42.7 / 1266.4
  25337. }
  25338. },
  25339. back: {
  25340. height: math.unit(5 + 9 / 12, "feet"),
  25341. weight: math.unit(190, "lb"),
  25342. name: "Back",
  25343. image: {
  25344. source: "./media/characters/sprisk/back.svg",
  25345. extra: 1247 / 1200,
  25346. bottom: 5.6 / 1253.04
  25347. }
  25348. },
  25349. },
  25350. [
  25351. {
  25352. name: "Tiny",
  25353. height: math.unit(2, "inches")
  25354. },
  25355. {
  25356. name: "Normal",
  25357. height: math.unit(5 + 9 / 12, "feet"),
  25358. default: true
  25359. },
  25360. {
  25361. name: "Mini Macro",
  25362. height: math.unit(18, "feet")
  25363. },
  25364. {
  25365. name: "Macro",
  25366. height: math.unit(100, "feet")
  25367. },
  25368. {
  25369. name: "MACRO",
  25370. height: math.unit(50, "miles")
  25371. },
  25372. {
  25373. name: "M A C R O",
  25374. height: math.unit(300, "miles")
  25375. },
  25376. ]
  25377. ))
  25378. characterMakers.push(() => makeCharacter(
  25379. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25380. {
  25381. side: {
  25382. height: math.unit(15.6, "meters"),
  25383. weight: math.unit(700000, "kg"),
  25384. name: "Side",
  25385. image: {
  25386. source: "./media/characters/bunsen/side.svg",
  25387. extra: 1644 / 358
  25388. }
  25389. },
  25390. foot: {
  25391. height: math.unit(1.611 * 1644 / 358, "meter"),
  25392. name: "Foot",
  25393. image: {
  25394. source: "./media/characters/bunsen/foot.svg"
  25395. }
  25396. },
  25397. },
  25398. [
  25399. {
  25400. name: "Small",
  25401. height: math.unit(10, "feet")
  25402. },
  25403. {
  25404. name: "Normal",
  25405. height: math.unit(15.6, "meters"),
  25406. default: true
  25407. },
  25408. ]
  25409. ))
  25410. characterMakers.push(() => makeCharacter(
  25411. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25412. {
  25413. front: {
  25414. height: math.unit(4 + 11 / 12, "feet"),
  25415. weight: math.unit(140, "lb"),
  25416. name: "Front",
  25417. image: {
  25418. source: "./media/characters/sesh/front.svg",
  25419. extra: 3420 / 3231,
  25420. bottom: 72 / 3949.5
  25421. }
  25422. },
  25423. },
  25424. [
  25425. {
  25426. name: "Normal",
  25427. height: math.unit(4 + 11 / 12, "feet")
  25428. },
  25429. {
  25430. name: "Grown",
  25431. height: math.unit(15, "feet"),
  25432. default: true
  25433. },
  25434. {
  25435. name: "Macro",
  25436. height: math.unit(1500, "feet")
  25437. },
  25438. {
  25439. name: "Megamacro",
  25440. height: math.unit(30, "miles")
  25441. },
  25442. {
  25443. name: "Continental",
  25444. height: math.unit(3000, "miles")
  25445. },
  25446. {
  25447. name: "Gravity Mass",
  25448. height: math.unit(300000, "miles")
  25449. },
  25450. {
  25451. name: "Planet Buster",
  25452. height: math.unit(30000000, "miles")
  25453. },
  25454. {
  25455. name: "Big",
  25456. height: math.unit(3000000000, "miles")
  25457. },
  25458. ]
  25459. ))
  25460. characterMakers.push(() => makeCharacter(
  25461. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25462. {
  25463. front: {
  25464. height: math.unit(9, "feet"),
  25465. weight: math.unit(350, "lb"),
  25466. name: "Front",
  25467. image: {
  25468. source: "./media/characters/pepper/front.svg",
  25469. extra: 1448 / 1312,
  25470. bottom: 9.4 / 1457.88
  25471. }
  25472. },
  25473. back: {
  25474. height: math.unit(9, "feet"),
  25475. weight: math.unit(350, "lb"),
  25476. name: "Back",
  25477. image: {
  25478. source: "./media/characters/pepper/back.svg",
  25479. extra: 1423 / 1300,
  25480. bottom: 4.6 / 1429
  25481. }
  25482. },
  25483. maw: {
  25484. height: math.unit(0.932, "feet"),
  25485. name: "Maw",
  25486. image: {
  25487. source: "./media/characters/pepper/maw.svg"
  25488. }
  25489. },
  25490. },
  25491. [
  25492. {
  25493. name: "Normal",
  25494. height: math.unit(9, "feet"),
  25495. default: true
  25496. },
  25497. ]
  25498. ))
  25499. characterMakers.push(() => makeCharacter(
  25500. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25501. {
  25502. front: {
  25503. height: math.unit(6, "feet"),
  25504. weight: math.unit(150, "lb"),
  25505. name: "Front",
  25506. image: {
  25507. source: "./media/characters/maelstrom/front.svg",
  25508. extra: 2100 / 1883,
  25509. bottom: 94 / 2196.7
  25510. }
  25511. },
  25512. },
  25513. [
  25514. {
  25515. name: "Less Kaiju",
  25516. height: math.unit(200, "feet")
  25517. },
  25518. {
  25519. name: "Kaiju",
  25520. height: math.unit(400, "feet"),
  25521. default: true
  25522. },
  25523. {
  25524. name: "Kaiju-er",
  25525. height: math.unit(600, "feet")
  25526. },
  25527. ]
  25528. ))
  25529. characterMakers.push(() => makeCharacter(
  25530. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25531. {
  25532. front: {
  25533. height: math.unit(6 + 5 / 12, "feet"),
  25534. weight: math.unit(180, "lb"),
  25535. name: "Front",
  25536. image: {
  25537. source: "./media/characters/lexir/front.svg",
  25538. extra: 180 / 172,
  25539. bottom: 12 / 192
  25540. }
  25541. },
  25542. back: {
  25543. height: math.unit(6 + 5 / 12, "feet"),
  25544. weight: math.unit(180, "lb"),
  25545. name: "Back",
  25546. image: {
  25547. source: "./media/characters/lexir/back.svg",
  25548. extra: 1273/1201,
  25549. bottom: 39/1312
  25550. }
  25551. },
  25552. },
  25553. [
  25554. {
  25555. name: "Very Smal",
  25556. height: math.unit(1, "nm")
  25557. },
  25558. {
  25559. name: "Normal",
  25560. height: math.unit(6 + 5 / 12, "feet"),
  25561. default: true
  25562. },
  25563. {
  25564. name: "Macro",
  25565. height: math.unit(1, "mile")
  25566. },
  25567. {
  25568. name: "Megamacro",
  25569. height: math.unit(50, "miles")
  25570. },
  25571. ]
  25572. ))
  25573. characterMakers.push(() => makeCharacter(
  25574. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25575. {
  25576. front: {
  25577. height: math.unit(1.5, "meters"),
  25578. weight: math.unit(100, "lb"),
  25579. name: "Front",
  25580. image: {
  25581. source: "./media/characters/maksio/front.svg",
  25582. extra: 1549 / 1531,
  25583. bottom: 123.7 / 1674.5429
  25584. }
  25585. },
  25586. back: {
  25587. height: math.unit(1.5, "meters"),
  25588. weight: math.unit(100, "lb"),
  25589. name: "Back",
  25590. image: {
  25591. source: "./media/characters/maksio/back.svg",
  25592. extra: 1541 / 1509,
  25593. bottom: 97 / 1639
  25594. }
  25595. },
  25596. hand: {
  25597. height: math.unit(0.621, "feet"),
  25598. name: "Hand",
  25599. image: {
  25600. source: "./media/characters/maksio/hand.svg"
  25601. }
  25602. },
  25603. foot: {
  25604. height: math.unit(1.611, "feet"),
  25605. name: "Foot",
  25606. image: {
  25607. source: "./media/characters/maksio/foot.svg"
  25608. }
  25609. },
  25610. },
  25611. [
  25612. {
  25613. name: "Shrunken",
  25614. height: math.unit(10, "cm")
  25615. },
  25616. {
  25617. name: "Normal",
  25618. height: math.unit(150, "cm"),
  25619. default: true
  25620. },
  25621. ]
  25622. ))
  25623. characterMakers.push(() => makeCharacter(
  25624. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25625. {
  25626. front: {
  25627. height: math.unit(100, "feet"),
  25628. name: "Front",
  25629. image: {
  25630. source: "./media/characters/erza-bear/front.svg",
  25631. extra: 2449 / 2390,
  25632. bottom: 46 / 2494
  25633. }
  25634. },
  25635. back: {
  25636. height: math.unit(100, "feet"),
  25637. name: "Back",
  25638. image: {
  25639. source: "./media/characters/erza-bear/back.svg",
  25640. extra: 2489 / 2430,
  25641. bottom: 85.4 / 2480
  25642. }
  25643. },
  25644. tail: {
  25645. height: math.unit(42, "feet"),
  25646. name: "Tail",
  25647. image: {
  25648. source: "./media/characters/erza-bear/tail.svg"
  25649. }
  25650. },
  25651. tongue: {
  25652. height: math.unit(8, "feet"),
  25653. name: "Tongue",
  25654. image: {
  25655. source: "./media/characters/erza-bear/tongue.svg"
  25656. }
  25657. },
  25658. dick: {
  25659. height: math.unit(10.5, "feet"),
  25660. name: "Dick",
  25661. image: {
  25662. source: "./media/characters/erza-bear/dick.svg"
  25663. }
  25664. },
  25665. dickVertical: {
  25666. height: math.unit(16.9, "feet"),
  25667. name: "Dick (Vertical)",
  25668. image: {
  25669. source: "./media/characters/erza-bear/dick-vertical.svg"
  25670. }
  25671. },
  25672. },
  25673. [
  25674. {
  25675. name: "Macro",
  25676. height: math.unit(100, "feet"),
  25677. default: true
  25678. },
  25679. ]
  25680. ))
  25681. characterMakers.push(() => makeCharacter(
  25682. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25683. {
  25684. front: {
  25685. height: math.unit(172, "cm"),
  25686. weight: math.unit(73, "kg"),
  25687. name: "Front",
  25688. image: {
  25689. source: "./media/characters/violet-flor/front.svg",
  25690. extra: 1474/1379,
  25691. bottom: 113/1587
  25692. }
  25693. },
  25694. back: {
  25695. height: math.unit(180, "cm"),
  25696. weight: math.unit(73, "kg"),
  25697. name: "Back",
  25698. image: {
  25699. source: "./media/characters/violet-flor/back.svg",
  25700. extra: 1660/1567,
  25701. bottom: 49/1709
  25702. }
  25703. },
  25704. },
  25705. [
  25706. {
  25707. name: "Normal",
  25708. height: math.unit(172, "cm"),
  25709. default: true
  25710. },
  25711. ]
  25712. ))
  25713. characterMakers.push(() => makeCharacter(
  25714. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25715. {
  25716. front: {
  25717. height: math.unit(6, "feet"),
  25718. weight: math.unit(220, "lb"),
  25719. name: "Front",
  25720. image: {
  25721. source: "./media/characters/lynn-rhea/front.svg",
  25722. extra: 310 / 273
  25723. }
  25724. },
  25725. back: {
  25726. height: math.unit(6, "feet"),
  25727. weight: math.unit(220, "lb"),
  25728. name: "Back",
  25729. image: {
  25730. source: "./media/characters/lynn-rhea/back.svg",
  25731. extra: 310 / 273
  25732. }
  25733. },
  25734. dicks: {
  25735. height: math.unit(0.9, "feet"),
  25736. name: "Dicks",
  25737. image: {
  25738. source: "./media/characters/lynn-rhea/dicks.svg"
  25739. }
  25740. },
  25741. slit: {
  25742. height: math.unit(0.4, "feet"),
  25743. name: "Slit",
  25744. image: {
  25745. source: "./media/characters/lynn-rhea/slit.svg"
  25746. }
  25747. },
  25748. },
  25749. [
  25750. {
  25751. name: "Micro",
  25752. height: math.unit(1, "inch")
  25753. },
  25754. {
  25755. name: "Macro",
  25756. height: math.unit(60, "feet"),
  25757. default: true
  25758. },
  25759. {
  25760. name: "Megamacro",
  25761. height: math.unit(2, "miles")
  25762. },
  25763. {
  25764. name: "Gigamacro",
  25765. height: math.unit(3, "earths")
  25766. },
  25767. {
  25768. name: "Galactic",
  25769. height: math.unit(0.8, "galaxies")
  25770. },
  25771. ]
  25772. ))
  25773. characterMakers.push(() => makeCharacter(
  25774. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25775. {
  25776. front: {
  25777. height: math.unit(1600, "feet"),
  25778. weight: math.unit(85758785169, "kg"),
  25779. name: "Front",
  25780. image: {
  25781. source: "./media/characters/valathos/front.svg",
  25782. extra: 1451 / 1339
  25783. }
  25784. },
  25785. },
  25786. [
  25787. {
  25788. name: "Macro",
  25789. height: math.unit(1600, "feet"),
  25790. default: true
  25791. },
  25792. ]
  25793. ))
  25794. characterMakers.push(() => makeCharacter(
  25795. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25796. {
  25797. front: {
  25798. height: math.unit(7 + 5 / 12, "feet"),
  25799. weight: math.unit(300, "lb"),
  25800. name: "Front",
  25801. image: {
  25802. source: "./media/characters/azula/front.svg",
  25803. extra: 3208 / 2880,
  25804. bottom: 80.2 / 3277
  25805. }
  25806. },
  25807. back: {
  25808. height: math.unit(7 + 5 / 12, "feet"),
  25809. weight: math.unit(300, "lb"),
  25810. name: "Back",
  25811. image: {
  25812. source: "./media/characters/azula/back.svg",
  25813. extra: 3169 / 2822,
  25814. bottom: 150.6 / 3321
  25815. }
  25816. },
  25817. },
  25818. [
  25819. {
  25820. name: "Normal",
  25821. height: math.unit(7 + 5 / 12, "feet"),
  25822. default: true
  25823. },
  25824. {
  25825. name: "Big",
  25826. height: math.unit(20, "feet")
  25827. },
  25828. ]
  25829. ))
  25830. characterMakers.push(() => makeCharacter(
  25831. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25832. {
  25833. front: {
  25834. height: math.unit(5 + 1 / 12, "feet"),
  25835. weight: math.unit(110, "lb"),
  25836. name: "Front",
  25837. image: {
  25838. source: "./media/characters/rupert/front.svg",
  25839. extra: 1549 / 1495,
  25840. bottom: 54.2 / 1604.4
  25841. }
  25842. },
  25843. },
  25844. [
  25845. {
  25846. name: "Normal",
  25847. height: math.unit(5 + 1 / 12, "feet"),
  25848. default: true
  25849. },
  25850. ]
  25851. ))
  25852. characterMakers.push(() => makeCharacter(
  25853. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25854. {
  25855. front: {
  25856. height: math.unit(8 + 4 / 12, "feet"),
  25857. weight: math.unit(350, "lb"),
  25858. name: "Front",
  25859. image: {
  25860. source: "./media/characters/sheera-castellar/front.svg",
  25861. extra: 1957 / 1894,
  25862. bottom: 26.97 / 1975.017
  25863. }
  25864. },
  25865. side: {
  25866. height: math.unit(8 + 4 / 12, "feet"),
  25867. weight: math.unit(350, "lb"),
  25868. name: "Side",
  25869. image: {
  25870. source: "./media/characters/sheera-castellar/side.svg",
  25871. extra: 1957 / 1894
  25872. }
  25873. },
  25874. back: {
  25875. height: math.unit(8 + 4 / 12, "feet"),
  25876. weight: math.unit(350, "lb"),
  25877. name: "Back",
  25878. image: {
  25879. source: "./media/characters/sheera-castellar/back.svg",
  25880. extra: 1957 / 1894
  25881. }
  25882. },
  25883. angled: {
  25884. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25885. weight: math.unit(350, "lb"),
  25886. name: "Angled",
  25887. image: {
  25888. source: "./media/characters/sheera-castellar/angled.svg",
  25889. extra: 1807 / 1707,
  25890. bottom: 68 / 1875
  25891. }
  25892. },
  25893. genitals: {
  25894. height: math.unit(2.2, "feet"),
  25895. name: "Genitals",
  25896. image: {
  25897. source: "./media/characters/sheera-castellar/genitals.svg"
  25898. }
  25899. },
  25900. taur: {
  25901. height: math.unit(10 + 6/12, "feet"),
  25902. name: "Taur",
  25903. image: {
  25904. source: "./media/characters/sheera-castellar/taur.svg",
  25905. extra: 2017/1909,
  25906. bottom: 185/2202
  25907. }
  25908. },
  25909. },
  25910. [
  25911. {
  25912. name: "Normal",
  25913. height: math.unit(8 + 4 / 12, "feet")
  25914. },
  25915. {
  25916. name: "Macro",
  25917. height: math.unit(150, "feet"),
  25918. default: true
  25919. },
  25920. {
  25921. name: "Macro+",
  25922. height: math.unit(800, "feet")
  25923. },
  25924. ]
  25925. ))
  25926. characterMakers.push(() => makeCharacter(
  25927. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25928. {
  25929. front: {
  25930. height: math.unit(6, "feet"),
  25931. weight: math.unit(150, "lb"),
  25932. name: "Front",
  25933. image: {
  25934. source: "./media/characters/jaipur/front.svg",
  25935. extra: 3860 / 3731,
  25936. bottom: 287 / 4140
  25937. }
  25938. },
  25939. back: {
  25940. height: math.unit(6, "feet"),
  25941. weight: math.unit(150, "lb"),
  25942. name: "Back",
  25943. image: {
  25944. source: "./media/characters/jaipur/back.svg",
  25945. extra: 1637/1561,
  25946. bottom: 154/1791
  25947. }
  25948. },
  25949. },
  25950. [
  25951. {
  25952. name: "Normal",
  25953. height: math.unit(1.85, "meters"),
  25954. default: true
  25955. },
  25956. {
  25957. name: "Macro",
  25958. height: math.unit(150, "meters")
  25959. },
  25960. {
  25961. name: "Macro+",
  25962. height: math.unit(0.5, "miles")
  25963. },
  25964. {
  25965. name: "Macro++",
  25966. height: math.unit(2.5, "miles")
  25967. },
  25968. {
  25969. name: "Macro+++",
  25970. height: math.unit(12, "miles")
  25971. },
  25972. {
  25973. name: "Macro++++",
  25974. height: math.unit(120, "miles")
  25975. },
  25976. {
  25977. name: "Macro+++++",
  25978. height: math.unit(1200, "miles")
  25979. },
  25980. ]
  25981. ))
  25982. characterMakers.push(() => makeCharacter(
  25983. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25984. {
  25985. front: {
  25986. height: math.unit(6, "feet"),
  25987. weight: math.unit(150, "lb"),
  25988. name: "Front",
  25989. image: {
  25990. source: "./media/characters/sheila-wolf/front.svg",
  25991. extra: 1931 / 1808,
  25992. bottom: 29.5 / 1960
  25993. }
  25994. },
  25995. dick: {
  25996. height: math.unit(1.464, "feet"),
  25997. name: "Dick",
  25998. image: {
  25999. source: "./media/characters/sheila-wolf/dick.svg"
  26000. }
  26001. },
  26002. muzzle: {
  26003. height: math.unit(0.513, "feet"),
  26004. name: "Muzzle",
  26005. image: {
  26006. source: "./media/characters/sheila-wolf/muzzle.svg"
  26007. }
  26008. },
  26009. },
  26010. [
  26011. {
  26012. name: "Macro",
  26013. height: math.unit(70, "feet"),
  26014. default: true
  26015. },
  26016. ]
  26017. ))
  26018. characterMakers.push(() => makeCharacter(
  26019. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  26020. {
  26021. front: {
  26022. height: math.unit(32, "meters"),
  26023. weight: math.unit(300000, "kg"),
  26024. name: "Front",
  26025. image: {
  26026. source: "./media/characters/almor/front.svg",
  26027. extra: 1408 / 1322,
  26028. bottom: 94.6 / 1506.5
  26029. }
  26030. },
  26031. },
  26032. [
  26033. {
  26034. name: "Macro",
  26035. height: math.unit(32, "meters"),
  26036. default: true
  26037. },
  26038. ]
  26039. ))
  26040. characterMakers.push(() => makeCharacter(
  26041. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  26042. {
  26043. front: {
  26044. height: math.unit(7, "feet"),
  26045. weight: math.unit(200, "lb"),
  26046. name: "Front",
  26047. image: {
  26048. source: "./media/characters/silver/front.svg",
  26049. extra: 472.1 / 450.5,
  26050. bottom: 26.5 / 499.424
  26051. }
  26052. },
  26053. },
  26054. [
  26055. {
  26056. name: "Normal",
  26057. height: math.unit(7, "feet"),
  26058. default: true
  26059. },
  26060. {
  26061. name: "Macro",
  26062. height: math.unit(800, "feet")
  26063. },
  26064. {
  26065. name: "Megamacro",
  26066. height: math.unit(250, "miles")
  26067. },
  26068. ]
  26069. ))
  26070. characterMakers.push(() => makeCharacter(
  26071. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  26072. {
  26073. front: {
  26074. height: math.unit(6, "feet"),
  26075. weight: math.unit(150, "lb"),
  26076. name: "Front",
  26077. image: {
  26078. source: "./media/characters/pliskin/front.svg",
  26079. extra: 1469 / 1359,
  26080. bottom: 70 / 1540
  26081. }
  26082. },
  26083. },
  26084. [
  26085. {
  26086. name: "Micro",
  26087. height: math.unit(3, "inches")
  26088. },
  26089. {
  26090. name: "Normal",
  26091. height: math.unit(5 + 11 / 12, "feet"),
  26092. default: true
  26093. },
  26094. {
  26095. name: "Macro",
  26096. height: math.unit(120, "feet")
  26097. },
  26098. ]
  26099. ))
  26100. characterMakers.push(() => makeCharacter(
  26101. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  26102. {
  26103. front: {
  26104. height: math.unit(6, "feet"),
  26105. weight: math.unit(150, "lb"),
  26106. name: "Front",
  26107. image: {
  26108. source: "./media/characters/sammy/front.svg",
  26109. extra: 1193 / 1089,
  26110. bottom: 30.5 / 1226
  26111. }
  26112. },
  26113. },
  26114. [
  26115. {
  26116. name: "Macro",
  26117. height: math.unit(1700, "feet"),
  26118. default: true
  26119. },
  26120. {
  26121. name: "Examacro",
  26122. height: math.unit(2.5e9, "lightyears")
  26123. },
  26124. ]
  26125. ))
  26126. characterMakers.push(() => makeCharacter(
  26127. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  26128. {
  26129. front: {
  26130. height: math.unit(21, "meters"),
  26131. weight: math.unit(12, "tonnes"),
  26132. name: "Front",
  26133. image: {
  26134. source: "./media/characters/kuru/front.svg",
  26135. extra: 4301 / 3785,
  26136. bottom: 371.3 / 4691
  26137. }
  26138. },
  26139. },
  26140. [
  26141. {
  26142. name: "Macro",
  26143. height: math.unit(21, "meters"),
  26144. default: true
  26145. },
  26146. ]
  26147. ))
  26148. characterMakers.push(() => makeCharacter(
  26149. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  26150. {
  26151. front: {
  26152. height: math.unit(23, "meters"),
  26153. weight: math.unit(12.2, "tonnes"),
  26154. name: "Front",
  26155. image: {
  26156. source: "./media/characters/rakka/front.svg",
  26157. extra: 4670 / 4169,
  26158. bottom: 301 / 4968.7
  26159. }
  26160. },
  26161. },
  26162. [
  26163. {
  26164. name: "Macro",
  26165. height: math.unit(23, "meters"),
  26166. default: true
  26167. },
  26168. ]
  26169. ))
  26170. characterMakers.push(() => makeCharacter(
  26171. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  26172. {
  26173. front: {
  26174. height: math.unit(6, "feet"),
  26175. weight: math.unit(150, "lb"),
  26176. name: "Front",
  26177. image: {
  26178. source: "./media/characters/rhys-feline/front.svg",
  26179. extra: 2488 / 2308,
  26180. bottom: 35.67 / 2519.19
  26181. }
  26182. },
  26183. },
  26184. [
  26185. {
  26186. name: "Really Small",
  26187. height: math.unit(1, "nm")
  26188. },
  26189. {
  26190. name: "Micro",
  26191. height: math.unit(4, "inches")
  26192. },
  26193. {
  26194. name: "Normal",
  26195. height: math.unit(4 + 10 / 12, "feet"),
  26196. default: true
  26197. },
  26198. {
  26199. name: "Macro",
  26200. height: math.unit(100, "feet")
  26201. },
  26202. {
  26203. name: "Megamacto",
  26204. height: math.unit(50, "miles")
  26205. },
  26206. ]
  26207. ))
  26208. characterMakers.push(() => makeCharacter(
  26209. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  26210. {
  26211. side: {
  26212. height: math.unit(30, "feet"),
  26213. weight: math.unit(35000, "kg"),
  26214. name: "Side",
  26215. image: {
  26216. source: "./media/characters/alydar/side.svg",
  26217. extra: 234 / 222,
  26218. bottom: 6.5 / 241
  26219. }
  26220. },
  26221. front: {
  26222. height: math.unit(30, "feet"),
  26223. weight: math.unit(35000, "kg"),
  26224. name: "Front",
  26225. image: {
  26226. source: "./media/characters/alydar/front.svg",
  26227. extra: 223.37 / 210.2,
  26228. bottom: 22.3 / 246.76
  26229. }
  26230. },
  26231. top: {
  26232. height: math.unit(64.54, "feet"),
  26233. weight: math.unit(35000, "kg"),
  26234. name: "Top",
  26235. image: {
  26236. source: "./media/characters/alydar/top.svg"
  26237. }
  26238. },
  26239. anthro: {
  26240. height: math.unit(30, "feet"),
  26241. weight: math.unit(9000, "kg"),
  26242. name: "Anthro",
  26243. image: {
  26244. source: "./media/characters/alydar/anthro.svg",
  26245. extra: 432 / 421,
  26246. bottom: 7.18 / 440
  26247. }
  26248. },
  26249. maw: {
  26250. height: math.unit(11.693, "feet"),
  26251. name: "Maw",
  26252. image: {
  26253. source: "./media/characters/alydar/maw.svg"
  26254. }
  26255. },
  26256. head: {
  26257. height: math.unit(11.693, "feet"),
  26258. name: "Head",
  26259. image: {
  26260. source: "./media/characters/alydar/head.svg"
  26261. }
  26262. },
  26263. headAlt: {
  26264. height: math.unit(12.861, "feet"),
  26265. name: "Head (Alt)",
  26266. image: {
  26267. source: "./media/characters/alydar/head-alt.svg"
  26268. }
  26269. },
  26270. wing: {
  26271. height: math.unit(20.712, "feet"),
  26272. name: "Wing",
  26273. image: {
  26274. source: "./media/characters/alydar/wing.svg"
  26275. }
  26276. },
  26277. wingFeather: {
  26278. height: math.unit(9.662, "feet"),
  26279. name: "Wing Feather",
  26280. image: {
  26281. source: "./media/characters/alydar/wing-feather.svg"
  26282. }
  26283. },
  26284. countourFeather: {
  26285. height: math.unit(4.154, "feet"),
  26286. name: "Contour Feather",
  26287. image: {
  26288. source: "./media/characters/alydar/contour-feather.svg"
  26289. }
  26290. },
  26291. },
  26292. [
  26293. {
  26294. name: "Diplomatic",
  26295. height: math.unit(13, "feet"),
  26296. default: true
  26297. },
  26298. {
  26299. name: "Small",
  26300. height: math.unit(30, "feet")
  26301. },
  26302. {
  26303. name: "Normal",
  26304. height: math.unit(95, "feet"),
  26305. default: true
  26306. },
  26307. {
  26308. name: "Large",
  26309. height: math.unit(285, "feet")
  26310. },
  26311. {
  26312. name: "Incomprehensible",
  26313. height: math.unit(450, "megameters")
  26314. },
  26315. ]
  26316. ))
  26317. characterMakers.push(() => makeCharacter(
  26318. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26319. {
  26320. side: {
  26321. height: math.unit(11, "feet"),
  26322. weight: math.unit(1750, "kg"),
  26323. name: "Side",
  26324. image: {
  26325. source: "./media/characters/selicia/side.svg",
  26326. extra: 440 / 396,
  26327. bottom: 24.8 / 465.979
  26328. }
  26329. },
  26330. maw: {
  26331. height: math.unit(4.665, "feet"),
  26332. name: "Maw",
  26333. image: {
  26334. source: "./media/characters/selicia/maw.svg"
  26335. }
  26336. },
  26337. },
  26338. [
  26339. {
  26340. name: "Normal",
  26341. height: math.unit(11, "feet"),
  26342. default: true
  26343. },
  26344. ]
  26345. ))
  26346. characterMakers.push(() => makeCharacter(
  26347. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26348. {
  26349. side: {
  26350. height: math.unit(2 + 6 / 12, "feet"),
  26351. weight: math.unit(30, "lb"),
  26352. name: "Side",
  26353. image: {
  26354. source: "./media/characters/layla/side.svg",
  26355. extra: 244 / 188,
  26356. bottom: 18.2 / 262.1
  26357. }
  26358. },
  26359. back: {
  26360. height: math.unit(2 + 6 / 12, "feet"),
  26361. weight: math.unit(30, "lb"),
  26362. name: "Back",
  26363. image: {
  26364. source: "./media/characters/layla/back.svg",
  26365. extra: 308 / 241.5,
  26366. bottom: 8.9 / 316.8
  26367. }
  26368. },
  26369. cumming: {
  26370. height: math.unit(2 + 6 / 12, "feet"),
  26371. weight: math.unit(30, "lb"),
  26372. name: "Cumming",
  26373. image: {
  26374. source: "./media/characters/layla/cumming.svg",
  26375. extra: 342 / 279,
  26376. bottom: 595 / 938
  26377. }
  26378. },
  26379. dickFlaccid: {
  26380. height: math.unit(2.595, "feet"),
  26381. name: "Flaccid Genitals",
  26382. image: {
  26383. source: "./media/characters/layla/dick-flaccid.svg"
  26384. }
  26385. },
  26386. dickErect: {
  26387. height: math.unit(2.359, "feet"),
  26388. name: "Erect Genitals",
  26389. image: {
  26390. source: "./media/characters/layla/dick-erect.svg"
  26391. }
  26392. },
  26393. dragon: {
  26394. height: math.unit(40, "feet"),
  26395. name: "Dragon",
  26396. image: {
  26397. source: "./media/characters/layla/dragon.svg",
  26398. extra: 610/535,
  26399. bottom: 367/977
  26400. }
  26401. },
  26402. taur: {
  26403. height: math.unit(30, "feet"),
  26404. name: "Taur",
  26405. image: {
  26406. source: "./media/characters/layla/taur.svg",
  26407. extra: 1268/1199,
  26408. bottom: 112/1380
  26409. }
  26410. },
  26411. },
  26412. [
  26413. {
  26414. name: "Micro",
  26415. height: math.unit(1, "inch")
  26416. },
  26417. {
  26418. name: "Small",
  26419. height: math.unit(1, "foot")
  26420. },
  26421. {
  26422. name: "Normal",
  26423. height: math.unit(2 + 6 / 12, "feet"),
  26424. default: true
  26425. },
  26426. {
  26427. name: "Macro",
  26428. height: math.unit(200, "feet")
  26429. },
  26430. {
  26431. name: "Megamacro",
  26432. height: math.unit(1000, "miles")
  26433. },
  26434. {
  26435. name: "Planetary",
  26436. height: math.unit(8000, "miles")
  26437. },
  26438. {
  26439. name: "True Layla",
  26440. height: math.unit(200000 * 7, "multiverses")
  26441. },
  26442. ]
  26443. ))
  26444. characterMakers.push(() => makeCharacter(
  26445. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26446. {
  26447. back: {
  26448. height: math.unit(10.5, "feet"),
  26449. weight: math.unit(800, "lb"),
  26450. name: "Back",
  26451. image: {
  26452. source: "./media/characters/knox/back.svg",
  26453. extra: 1486 / 1089,
  26454. bottom: 107 / 1601.4
  26455. }
  26456. },
  26457. side: {
  26458. height: math.unit(10.5, "feet"),
  26459. weight: math.unit(800, "lb"),
  26460. name: "Side",
  26461. image: {
  26462. source: "./media/characters/knox/side.svg",
  26463. extra: 244 / 218,
  26464. bottom: 14 / 260
  26465. }
  26466. },
  26467. },
  26468. [
  26469. {
  26470. name: "Compact",
  26471. height: math.unit(10.5, "feet"),
  26472. default: true
  26473. },
  26474. {
  26475. name: "Dynamax",
  26476. height: math.unit(210, "feet")
  26477. },
  26478. {
  26479. name: "Full Macro",
  26480. height: math.unit(850, "feet")
  26481. },
  26482. ]
  26483. ))
  26484. characterMakers.push(() => makeCharacter(
  26485. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26486. {
  26487. front: {
  26488. height: math.unit(28, "feet"),
  26489. weight: math.unit(10500, "lb"),
  26490. name: "Front",
  26491. image: {
  26492. source: "./media/characters/kayda/front.svg",
  26493. extra: 1536 / 1428,
  26494. bottom: 68.7 / 1603
  26495. }
  26496. },
  26497. back: {
  26498. height: math.unit(28, "feet"),
  26499. weight: math.unit(10500, "lb"),
  26500. name: "Back",
  26501. image: {
  26502. source: "./media/characters/kayda/back.svg",
  26503. extra: 1557 / 1464,
  26504. bottom: 39.5 / 1597.49
  26505. }
  26506. },
  26507. dick: {
  26508. height: math.unit(3.858, "feet"),
  26509. name: "Dick",
  26510. image: {
  26511. source: "./media/characters/kayda/dick.svg"
  26512. }
  26513. },
  26514. },
  26515. [
  26516. {
  26517. name: "Macro",
  26518. height: math.unit(28, "feet"),
  26519. default: true
  26520. },
  26521. ]
  26522. ))
  26523. characterMakers.push(() => makeCharacter(
  26524. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26525. {
  26526. front: {
  26527. height: math.unit(10 + 11 / 12, "feet"),
  26528. weight: math.unit(1400, "lb"),
  26529. name: "Front",
  26530. image: {
  26531. source: "./media/characters/brian/front.svg",
  26532. extra: 737 / 692,
  26533. bottom: 55.4 / 785
  26534. }
  26535. },
  26536. },
  26537. [
  26538. {
  26539. name: "Normal",
  26540. height: math.unit(10 + 11 / 12, "feet"),
  26541. default: true
  26542. },
  26543. ]
  26544. ))
  26545. characterMakers.push(() => makeCharacter(
  26546. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26547. {
  26548. front: {
  26549. height: math.unit(5 + 8 / 12, "feet"),
  26550. weight: math.unit(140, "lb"),
  26551. name: "Front",
  26552. image: {
  26553. source: "./media/characters/khemri/front.svg",
  26554. extra: 4780 / 4059,
  26555. bottom: 80.1 / 4859.25
  26556. }
  26557. },
  26558. },
  26559. [
  26560. {
  26561. name: "Micro",
  26562. height: math.unit(6, "inches")
  26563. },
  26564. {
  26565. name: "Normal",
  26566. height: math.unit(5 + 8 / 12, "feet"),
  26567. default: true
  26568. },
  26569. ]
  26570. ))
  26571. characterMakers.push(() => makeCharacter(
  26572. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26573. {
  26574. front: {
  26575. height: math.unit(13, "feet"),
  26576. weight: math.unit(1700, "lb"),
  26577. name: "Front",
  26578. image: {
  26579. source: "./media/characters/felix-braveheart/front.svg",
  26580. extra: 1222 / 1157,
  26581. bottom: 53.2 / 1280
  26582. }
  26583. },
  26584. back: {
  26585. height: math.unit(13, "feet"),
  26586. weight: math.unit(1700, "lb"),
  26587. name: "Back",
  26588. image: {
  26589. source: "./media/characters/felix-braveheart/back.svg",
  26590. extra: 1277 / 1203,
  26591. bottom: 50.2 / 1327
  26592. }
  26593. },
  26594. feral: {
  26595. height: math.unit(6, "feet"),
  26596. weight: math.unit(400, "lb"),
  26597. name: "Feral",
  26598. image: {
  26599. source: "./media/characters/felix-braveheart/feral.svg",
  26600. extra: 682 / 625,
  26601. bottom: 6.9 / 688
  26602. }
  26603. },
  26604. },
  26605. [
  26606. {
  26607. name: "Normal",
  26608. height: math.unit(13, "feet"),
  26609. default: true
  26610. },
  26611. ]
  26612. ))
  26613. characterMakers.push(() => makeCharacter(
  26614. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26615. {
  26616. side: {
  26617. height: math.unit(5 + 11 / 12, "feet"),
  26618. weight: math.unit(1400, "lb"),
  26619. name: "Side",
  26620. image: {
  26621. source: "./media/characters/shadow-blade/side.svg",
  26622. extra: 1726 / 1267,
  26623. bottom: 58.4 / 1785
  26624. }
  26625. },
  26626. },
  26627. [
  26628. {
  26629. name: "Normal",
  26630. height: math.unit(5 + 11 / 12, "feet"),
  26631. default: true
  26632. },
  26633. ]
  26634. ))
  26635. characterMakers.push(() => makeCharacter(
  26636. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26637. {
  26638. front: {
  26639. height: math.unit(1 + 6 / 12, "feet"),
  26640. weight: math.unit(25, "lb"),
  26641. name: "Front",
  26642. image: {
  26643. source: "./media/characters/karla-halldor/front.svg",
  26644. extra: 1459 / 1383,
  26645. bottom: 12 / 1472
  26646. }
  26647. },
  26648. },
  26649. [
  26650. {
  26651. name: "Normal",
  26652. height: math.unit(1 + 6 / 12, "feet"),
  26653. default: true
  26654. },
  26655. ]
  26656. ))
  26657. characterMakers.push(() => makeCharacter(
  26658. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26659. {
  26660. front: {
  26661. height: math.unit(6 + 2 / 12, "feet"),
  26662. weight: math.unit(160, "lb"),
  26663. name: "Front",
  26664. image: {
  26665. source: "./media/characters/ariam/front.svg",
  26666. extra: 1073/976,
  26667. bottom: 52/1125
  26668. }
  26669. },
  26670. back: {
  26671. height: math.unit(6 + 2/12, "feet"),
  26672. weight: math.unit(160, "lb"),
  26673. name: "Back",
  26674. image: {
  26675. source: "./media/characters/ariam/back.svg",
  26676. extra: 1103/1023,
  26677. bottom: 9/1112
  26678. }
  26679. },
  26680. dressed: {
  26681. height: math.unit(6 + 2/12, "feet"),
  26682. weight: math.unit(160, "lb"),
  26683. name: "Dressed",
  26684. image: {
  26685. source: "./media/characters/ariam/dressed.svg",
  26686. extra: 1099/1009,
  26687. bottom: 25/1124
  26688. }
  26689. },
  26690. squatting: {
  26691. height: math.unit(4.1, "feet"),
  26692. weight: math.unit(160, "lb"),
  26693. name: "Squatting",
  26694. image: {
  26695. source: "./media/characters/ariam/squatting.svg",
  26696. extra: 2617 / 2112,
  26697. bottom: 61.2 / 2681,
  26698. }
  26699. },
  26700. },
  26701. [
  26702. {
  26703. name: "Normal",
  26704. height: math.unit(6 + 2 / 12, "feet"),
  26705. default: true
  26706. },
  26707. {
  26708. name: "Normal+",
  26709. height: math.unit(4, "meters")
  26710. },
  26711. {
  26712. name: "Macro",
  26713. height: math.unit(50, "meters")
  26714. },
  26715. {
  26716. name: "Macro+",
  26717. height: math.unit(100, "meters")
  26718. },
  26719. {
  26720. name: "Megamacro",
  26721. height: math.unit(20, "km")
  26722. },
  26723. {
  26724. name: "Caretaker",
  26725. height: math.unit(444, "megameters")
  26726. },
  26727. ]
  26728. ))
  26729. characterMakers.push(() => makeCharacter(
  26730. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26731. {
  26732. front: {
  26733. height: math.unit(1.67, "meters"),
  26734. weight: math.unit(140, "lb"),
  26735. name: "Front",
  26736. image: {
  26737. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26738. extra: 438 / 410,
  26739. bottom: 0.75 / 439
  26740. }
  26741. },
  26742. },
  26743. [
  26744. {
  26745. name: "Shrunken",
  26746. height: math.unit(7.6, "cm")
  26747. },
  26748. {
  26749. name: "Human Scale",
  26750. height: math.unit(1.67, "meters")
  26751. },
  26752. {
  26753. name: "Wolxi Scale",
  26754. height: math.unit(36.7, "meters"),
  26755. default: true
  26756. },
  26757. ]
  26758. ))
  26759. characterMakers.push(() => makeCharacter(
  26760. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26761. {
  26762. front: {
  26763. height: math.unit(1.73, "meters"),
  26764. weight: math.unit(240, "lb"),
  26765. name: "Front",
  26766. image: {
  26767. source: "./media/characters/izue-two-mothers/front.svg",
  26768. extra: 469 / 437,
  26769. bottom: 1.24 / 470.6
  26770. }
  26771. },
  26772. },
  26773. [
  26774. {
  26775. name: "Shrunken",
  26776. height: math.unit(7.86, "cm")
  26777. },
  26778. {
  26779. name: "Human Scale",
  26780. height: math.unit(1.73, "meters")
  26781. },
  26782. {
  26783. name: "Wolxi Scale",
  26784. height: math.unit(38, "meters"),
  26785. default: true
  26786. },
  26787. ]
  26788. ))
  26789. characterMakers.push(() => makeCharacter(
  26790. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26791. {
  26792. front: {
  26793. height: math.unit(1.55, "meters"),
  26794. weight: math.unit(120, "lb"),
  26795. name: "Front",
  26796. image: {
  26797. source: "./media/characters/teeku-love-shack/front.svg",
  26798. extra: 387 / 362,
  26799. bottom: 1.51 / 388
  26800. }
  26801. },
  26802. },
  26803. [
  26804. {
  26805. name: "Shrunken",
  26806. height: math.unit(7, "cm")
  26807. },
  26808. {
  26809. name: "Human Scale",
  26810. height: math.unit(1.55, "meters")
  26811. },
  26812. {
  26813. name: "Wolxi Scale",
  26814. height: math.unit(34.1, "meters"),
  26815. default: true
  26816. },
  26817. ]
  26818. ))
  26819. characterMakers.push(() => makeCharacter(
  26820. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26821. {
  26822. front: {
  26823. height: math.unit(1.83, "meters"),
  26824. weight: math.unit(135, "lb"),
  26825. name: "Front",
  26826. image: {
  26827. source: "./media/characters/dejma-the-red/front.svg",
  26828. extra: 480 / 458,
  26829. bottom: 1.8 / 482
  26830. }
  26831. },
  26832. },
  26833. [
  26834. {
  26835. name: "Shrunken",
  26836. height: math.unit(8.3, "cm")
  26837. },
  26838. {
  26839. name: "Human Scale",
  26840. height: math.unit(1.83, "meters")
  26841. },
  26842. {
  26843. name: "Wolxi Scale",
  26844. height: math.unit(40, "meters"),
  26845. default: true
  26846. },
  26847. ]
  26848. ))
  26849. characterMakers.push(() => makeCharacter(
  26850. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26851. {
  26852. front: {
  26853. height: math.unit(1.78, "meters"),
  26854. weight: math.unit(65, "kg"),
  26855. name: "Front",
  26856. image: {
  26857. source: "./media/characters/aki/front.svg",
  26858. extra: 452 / 415
  26859. }
  26860. },
  26861. frontNsfw: {
  26862. height: math.unit(1.78, "meters"),
  26863. weight: math.unit(65, "kg"),
  26864. name: "Front (NSFW)",
  26865. image: {
  26866. source: "./media/characters/aki/front-nsfw.svg",
  26867. extra: 452 / 415
  26868. }
  26869. },
  26870. back: {
  26871. height: math.unit(1.78, "meters"),
  26872. weight: math.unit(65, "kg"),
  26873. name: "Back",
  26874. image: {
  26875. source: "./media/characters/aki/back.svg",
  26876. extra: 452 / 415
  26877. }
  26878. },
  26879. rump: {
  26880. height: math.unit(2.05, "feet"),
  26881. name: "Rump",
  26882. image: {
  26883. source: "./media/characters/aki/rump.svg"
  26884. }
  26885. },
  26886. dick: {
  26887. height: math.unit(0.95, "feet"),
  26888. name: "Dick",
  26889. image: {
  26890. source: "./media/characters/aki/dick.svg"
  26891. }
  26892. },
  26893. },
  26894. [
  26895. {
  26896. name: "Micro",
  26897. height: math.unit(15, "cm")
  26898. },
  26899. {
  26900. name: "Normal",
  26901. height: math.unit(178, "cm"),
  26902. default: true
  26903. },
  26904. {
  26905. name: "Macro",
  26906. height: math.unit(214, "m")
  26907. },
  26908. {
  26909. name: "Macro+",
  26910. height: math.unit(534, "m")
  26911. },
  26912. ]
  26913. ))
  26914. characterMakers.push(() => makeCharacter(
  26915. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26916. {
  26917. front: {
  26918. height: math.unit(5 + 5 / 12, "feet"),
  26919. weight: math.unit(120, "lb"),
  26920. name: "Front",
  26921. image: {
  26922. source: "./media/characters/ari/front.svg",
  26923. extra: 1550/1471,
  26924. bottom: 39/1589
  26925. }
  26926. },
  26927. },
  26928. [
  26929. {
  26930. name: "Normal",
  26931. height: math.unit(5 + 5 / 12, "feet")
  26932. },
  26933. {
  26934. name: "Macro",
  26935. height: math.unit(100, "feet"),
  26936. default: true
  26937. },
  26938. {
  26939. name: "Megamacro",
  26940. height: math.unit(100, "miles")
  26941. },
  26942. {
  26943. name: "Gigamacro",
  26944. height: math.unit(80000, "miles")
  26945. },
  26946. ]
  26947. ))
  26948. characterMakers.push(() => makeCharacter(
  26949. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26950. {
  26951. side: {
  26952. height: math.unit(9, "feet"),
  26953. weight: math.unit(400, "kg"),
  26954. name: "Side",
  26955. image: {
  26956. source: "./media/characters/bolt/side.svg",
  26957. extra: 1126 / 896,
  26958. bottom: 60 / 1187.3,
  26959. }
  26960. },
  26961. },
  26962. [
  26963. {
  26964. name: "Micro",
  26965. height: math.unit(5, "inches")
  26966. },
  26967. {
  26968. name: "Normal",
  26969. height: math.unit(9, "feet"),
  26970. default: true
  26971. },
  26972. {
  26973. name: "Macro",
  26974. height: math.unit(700, "feet")
  26975. },
  26976. {
  26977. name: "Max Size",
  26978. height: math.unit(1.52e22, "yottameters")
  26979. },
  26980. ]
  26981. ))
  26982. characterMakers.push(() => makeCharacter(
  26983. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26984. {
  26985. front: {
  26986. height: math.unit(4.3, "meters"),
  26987. weight: math.unit(3, "tons"),
  26988. name: "Front",
  26989. image: {
  26990. source: "./media/characters/draekon-sylviar/front.svg",
  26991. extra: 2072/1512,
  26992. bottom: 74/2146
  26993. }
  26994. },
  26995. back: {
  26996. height: math.unit(4.3, "meters"),
  26997. weight: math.unit(3, "tons"),
  26998. name: "Back",
  26999. image: {
  27000. source: "./media/characters/draekon-sylviar/back.svg",
  27001. extra: 1639/1483,
  27002. bottom: 41/1680
  27003. }
  27004. },
  27005. feral: {
  27006. height: math.unit(1.15, "meters"),
  27007. weight: math.unit(3, "tons"),
  27008. name: "Feral",
  27009. image: {
  27010. source: "./media/characters/draekon-sylviar/feral.svg",
  27011. extra: 1033/395,
  27012. bottom: 130/1163
  27013. }
  27014. },
  27015. maw: {
  27016. height: math.unit(1.3, "meters"),
  27017. name: "Maw",
  27018. image: {
  27019. source: "./media/characters/draekon-sylviar/maw.svg"
  27020. }
  27021. },
  27022. mawSeparated: {
  27023. height: math.unit(1.53, "meters"),
  27024. name: "Separated Maw",
  27025. image: {
  27026. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  27027. }
  27028. },
  27029. tail: {
  27030. height: math.unit(1.15, "meters"),
  27031. name: "Tail",
  27032. image: {
  27033. source: "./media/characters/draekon-sylviar/tail.svg"
  27034. }
  27035. },
  27036. tailDick: {
  27037. height: math.unit(1.15, "meters"),
  27038. name: "Tail (Dick)",
  27039. image: {
  27040. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  27041. }
  27042. },
  27043. tailDickSeparated: {
  27044. height: math.unit(1.19, "meters"),
  27045. name: "Tail (Separated Dick)",
  27046. image: {
  27047. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  27048. }
  27049. },
  27050. slit: {
  27051. height: math.unit(1, "meters"),
  27052. name: "Slit",
  27053. image: {
  27054. source: "./media/characters/draekon-sylviar/slit.svg"
  27055. }
  27056. },
  27057. dick: {
  27058. height: math.unit(1.15, "meters"),
  27059. name: "Dick",
  27060. image: {
  27061. source: "./media/characters/draekon-sylviar/dick.svg"
  27062. }
  27063. },
  27064. dickSeparated: {
  27065. height: math.unit(1.1, "meters"),
  27066. name: "Separated Dick",
  27067. image: {
  27068. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  27069. }
  27070. },
  27071. sheath: {
  27072. height: math.unit(1.15, "meters"),
  27073. name: "Sheath",
  27074. image: {
  27075. source: "./media/characters/draekon-sylviar/sheath.svg"
  27076. }
  27077. },
  27078. },
  27079. [
  27080. {
  27081. name: "Small",
  27082. height: math.unit(4.53 / 2, "meters"),
  27083. default: true
  27084. },
  27085. {
  27086. name: "Normal",
  27087. height: math.unit(4.53, "meters"),
  27088. default: true
  27089. },
  27090. {
  27091. name: "Large",
  27092. height: math.unit(4.53 * 2, "meters"),
  27093. },
  27094. ]
  27095. ))
  27096. characterMakers.push(() => makeCharacter(
  27097. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  27098. {
  27099. front: {
  27100. height: math.unit(6 + 2 / 12, "feet"),
  27101. weight: math.unit(180, "lb"),
  27102. name: "Front",
  27103. image: {
  27104. source: "./media/characters/brawler/front.svg",
  27105. extra: 3301 / 3027,
  27106. bottom: 138 / 3439
  27107. }
  27108. },
  27109. },
  27110. [
  27111. {
  27112. name: "Normal",
  27113. height: math.unit(6 + 2 / 12, "feet"),
  27114. default: true
  27115. },
  27116. ]
  27117. ))
  27118. characterMakers.push(() => makeCharacter(
  27119. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  27120. {
  27121. front: {
  27122. height: math.unit(11, "feet"),
  27123. weight: math.unit(1000, "lb"),
  27124. name: "Front",
  27125. image: {
  27126. source: "./media/characters/alex/front.svg",
  27127. bottom: 44.5 / 620
  27128. }
  27129. },
  27130. },
  27131. [
  27132. {
  27133. name: "Micro",
  27134. height: math.unit(5, "inches")
  27135. },
  27136. {
  27137. name: "Normal",
  27138. height: math.unit(11, "feet"),
  27139. default: true
  27140. },
  27141. {
  27142. name: "Macro",
  27143. height: math.unit(9.5e9, "feet")
  27144. },
  27145. {
  27146. name: "Max Size",
  27147. height: math.unit(1.4e283, "yottameters")
  27148. },
  27149. ]
  27150. ))
  27151. characterMakers.push(() => makeCharacter(
  27152. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  27153. {
  27154. female: {
  27155. height: math.unit(29.9, "m"),
  27156. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  27157. name: "Female",
  27158. image: {
  27159. source: "./media/characters/zenari/female.svg",
  27160. extra: 3281.6 / 3217,
  27161. bottom: 72.2 / 3353
  27162. }
  27163. },
  27164. male: {
  27165. height: math.unit(27.7, "m"),
  27166. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  27167. name: "Male",
  27168. image: {
  27169. source: "./media/characters/zenari/male.svg",
  27170. extra: 3008 / 2991,
  27171. bottom: 54.6 / 3069
  27172. }
  27173. },
  27174. },
  27175. [
  27176. {
  27177. name: "Macro",
  27178. height: math.unit(29.7, "meters"),
  27179. default: true
  27180. },
  27181. ]
  27182. ))
  27183. characterMakers.push(() => makeCharacter(
  27184. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  27185. {
  27186. female: {
  27187. height: math.unit(23.8, "m"),
  27188. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27189. name: "Female",
  27190. image: {
  27191. source: "./media/characters/mactarian/female.svg",
  27192. extra: 2662 / 2569,
  27193. bottom: 73 / 2736
  27194. }
  27195. },
  27196. male: {
  27197. height: math.unit(23.8, "m"),
  27198. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27199. name: "Male",
  27200. image: {
  27201. source: "./media/characters/mactarian/male.svg",
  27202. extra: 2673 / 2600,
  27203. bottom: 76 / 2750
  27204. }
  27205. },
  27206. },
  27207. [
  27208. {
  27209. name: "Macro",
  27210. height: math.unit(23.8, "meters"),
  27211. default: true
  27212. },
  27213. ]
  27214. ))
  27215. characterMakers.push(() => makeCharacter(
  27216. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  27217. {
  27218. female: {
  27219. height: math.unit(19.3, "m"),
  27220. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  27221. name: "Female",
  27222. image: {
  27223. source: "./media/characters/umok/female.svg",
  27224. extra: 2186 / 2078,
  27225. bottom: 87 / 2277
  27226. }
  27227. },
  27228. male: {
  27229. height: math.unit(19.5, "m"),
  27230. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  27231. name: "Male",
  27232. image: {
  27233. source: "./media/characters/umok/male.svg",
  27234. extra: 2233 / 2140,
  27235. bottom: 24.4 / 2258
  27236. }
  27237. },
  27238. },
  27239. [
  27240. {
  27241. name: "Macro",
  27242. height: math.unit(19.3, "meters"),
  27243. default: true
  27244. },
  27245. ]
  27246. ))
  27247. characterMakers.push(() => makeCharacter(
  27248. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  27249. {
  27250. female: {
  27251. height: math.unit(26.15, "m"),
  27252. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  27253. name: "Female",
  27254. image: {
  27255. source: "./media/characters/joraxian/female.svg",
  27256. extra: 2912 / 2824,
  27257. bottom: 36 / 2956
  27258. }
  27259. },
  27260. male: {
  27261. height: math.unit(25.4, "m"),
  27262. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  27263. name: "Male",
  27264. image: {
  27265. source: "./media/characters/joraxian/male.svg",
  27266. extra: 2877 / 2721,
  27267. bottom: 82 / 2967
  27268. }
  27269. },
  27270. },
  27271. [
  27272. {
  27273. name: "Macro",
  27274. height: math.unit(26.15, "meters"),
  27275. default: true
  27276. },
  27277. ]
  27278. ))
  27279. characterMakers.push(() => makeCharacter(
  27280. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  27281. {
  27282. female: {
  27283. height: math.unit(21.6, "m"),
  27284. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  27285. name: "Female",
  27286. image: {
  27287. source: "./media/characters/sthara/female.svg",
  27288. extra: 2516 / 2347,
  27289. bottom: 21.5 / 2537
  27290. }
  27291. },
  27292. male: {
  27293. height: math.unit(24, "m"),
  27294. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  27295. name: "Male",
  27296. image: {
  27297. source: "./media/characters/sthara/male.svg",
  27298. extra: 2732 / 2607,
  27299. bottom: 23 / 2732
  27300. }
  27301. },
  27302. },
  27303. [
  27304. {
  27305. name: "Macro",
  27306. height: math.unit(21.6, "meters"),
  27307. default: true
  27308. },
  27309. ]
  27310. ))
  27311. characterMakers.push(() => makeCharacter(
  27312. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27313. {
  27314. front: {
  27315. height: math.unit(6 + 4 / 12, "feet"),
  27316. weight: math.unit(175, "lb"),
  27317. name: "Front",
  27318. image: {
  27319. source: "./media/characters/luka-bryzant/front.svg",
  27320. extra: 311 / 289,
  27321. bottom: 4 / 315
  27322. }
  27323. },
  27324. back: {
  27325. height: math.unit(6 + 4 / 12, "feet"),
  27326. weight: math.unit(175, "lb"),
  27327. name: "Back",
  27328. image: {
  27329. source: "./media/characters/luka-bryzant/back.svg",
  27330. extra: 311 / 289,
  27331. bottom: 3.8 / 313.7
  27332. }
  27333. },
  27334. },
  27335. [
  27336. {
  27337. name: "Micro",
  27338. height: math.unit(10, "inches")
  27339. },
  27340. {
  27341. name: "Normal",
  27342. height: math.unit(6 + 4 / 12, "feet"),
  27343. default: true
  27344. },
  27345. {
  27346. name: "Large",
  27347. height: math.unit(12, "feet")
  27348. },
  27349. ]
  27350. ))
  27351. characterMakers.push(() => makeCharacter(
  27352. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27353. {
  27354. front: {
  27355. height: math.unit(5 + 7 / 12, "feet"),
  27356. weight: math.unit(185, "lb"),
  27357. name: "Front",
  27358. image: {
  27359. source: "./media/characters/aman-aquila/front.svg",
  27360. extra: 1013 / 976,
  27361. bottom: 45.6 / 1057
  27362. }
  27363. },
  27364. side: {
  27365. height: math.unit(5 + 7 / 12, "feet"),
  27366. weight: math.unit(185, "lb"),
  27367. name: "Side",
  27368. image: {
  27369. source: "./media/characters/aman-aquila/side.svg",
  27370. extra: 1054 / 1011,
  27371. bottom: 15 / 1070
  27372. }
  27373. },
  27374. back: {
  27375. height: math.unit(5 + 7 / 12, "feet"),
  27376. weight: math.unit(185, "lb"),
  27377. name: "Back",
  27378. image: {
  27379. source: "./media/characters/aman-aquila/back.svg",
  27380. extra: 1026 / 970,
  27381. bottom: 12 / 1039
  27382. }
  27383. },
  27384. head: {
  27385. height: math.unit(1.211, "feet"),
  27386. name: "Head",
  27387. image: {
  27388. source: "./media/characters/aman-aquila/head.svg",
  27389. }
  27390. },
  27391. },
  27392. [
  27393. {
  27394. name: "Minimicro",
  27395. height: math.unit(0.057, "inches")
  27396. },
  27397. {
  27398. name: "Micro",
  27399. height: math.unit(7, "inches")
  27400. },
  27401. {
  27402. name: "Mini",
  27403. height: math.unit(3 + 7 / 12, "feet")
  27404. },
  27405. {
  27406. name: "Normal",
  27407. height: math.unit(5 + 7 / 12, "feet"),
  27408. default: true
  27409. },
  27410. {
  27411. name: "Macro",
  27412. height: math.unit(157 + 7 / 12, "feet")
  27413. },
  27414. {
  27415. name: "Megamacro",
  27416. height: math.unit(1557 + 7 / 12, "feet")
  27417. },
  27418. {
  27419. name: "Gigamacro",
  27420. height: math.unit(15557 + 7 / 12, "feet")
  27421. },
  27422. ]
  27423. ))
  27424. characterMakers.push(() => makeCharacter(
  27425. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27426. {
  27427. front: {
  27428. height: math.unit(3 + 2 / 12, "inches"),
  27429. weight: math.unit(0.3, "ounces"),
  27430. name: "Front",
  27431. image: {
  27432. source: "./media/characters/hiphae/front.svg",
  27433. extra: 1931 / 1683,
  27434. bottom: 24 / 1955
  27435. }
  27436. },
  27437. },
  27438. [
  27439. {
  27440. name: "Normal",
  27441. height: math.unit(3 + 1 / 2, "inches"),
  27442. default: true
  27443. },
  27444. ]
  27445. ))
  27446. characterMakers.push(() => makeCharacter(
  27447. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27448. {
  27449. front: {
  27450. height: math.unit(5 + 10 / 12, "feet"),
  27451. weight: math.unit(165, "lb"),
  27452. name: "Front",
  27453. image: {
  27454. source: "./media/characters/nicky/front.svg",
  27455. extra: 3144 / 2886,
  27456. bottom: 45.6 / 3192
  27457. }
  27458. },
  27459. back: {
  27460. height: math.unit(5 + 10 / 12, "feet"),
  27461. weight: math.unit(165, "lb"),
  27462. name: "Back",
  27463. image: {
  27464. source: "./media/characters/nicky/back.svg",
  27465. extra: 3055 / 2804,
  27466. bottom: 28.4 / 3087
  27467. }
  27468. },
  27469. frontclothed: {
  27470. height: math.unit(5 + 10 / 12, "feet"),
  27471. weight: math.unit(165, "lb"),
  27472. name: "Front-clothed",
  27473. image: {
  27474. source: "./media/characters/nicky/front-clothed.svg",
  27475. extra: 3184.9 / 2926.9,
  27476. bottom: 86.5 / 3239.9
  27477. }
  27478. },
  27479. foot: {
  27480. height: math.unit(1.16, "feet"),
  27481. name: "Foot",
  27482. image: {
  27483. source: "./media/characters/nicky/foot.svg"
  27484. }
  27485. },
  27486. feet: {
  27487. height: math.unit(1.34, "feet"),
  27488. name: "Feet",
  27489. image: {
  27490. source: "./media/characters/nicky/feet.svg"
  27491. }
  27492. },
  27493. maw: {
  27494. height: math.unit(0.9, "feet"),
  27495. name: "Maw",
  27496. image: {
  27497. source: "./media/characters/nicky/maw.svg"
  27498. }
  27499. },
  27500. },
  27501. [
  27502. {
  27503. name: "Normal",
  27504. height: math.unit(5 + 10 / 12, "feet"),
  27505. default: true
  27506. },
  27507. {
  27508. name: "Macro",
  27509. height: math.unit(60, "feet")
  27510. },
  27511. {
  27512. name: "Megamacro",
  27513. height: math.unit(1, "mile")
  27514. },
  27515. ]
  27516. ))
  27517. characterMakers.push(() => makeCharacter(
  27518. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27519. {
  27520. side: {
  27521. height: math.unit(10, "feet"),
  27522. weight: math.unit(600, "lb"),
  27523. name: "Side",
  27524. image: {
  27525. source: "./media/characters/blair/side.svg",
  27526. bottom: 16.6 / 475,
  27527. extra: 458 / 431
  27528. }
  27529. },
  27530. },
  27531. [
  27532. {
  27533. name: "Micro",
  27534. height: math.unit(8, "inches")
  27535. },
  27536. {
  27537. name: "Normal",
  27538. height: math.unit(10, "feet"),
  27539. default: true
  27540. },
  27541. {
  27542. name: "Macro",
  27543. height: math.unit(180, "feet")
  27544. },
  27545. ]
  27546. ))
  27547. characterMakers.push(() => makeCharacter(
  27548. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27549. {
  27550. front: {
  27551. height: math.unit(5 + 4 / 12, "feet"),
  27552. weight: math.unit(125, "lb"),
  27553. name: "Front",
  27554. image: {
  27555. source: "./media/characters/fisher/front.svg",
  27556. extra: 444 / 390,
  27557. bottom: 2 / 444.8
  27558. }
  27559. },
  27560. },
  27561. [
  27562. {
  27563. name: "Micro",
  27564. height: math.unit(4, "inches")
  27565. },
  27566. {
  27567. name: "Normal",
  27568. height: math.unit(5 + 4 / 12, "feet"),
  27569. default: true
  27570. },
  27571. {
  27572. name: "Macro",
  27573. height: math.unit(100, "feet")
  27574. },
  27575. ]
  27576. ))
  27577. characterMakers.push(() => makeCharacter(
  27578. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27579. {
  27580. front: {
  27581. height: math.unit(6.71, "feet"),
  27582. weight: math.unit(200, "lb"),
  27583. preyCapacity: math.unit(1000000, "people"),
  27584. name: "Front",
  27585. image: {
  27586. source: "./media/characters/gliss/front.svg",
  27587. extra: 2347 / 2231,
  27588. bottom: 113 / 2462
  27589. }
  27590. },
  27591. hammerspaceSize: {
  27592. height: math.unit(6.71 * 717, "feet"),
  27593. weight: math.unit(200, "lb"),
  27594. preyCapacity: math.unit(1000000, "people"),
  27595. name: "Hammerspace Size",
  27596. image: {
  27597. source: "./media/characters/gliss/front.svg",
  27598. extra: 2347 / 2231,
  27599. bottom: 113 / 2462
  27600. }
  27601. },
  27602. },
  27603. [
  27604. {
  27605. name: "Normal",
  27606. height: math.unit(6.71, "feet"),
  27607. default: true
  27608. },
  27609. ]
  27610. ))
  27611. characterMakers.push(() => makeCharacter(
  27612. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27613. {
  27614. side: {
  27615. height: math.unit(1.44, "m"),
  27616. weight: math.unit(80, "kg"),
  27617. name: "Side",
  27618. image: {
  27619. source: "./media/characters/dune-anderson/side.svg",
  27620. bottom: 49 / 1426
  27621. }
  27622. },
  27623. },
  27624. [
  27625. {
  27626. name: "Wolf-sized",
  27627. height: math.unit(1.44, "meters")
  27628. },
  27629. {
  27630. name: "Normal",
  27631. height: math.unit(5.05, "meters"),
  27632. default: true
  27633. },
  27634. {
  27635. name: "Big",
  27636. height: math.unit(14.4, "meters")
  27637. },
  27638. {
  27639. name: "Huge",
  27640. height: math.unit(144, "meters")
  27641. },
  27642. ]
  27643. ))
  27644. characterMakers.push(() => makeCharacter(
  27645. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27646. {
  27647. front: {
  27648. height: math.unit(6, "feet"),
  27649. weight: math.unit(220, "lb"),
  27650. name: "Front",
  27651. image: {
  27652. source: "./media/characters/hind/front.svg",
  27653. extra: 1912/1787,
  27654. bottom: 52/1964
  27655. }
  27656. },
  27657. back: {
  27658. height: math.unit(6, "feet"),
  27659. weight: math.unit(220, "lb"),
  27660. name: "Back",
  27661. image: {
  27662. source: "./media/characters/hind/back.svg",
  27663. extra: 1901/1794,
  27664. bottom: 26/1927
  27665. }
  27666. },
  27667. },
  27668. [
  27669. {
  27670. name: "Normal",
  27671. height: math.unit(6, "feet"),
  27672. default: true
  27673. },
  27674. ]
  27675. ))
  27676. characterMakers.push(() => makeCharacter(
  27677. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27678. {
  27679. front: {
  27680. height: math.unit(2.1, "meters"),
  27681. weight: math.unit(150, "lb"),
  27682. name: "Front",
  27683. image: {
  27684. source: "./media/characters/tharquench-sizestealer/front.svg",
  27685. extra: 1605/1470,
  27686. bottom: 36/1641
  27687. }
  27688. },
  27689. frontAlt: {
  27690. height: math.unit(2.1, "meters"),
  27691. weight: math.unit(150, "lb"),
  27692. name: "Front (Alt)",
  27693. image: {
  27694. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27695. extra: 2318 / 2063,
  27696. bottom: 93.4 / 2410
  27697. }
  27698. },
  27699. },
  27700. [
  27701. {
  27702. name: "Nano",
  27703. height: math.unit(1, "mm")
  27704. },
  27705. {
  27706. name: "Micro",
  27707. height: math.unit(1, "cm")
  27708. },
  27709. {
  27710. name: "Normal",
  27711. height: math.unit(2.1, "meters"),
  27712. default: true
  27713. },
  27714. ]
  27715. ))
  27716. characterMakers.push(() => makeCharacter(
  27717. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27718. {
  27719. front: {
  27720. height: math.unit(7 + 5 / 12, "feet"),
  27721. weight: math.unit(357, "lb"),
  27722. name: "Front",
  27723. image: {
  27724. source: "./media/characters/solex-draconov/front.svg",
  27725. extra: 1993 / 1865,
  27726. bottom: 117 / 2111
  27727. }
  27728. },
  27729. },
  27730. [
  27731. {
  27732. name: "Natural Height",
  27733. height: math.unit(7 + 5 / 12, "feet"),
  27734. default: true
  27735. },
  27736. {
  27737. name: "Macro",
  27738. height: math.unit(350, "feet")
  27739. },
  27740. {
  27741. name: "Macro+",
  27742. height: math.unit(1000, "feet")
  27743. },
  27744. {
  27745. name: "Megamacro",
  27746. height: math.unit(20, "km")
  27747. },
  27748. {
  27749. name: "Megamacro+",
  27750. height: math.unit(1000, "km")
  27751. },
  27752. {
  27753. name: "Gigamacro",
  27754. height: math.unit(2.5, "Gm")
  27755. },
  27756. {
  27757. name: "Teramacro",
  27758. height: math.unit(15, "Tm")
  27759. },
  27760. {
  27761. name: "Galactic",
  27762. height: math.unit(30, "Zm")
  27763. },
  27764. {
  27765. name: "Universal",
  27766. height: math.unit(21000, "Ym")
  27767. },
  27768. {
  27769. name: "Omniversal",
  27770. height: math.unit(9.861e50, "Ym")
  27771. },
  27772. {
  27773. name: "Existential",
  27774. height: math.unit(1e300, "meters")
  27775. },
  27776. ]
  27777. ))
  27778. characterMakers.push(() => makeCharacter(
  27779. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27780. {
  27781. side: {
  27782. height: math.unit(25, "feet"),
  27783. weight: math.unit(90000, "lb"),
  27784. name: "Side",
  27785. image: {
  27786. source: "./media/characters/mandarax/side.svg",
  27787. extra: 614 / 332,
  27788. bottom: 55 / 630
  27789. }
  27790. },
  27791. lounging: {
  27792. height: math.unit(15.4, "feet"),
  27793. weight: math.unit(90000, "lb"),
  27794. name: "Lounging",
  27795. image: {
  27796. source: "./media/characters/mandarax/lounging.svg",
  27797. extra: 817/609,
  27798. bottom: 685/1502
  27799. }
  27800. },
  27801. head: {
  27802. height: math.unit(11.4, "feet"),
  27803. name: "Head",
  27804. image: {
  27805. source: "./media/characters/mandarax/head.svg"
  27806. }
  27807. },
  27808. belly: {
  27809. height: math.unit(33, "feet"),
  27810. name: "Belly",
  27811. preyCapacity: math.unit(500, "people"),
  27812. image: {
  27813. source: "./media/characters/mandarax/belly.svg"
  27814. }
  27815. },
  27816. dick: {
  27817. height: math.unit(8.46, "feet"),
  27818. name: "Dick",
  27819. image: {
  27820. source: "./media/characters/mandarax/dick.svg"
  27821. }
  27822. },
  27823. top: {
  27824. height: math.unit(28, "meters"),
  27825. name: "Top",
  27826. image: {
  27827. source: "./media/characters/mandarax/top.svg"
  27828. }
  27829. },
  27830. },
  27831. [
  27832. {
  27833. name: "Normal",
  27834. height: math.unit(25, "feet"),
  27835. default: true
  27836. },
  27837. ]
  27838. ))
  27839. characterMakers.push(() => makeCharacter(
  27840. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27841. {
  27842. front: {
  27843. height: math.unit(5, "feet"),
  27844. weight: math.unit(90, "lb"),
  27845. name: "Front",
  27846. image: {
  27847. source: "./media/characters/pixil/front.svg",
  27848. extra: 2000 / 1618,
  27849. bottom: 12.3 / 2011
  27850. }
  27851. },
  27852. },
  27853. [
  27854. {
  27855. name: "Normal",
  27856. height: math.unit(5, "feet"),
  27857. default: true
  27858. },
  27859. {
  27860. name: "Megamacro",
  27861. height: math.unit(10, "miles"),
  27862. },
  27863. ]
  27864. ))
  27865. characterMakers.push(() => makeCharacter(
  27866. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27867. {
  27868. front: {
  27869. height: math.unit(7 + 2 / 12, "feet"),
  27870. weight: math.unit(200, "lb"),
  27871. name: "Front",
  27872. image: {
  27873. source: "./media/characters/angel/front.svg",
  27874. extra: 1946/1840,
  27875. bottom: 30/1976
  27876. }
  27877. },
  27878. },
  27879. [
  27880. {
  27881. name: "Normal",
  27882. height: math.unit(7 + 2 / 12, "feet"),
  27883. default: true
  27884. },
  27885. {
  27886. name: "Macro",
  27887. height: math.unit(1000, "feet")
  27888. },
  27889. {
  27890. name: "Megamacro",
  27891. height: math.unit(2, "miles")
  27892. },
  27893. {
  27894. name: "Gigamacro",
  27895. height: math.unit(20, "earths")
  27896. },
  27897. ]
  27898. ))
  27899. characterMakers.push(() => makeCharacter(
  27900. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27901. {
  27902. front: {
  27903. height: math.unit(5, "feet"),
  27904. weight: math.unit(180, "lb"),
  27905. name: "Front",
  27906. image: {
  27907. source: "./media/characters/mekana/front.svg",
  27908. extra: 1671 / 1605,
  27909. bottom: 3.5 / 1691
  27910. }
  27911. },
  27912. side: {
  27913. height: math.unit(5, "feet"),
  27914. weight: math.unit(180, "lb"),
  27915. name: "Side",
  27916. image: {
  27917. source: "./media/characters/mekana/side.svg",
  27918. extra: 1671 / 1605,
  27919. bottom: 3.5 / 1691
  27920. }
  27921. },
  27922. back: {
  27923. height: math.unit(5, "feet"),
  27924. weight: math.unit(180, "lb"),
  27925. name: "Back",
  27926. image: {
  27927. source: "./media/characters/mekana/back.svg",
  27928. extra: 1671 / 1605,
  27929. bottom: 3.5 / 1691
  27930. }
  27931. },
  27932. },
  27933. [
  27934. {
  27935. name: "Normal",
  27936. height: math.unit(5, "feet"),
  27937. default: true
  27938. },
  27939. ]
  27940. ))
  27941. characterMakers.push(() => makeCharacter(
  27942. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27943. {
  27944. front: {
  27945. height: math.unit(4 + 6 / 12, "feet"),
  27946. weight: math.unit(80, "lb"),
  27947. name: "Front",
  27948. image: {
  27949. source: "./media/characters/pixie/front.svg",
  27950. extra: 1924 / 1825,
  27951. bottom: 22.4 / 1946
  27952. }
  27953. },
  27954. },
  27955. [
  27956. {
  27957. name: "Normal",
  27958. height: math.unit(4 + 6 / 12, "feet"),
  27959. default: true
  27960. },
  27961. {
  27962. name: "Macro",
  27963. height: math.unit(40, "feet")
  27964. },
  27965. ]
  27966. ))
  27967. characterMakers.push(() => makeCharacter(
  27968. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27969. {
  27970. front: {
  27971. height: math.unit(2.1, "meters"),
  27972. weight: math.unit(200, "lb"),
  27973. name: "Front",
  27974. image: {
  27975. source: "./media/characters/the-lascivious/front.svg",
  27976. extra: 1 / 0.893,
  27977. bottom: 3.5 / 573.7
  27978. }
  27979. },
  27980. },
  27981. [
  27982. {
  27983. name: "Human Scale",
  27984. height: math.unit(2.1, "meters")
  27985. },
  27986. {
  27987. name: "Wolxi Scale",
  27988. height: math.unit(46.2, "m"),
  27989. default: true
  27990. },
  27991. {
  27992. name: "Boinker of Buildings",
  27993. height: math.unit(10, "km")
  27994. },
  27995. {
  27996. name: "Shagger of Skyscrapers",
  27997. height: math.unit(40, "km")
  27998. },
  27999. {
  28000. name: "Banger of Boroughs",
  28001. height: math.unit(4000, "km")
  28002. },
  28003. {
  28004. name: "Screwer of States",
  28005. height: math.unit(100000, "km")
  28006. },
  28007. {
  28008. name: "Pounder of Planets",
  28009. height: math.unit(2000000, "km")
  28010. },
  28011. ]
  28012. ))
  28013. characterMakers.push(() => makeCharacter(
  28014. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  28015. {
  28016. front: {
  28017. height: math.unit(6, "feet"),
  28018. weight: math.unit(150, "lb"),
  28019. name: "Front",
  28020. image: {
  28021. source: "./media/characters/aj/front.svg",
  28022. extra: 2039 / 1562,
  28023. bottom: 40 / 2079
  28024. }
  28025. },
  28026. },
  28027. [
  28028. {
  28029. name: "Normal",
  28030. height: math.unit(11 + 6 / 12, "feet"),
  28031. default: true
  28032. },
  28033. {
  28034. name: "Megamacro",
  28035. height: math.unit(60, "megameters")
  28036. },
  28037. ]
  28038. ))
  28039. characterMakers.push(() => makeCharacter(
  28040. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  28041. {
  28042. side: {
  28043. height: math.unit(31 + 8 / 12, "feet"),
  28044. weight: math.unit(75000, "kg"),
  28045. name: "Side",
  28046. image: {
  28047. source: "./media/characters/koros/side.svg",
  28048. extra: 1442 / 1297,
  28049. bottom: 122.7 / 1562
  28050. }
  28051. },
  28052. dicksKingsCrown: {
  28053. height: math.unit(6, "feet"),
  28054. name: "Dicks (King's Crown)",
  28055. image: {
  28056. source: "./media/characters/koros/dicks-kings-crown.svg"
  28057. }
  28058. },
  28059. dicksTailSet: {
  28060. height: math.unit(3, "feet"),
  28061. name: "Dicks (Tail Set)",
  28062. image: {
  28063. source: "./media/characters/koros/dicks-tail-set.svg"
  28064. }
  28065. },
  28066. dickCumming: {
  28067. height: math.unit(7.98, "feet"),
  28068. name: "Dick (Cumming)",
  28069. image: {
  28070. source: "./media/characters/koros/dick-cumming.svg"
  28071. }
  28072. },
  28073. dicksBack: {
  28074. height: math.unit(5.9, "feet"),
  28075. name: "Dicks (Back)",
  28076. image: {
  28077. source: "./media/characters/koros/dicks-back.svg"
  28078. }
  28079. },
  28080. dicksFront: {
  28081. height: math.unit(3.72, "feet"),
  28082. name: "Dicks (Front)",
  28083. image: {
  28084. source: "./media/characters/koros/dicks-front.svg"
  28085. }
  28086. },
  28087. dicksPeeking: {
  28088. height: math.unit(3.0, "feet"),
  28089. name: "Dicks (Peeking)",
  28090. image: {
  28091. source: "./media/characters/koros/dicks-peeking.svg"
  28092. }
  28093. },
  28094. eye: {
  28095. height: math.unit(1.7, "feet"),
  28096. name: "Eye",
  28097. image: {
  28098. source: "./media/characters/koros/eye.svg"
  28099. }
  28100. },
  28101. headFront: {
  28102. height: math.unit(11.69, "feet"),
  28103. name: "Head (Front)",
  28104. image: {
  28105. source: "./media/characters/koros/head-front.svg"
  28106. }
  28107. },
  28108. headSide: {
  28109. height: math.unit(14, "feet"),
  28110. name: "Head (Side)",
  28111. image: {
  28112. source: "./media/characters/koros/head-side.svg"
  28113. }
  28114. },
  28115. leg: {
  28116. height: math.unit(17, "feet"),
  28117. name: "Leg",
  28118. image: {
  28119. source: "./media/characters/koros/leg.svg"
  28120. }
  28121. },
  28122. mawSide: {
  28123. height: math.unit(12.8, "feet"),
  28124. name: "Maw (Side)",
  28125. image: {
  28126. source: "./media/characters/koros/maw-side.svg"
  28127. }
  28128. },
  28129. mawSpitting: {
  28130. height: math.unit(17, "feet"),
  28131. name: "Maw (Spitting)",
  28132. image: {
  28133. source: "./media/characters/koros/maw-spitting.svg"
  28134. }
  28135. },
  28136. slit: {
  28137. height: math.unit(2.8, "feet"),
  28138. name: "Slit",
  28139. image: {
  28140. source: "./media/characters/koros/slit.svg"
  28141. }
  28142. },
  28143. stomach: {
  28144. height: math.unit(6.8, "feet"),
  28145. preyCapacity: math.unit(20, "people"),
  28146. name: "Stomach",
  28147. image: {
  28148. source: "./media/characters/koros/stomach.svg"
  28149. }
  28150. },
  28151. wingspanBottom: {
  28152. height: math.unit(114, "feet"),
  28153. name: "Wingspan (Bottom)",
  28154. image: {
  28155. source: "./media/characters/koros/wingspan-bottom.svg"
  28156. }
  28157. },
  28158. wingspanTop: {
  28159. height: math.unit(104, "feet"),
  28160. name: "Wingspan (Top)",
  28161. image: {
  28162. source: "./media/characters/koros/wingspan-top.svg"
  28163. }
  28164. },
  28165. },
  28166. [
  28167. {
  28168. name: "Normal",
  28169. height: math.unit(31 + 8 / 12, "feet"),
  28170. default: true
  28171. },
  28172. ]
  28173. ))
  28174. characterMakers.push(() => makeCharacter(
  28175. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  28176. {
  28177. front: {
  28178. height: math.unit(18 + 5 / 12, "feet"),
  28179. weight: math.unit(3750, "kg"),
  28180. name: "Front",
  28181. image: {
  28182. source: "./media/characters/vexx/front.svg",
  28183. extra: 426 / 396,
  28184. bottom: 31.5 / 458
  28185. }
  28186. },
  28187. maw: {
  28188. height: math.unit(6, "feet"),
  28189. name: "Maw",
  28190. image: {
  28191. source: "./media/characters/vexx/maw.svg"
  28192. }
  28193. },
  28194. },
  28195. [
  28196. {
  28197. name: "Normal",
  28198. height: math.unit(18 + 5 / 12, "feet"),
  28199. default: true
  28200. },
  28201. ]
  28202. ))
  28203. characterMakers.push(() => makeCharacter(
  28204. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  28205. {
  28206. front: {
  28207. height: math.unit(17 + 6 / 12, "feet"),
  28208. weight: math.unit(150, "lb"),
  28209. name: "Front",
  28210. image: {
  28211. source: "./media/characters/baadra/front.svg",
  28212. extra: 1694/1553,
  28213. bottom: 179/1873
  28214. }
  28215. },
  28216. frontAlt: {
  28217. height: math.unit(17 + 6 / 12, "feet"),
  28218. weight: math.unit(150, "lb"),
  28219. name: "Front (Alt)",
  28220. image: {
  28221. source: "./media/characters/baadra/front-alt.svg",
  28222. extra: 3137 / 2890,
  28223. bottom: 168.4 / 3305
  28224. }
  28225. },
  28226. back: {
  28227. height: math.unit(17 + 6 / 12, "feet"),
  28228. weight: math.unit(150, "lb"),
  28229. name: "Back",
  28230. image: {
  28231. source: "./media/characters/baadra/back.svg",
  28232. extra: 3142 / 2890,
  28233. bottom: 220 / 3371
  28234. }
  28235. },
  28236. head: {
  28237. height: math.unit(5.45, "feet"),
  28238. name: "Head",
  28239. image: {
  28240. source: "./media/characters/baadra/head.svg"
  28241. }
  28242. },
  28243. headAngry: {
  28244. height: math.unit(4.95, "feet"),
  28245. name: "Head (Angry)",
  28246. image: {
  28247. source: "./media/characters/baadra/head-angry.svg"
  28248. }
  28249. },
  28250. headOpen: {
  28251. height: math.unit(6, "feet"),
  28252. name: "Head (Open)",
  28253. image: {
  28254. source: "./media/characters/baadra/head-open.svg"
  28255. }
  28256. },
  28257. },
  28258. [
  28259. {
  28260. name: "Normal",
  28261. height: math.unit(17 + 6 / 12, "feet"),
  28262. default: true
  28263. },
  28264. ]
  28265. ))
  28266. characterMakers.push(() => makeCharacter(
  28267. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  28268. {
  28269. front: {
  28270. height: math.unit(7 + 3 / 12, "feet"),
  28271. weight: math.unit(180, "lb"),
  28272. name: "Front",
  28273. image: {
  28274. source: "./media/characters/juri/front.svg",
  28275. extra: 1401 / 1237,
  28276. bottom: 18.5 / 1418
  28277. }
  28278. },
  28279. side: {
  28280. height: math.unit(7 + 3 / 12, "feet"),
  28281. weight: math.unit(180, "lb"),
  28282. name: "Side",
  28283. image: {
  28284. source: "./media/characters/juri/side.svg",
  28285. extra: 1424 / 1242,
  28286. bottom: 18.5 / 1447
  28287. }
  28288. },
  28289. sitting: {
  28290. height: math.unit(6, "feet"),
  28291. weight: math.unit(180, "lb"),
  28292. name: "Sitting",
  28293. image: {
  28294. source: "./media/characters/juri/sitting.svg",
  28295. extra: 1270 / 1143,
  28296. bottom: 100 / 1343
  28297. }
  28298. },
  28299. back: {
  28300. height: math.unit(7 + 3 / 12, "feet"),
  28301. weight: math.unit(180, "lb"),
  28302. name: "Back",
  28303. image: {
  28304. source: "./media/characters/juri/back.svg",
  28305. extra: 1377 / 1240,
  28306. bottom: 23.7 / 1405
  28307. }
  28308. },
  28309. maw: {
  28310. height: math.unit(2.8, "feet"),
  28311. name: "Maw",
  28312. image: {
  28313. source: "./media/characters/juri/maw.svg"
  28314. }
  28315. },
  28316. stomach: {
  28317. height: math.unit(0.89, "feet"),
  28318. preyCapacity: math.unit(4, "liters"),
  28319. name: "Stomach",
  28320. image: {
  28321. source: "./media/characters/juri/stomach.svg"
  28322. }
  28323. },
  28324. },
  28325. [
  28326. {
  28327. name: "Normal",
  28328. height: math.unit(7 + 3 / 12, "feet"),
  28329. default: true
  28330. },
  28331. ]
  28332. ))
  28333. characterMakers.push(() => makeCharacter(
  28334. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28335. {
  28336. fox: {
  28337. height: math.unit(5 + 6 / 12, "feet"),
  28338. weight: math.unit(140, "lb"),
  28339. name: "Fox",
  28340. image: {
  28341. source: "./media/characters/maxene-sita/fox.svg",
  28342. extra: 146 / 138,
  28343. bottom: 2.1 / 148.19
  28344. }
  28345. },
  28346. foxLaying: {
  28347. height: math.unit(1.70, "feet"),
  28348. weight: math.unit(140, "lb"),
  28349. name: "Fox (Laying)",
  28350. image: {
  28351. source: "./media/characters/maxene-sita/fox-laying.svg",
  28352. extra: 910 / 572,
  28353. bottom: 71 / 981
  28354. }
  28355. },
  28356. kitsune: {
  28357. height: math.unit(10, "feet"),
  28358. weight: math.unit(800, "lb"),
  28359. name: "Kitsune",
  28360. image: {
  28361. source: "./media/characters/maxene-sita/kitsune.svg",
  28362. extra: 185 / 176,
  28363. bottom: 4.7 / 189.9
  28364. }
  28365. },
  28366. hellhound: {
  28367. height: math.unit(10, "feet"),
  28368. weight: math.unit(700, "lb"),
  28369. name: "Hellhound",
  28370. image: {
  28371. source: "./media/characters/maxene-sita/hellhound.svg",
  28372. extra: 1600 / 1545,
  28373. bottom: 81 / 1681
  28374. }
  28375. },
  28376. },
  28377. [
  28378. {
  28379. name: "Normal",
  28380. height: math.unit(5 + 6 / 12, "feet"),
  28381. default: true
  28382. },
  28383. ]
  28384. ))
  28385. characterMakers.push(() => makeCharacter(
  28386. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28387. {
  28388. front: {
  28389. height: math.unit(3 + 4 / 12, "feet"),
  28390. weight: math.unit(70, "lb"),
  28391. name: "Front",
  28392. image: {
  28393. source: "./media/characters/maia/front.svg",
  28394. extra: 227 / 219.5,
  28395. bottom: 40 / 267
  28396. }
  28397. },
  28398. back: {
  28399. height: math.unit(3 + 4 / 12, "feet"),
  28400. weight: math.unit(70, "lb"),
  28401. name: "Back",
  28402. image: {
  28403. source: "./media/characters/maia/back.svg",
  28404. extra: 237 / 225
  28405. }
  28406. },
  28407. },
  28408. [
  28409. {
  28410. name: "Normal",
  28411. height: math.unit(3 + 4 / 12, "feet"),
  28412. default: true
  28413. },
  28414. ]
  28415. ))
  28416. characterMakers.push(() => makeCharacter(
  28417. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28418. {
  28419. front: {
  28420. height: math.unit(5 + 10 / 12, "feet"),
  28421. weight: math.unit(197, "lb"),
  28422. name: "Front",
  28423. image: {
  28424. source: "./media/characters/jabaro/front.svg",
  28425. extra: 225 / 216,
  28426. bottom: 5.06 / 230
  28427. }
  28428. },
  28429. back: {
  28430. height: math.unit(5 + 10 / 12, "feet"),
  28431. weight: math.unit(197, "lb"),
  28432. name: "Back",
  28433. image: {
  28434. source: "./media/characters/jabaro/back.svg",
  28435. extra: 225 / 219,
  28436. bottom: 1.9 / 227
  28437. }
  28438. },
  28439. },
  28440. [
  28441. {
  28442. name: "Normal",
  28443. height: math.unit(5 + 10 / 12, "feet"),
  28444. default: true
  28445. },
  28446. ]
  28447. ))
  28448. characterMakers.push(() => makeCharacter(
  28449. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28450. {
  28451. front: {
  28452. height: math.unit(5 + 8 / 12, "feet"),
  28453. weight: math.unit(139, "lb"),
  28454. name: "Front",
  28455. image: {
  28456. source: "./media/characters/risa/front.svg",
  28457. extra: 270 / 260,
  28458. bottom: 11.2 / 282
  28459. }
  28460. },
  28461. back: {
  28462. height: math.unit(5 + 8 / 12, "feet"),
  28463. weight: math.unit(139, "lb"),
  28464. name: "Back",
  28465. image: {
  28466. source: "./media/characters/risa/back.svg",
  28467. extra: 264 / 255,
  28468. bottom: 4 / 268
  28469. }
  28470. },
  28471. },
  28472. [
  28473. {
  28474. name: "Normal",
  28475. height: math.unit(5 + 8 / 12, "feet"),
  28476. default: true
  28477. },
  28478. ]
  28479. ))
  28480. characterMakers.push(() => makeCharacter(
  28481. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28482. {
  28483. front: {
  28484. height: math.unit(2 + 11 / 12, "feet"),
  28485. weight: math.unit(30, "lb"),
  28486. name: "Front",
  28487. image: {
  28488. source: "./media/characters/weatley/front.svg",
  28489. bottom: 10.7 / 414,
  28490. extra: 403.5 / 362
  28491. }
  28492. },
  28493. back: {
  28494. height: math.unit(2 + 11 / 12, "feet"),
  28495. weight: math.unit(30, "lb"),
  28496. name: "Back",
  28497. image: {
  28498. source: "./media/characters/weatley/back.svg",
  28499. bottom: 10.7 / 414,
  28500. extra: 403.5 / 362
  28501. }
  28502. },
  28503. },
  28504. [
  28505. {
  28506. name: "Normal",
  28507. height: math.unit(2 + 11 / 12, "feet"),
  28508. default: true
  28509. },
  28510. ]
  28511. ))
  28512. characterMakers.push(() => makeCharacter(
  28513. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28514. {
  28515. front: {
  28516. height: math.unit(5 + 2 / 12, "feet"),
  28517. weight: math.unit(50, "kg"),
  28518. name: "Front",
  28519. image: {
  28520. source: "./media/characters/mercury-crescent/front.svg",
  28521. extra: 1088 / 1033,
  28522. bottom: 18.9 / 1109
  28523. }
  28524. },
  28525. },
  28526. [
  28527. {
  28528. name: "Normal",
  28529. height: math.unit(5 + 2 / 12, "feet"),
  28530. default: true
  28531. },
  28532. ]
  28533. ))
  28534. characterMakers.push(() => makeCharacter(
  28535. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28536. {
  28537. front: {
  28538. height: math.unit(2, "feet"),
  28539. weight: math.unit(15, "kg"),
  28540. name: "Front",
  28541. image: {
  28542. source: "./media/characters/diamond-jones/front.svg",
  28543. extra: 727/723,
  28544. bottom: 46/773
  28545. }
  28546. },
  28547. },
  28548. [
  28549. {
  28550. name: "Normal",
  28551. height: math.unit(2, "feet"),
  28552. default: true
  28553. },
  28554. ]
  28555. ))
  28556. characterMakers.push(() => makeCharacter(
  28557. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28558. {
  28559. front: {
  28560. height: math.unit(3, "feet"),
  28561. weight: math.unit(30, "kg"),
  28562. name: "Front",
  28563. image: {
  28564. source: "./media/characters/sweet-bit/front.svg",
  28565. extra: 675 / 567,
  28566. bottom: 27.7 / 703
  28567. }
  28568. },
  28569. },
  28570. [
  28571. {
  28572. name: "Normal",
  28573. height: math.unit(3, "feet"),
  28574. default: true
  28575. },
  28576. ]
  28577. ))
  28578. characterMakers.push(() => makeCharacter(
  28579. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28580. {
  28581. side: {
  28582. height: math.unit(9.178, "feet"),
  28583. weight: math.unit(500, "lb"),
  28584. name: "Side",
  28585. image: {
  28586. source: "./media/characters/umbrazen/side.svg",
  28587. extra: 1730 / 1473,
  28588. bottom: 34.6 / 1765
  28589. }
  28590. },
  28591. },
  28592. [
  28593. {
  28594. name: "Normal",
  28595. height: math.unit(9.178, "feet"),
  28596. default: true
  28597. },
  28598. ]
  28599. ))
  28600. characterMakers.push(() => makeCharacter(
  28601. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28602. {
  28603. front: {
  28604. height: math.unit(10, "feet"),
  28605. weight: math.unit(750, "lb"),
  28606. name: "Front",
  28607. image: {
  28608. source: "./media/characters/arlist/front.svg",
  28609. extra: 961 / 778,
  28610. bottom: 6.2 / 986
  28611. }
  28612. },
  28613. },
  28614. [
  28615. {
  28616. name: "Normal",
  28617. height: math.unit(10, "feet"),
  28618. default: true
  28619. },
  28620. ]
  28621. ))
  28622. characterMakers.push(() => makeCharacter(
  28623. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28624. {
  28625. front: {
  28626. height: math.unit(5 + 1 / 12, "feet"),
  28627. weight: math.unit(110, "lb"),
  28628. name: "Front",
  28629. image: {
  28630. source: "./media/characters/aradel/front.svg",
  28631. extra: 324 / 303,
  28632. bottom: 3.6 / 329.4
  28633. }
  28634. },
  28635. },
  28636. [
  28637. {
  28638. name: "Normal",
  28639. height: math.unit(5 + 1 / 12, "feet"),
  28640. default: true
  28641. },
  28642. ]
  28643. ))
  28644. characterMakers.push(() => makeCharacter(
  28645. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28646. {
  28647. dressed: {
  28648. height: math.unit(3 + 8 / 12, "feet"),
  28649. weight: math.unit(50, "lb"),
  28650. name: "Dressed",
  28651. image: {
  28652. source: "./media/characters/serryn/dressed.svg",
  28653. extra: 1792 / 1656,
  28654. bottom: 43.5 / 1840
  28655. }
  28656. },
  28657. nude: {
  28658. height: math.unit(3 + 8 / 12, "feet"),
  28659. weight: math.unit(50, "lb"),
  28660. name: "Nude",
  28661. image: {
  28662. source: "./media/characters/serryn/nude.svg",
  28663. extra: 1792 / 1656,
  28664. bottom: 43.5 / 1840
  28665. }
  28666. },
  28667. },
  28668. [
  28669. {
  28670. name: "Normal",
  28671. height: math.unit(3 + 8 / 12, "feet"),
  28672. default: true
  28673. },
  28674. ]
  28675. ))
  28676. characterMakers.push(() => makeCharacter(
  28677. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28678. {
  28679. front: {
  28680. height: math.unit(7 + 10 / 12, "feet"),
  28681. weight: math.unit(255, "lb"),
  28682. name: "Front",
  28683. image: {
  28684. source: "./media/characters/xavier-thyme/front.svg",
  28685. extra: 3733 / 3642,
  28686. bottom: 131 / 3869
  28687. }
  28688. },
  28689. frontRaven: {
  28690. height: math.unit(7 + 10 / 12, "feet"),
  28691. weight: math.unit(255, "lb"),
  28692. name: "Front (Raven)",
  28693. image: {
  28694. source: "./media/characters/xavier-thyme/front-raven.svg",
  28695. extra: 4385 / 3642,
  28696. bottom: 131 / 4517
  28697. }
  28698. },
  28699. },
  28700. [
  28701. {
  28702. name: "Normal",
  28703. height: math.unit(7 + 10 / 12, "feet"),
  28704. default: true
  28705. },
  28706. ]
  28707. ))
  28708. characterMakers.push(() => makeCharacter(
  28709. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28710. {
  28711. front: {
  28712. height: math.unit(1.6, "m"),
  28713. weight: math.unit(50, "kg"),
  28714. name: "Front",
  28715. image: {
  28716. source: "./media/characters/kiki/front.svg",
  28717. extra: 4682 / 3610,
  28718. bottom: 115 / 4777
  28719. }
  28720. },
  28721. },
  28722. [
  28723. {
  28724. name: "Normal",
  28725. height: math.unit(1.6, "meters"),
  28726. default: true
  28727. },
  28728. ]
  28729. ))
  28730. characterMakers.push(() => makeCharacter(
  28731. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28732. {
  28733. front: {
  28734. height: math.unit(50, "m"),
  28735. weight: math.unit(500, "tonnes"),
  28736. name: "Front",
  28737. image: {
  28738. source: "./media/characters/ryoko/front.svg",
  28739. extra: 4632 / 3926,
  28740. bottom: 193 / 4823
  28741. }
  28742. },
  28743. },
  28744. [
  28745. {
  28746. name: "Normal",
  28747. height: math.unit(50, "meters"),
  28748. default: true
  28749. },
  28750. ]
  28751. ))
  28752. characterMakers.push(() => makeCharacter(
  28753. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28754. {
  28755. front: {
  28756. height: math.unit(30, "m"),
  28757. weight: math.unit(22, "tonnes"),
  28758. name: "Front",
  28759. image: {
  28760. source: "./media/characters/elio/front.svg",
  28761. extra: 4582 / 3720,
  28762. bottom: 236 / 4828
  28763. }
  28764. },
  28765. },
  28766. [
  28767. {
  28768. name: "Normal",
  28769. height: math.unit(30, "meters"),
  28770. default: true
  28771. },
  28772. ]
  28773. ))
  28774. characterMakers.push(() => makeCharacter(
  28775. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28776. {
  28777. front: {
  28778. height: math.unit(6 + 3 / 12, "feet"),
  28779. weight: math.unit(120, "lb"),
  28780. name: "Front",
  28781. image: {
  28782. source: "./media/characters/azura/front.svg",
  28783. extra: 1149 / 1135,
  28784. bottom: 45 / 1194
  28785. }
  28786. },
  28787. frontClothed: {
  28788. height: math.unit(6 + 3 / 12, "feet"),
  28789. weight: math.unit(120, "lb"),
  28790. name: "Front (Clothed)",
  28791. image: {
  28792. source: "./media/characters/azura/front-clothed.svg",
  28793. extra: 1149 / 1135,
  28794. bottom: 45 / 1194
  28795. }
  28796. },
  28797. },
  28798. [
  28799. {
  28800. name: "Normal",
  28801. height: math.unit(6 + 3 / 12, "feet"),
  28802. default: true
  28803. },
  28804. {
  28805. name: "Macro",
  28806. height: math.unit(20 + 6 / 12, "feet")
  28807. },
  28808. {
  28809. name: "Megamacro",
  28810. height: math.unit(12, "miles")
  28811. },
  28812. {
  28813. name: "Gigamacro",
  28814. height: math.unit(10000, "miles")
  28815. },
  28816. {
  28817. name: "Teramacro",
  28818. height: math.unit(900000, "miles")
  28819. },
  28820. ]
  28821. ))
  28822. characterMakers.push(() => makeCharacter(
  28823. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28824. {
  28825. front: {
  28826. height: math.unit(12, "feet"),
  28827. weight: math.unit(1, "ton"),
  28828. capacity: math.unit(660000, "gallons"),
  28829. name: "Front",
  28830. image: {
  28831. source: "./media/characters/zeus/front.svg",
  28832. extra: 5005 / 4717,
  28833. bottom: 363 / 5388
  28834. }
  28835. },
  28836. },
  28837. [
  28838. {
  28839. name: "Normal",
  28840. height: math.unit(12, "feet")
  28841. },
  28842. {
  28843. name: "Preferred Size",
  28844. height: math.unit(0.5, "miles"),
  28845. default: true
  28846. },
  28847. {
  28848. name: "Giga Horse",
  28849. height: math.unit(300, "miles")
  28850. },
  28851. {
  28852. name: "Riding Planets",
  28853. height: math.unit(30, "megameters")
  28854. },
  28855. {
  28856. name: "Cosmic Giant",
  28857. height: math.unit(3, "zettameters")
  28858. },
  28859. {
  28860. name: "Breeding God",
  28861. height: math.unit(9.92e22, "yottameters")
  28862. },
  28863. ]
  28864. ))
  28865. characterMakers.push(() => makeCharacter(
  28866. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28867. {
  28868. side: {
  28869. height: math.unit(9, "feet"),
  28870. weight: math.unit(1500, "kg"),
  28871. name: "Side",
  28872. image: {
  28873. source: "./media/characters/fang/side.svg",
  28874. extra: 924 / 866,
  28875. bottom: 47.5 / 972.3
  28876. }
  28877. },
  28878. },
  28879. [
  28880. {
  28881. name: "Normal",
  28882. height: math.unit(9, "feet"),
  28883. default: true
  28884. },
  28885. {
  28886. name: "Macro",
  28887. height: math.unit(75 + 6 / 12, "feet")
  28888. },
  28889. {
  28890. name: "Teramacro",
  28891. height: math.unit(50000, "miles")
  28892. },
  28893. ]
  28894. ))
  28895. characterMakers.push(() => makeCharacter(
  28896. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28897. {
  28898. front: {
  28899. height: math.unit(10, "feet"),
  28900. weight: math.unit(2, "tons"),
  28901. name: "Front",
  28902. image: {
  28903. source: "./media/characters/rekhit/front.svg",
  28904. extra: 2796 / 2590,
  28905. bottom: 225 / 3022
  28906. }
  28907. },
  28908. },
  28909. [
  28910. {
  28911. name: "Normal",
  28912. height: math.unit(10, "feet"),
  28913. default: true
  28914. },
  28915. {
  28916. name: "Macro",
  28917. height: math.unit(500, "feet")
  28918. },
  28919. ]
  28920. ))
  28921. characterMakers.push(() => makeCharacter(
  28922. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28923. {
  28924. front: {
  28925. height: math.unit(7 + 6.451 / 12, "feet"),
  28926. weight: math.unit(310, "lb"),
  28927. name: "Front",
  28928. image: {
  28929. source: "./media/characters/dahlia-verrick/front.svg",
  28930. extra: 1488 / 1365,
  28931. bottom: 6.2 / 1495
  28932. }
  28933. },
  28934. back: {
  28935. height: math.unit(7 + 6.451 / 12, "feet"),
  28936. weight: math.unit(310, "lb"),
  28937. name: "Back",
  28938. image: {
  28939. source: "./media/characters/dahlia-verrick/back.svg",
  28940. extra: 1472 / 1351,
  28941. bottom: 5.28 / 1477
  28942. }
  28943. },
  28944. frontBusiness: {
  28945. height: math.unit(7 + 6.451 / 12, "feet"),
  28946. weight: math.unit(200, "lb"),
  28947. name: "Front (Business)",
  28948. image: {
  28949. source: "./media/characters/dahlia-verrick/front-business.svg",
  28950. extra: 1478 / 1381,
  28951. bottom: 5.5 / 1484
  28952. }
  28953. },
  28954. frontCasual: {
  28955. height: math.unit(7 + 6.451 / 12, "feet"),
  28956. weight: math.unit(200, "lb"),
  28957. name: "Front (Casual)",
  28958. image: {
  28959. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28960. extra: 1478 / 1381,
  28961. bottom: 5.5 / 1484
  28962. }
  28963. },
  28964. },
  28965. [
  28966. {
  28967. name: "Travel-Sized",
  28968. height: math.unit(7.45, "inches")
  28969. },
  28970. {
  28971. name: "Normal",
  28972. height: math.unit(7 + 6.451 / 12, "feet"),
  28973. default: true
  28974. },
  28975. {
  28976. name: "Hitting the Town",
  28977. height: math.unit(37 + 8 / 12, "feet")
  28978. },
  28979. {
  28980. name: "Stomp in the Suburbs",
  28981. height: math.unit(964 + 9.728 / 12, "feet")
  28982. },
  28983. {
  28984. name: "Sit on the City",
  28985. height: math.unit(61747 + 10.592 / 12, "feet")
  28986. },
  28987. {
  28988. name: "Glomp the Globe",
  28989. height: math.unit(252919327 + 4.832 / 12, "feet")
  28990. },
  28991. ]
  28992. ))
  28993. characterMakers.push(() => makeCharacter(
  28994. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28995. {
  28996. front: {
  28997. height: math.unit(6 + 4 / 12, "feet"),
  28998. weight: math.unit(320, "lb"),
  28999. name: "Front",
  29000. image: {
  29001. source: "./media/characters/balina-mahigan/front.svg",
  29002. extra: 447 / 428,
  29003. bottom: 18 / 466
  29004. }
  29005. },
  29006. back: {
  29007. height: math.unit(6 + 4 / 12, "feet"),
  29008. weight: math.unit(320, "lb"),
  29009. name: "Back",
  29010. image: {
  29011. source: "./media/characters/balina-mahigan/back.svg",
  29012. extra: 445 / 428,
  29013. bottom: 4.07 / 448
  29014. }
  29015. },
  29016. arm: {
  29017. height: math.unit(1.88, "feet"),
  29018. name: "Arm",
  29019. image: {
  29020. source: "./media/characters/balina-mahigan/arm.svg"
  29021. }
  29022. },
  29023. backPort: {
  29024. height: math.unit(0.685, "feet"),
  29025. name: "Back Port",
  29026. image: {
  29027. source: "./media/characters/balina-mahigan/back-port.svg"
  29028. }
  29029. },
  29030. hoofpaw: {
  29031. height: math.unit(1.41, "feet"),
  29032. name: "Hoofpaw",
  29033. image: {
  29034. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  29035. }
  29036. },
  29037. leftHandBack: {
  29038. height: math.unit(0.938, "feet"),
  29039. name: "Left Hand (Back)",
  29040. image: {
  29041. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  29042. }
  29043. },
  29044. leftHandFront: {
  29045. height: math.unit(0.938, "feet"),
  29046. name: "Left Hand (Front)",
  29047. image: {
  29048. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  29049. }
  29050. },
  29051. rightHandBack: {
  29052. height: math.unit(0.95, "feet"),
  29053. name: "Right Hand (Back)",
  29054. image: {
  29055. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  29056. }
  29057. },
  29058. rightHandFront: {
  29059. height: math.unit(0.95, "feet"),
  29060. name: "Right Hand (Front)",
  29061. image: {
  29062. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  29063. }
  29064. },
  29065. },
  29066. [
  29067. {
  29068. name: "Normal",
  29069. height: math.unit(6 + 4 / 12, "feet"),
  29070. default: true
  29071. },
  29072. ]
  29073. ))
  29074. characterMakers.push(() => makeCharacter(
  29075. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  29076. {
  29077. front: {
  29078. height: math.unit(6, "feet"),
  29079. weight: math.unit(320, "lb"),
  29080. name: "Front",
  29081. image: {
  29082. source: "./media/characters/balina-mejeri/front.svg",
  29083. extra: 517 / 488,
  29084. bottom: 44.2 / 561
  29085. }
  29086. },
  29087. },
  29088. [
  29089. {
  29090. name: "Normal",
  29091. height: math.unit(6 + 4 / 12, "feet")
  29092. },
  29093. {
  29094. name: "Business",
  29095. height: math.unit(155, "feet"),
  29096. default: true
  29097. },
  29098. ]
  29099. ))
  29100. characterMakers.push(() => makeCharacter(
  29101. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  29102. {
  29103. kneeling: {
  29104. height: math.unit(6 + 4 / 12, "feet"),
  29105. weight: math.unit(300 * 20, "lb"),
  29106. name: "Kneeling",
  29107. image: {
  29108. source: "./media/characters/balbarian/kneeling.svg",
  29109. extra: 922 / 862,
  29110. bottom: 42.4 / 965
  29111. }
  29112. },
  29113. },
  29114. [
  29115. {
  29116. name: "Normal",
  29117. height: math.unit(6 + 4 / 12, "feet")
  29118. },
  29119. {
  29120. name: "Treasured",
  29121. height: math.unit(18 + 9 / 12, "feet"),
  29122. default: true
  29123. },
  29124. {
  29125. name: "Macro",
  29126. height: math.unit(900, "feet")
  29127. },
  29128. ]
  29129. ))
  29130. characterMakers.push(() => makeCharacter(
  29131. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  29132. {
  29133. front: {
  29134. height: math.unit(6 + 4 / 12, "feet"),
  29135. weight: math.unit(325, "lb"),
  29136. name: "Front",
  29137. image: {
  29138. source: "./media/characters/balina-amarini/front.svg",
  29139. extra: 415 / 403,
  29140. bottom: 19 / 433.4
  29141. }
  29142. },
  29143. back: {
  29144. height: math.unit(6 + 4 / 12, "feet"),
  29145. weight: math.unit(325, "lb"),
  29146. name: "Back",
  29147. image: {
  29148. source: "./media/characters/balina-amarini/back.svg",
  29149. extra: 415 / 403,
  29150. bottom: 13.5 / 432
  29151. }
  29152. },
  29153. overdrive: {
  29154. height: math.unit(6 + 4 / 12, "feet"),
  29155. weight: math.unit(400, "lb"),
  29156. name: "Overdrive",
  29157. image: {
  29158. source: "./media/characters/balina-amarini/overdrive.svg",
  29159. extra: 269 / 259,
  29160. bottom: 12 / 282
  29161. }
  29162. },
  29163. },
  29164. [
  29165. {
  29166. name: "Boom",
  29167. height: math.unit(9 + 10 / 12, "feet"),
  29168. default: true
  29169. },
  29170. {
  29171. name: "Macro",
  29172. height: math.unit(280, "feet")
  29173. },
  29174. ]
  29175. ))
  29176. characterMakers.push(() => makeCharacter(
  29177. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  29178. {
  29179. goddess: {
  29180. height: math.unit(600, "feet"),
  29181. weight: math.unit(2000000, "tons"),
  29182. name: "Goddess",
  29183. image: {
  29184. source: "./media/characters/lady-kubwa/goddess.svg",
  29185. extra: 1240.5 / 1223,
  29186. bottom: 22 / 1263
  29187. }
  29188. },
  29189. goddesser: {
  29190. height: math.unit(900, "feet"),
  29191. weight: math.unit(20000000, "lb"),
  29192. name: "Goddess-er",
  29193. image: {
  29194. source: "./media/characters/lady-kubwa/goddess-er.svg",
  29195. extra: 899 / 888,
  29196. bottom: 12.6 / 912
  29197. }
  29198. },
  29199. },
  29200. [
  29201. {
  29202. name: "Macro",
  29203. height: math.unit(600, "feet"),
  29204. default: true
  29205. },
  29206. {
  29207. name: "Megamacro",
  29208. height: math.unit(250, "miles")
  29209. },
  29210. ]
  29211. ))
  29212. characterMakers.push(() => makeCharacter(
  29213. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  29214. {
  29215. front: {
  29216. height: math.unit(7 + 7 / 12, "feet"),
  29217. weight: math.unit(250, "lb"),
  29218. name: "Front",
  29219. image: {
  29220. source: "./media/characters/tala-grovehorn/front.svg",
  29221. extra: 2636 / 2525,
  29222. bottom: 147 / 2781
  29223. }
  29224. },
  29225. back: {
  29226. height: math.unit(7 + 7 / 12, "feet"),
  29227. weight: math.unit(250, "lb"),
  29228. name: "Back",
  29229. image: {
  29230. source: "./media/characters/tala-grovehorn/back.svg",
  29231. extra: 2635 / 2539,
  29232. bottom: 100 / 2732.8
  29233. }
  29234. },
  29235. mouth: {
  29236. height: math.unit(1.15, "feet"),
  29237. name: "Mouth",
  29238. image: {
  29239. source: "./media/characters/tala-grovehorn/mouth.svg"
  29240. }
  29241. },
  29242. dick: {
  29243. height: math.unit(2.36, "feet"),
  29244. name: "Dick",
  29245. image: {
  29246. source: "./media/characters/tala-grovehorn/dick.svg"
  29247. }
  29248. },
  29249. slit: {
  29250. height: math.unit(0.61, "feet"),
  29251. name: "Slit",
  29252. image: {
  29253. source: "./media/characters/tala-grovehorn/slit.svg"
  29254. }
  29255. },
  29256. },
  29257. [
  29258. ]
  29259. ))
  29260. characterMakers.push(() => makeCharacter(
  29261. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  29262. {
  29263. front: {
  29264. height: math.unit(7 + 7 / 12, "feet"),
  29265. weight: math.unit(225, "lb"),
  29266. name: "Front",
  29267. image: {
  29268. source: "./media/characters/epona/front.svg",
  29269. extra: 2445 / 2290,
  29270. bottom: 251 / 2696
  29271. }
  29272. },
  29273. back: {
  29274. height: math.unit(7 + 7 / 12, "feet"),
  29275. weight: math.unit(225, "lb"),
  29276. name: "Back",
  29277. image: {
  29278. source: "./media/characters/epona/back.svg",
  29279. extra: 2546 / 2408,
  29280. bottom: 44 / 2589
  29281. }
  29282. },
  29283. genitals: {
  29284. height: math.unit(1.5, "feet"),
  29285. name: "Genitals",
  29286. image: {
  29287. source: "./media/characters/epona/genitals.svg"
  29288. }
  29289. },
  29290. },
  29291. [
  29292. {
  29293. name: "Normal",
  29294. height: math.unit(7 + 7 / 12, "feet"),
  29295. default: true
  29296. },
  29297. ]
  29298. ))
  29299. characterMakers.push(() => makeCharacter(
  29300. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29301. {
  29302. front: {
  29303. height: math.unit(7, "feet"),
  29304. weight: math.unit(518, "lb"),
  29305. name: "Front",
  29306. image: {
  29307. source: "./media/characters/avia-bloodbourn/front.svg",
  29308. extra: 1466 / 1350,
  29309. bottom: 65 / 1527
  29310. }
  29311. },
  29312. },
  29313. [
  29314. ]
  29315. ))
  29316. characterMakers.push(() => makeCharacter(
  29317. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29318. {
  29319. front: {
  29320. height: math.unit(9.35, "feet"),
  29321. weight: math.unit(600, "lb"),
  29322. name: "Front",
  29323. image: {
  29324. source: "./media/characters/amera/front.svg",
  29325. extra: 891 / 818,
  29326. bottom: 30 / 922.7
  29327. }
  29328. },
  29329. back: {
  29330. height: math.unit(9.35, "feet"),
  29331. weight: math.unit(600, "lb"),
  29332. name: "Back",
  29333. image: {
  29334. source: "./media/characters/amera/back.svg",
  29335. extra: 876 / 824,
  29336. bottom: 6.8 / 884
  29337. }
  29338. },
  29339. dick: {
  29340. height: math.unit(2.14, "feet"),
  29341. name: "Dick",
  29342. image: {
  29343. source: "./media/characters/amera/dick.svg"
  29344. }
  29345. },
  29346. },
  29347. [
  29348. {
  29349. name: "Normal",
  29350. height: math.unit(9.35, "feet"),
  29351. default: true
  29352. },
  29353. ]
  29354. ))
  29355. characterMakers.push(() => makeCharacter(
  29356. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29357. {
  29358. kneeling: {
  29359. height: math.unit(3 + 4 / 12, "feet"),
  29360. weight: math.unit(90, "lb"),
  29361. name: "Kneeling",
  29362. image: {
  29363. source: "./media/characters/rosewen/kneeling.svg",
  29364. extra: 1835 / 1571,
  29365. bottom: 27.7 / 1862
  29366. }
  29367. },
  29368. },
  29369. [
  29370. {
  29371. name: "Normal",
  29372. height: math.unit(3 + 4 / 12, "feet"),
  29373. default: true
  29374. },
  29375. ]
  29376. ))
  29377. characterMakers.push(() => makeCharacter(
  29378. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29379. {
  29380. front: {
  29381. height: math.unit(5 + 10 / 12, "feet"),
  29382. weight: math.unit(200, "lb"),
  29383. name: "Front",
  29384. image: {
  29385. source: "./media/characters/sabah/front.svg",
  29386. extra: 849 / 763,
  29387. bottom: 33.9 / 881
  29388. }
  29389. },
  29390. },
  29391. [
  29392. {
  29393. name: "Normal",
  29394. height: math.unit(5 + 10 / 12, "feet"),
  29395. default: true
  29396. },
  29397. ]
  29398. ))
  29399. characterMakers.push(() => makeCharacter(
  29400. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29401. {
  29402. front: {
  29403. height: math.unit(3 + 5 / 12, "feet"),
  29404. weight: math.unit(40, "kg"),
  29405. name: "Front",
  29406. image: {
  29407. source: "./media/characters/purple-flame/front.svg",
  29408. extra: 1577 / 1412,
  29409. bottom: 97 / 1694
  29410. }
  29411. },
  29412. frontDressed: {
  29413. height: math.unit(3 + 5 / 12, "feet"),
  29414. weight: math.unit(40, "kg"),
  29415. name: "Front (Dressed)",
  29416. image: {
  29417. source: "./media/characters/purple-flame/front-dressed.svg",
  29418. extra: 1577 / 1412,
  29419. bottom: 97 / 1694
  29420. }
  29421. },
  29422. headphones: {
  29423. height: math.unit(0.85, "feet"),
  29424. name: "Headphones",
  29425. image: {
  29426. source: "./media/characters/purple-flame/headphones.svg"
  29427. }
  29428. },
  29429. },
  29430. [
  29431. {
  29432. name: "Really Small",
  29433. height: math.unit(5, "cm")
  29434. },
  29435. {
  29436. name: "Micro",
  29437. height: math.unit(1 + 5 / 12, "feet")
  29438. },
  29439. {
  29440. name: "Normal",
  29441. height: math.unit(3 + 5 / 12, "feet"),
  29442. default: true
  29443. },
  29444. {
  29445. name: "Minimacro",
  29446. height: math.unit(125, "feet")
  29447. },
  29448. {
  29449. name: "Macro",
  29450. height: math.unit(0.5, "miles")
  29451. },
  29452. {
  29453. name: "Megamacro",
  29454. height: math.unit(50, "miles")
  29455. },
  29456. {
  29457. name: "Gigantic",
  29458. height: math.unit(750, "miles")
  29459. },
  29460. {
  29461. name: "Planetary",
  29462. height: math.unit(15000, "miles")
  29463. },
  29464. ]
  29465. ))
  29466. characterMakers.push(() => makeCharacter(
  29467. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29468. {
  29469. front: {
  29470. height: math.unit(14, "feet"),
  29471. weight: math.unit(959, "lb"),
  29472. name: "Front",
  29473. image: {
  29474. source: "./media/characters/arsenal/front.svg",
  29475. extra: 2357 / 2157,
  29476. bottom: 93 / 2458
  29477. }
  29478. },
  29479. },
  29480. [
  29481. {
  29482. name: "Normal",
  29483. height: math.unit(14, "feet"),
  29484. default: true
  29485. },
  29486. ]
  29487. ))
  29488. characterMakers.push(() => makeCharacter(
  29489. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29490. {
  29491. front: {
  29492. height: math.unit(6, "feet"),
  29493. weight: math.unit(150, "lb"),
  29494. name: "Front",
  29495. image: {
  29496. source: "./media/characters/adira/front.svg",
  29497. extra: 1078 / 1029,
  29498. bottom: 87 / 1166
  29499. }
  29500. },
  29501. },
  29502. [
  29503. {
  29504. name: "Micro",
  29505. height: math.unit(4, "inches"),
  29506. default: true
  29507. },
  29508. {
  29509. name: "Macro",
  29510. height: math.unit(50, "feet")
  29511. },
  29512. ]
  29513. ))
  29514. characterMakers.push(() => makeCharacter(
  29515. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29516. {
  29517. front: {
  29518. height: math.unit(16, "feet"),
  29519. weight: math.unit(1000, "lb"),
  29520. name: "Front",
  29521. image: {
  29522. source: "./media/characters/grim/front.svg",
  29523. extra: 622 / 614,
  29524. bottom: 18.1 / 642
  29525. }
  29526. },
  29527. back: {
  29528. height: math.unit(16, "feet"),
  29529. weight: math.unit(1000, "lb"),
  29530. name: "Back",
  29531. image: {
  29532. source: "./media/characters/grim/back.svg",
  29533. extra: 610.6 / 602,
  29534. bottom: 40.8 / 652
  29535. }
  29536. },
  29537. hunched: {
  29538. height: math.unit(9.75, "feet"),
  29539. weight: math.unit(1000, "lb"),
  29540. name: "Hunched",
  29541. image: {
  29542. source: "./media/characters/grim/hunched.svg",
  29543. extra: 304 / 297,
  29544. bottom: 35.4 / 394
  29545. }
  29546. },
  29547. },
  29548. [
  29549. {
  29550. name: "Normal",
  29551. height: math.unit(16, "feet"),
  29552. default: true
  29553. },
  29554. ]
  29555. ))
  29556. characterMakers.push(() => makeCharacter(
  29557. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29558. {
  29559. front: {
  29560. height: math.unit(2.3, "meters"),
  29561. weight: math.unit(300, "lb"),
  29562. name: "Front",
  29563. image: {
  29564. source: "./media/characters/sinja/front-sfw.svg",
  29565. extra: 1393 / 1294,
  29566. bottom: 70 / 1463
  29567. }
  29568. },
  29569. frontNsfw: {
  29570. height: math.unit(2.3, "meters"),
  29571. weight: math.unit(300, "lb"),
  29572. name: "Front (NSFW)",
  29573. image: {
  29574. source: "./media/characters/sinja/front-nsfw.svg",
  29575. extra: 1393 / 1294,
  29576. bottom: 70 / 1463
  29577. }
  29578. },
  29579. back: {
  29580. height: math.unit(2.3, "meters"),
  29581. weight: math.unit(300, "lb"),
  29582. name: "Back",
  29583. image: {
  29584. source: "./media/characters/sinja/back.svg",
  29585. extra: 1393 / 1294,
  29586. bottom: 70 / 1463
  29587. }
  29588. },
  29589. head: {
  29590. height: math.unit(1.771, "feet"),
  29591. name: "Head",
  29592. image: {
  29593. source: "./media/characters/sinja/head.svg"
  29594. }
  29595. },
  29596. slit: {
  29597. height: math.unit(0.8, "feet"),
  29598. name: "Slit",
  29599. image: {
  29600. source: "./media/characters/sinja/slit.svg"
  29601. }
  29602. },
  29603. },
  29604. [
  29605. {
  29606. name: "Normal",
  29607. height: math.unit(2.3, "meters")
  29608. },
  29609. {
  29610. name: "Macro",
  29611. height: math.unit(91, "meters"),
  29612. default: true
  29613. },
  29614. {
  29615. name: "Megamacro",
  29616. height: math.unit(91440, "meters")
  29617. },
  29618. {
  29619. name: "Gigamacro",
  29620. height: math.unit(60960000, "meters")
  29621. },
  29622. {
  29623. name: "Teramacro",
  29624. height: math.unit(9144000000, "meters")
  29625. },
  29626. ]
  29627. ))
  29628. characterMakers.push(() => makeCharacter(
  29629. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29630. {
  29631. front: {
  29632. height: math.unit(1.7, "meters"),
  29633. weight: math.unit(130, "lb"),
  29634. name: "Front",
  29635. image: {
  29636. source: "./media/characters/kyu/front.svg",
  29637. extra: 415 / 395,
  29638. bottom: 5 / 420
  29639. }
  29640. },
  29641. head: {
  29642. height: math.unit(1.75, "feet"),
  29643. name: "Head",
  29644. image: {
  29645. source: "./media/characters/kyu/head.svg"
  29646. }
  29647. },
  29648. foot: {
  29649. height: math.unit(0.81, "feet"),
  29650. name: "Foot",
  29651. image: {
  29652. source: "./media/characters/kyu/foot.svg"
  29653. }
  29654. },
  29655. },
  29656. [
  29657. {
  29658. name: "Normal",
  29659. height: math.unit(1.7, "meters")
  29660. },
  29661. {
  29662. name: "Macro",
  29663. height: math.unit(131, "feet"),
  29664. default: true
  29665. },
  29666. {
  29667. name: "Megamacro",
  29668. height: math.unit(91440, "meters")
  29669. },
  29670. {
  29671. name: "Gigamacro",
  29672. height: math.unit(60960000, "meters")
  29673. },
  29674. {
  29675. name: "Teramacro",
  29676. height: math.unit(9144000000, "meters")
  29677. },
  29678. ]
  29679. ))
  29680. characterMakers.push(() => makeCharacter(
  29681. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29682. {
  29683. front: {
  29684. height: math.unit(7 + 1 / 12, "feet"),
  29685. weight: math.unit(250, "lb"),
  29686. name: "Front",
  29687. image: {
  29688. source: "./media/characters/joey/front.svg",
  29689. extra: 1791 / 1537,
  29690. bottom: 28 / 1816
  29691. }
  29692. },
  29693. },
  29694. [
  29695. {
  29696. name: "Micro",
  29697. height: math.unit(3, "inches")
  29698. },
  29699. {
  29700. name: "Normal",
  29701. height: math.unit(7 + 1 / 12, "feet"),
  29702. default: true
  29703. },
  29704. ]
  29705. ))
  29706. characterMakers.push(() => makeCharacter(
  29707. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29708. {
  29709. front: {
  29710. height: math.unit(165, "cm"),
  29711. weight: math.unit(140, "lb"),
  29712. name: "Front",
  29713. image: {
  29714. source: "./media/characters/sam-evans/front.svg",
  29715. extra: 3417 / 3230,
  29716. bottom: 41.3 / 3417
  29717. }
  29718. },
  29719. frontSixTails: {
  29720. height: math.unit(165, "cm"),
  29721. weight: math.unit(140, "lb"),
  29722. name: "Front-six-tails",
  29723. image: {
  29724. source: "./media/characters/sam-evans/front-six-tails.svg",
  29725. extra: 3417 / 3230,
  29726. bottom: 41.3 / 3417
  29727. }
  29728. },
  29729. back: {
  29730. height: math.unit(165, "cm"),
  29731. weight: math.unit(140, "lb"),
  29732. name: "Back",
  29733. image: {
  29734. source: "./media/characters/sam-evans/back.svg",
  29735. extra: 3227 / 3032,
  29736. bottom: 6.8 / 3234
  29737. }
  29738. },
  29739. face: {
  29740. height: math.unit(0.68, "feet"),
  29741. name: "Face",
  29742. image: {
  29743. source: "./media/characters/sam-evans/face.svg"
  29744. }
  29745. },
  29746. },
  29747. [
  29748. {
  29749. name: "Normal",
  29750. height: math.unit(165, "cm"),
  29751. default: true
  29752. },
  29753. {
  29754. name: "Macro",
  29755. height: math.unit(100, "meters")
  29756. },
  29757. {
  29758. name: "Macro+",
  29759. height: math.unit(800, "meters")
  29760. },
  29761. {
  29762. name: "Macro++",
  29763. height: math.unit(3, "km")
  29764. },
  29765. {
  29766. name: "Macro+++",
  29767. height: math.unit(30, "km")
  29768. },
  29769. ]
  29770. ))
  29771. characterMakers.push(() => makeCharacter(
  29772. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29773. {
  29774. front: {
  29775. height: math.unit(10, "feet"),
  29776. weight: math.unit(750, "lb"),
  29777. name: "Front",
  29778. image: {
  29779. source: "./media/characters/juliet-a/front.svg",
  29780. extra: 1766 / 1720,
  29781. bottom: 43 / 1809
  29782. }
  29783. },
  29784. back: {
  29785. height: math.unit(10, "feet"),
  29786. weight: math.unit(750, "lb"),
  29787. name: "Back",
  29788. image: {
  29789. source: "./media/characters/juliet-a/back.svg",
  29790. extra: 1781 / 1734,
  29791. bottom: 35 / 1810,
  29792. }
  29793. },
  29794. },
  29795. [
  29796. {
  29797. name: "Normal",
  29798. height: math.unit(10, "feet"),
  29799. default: true
  29800. },
  29801. {
  29802. name: "Dragon Form",
  29803. height: math.unit(250, "feet")
  29804. },
  29805. {
  29806. name: "Macro",
  29807. height: math.unit(1000, "feet")
  29808. },
  29809. {
  29810. name: "Megamacro",
  29811. height: math.unit(10000, "feet")
  29812. }
  29813. ]
  29814. ))
  29815. characterMakers.push(() => makeCharacter(
  29816. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29817. {
  29818. regular: {
  29819. height: math.unit(7 + 3 / 12, "feet"),
  29820. weight: math.unit(260, "lb"),
  29821. name: "Regular",
  29822. image: {
  29823. source: "./media/characters/wild/regular.svg",
  29824. extra: 97.45 / 92,
  29825. bottom: 6.8 / 104.3
  29826. }
  29827. },
  29828. biggums: {
  29829. height: math.unit(8 + 6 / 12, "feet"),
  29830. weight: math.unit(425, "lb"),
  29831. name: "Biggums",
  29832. image: {
  29833. source: "./media/characters/wild/biggums.svg",
  29834. extra: 97.45 / 92,
  29835. bottom: 7.5 / 132.34
  29836. }
  29837. },
  29838. mawRegular: {
  29839. height: math.unit(1.24, "feet"),
  29840. name: "Maw (Regular)",
  29841. image: {
  29842. source: "./media/characters/wild/maw.svg"
  29843. }
  29844. },
  29845. mawBiggums: {
  29846. height: math.unit(1.47, "feet"),
  29847. name: "Maw (Biggums)",
  29848. image: {
  29849. source: "./media/characters/wild/maw.svg"
  29850. }
  29851. },
  29852. },
  29853. [
  29854. {
  29855. name: "Normal",
  29856. height: math.unit(7 + 3 / 12, "feet"),
  29857. default: true
  29858. },
  29859. ]
  29860. ))
  29861. characterMakers.push(() => makeCharacter(
  29862. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29863. {
  29864. front: {
  29865. height: math.unit(2.5, "meters"),
  29866. weight: math.unit(200, "kg"),
  29867. name: "Front",
  29868. image: {
  29869. source: "./media/characters/vidar/front.svg",
  29870. extra: 2994 / 2795,
  29871. bottom: 56 / 3061
  29872. }
  29873. },
  29874. back: {
  29875. height: math.unit(2.5, "meters"),
  29876. weight: math.unit(200, "kg"),
  29877. name: "Back",
  29878. image: {
  29879. source: "./media/characters/vidar/back.svg",
  29880. extra: 3131 / 2928,
  29881. bottom: 13.5 / 3141.5
  29882. }
  29883. },
  29884. feral: {
  29885. height: math.unit(2.5, "meters"),
  29886. weight: math.unit(2000, "kg"),
  29887. name: "Feral",
  29888. image: {
  29889. source: "./media/characters/vidar/feral.svg",
  29890. extra: 2790 / 1765,
  29891. bottom: 6 / 2796
  29892. }
  29893. },
  29894. },
  29895. [
  29896. {
  29897. name: "Normal",
  29898. height: math.unit(2.5, "meters"),
  29899. default: true
  29900. },
  29901. {
  29902. name: "Macro",
  29903. height: math.unit(100, "meters")
  29904. },
  29905. ]
  29906. ))
  29907. characterMakers.push(() => makeCharacter(
  29908. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29909. {
  29910. front: {
  29911. height: math.unit(5 + 9 / 12, "feet"),
  29912. weight: math.unit(120, "lb"),
  29913. name: "Front",
  29914. image: {
  29915. source: "./media/characters/ash/front.svg",
  29916. extra: 2189 / 1961,
  29917. bottom: 5.2 / 2194
  29918. }
  29919. },
  29920. },
  29921. [
  29922. {
  29923. name: "Normal",
  29924. height: math.unit(5 + 9 / 12, "feet"),
  29925. default: true
  29926. },
  29927. ]
  29928. ))
  29929. characterMakers.push(() => makeCharacter(
  29930. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29931. {
  29932. front: {
  29933. height: math.unit(9, "feet"),
  29934. weight: math.unit(10000, "lb"),
  29935. name: "Front",
  29936. image: {
  29937. source: "./media/characters/gygabite/front.svg",
  29938. bottom: 31.7 / 537.8,
  29939. extra: 505 / 370
  29940. }
  29941. },
  29942. },
  29943. [
  29944. {
  29945. name: "Normal",
  29946. height: math.unit(9, "feet"),
  29947. default: true
  29948. },
  29949. ]
  29950. ))
  29951. characterMakers.push(() => makeCharacter(
  29952. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29953. {
  29954. front: {
  29955. height: math.unit(12, "feet"),
  29956. weight: math.unit(4000, "lb"),
  29957. name: "Front",
  29958. image: {
  29959. source: "./media/characters/p0tat0/front.svg",
  29960. extra: 1065 / 921,
  29961. bottom: 55.7 / 1121.25
  29962. }
  29963. },
  29964. },
  29965. [
  29966. {
  29967. name: "Normal",
  29968. height: math.unit(12, "feet"),
  29969. default: true
  29970. },
  29971. ]
  29972. ))
  29973. characterMakers.push(() => makeCharacter(
  29974. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29975. {
  29976. side: {
  29977. height: math.unit(6.5, "feet"),
  29978. weight: math.unit(800, "lb"),
  29979. name: "Side",
  29980. image: {
  29981. source: "./media/characters/dusk/side.svg",
  29982. extra: 615 / 373,
  29983. bottom: 53 / 664
  29984. }
  29985. },
  29986. sitting: {
  29987. height: math.unit(7, "feet"),
  29988. weight: math.unit(800, "lb"),
  29989. name: "Sitting",
  29990. image: {
  29991. source: "./media/characters/dusk/sitting.svg",
  29992. extra: 753 / 425,
  29993. bottom: 33 / 774
  29994. }
  29995. },
  29996. head: {
  29997. height: math.unit(6.1, "feet"),
  29998. name: "Head",
  29999. image: {
  30000. source: "./media/characters/dusk/head.svg"
  30001. }
  30002. },
  30003. },
  30004. [
  30005. {
  30006. name: "Normal",
  30007. height: math.unit(7, "feet"),
  30008. default: true
  30009. },
  30010. ]
  30011. ))
  30012. characterMakers.push(() => makeCharacter(
  30013. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  30014. {
  30015. front: {
  30016. height: math.unit(15, "feet"),
  30017. weight: math.unit(7000, "lb"),
  30018. name: "Front",
  30019. image: {
  30020. source: "./media/characters/jay-direwolf/front.svg",
  30021. extra: 1810 / 1732,
  30022. bottom: 66 / 1892
  30023. }
  30024. },
  30025. },
  30026. [
  30027. {
  30028. name: "Normal",
  30029. height: math.unit(15, "feet"),
  30030. default: true
  30031. },
  30032. ]
  30033. ))
  30034. characterMakers.push(() => makeCharacter(
  30035. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  30036. {
  30037. front: {
  30038. height: math.unit(4 + 9 / 12, "feet"),
  30039. weight: math.unit(130, "lb"),
  30040. name: "Front",
  30041. image: {
  30042. source: "./media/characters/anchovie/front.svg",
  30043. extra: 382 / 350,
  30044. bottom: 25 / 409
  30045. }
  30046. },
  30047. back: {
  30048. height: math.unit(4 + 9 / 12, "feet"),
  30049. weight: math.unit(130, "lb"),
  30050. name: "Back",
  30051. image: {
  30052. source: "./media/characters/anchovie/back.svg",
  30053. extra: 385 / 352,
  30054. bottom: 16.6 / 402
  30055. }
  30056. },
  30057. frontDressed: {
  30058. height: math.unit(4 + 9 / 12, "feet"),
  30059. weight: math.unit(130, "lb"),
  30060. name: "Front (Dressed)",
  30061. image: {
  30062. source: "./media/characters/anchovie/front-dressed.svg",
  30063. extra: 382 / 350,
  30064. bottom: 25 / 409
  30065. }
  30066. },
  30067. backDressed: {
  30068. height: math.unit(4 + 9 / 12, "feet"),
  30069. weight: math.unit(130, "lb"),
  30070. name: "Back (Dressed)",
  30071. image: {
  30072. source: "./media/characters/anchovie/back-dressed.svg",
  30073. extra: 385 / 352,
  30074. bottom: 16.6 / 402
  30075. }
  30076. },
  30077. },
  30078. [
  30079. {
  30080. name: "Micro",
  30081. height: math.unit(6.4, "inches")
  30082. },
  30083. {
  30084. name: "Normal",
  30085. height: math.unit(4 + 9 / 12, "feet"),
  30086. default: true
  30087. },
  30088. ]
  30089. ))
  30090. characterMakers.push(() => makeCharacter(
  30091. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  30092. {
  30093. front: {
  30094. height: math.unit(2, "meters"),
  30095. weight: math.unit(180, "lb"),
  30096. name: "Front",
  30097. image: {
  30098. source: "./media/characters/acidrenamon/front.svg",
  30099. extra: 987 / 890,
  30100. bottom: 22.8 / 1009
  30101. }
  30102. },
  30103. back: {
  30104. height: math.unit(2, "meters"),
  30105. weight: math.unit(180, "lb"),
  30106. name: "Back",
  30107. image: {
  30108. source: "./media/characters/acidrenamon/back.svg",
  30109. extra: 983 / 891,
  30110. bottom: 8.4 / 992
  30111. }
  30112. },
  30113. head: {
  30114. height: math.unit(1.92, "feet"),
  30115. name: "Head",
  30116. image: {
  30117. source: "./media/characters/acidrenamon/head.svg"
  30118. }
  30119. },
  30120. rump: {
  30121. height: math.unit(1.72, "feet"),
  30122. name: "Rump",
  30123. image: {
  30124. source: "./media/characters/acidrenamon/rump.svg"
  30125. }
  30126. },
  30127. tail: {
  30128. height: math.unit(4.2, "feet"),
  30129. name: "Tail",
  30130. image: {
  30131. source: "./media/characters/acidrenamon/tail.svg"
  30132. }
  30133. },
  30134. },
  30135. [
  30136. {
  30137. name: "Normal",
  30138. height: math.unit(2, "meters"),
  30139. default: true
  30140. },
  30141. {
  30142. name: "Minimacro",
  30143. height: math.unit(7, "meters")
  30144. },
  30145. {
  30146. name: "Macro",
  30147. height: math.unit(200, "meters")
  30148. },
  30149. {
  30150. name: "Gigamacro",
  30151. height: math.unit(0.2, "earths")
  30152. },
  30153. ]
  30154. ))
  30155. characterMakers.push(() => makeCharacter(
  30156. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  30157. {
  30158. front: {
  30159. height: math.unit(152, "feet"),
  30160. name: "Front",
  30161. image: {
  30162. source: "./media/characters/kenzie-lee/front.svg",
  30163. extra: 1869/1774,
  30164. bottom: 128/1997
  30165. }
  30166. },
  30167. side: {
  30168. height: math.unit(86, "feet"),
  30169. name: "Side",
  30170. image: {
  30171. source: "./media/characters/kenzie-lee/side.svg",
  30172. extra: 930/815,
  30173. bottom: 177/1107
  30174. }
  30175. },
  30176. paw: {
  30177. height: math.unit(15, "feet"),
  30178. name: "Paw",
  30179. image: {
  30180. source: "./media/characters/kenzie-lee/paw.svg"
  30181. }
  30182. },
  30183. },
  30184. [
  30185. {
  30186. name: "Kenzie Flea",
  30187. height: math.unit(2, "mm"),
  30188. default: true
  30189. },
  30190. {
  30191. name: "Micro",
  30192. height: math.unit(2, "inches")
  30193. },
  30194. {
  30195. name: "Normal",
  30196. height: math.unit(152, "feet")
  30197. },
  30198. {
  30199. name: "Megamacro",
  30200. height: math.unit(7, "miles")
  30201. },
  30202. {
  30203. name: "Gigamacro",
  30204. height: math.unit(8000, "miles")
  30205. },
  30206. ]
  30207. ))
  30208. characterMakers.push(() => makeCharacter(
  30209. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  30210. {
  30211. front: {
  30212. height: math.unit(6, "feet"),
  30213. name: "Front",
  30214. image: {
  30215. source: "./media/characters/withers/front.svg",
  30216. extra: 1935/1760,
  30217. bottom: 72/2007
  30218. }
  30219. },
  30220. back: {
  30221. height: math.unit(6, "feet"),
  30222. name: "Back",
  30223. image: {
  30224. source: "./media/characters/withers/back.svg",
  30225. extra: 1944/1792,
  30226. bottom: 12/1956
  30227. }
  30228. },
  30229. dressed: {
  30230. height: math.unit(6, "feet"),
  30231. name: "Dressed",
  30232. image: {
  30233. source: "./media/characters/withers/dressed.svg",
  30234. extra: 1937/1765,
  30235. bottom: 73/2010
  30236. }
  30237. },
  30238. phase1: {
  30239. height: math.unit(1.1, "feet"),
  30240. name: "Phase 1",
  30241. image: {
  30242. source: "./media/characters/withers/phase-1.svg",
  30243. extra: 1885/1232,
  30244. bottom: 0/1885
  30245. }
  30246. },
  30247. phase2: {
  30248. height: math.unit(1.05, "feet"),
  30249. name: "Phase 2",
  30250. image: {
  30251. source: "./media/characters/withers/phase-2.svg",
  30252. extra: 1792/1090,
  30253. bottom: 0/1792
  30254. }
  30255. },
  30256. partyWipe: {
  30257. height: math.unit(1.1, "feet"),
  30258. name: "Party Wipe",
  30259. image: {
  30260. source: "./media/characters/withers/party-wipe.svg",
  30261. extra: 1864/1207,
  30262. bottom: 0/1864
  30263. }
  30264. },
  30265. },
  30266. [
  30267. {
  30268. name: "Macro",
  30269. height: math.unit(167, "feet"),
  30270. default: true
  30271. },
  30272. {
  30273. name: "Megamacro",
  30274. height: math.unit(15, "miles")
  30275. }
  30276. ]
  30277. ))
  30278. characterMakers.push(() => makeCharacter(
  30279. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  30280. {
  30281. front: {
  30282. height: math.unit(6 + 7 / 12, "feet"),
  30283. weight: math.unit(250, "lb"),
  30284. name: "Front",
  30285. image: {
  30286. source: "./media/characters/nemoskii/front.svg",
  30287. extra: 2270 / 1734,
  30288. bottom: 86 / 2354
  30289. }
  30290. },
  30291. back: {
  30292. height: math.unit(6 + 7 / 12, "feet"),
  30293. weight: math.unit(250, "lb"),
  30294. name: "Back",
  30295. image: {
  30296. source: "./media/characters/nemoskii/back.svg",
  30297. extra: 1845 / 1788,
  30298. bottom: 10.5 / 1852
  30299. }
  30300. },
  30301. head: {
  30302. height: math.unit(1.31, "feet"),
  30303. name: "Head",
  30304. image: {
  30305. source: "./media/characters/nemoskii/head.svg"
  30306. }
  30307. },
  30308. },
  30309. [
  30310. {
  30311. name: "Micro",
  30312. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30313. },
  30314. {
  30315. name: "Normal",
  30316. height: math.unit(6 + 7 / 12, "feet"),
  30317. default: true
  30318. },
  30319. {
  30320. name: "Macro",
  30321. height: math.unit((6 + 7 / 12) * 150, "feet")
  30322. },
  30323. {
  30324. name: "Macro+",
  30325. height: math.unit((6 + 7 / 12) * 500, "feet")
  30326. },
  30327. {
  30328. name: "Megamacro",
  30329. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30330. },
  30331. ]
  30332. ))
  30333. characterMakers.push(() => makeCharacter(
  30334. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30335. {
  30336. front: {
  30337. height: math.unit(1, "mile"),
  30338. weight: math.unit(265261.9, "lb"),
  30339. name: "Front",
  30340. image: {
  30341. source: "./media/characters/shui/front.svg",
  30342. extra: 1633 / 1564,
  30343. bottom: 91.5 / 1726
  30344. }
  30345. },
  30346. },
  30347. [
  30348. {
  30349. name: "Macro",
  30350. height: math.unit(1, "mile"),
  30351. default: true
  30352. },
  30353. ]
  30354. ))
  30355. characterMakers.push(() => makeCharacter(
  30356. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30357. {
  30358. front: {
  30359. height: math.unit(12 + 6 / 12, "feet"),
  30360. weight: math.unit(1342, "lb"),
  30361. name: "Front",
  30362. image: {
  30363. source: "./media/characters/arokh-takakura/front.svg",
  30364. extra: 1089 / 1043,
  30365. bottom: 77.4 / 1176.7
  30366. }
  30367. },
  30368. back: {
  30369. height: math.unit(12 + 6 / 12, "feet"),
  30370. weight: math.unit(1342, "lb"),
  30371. name: "Back",
  30372. image: {
  30373. source: "./media/characters/arokh-takakura/back.svg",
  30374. extra: 1046 / 1019,
  30375. bottom: 102 / 1150
  30376. }
  30377. },
  30378. },
  30379. [
  30380. {
  30381. name: "Big",
  30382. height: math.unit(12 + 6 / 12, "feet"),
  30383. default: true
  30384. },
  30385. ]
  30386. ))
  30387. characterMakers.push(() => makeCharacter(
  30388. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30389. {
  30390. front: {
  30391. height: math.unit(5 + 6 / 12, "feet"),
  30392. weight: math.unit(150, "lb"),
  30393. name: "Front",
  30394. image: {
  30395. source: "./media/characters/theo/front.svg",
  30396. extra: 1184 / 1131,
  30397. bottom: 7.4 / 1191
  30398. }
  30399. },
  30400. },
  30401. [
  30402. {
  30403. name: "Micro",
  30404. height: math.unit(5, "inches")
  30405. },
  30406. {
  30407. name: "Normal",
  30408. height: math.unit(5 + 6 / 12, "feet"),
  30409. default: true
  30410. },
  30411. ]
  30412. ))
  30413. characterMakers.push(() => makeCharacter(
  30414. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30415. {
  30416. front: {
  30417. height: math.unit(5 + 9 / 12, "feet"),
  30418. weight: math.unit(130, "lb"),
  30419. name: "Front",
  30420. image: {
  30421. source: "./media/characters/cecelia-swift/front.svg",
  30422. extra: 502 / 484,
  30423. bottom: 23 / 523
  30424. }
  30425. },
  30426. back: {
  30427. height: math.unit(5 + 9 / 12, "feet"),
  30428. weight: math.unit(130, "lb"),
  30429. name: "Back",
  30430. image: {
  30431. source: "./media/characters/cecelia-swift/back.svg",
  30432. extra: 499 / 485,
  30433. bottom: 12 / 511
  30434. }
  30435. },
  30436. head: {
  30437. height: math.unit(0.90, "feet"),
  30438. name: "Head",
  30439. image: {
  30440. source: "./media/characters/cecelia-swift/head.svg"
  30441. }
  30442. },
  30443. rump: {
  30444. height: math.unit(1.75, "feet"),
  30445. name: "Rump",
  30446. image: {
  30447. source: "./media/characters/cecelia-swift/rump.svg"
  30448. }
  30449. },
  30450. },
  30451. [
  30452. {
  30453. name: "Normal",
  30454. height: math.unit(5 + 9 / 12, "feet"),
  30455. default: true
  30456. },
  30457. {
  30458. name: "Big",
  30459. height: math.unit(50, "feet")
  30460. },
  30461. {
  30462. name: "Macro",
  30463. height: math.unit(100, "feet")
  30464. },
  30465. {
  30466. name: "Macro+",
  30467. height: math.unit(500, "feet")
  30468. },
  30469. {
  30470. name: "Macro++",
  30471. height: math.unit(1000, "feet")
  30472. },
  30473. ]
  30474. ))
  30475. characterMakers.push(() => makeCharacter(
  30476. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30477. {
  30478. front: {
  30479. height: math.unit(6, "feet"),
  30480. weight: math.unit(150, "lb"),
  30481. name: "Front",
  30482. image: {
  30483. source: "./media/characters/kaunan/front.svg",
  30484. extra: 2890 / 2523,
  30485. bottom: 49 / 2939
  30486. }
  30487. },
  30488. },
  30489. [
  30490. {
  30491. name: "Macro",
  30492. height: math.unit(150, "feet"),
  30493. default: true
  30494. },
  30495. ]
  30496. ))
  30497. characterMakers.push(() => makeCharacter(
  30498. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30499. {
  30500. dressed: {
  30501. height: math.unit(175, "cm"),
  30502. weight: math.unit(60, "kg"),
  30503. name: "Dressed",
  30504. image: {
  30505. source: "./media/characters/fei/dressed.svg",
  30506. extra: 1402/1278,
  30507. bottom: 27/1429
  30508. }
  30509. },
  30510. nude: {
  30511. height: math.unit(175, "cm"),
  30512. weight: math.unit(60, "kg"),
  30513. name: "Nude",
  30514. image: {
  30515. source: "./media/characters/fei/nude.svg",
  30516. extra: 1402/1278,
  30517. bottom: 27/1429
  30518. }
  30519. },
  30520. heels: {
  30521. height: math.unit(0.466, "feet"),
  30522. name: "Heels",
  30523. image: {
  30524. source: "./media/characters/fei/heels.svg",
  30525. extra: 156/152,
  30526. bottom: 28/184
  30527. }
  30528. },
  30529. },
  30530. [
  30531. {
  30532. name: "Mortal",
  30533. height: math.unit(175, "cm")
  30534. },
  30535. {
  30536. name: "Normal",
  30537. height: math.unit(3500, "m")
  30538. },
  30539. {
  30540. name: "Stroll",
  30541. height: math.unit(18.4, "km"),
  30542. default: true
  30543. },
  30544. {
  30545. name: "Showoff",
  30546. height: math.unit(175, "km")
  30547. },
  30548. ]
  30549. ))
  30550. characterMakers.push(() => makeCharacter(
  30551. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30552. {
  30553. front: {
  30554. height: math.unit(7, "feet"),
  30555. weight: math.unit(1000, "kg"),
  30556. name: "Front",
  30557. image: {
  30558. source: "./media/characters/edrax/front.svg",
  30559. extra: 2838 / 2550,
  30560. bottom: 130 / 2968
  30561. }
  30562. },
  30563. },
  30564. [
  30565. {
  30566. name: "Small",
  30567. height: math.unit(7, "feet")
  30568. },
  30569. {
  30570. name: "Normal",
  30571. height: math.unit(1500, "meters")
  30572. },
  30573. {
  30574. name: "Mega",
  30575. height: math.unit(12000000, "km"),
  30576. default: true
  30577. },
  30578. {
  30579. name: "Megamacro",
  30580. height: math.unit(10600000, "lightyears")
  30581. },
  30582. {
  30583. name: "Hypermacro",
  30584. height: math.unit(256, "yottameters")
  30585. },
  30586. ]
  30587. ))
  30588. characterMakers.push(() => makeCharacter(
  30589. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30590. {
  30591. front: {
  30592. height: math.unit(10, "feet"),
  30593. weight: math.unit(750, "lb"),
  30594. name: "Front",
  30595. image: {
  30596. source: "./media/characters/clove/front.svg",
  30597. extra: 1918/1751,
  30598. bottom: 52/1970
  30599. }
  30600. },
  30601. back: {
  30602. height: math.unit(10, "feet"),
  30603. weight: math.unit(750, "lb"),
  30604. name: "Back",
  30605. image: {
  30606. source: "./media/characters/clove/back.svg",
  30607. extra: 1912/1747,
  30608. bottom: 50/1962
  30609. }
  30610. },
  30611. },
  30612. [
  30613. {
  30614. name: "Normal",
  30615. height: math.unit(10, "feet"),
  30616. default: true
  30617. },
  30618. ]
  30619. ))
  30620. characterMakers.push(() => makeCharacter(
  30621. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30622. {
  30623. front: {
  30624. height: math.unit(4, "feet"),
  30625. weight: math.unit(50, "lb"),
  30626. name: "Front",
  30627. image: {
  30628. source: "./media/characters/alex-rabbit/front.svg",
  30629. extra: 507 / 458,
  30630. bottom: 18.5 / 527
  30631. }
  30632. },
  30633. back: {
  30634. height: math.unit(4, "feet"),
  30635. weight: math.unit(50, "lb"),
  30636. name: "Back",
  30637. image: {
  30638. source: "./media/characters/alex-rabbit/back.svg",
  30639. extra: 502 / 460,
  30640. bottom: 18.9 / 521
  30641. }
  30642. },
  30643. },
  30644. [
  30645. {
  30646. name: "Normal",
  30647. height: math.unit(4, "feet"),
  30648. default: true
  30649. },
  30650. ]
  30651. ))
  30652. characterMakers.push(() => makeCharacter(
  30653. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30654. {
  30655. front: {
  30656. height: math.unit(1 + 3 / 12, "feet"),
  30657. weight: math.unit(80, "lb"),
  30658. name: "Front",
  30659. image: {
  30660. source: "./media/characters/zander-rose/front.svg",
  30661. extra: 916 / 797,
  30662. bottom: 17 / 933
  30663. }
  30664. },
  30665. back: {
  30666. height: math.unit(1 + 3 / 12, "feet"),
  30667. weight: math.unit(80, "lb"),
  30668. name: "Back",
  30669. image: {
  30670. source: "./media/characters/zander-rose/back.svg",
  30671. extra: 903 / 779,
  30672. bottom: 31 / 934
  30673. }
  30674. },
  30675. },
  30676. [
  30677. {
  30678. name: "Normal",
  30679. height: math.unit(1 + 3 / 12, "feet"),
  30680. default: true
  30681. },
  30682. ]
  30683. ))
  30684. characterMakers.push(() => makeCharacter(
  30685. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30686. {
  30687. anthro: {
  30688. height: math.unit(6, "feet"),
  30689. weight: math.unit(150, "lb"),
  30690. name: "Anthro",
  30691. image: {
  30692. source: "./media/characters/razz/anthro.svg",
  30693. extra: 1437 / 1343,
  30694. bottom: 48 / 1485
  30695. }
  30696. },
  30697. feral: {
  30698. height: math.unit(6, "feet"),
  30699. weight: math.unit(150, "lb"),
  30700. name: "Feral",
  30701. image: {
  30702. source: "./media/characters/razz/feral.svg",
  30703. extra: 2569 / 1385,
  30704. bottom: 95 / 2664
  30705. }
  30706. },
  30707. },
  30708. [
  30709. {
  30710. name: "Normal",
  30711. height: math.unit(6, "feet"),
  30712. default: true
  30713. },
  30714. ]
  30715. ))
  30716. characterMakers.push(() => makeCharacter(
  30717. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30718. {
  30719. front: {
  30720. height: math.unit(9 + 4 / 12, "feet"),
  30721. weight: math.unit(500, "lb"),
  30722. name: "Front",
  30723. image: {
  30724. source: "./media/characters/morrigan/front.svg",
  30725. extra: 2707 / 2579,
  30726. bottom: 156 / 2863
  30727. }
  30728. },
  30729. },
  30730. [
  30731. {
  30732. name: "Normal",
  30733. height: math.unit(9 + 4 / 12, "feet"),
  30734. default: true
  30735. },
  30736. ]
  30737. ))
  30738. characterMakers.push(() => makeCharacter(
  30739. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30740. {
  30741. front: {
  30742. height: math.unit(5, "stories"),
  30743. weight: math.unit(4000, "lb"),
  30744. name: "Front",
  30745. image: {
  30746. source: "./media/characters/jenene/front.svg",
  30747. extra: 1780 / 1710,
  30748. bottom: 57 / 1837
  30749. }
  30750. },
  30751. },
  30752. [
  30753. {
  30754. name: "Normal",
  30755. height: math.unit(5, "stories"),
  30756. default: true
  30757. },
  30758. ]
  30759. ))
  30760. characterMakers.push(() => makeCharacter(
  30761. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30762. {
  30763. taurSfw: {
  30764. height: math.unit(10, "meters"),
  30765. weight: math.unit(17500, "kg"),
  30766. name: "Taur",
  30767. image: {
  30768. source: "./media/characters/faey/taur-sfw.svg",
  30769. extra: 1200 / 968,
  30770. bottom: 41 / 1241
  30771. }
  30772. },
  30773. chestmaw: {
  30774. height: math.unit(2.01, "meters"),
  30775. name: "Chestmaw",
  30776. image: {
  30777. source: "./media/characters/faey/chestmaw.svg"
  30778. }
  30779. },
  30780. foot: {
  30781. height: math.unit(2.43, "meters"),
  30782. name: "Foot",
  30783. image: {
  30784. source: "./media/characters/faey/foot.svg"
  30785. }
  30786. },
  30787. jaws: {
  30788. height: math.unit(1.66, "meters"),
  30789. name: "Jaws",
  30790. image: {
  30791. source: "./media/characters/faey/jaws.svg"
  30792. }
  30793. },
  30794. tongues: {
  30795. height: math.unit(2.01, "meters"),
  30796. name: "Tongues",
  30797. image: {
  30798. source: "./media/characters/faey/tongues.svg"
  30799. }
  30800. },
  30801. },
  30802. [
  30803. {
  30804. name: "Small",
  30805. height: math.unit(10, "meters"),
  30806. default: true
  30807. },
  30808. {
  30809. name: "Big",
  30810. height: math.unit(500000, "km")
  30811. },
  30812. ]
  30813. ))
  30814. characterMakers.push(() => makeCharacter(
  30815. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30816. {
  30817. front: {
  30818. height: math.unit(7, "feet"),
  30819. weight: math.unit(275, "lb"),
  30820. name: "Front",
  30821. image: {
  30822. source: "./media/characters/roku/front.svg",
  30823. extra: 903 / 878,
  30824. bottom: 37 / 940
  30825. }
  30826. },
  30827. },
  30828. [
  30829. {
  30830. name: "Normal",
  30831. height: math.unit(7, "feet"),
  30832. default: true
  30833. },
  30834. {
  30835. name: "Macro",
  30836. height: math.unit(500, "feet")
  30837. },
  30838. {
  30839. name: "Megamacro",
  30840. height: math.unit(200, "miles")
  30841. },
  30842. ]
  30843. ))
  30844. characterMakers.push(() => makeCharacter(
  30845. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30846. {
  30847. front: {
  30848. height: math.unit(6 + 2 / 12, "feet"),
  30849. weight: math.unit(150, "lb"),
  30850. name: "Front",
  30851. image: {
  30852. source: "./media/characters/lira/front.svg",
  30853. extra: 1727 / 1605,
  30854. bottom: 26 / 1753
  30855. }
  30856. },
  30857. back: {
  30858. height: math.unit(6 + 2 / 12, "feet"),
  30859. weight: math.unit(150, "lb"),
  30860. name: "Back",
  30861. image: {
  30862. source: "./media/characters/lira/back.svg",
  30863. extra: 1713/1621,
  30864. bottom: 20/1733
  30865. }
  30866. },
  30867. hand: {
  30868. height: math.unit(0.75, "feet"),
  30869. name: "Hand",
  30870. image: {
  30871. source: "./media/characters/lira/hand.svg"
  30872. }
  30873. },
  30874. maw: {
  30875. height: math.unit(0.65, "feet"),
  30876. name: "Maw",
  30877. image: {
  30878. source: "./media/characters/lira/maw.svg"
  30879. }
  30880. },
  30881. pawDigi: {
  30882. height: math.unit(1.6, "feet"),
  30883. name: "Paw Digi",
  30884. image: {
  30885. source: "./media/characters/lira/paw-digi.svg"
  30886. }
  30887. },
  30888. pawPlanti: {
  30889. height: math.unit(1.4, "feet"),
  30890. name: "Paw Planti",
  30891. image: {
  30892. source: "./media/characters/lira/paw-planti.svg"
  30893. }
  30894. },
  30895. },
  30896. [
  30897. {
  30898. name: "Normal",
  30899. height: math.unit(6 + 2 / 12, "feet"),
  30900. default: true
  30901. },
  30902. {
  30903. name: "Macro",
  30904. height: math.unit(100, "feet")
  30905. },
  30906. {
  30907. name: "Macro²",
  30908. height: math.unit(1600, "feet")
  30909. },
  30910. {
  30911. name: "Planetary",
  30912. height: math.unit(20, "earths")
  30913. },
  30914. ]
  30915. ))
  30916. characterMakers.push(() => makeCharacter(
  30917. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30918. {
  30919. front: {
  30920. height: math.unit(6, "feet"),
  30921. weight: math.unit(150, "lb"),
  30922. name: "Front",
  30923. image: {
  30924. source: "./media/characters/hadjet/front.svg",
  30925. extra: 1480 / 1346,
  30926. bottom: 26 / 1506
  30927. }
  30928. },
  30929. frontNsfw: {
  30930. height: math.unit(6, "feet"),
  30931. weight: math.unit(150, "lb"),
  30932. name: "Front (NSFW)",
  30933. image: {
  30934. source: "./media/characters/hadjet/front-nsfw.svg",
  30935. extra: 1440 / 1358,
  30936. bottom: 52 / 1492
  30937. }
  30938. },
  30939. },
  30940. [
  30941. {
  30942. name: "Macro",
  30943. height: math.unit(10, "stories"),
  30944. default: true
  30945. },
  30946. {
  30947. name: "Megamacro",
  30948. height: math.unit(1.5, "miles")
  30949. },
  30950. {
  30951. name: "Megamacro+",
  30952. height: math.unit(5, "miles")
  30953. },
  30954. ]
  30955. ))
  30956. characterMakers.push(() => makeCharacter(
  30957. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30958. {
  30959. side: {
  30960. height: math.unit(106, "feet"),
  30961. weight: math.unit(500, "tonnes"),
  30962. name: "Side",
  30963. image: {
  30964. source: "./media/characters/kodran/side.svg",
  30965. extra: 553 / 480,
  30966. bottom: 33 / 586
  30967. }
  30968. },
  30969. front: {
  30970. height: math.unit(132, "feet"),
  30971. weight: math.unit(500, "tonnes"),
  30972. name: "Front",
  30973. image: {
  30974. source: "./media/characters/kodran/front.svg",
  30975. extra: 667 / 643,
  30976. bottom: 42 / 709
  30977. }
  30978. },
  30979. flying: {
  30980. height: math.unit(350, "feet"),
  30981. weight: math.unit(500, "tonnes"),
  30982. name: "Flying",
  30983. image: {
  30984. source: "./media/characters/kodran/flying.svg"
  30985. }
  30986. },
  30987. foot: {
  30988. height: math.unit(33, "feet"),
  30989. name: "Foot",
  30990. image: {
  30991. source: "./media/characters/kodran/foot.svg"
  30992. }
  30993. },
  30994. footFront: {
  30995. height: math.unit(19, "feet"),
  30996. name: "Foot (Front)",
  30997. image: {
  30998. source: "./media/characters/kodran/foot-front.svg",
  30999. extra: 261 / 261,
  31000. bottom: 91 / 352
  31001. }
  31002. },
  31003. headFront: {
  31004. height: math.unit(53, "feet"),
  31005. name: "Head (Front)",
  31006. image: {
  31007. source: "./media/characters/kodran/head-front.svg"
  31008. }
  31009. },
  31010. headSide: {
  31011. height: math.unit(65, "feet"),
  31012. name: "Head (Side)",
  31013. image: {
  31014. source: "./media/characters/kodran/head-side.svg"
  31015. }
  31016. },
  31017. throat: {
  31018. height: math.unit(79, "feet"),
  31019. name: "Throat",
  31020. image: {
  31021. source: "./media/characters/kodran/throat.svg"
  31022. }
  31023. },
  31024. },
  31025. [
  31026. {
  31027. name: "Large",
  31028. height: math.unit(106, "feet"),
  31029. default: true
  31030. },
  31031. ]
  31032. ))
  31033. characterMakers.push(() => makeCharacter(
  31034. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  31035. {
  31036. side: {
  31037. height: math.unit(11, "feet"),
  31038. weight: math.unit(150, "lb"),
  31039. name: "Side",
  31040. image: {
  31041. source: "./media/characters/pyxaron/side.svg",
  31042. extra: 305 / 195,
  31043. bottom: 17 / 322
  31044. }
  31045. },
  31046. },
  31047. [
  31048. {
  31049. name: "Normal",
  31050. height: math.unit(11, "feet"),
  31051. default: true
  31052. },
  31053. ]
  31054. ))
  31055. characterMakers.push(() => makeCharacter(
  31056. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  31057. {
  31058. front: {
  31059. height: math.unit(6, "feet"),
  31060. weight: math.unit(150, "lb"),
  31061. name: "Front",
  31062. image: {
  31063. source: "./media/characters/meep/front.svg",
  31064. extra: 88 / 80,
  31065. bottom: 6 / 94
  31066. }
  31067. },
  31068. },
  31069. [
  31070. {
  31071. name: "Fun Sized",
  31072. height: math.unit(2, "inches"),
  31073. default: true
  31074. },
  31075. {
  31076. name: "Friend Sized",
  31077. height: math.unit(8, "inches")
  31078. },
  31079. ]
  31080. ))
  31081. characterMakers.push(() => makeCharacter(
  31082. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  31083. {
  31084. front: {
  31085. height: math.unit(15, "feet"),
  31086. weight: math.unit(2500, "lb"),
  31087. name: "Front",
  31088. image: {
  31089. source: "./media/characters/holly-rabbit/front.svg",
  31090. extra: 1433 / 1233,
  31091. bottom: 125 / 1558
  31092. }
  31093. },
  31094. dick: {
  31095. height: math.unit(4.6, "feet"),
  31096. name: "Dick",
  31097. image: {
  31098. source: "./media/characters/holly-rabbit/dick.svg"
  31099. }
  31100. },
  31101. },
  31102. [
  31103. {
  31104. name: "Normal",
  31105. height: math.unit(15, "feet"),
  31106. default: true
  31107. },
  31108. {
  31109. name: "Macro",
  31110. height: math.unit(250, "feet")
  31111. },
  31112. {
  31113. name: "Macro+",
  31114. height: math.unit(2500, "feet")
  31115. },
  31116. ]
  31117. ))
  31118. characterMakers.push(() => makeCharacter(
  31119. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  31120. {
  31121. front: {
  31122. height: math.unit(3.02, "meters"),
  31123. weight: math.unit(500, "kg"),
  31124. name: "Front",
  31125. image: {
  31126. source: "./media/characters/drena/front.svg",
  31127. extra: 282 / 243,
  31128. bottom: 8 / 290
  31129. }
  31130. },
  31131. side: {
  31132. height: math.unit(3.02, "meters"),
  31133. weight: math.unit(500, "kg"),
  31134. name: "Side",
  31135. image: {
  31136. source: "./media/characters/drena/side.svg",
  31137. extra: 280 / 245,
  31138. bottom: 10 / 290
  31139. }
  31140. },
  31141. back: {
  31142. height: math.unit(3.02, "meters"),
  31143. weight: math.unit(500, "kg"),
  31144. name: "Back",
  31145. image: {
  31146. source: "./media/characters/drena/back.svg",
  31147. extra: 278 / 243,
  31148. bottom: 2 / 280
  31149. }
  31150. },
  31151. foot: {
  31152. height: math.unit(0.75, "meters"),
  31153. name: "Foot",
  31154. image: {
  31155. source: "./media/characters/drena/foot.svg"
  31156. }
  31157. },
  31158. maw: {
  31159. height: math.unit(0.82, "meters"),
  31160. name: "Maw",
  31161. image: {
  31162. source: "./media/characters/drena/maw.svg"
  31163. }
  31164. },
  31165. eating: {
  31166. height: math.unit(0.75, "meters"),
  31167. name: "Eating",
  31168. image: {
  31169. source: "./media/characters/drena/eating.svg"
  31170. }
  31171. },
  31172. rump: {
  31173. height: math.unit(0.93, "meters"),
  31174. name: "Rump",
  31175. image: {
  31176. source: "./media/characters/drena/rump.svg"
  31177. }
  31178. },
  31179. },
  31180. [
  31181. {
  31182. name: "Normal",
  31183. height: math.unit(3.02, "meters"),
  31184. default: true
  31185. },
  31186. ]
  31187. ))
  31188. characterMakers.push(() => makeCharacter(
  31189. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  31190. {
  31191. front: {
  31192. height: math.unit(6 + 4 / 12, "feet"),
  31193. weight: math.unit(250, "lb"),
  31194. name: "Front",
  31195. image: {
  31196. source: "./media/characters/remmyzilla/front.svg",
  31197. extra: 4033 / 3588,
  31198. bottom: 123 / 4156
  31199. }
  31200. },
  31201. back: {
  31202. height: math.unit(6 + 4 / 12, "feet"),
  31203. weight: math.unit(250, "lb"),
  31204. name: "Back",
  31205. image: {
  31206. source: "./media/characters/remmyzilla/back.svg",
  31207. extra: 1696/1602,
  31208. bottom: 63/1759
  31209. }
  31210. },
  31211. paw: {
  31212. height: math.unit(1.73, "feet"),
  31213. name: "Paw",
  31214. image: {
  31215. source: "./media/characters/remmyzilla/paw.svg"
  31216. },
  31217. extraAttributes: {
  31218. "toeSize": {
  31219. name: "Toe Size",
  31220. power: 2,
  31221. type: "area",
  31222. base: math.unit(0.0035, "m^2")
  31223. },
  31224. "padSize": {
  31225. name: "Pad Size",
  31226. power: 2,
  31227. type: "area",
  31228. base: math.unit(0.015, "m^2")
  31229. },
  31230. "pawsize": {
  31231. name: "Paw Size",
  31232. power: 2,
  31233. type: "area",
  31234. base: math.unit(0.072, "m^2")
  31235. },
  31236. }
  31237. },
  31238. maw: {
  31239. height: math.unit(1.73, "feet"),
  31240. name: "Maw",
  31241. image: {
  31242. source: "./media/characters/remmyzilla/maw.svg"
  31243. }
  31244. },
  31245. },
  31246. [
  31247. {
  31248. name: "Normal",
  31249. height: math.unit(6 + 4 / 12, "feet")
  31250. },
  31251. {
  31252. name: "Minimacro",
  31253. height: math.unit(12 + 8 / 12, "feet")
  31254. },
  31255. {
  31256. name: "Normal",
  31257. height: math.unit(640, "feet"),
  31258. default: true
  31259. },
  31260. {
  31261. name: "Megamacro",
  31262. height: math.unit(6400, "feet")
  31263. },
  31264. {
  31265. name: "Gigamacro",
  31266. height: math.unit(64000, "miles")
  31267. },
  31268. ]
  31269. ))
  31270. characterMakers.push(() => makeCharacter(
  31271. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  31272. {
  31273. front: {
  31274. height: math.unit(2.5, "meters"),
  31275. weight: math.unit(300, "lb"),
  31276. name: "Front",
  31277. image: {
  31278. source: "./media/characters/lawrence/front.svg",
  31279. extra: 357 / 335,
  31280. bottom: 30 / 387
  31281. }
  31282. },
  31283. back: {
  31284. height: math.unit(2.5, "meters"),
  31285. weight: math.unit(300, "lb"),
  31286. name: "Back",
  31287. image: {
  31288. source: "./media/characters/lawrence/back.svg",
  31289. extra: 357 / 338,
  31290. bottom: 16 / 373
  31291. }
  31292. },
  31293. head: {
  31294. height: math.unit(0.9, "meter"),
  31295. name: "Head",
  31296. image: {
  31297. source: "./media/characters/lawrence/head.svg"
  31298. }
  31299. },
  31300. maw: {
  31301. height: math.unit(0.7, "meter"),
  31302. name: "Maw",
  31303. image: {
  31304. source: "./media/characters/lawrence/maw.svg"
  31305. }
  31306. },
  31307. footBottom: {
  31308. height: math.unit(0.5, "meter"),
  31309. name: "Foot (Bottom)",
  31310. image: {
  31311. source: "./media/characters/lawrence/foot-bottom.svg"
  31312. }
  31313. },
  31314. footTop: {
  31315. height: math.unit(0.5, "meter"),
  31316. name: "Foot (Top)",
  31317. image: {
  31318. source: "./media/characters/lawrence/foot-top.svg"
  31319. }
  31320. },
  31321. },
  31322. [
  31323. {
  31324. name: "Normal",
  31325. height: math.unit(2.5, "meters"),
  31326. default: true
  31327. },
  31328. {
  31329. name: "Macro",
  31330. height: math.unit(95, "meters")
  31331. },
  31332. {
  31333. name: "Megamacro",
  31334. height: math.unit(150, "km")
  31335. },
  31336. ]
  31337. ))
  31338. characterMakers.push(() => makeCharacter(
  31339. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31340. {
  31341. front: {
  31342. height: math.unit(4.2, "meters"),
  31343. preyCapacity: math.unit(50, "m^3"),
  31344. weight: math.unit(30, "tonnes"),
  31345. name: "Front",
  31346. image: {
  31347. source: "./media/characters/sydney/front.svg",
  31348. extra: 1177/1129,
  31349. bottom: 197/1374
  31350. },
  31351. extraAttributes: {
  31352. "length": {
  31353. name: "Length",
  31354. power: 1,
  31355. type: "length",
  31356. base: math.unit(21, "meters")
  31357. },
  31358. }
  31359. },
  31360. },
  31361. [
  31362. {
  31363. name: "Normal",
  31364. height: math.unit(4.2, "meters"),
  31365. default: true
  31366. },
  31367. ]
  31368. ))
  31369. characterMakers.push(() => makeCharacter(
  31370. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31371. {
  31372. back: {
  31373. height: math.unit(201, "feet"),
  31374. name: "Back",
  31375. image: {
  31376. source: "./media/characters/jessica/back.svg",
  31377. extra: 273 / 259,
  31378. bottom: 7 / 280
  31379. }
  31380. },
  31381. },
  31382. [
  31383. {
  31384. name: "Normal",
  31385. height: math.unit(201, "feet"),
  31386. default: true
  31387. },
  31388. {
  31389. name: "Megamacro",
  31390. height: math.unit(8, "miles")
  31391. },
  31392. ]
  31393. ))
  31394. characterMakers.push(() => makeCharacter(
  31395. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31396. {
  31397. side: {
  31398. height: math.unit(5.6, "m"),
  31399. weight: math.unit(8000, "kg"),
  31400. name: "Side",
  31401. image: {
  31402. source: "./media/characters/victoria/side.svg",
  31403. extra: 1542/1229,
  31404. bottom: 124/1666
  31405. }
  31406. },
  31407. maw: {
  31408. height: math.unit(7.14, "feet"),
  31409. name: "Maw",
  31410. image: {
  31411. source: "./media/characters/victoria/maw.svg"
  31412. }
  31413. },
  31414. },
  31415. [
  31416. {
  31417. name: "Normal",
  31418. height: math.unit(5.6, "m"),
  31419. default: true
  31420. },
  31421. ]
  31422. ))
  31423. characterMakers.push(() => makeCharacter(
  31424. { name: "Cat", species: ["cat", "nickit", "lucario", "riolu", "lopunny", "dog"], tags: ["anthro", "feral", "taur"] },
  31425. {
  31426. front: {
  31427. height: math.unit(5 + 6 / 12, "feet"),
  31428. name: "Front",
  31429. image: {
  31430. source: "./media/characters/cat/cat-front.svg",
  31431. extra: 1422/1262,
  31432. bottom: 61/1483
  31433. },
  31434. form: "cat",
  31435. default: true
  31436. },
  31437. back: {
  31438. height: math.unit(5 + 6 / 12, "feet"),
  31439. name: "Back",
  31440. image: {
  31441. source: "./media/characters/cat/cat-back.svg",
  31442. extra: 1466/1301,
  31443. bottom: 19/1485
  31444. },
  31445. form: "cat"
  31446. },
  31447. taur: {
  31448. height: math.unit(7, "feet"),
  31449. name: "Side",
  31450. image: {
  31451. source: "./media/characters/cat/taur-side.svg",
  31452. extra: 1389/1233,
  31453. bottom: 83/1472
  31454. },
  31455. form: "taur",
  31456. default: true
  31457. },
  31458. lucarioFront: {
  31459. height: math.unit(4, "feet"),
  31460. name: "Front",
  31461. image: {
  31462. source: "./media/characters/cat/lucario-front.svg",
  31463. extra: 1149/1019,
  31464. bottom: 84/1233
  31465. },
  31466. form: "lucario",
  31467. default: true
  31468. },
  31469. lucarioBack: {
  31470. height: math.unit(4, "feet"),
  31471. name: "Back",
  31472. image: {
  31473. source: "./media/characters/cat/lucario-back.svg",
  31474. extra: 1190/1059,
  31475. bottom: 33/1223
  31476. },
  31477. form: "lucario"
  31478. },
  31479. riolu_front: {
  31480. height: math.unit(2 + 4/12, "feet"),
  31481. name: "Front",
  31482. image: {
  31483. source: "./media/characters/cat/riolu-front.svg",
  31484. extra: 1104/956,
  31485. bottom: 70/1174
  31486. },
  31487. form: "riolu",
  31488. default: true
  31489. },
  31490. nickit: {
  31491. height: math.unit(2, "feet"),
  31492. name: "Side",
  31493. image: {
  31494. source: "./media/characters/cat/nickit-side.svg",
  31495. extra: 1087/852,
  31496. bottom: 67/1154
  31497. },
  31498. form: "nickit",
  31499. default: true
  31500. },
  31501. lopunnyFront: {
  31502. height: math.unit(5, "feet"),
  31503. name: "Front",
  31504. image: {
  31505. source: "./media/characters/cat/lopunny-front.svg",
  31506. extra: 1217/1078,
  31507. bottom: 23/1240
  31508. },
  31509. form: "lopunny",
  31510. default: true
  31511. },
  31512. lopunnyBack: {
  31513. height: math.unit(5, "feet"),
  31514. name: "Back",
  31515. image: {
  31516. source: "./media/characters/cat/lopunny-back.svg",
  31517. extra: 1205/1057,
  31518. bottom: 33/1238
  31519. },
  31520. form: "lopunny"
  31521. },
  31522. dog_front: {
  31523. height: math.unit(5 + 9/12, "feet"),
  31524. name: "Front",
  31525. image: {
  31526. source: "./media/characters/cat/dog-front.svg",
  31527. extra: 1403/1309,
  31528. bottom: 31/1434
  31529. },
  31530. form: "dog",
  31531. default: true
  31532. },
  31533. dog_back: {
  31534. height: math.unit(5 + 9/12, "feet"),
  31535. name: "Back",
  31536. image: {
  31537. source: "./media/characters/cat/dog-back.svg",
  31538. extra: 1393/1297,
  31539. bottom: 38/1431
  31540. },
  31541. form: "dog",
  31542. },
  31543. },
  31544. [
  31545. {
  31546. name: "Really small",
  31547. height: math.unit(1, "nm"),
  31548. allForms: true
  31549. },
  31550. {
  31551. name: "Micro",
  31552. height: math.unit(5, "inches"),
  31553. allForms: true
  31554. },
  31555. {
  31556. name: "Normal",
  31557. height: math.unit(5 + 6 / 12, "feet"),
  31558. default: true,
  31559. form: "cat"
  31560. },
  31561. {
  31562. name: "Normal",
  31563. height: math.unit(7, "feet"),
  31564. default: true,
  31565. form: "taur"
  31566. },
  31567. {
  31568. name: "Normal",
  31569. height: math.unit(4, "feet"),
  31570. default: true,
  31571. form: "lucario"
  31572. },
  31573. {
  31574. name: "Normal",
  31575. height: math.unit(2, "feet"),
  31576. default: true,
  31577. form: "nickit"
  31578. },
  31579. {
  31580. name: "Normal",
  31581. height: math.unit(5, "feet"),
  31582. default: true,
  31583. form: "lopunny"
  31584. },
  31585. {
  31586. name: "Normal",
  31587. height: math.unit(2 + 4/12, "feet"),
  31588. default: true,
  31589. form: "riolu"
  31590. },
  31591. {
  31592. name: "Normal",
  31593. height: math.unit(5 + 6 / 12, "feet"),
  31594. default: true,
  31595. form: "dog"
  31596. },
  31597. {
  31598. name: "Macro",
  31599. height: math.unit(50, "feet"),
  31600. allForms: true
  31601. },
  31602. {
  31603. name: "Macro+",
  31604. height: math.unit(150, "feet"),
  31605. allForms: true
  31606. },
  31607. {
  31608. name: "Megamacro",
  31609. height: math.unit(100, "miles"),
  31610. allForms: true
  31611. },
  31612. ],
  31613. {
  31614. "cat": {
  31615. name: "Cat",
  31616. default: true
  31617. },
  31618. "taur": {
  31619. name: "Taur",
  31620. },
  31621. "lucario": {
  31622. name: "Lucario",
  31623. },
  31624. "riolu": {
  31625. name: "Riolu",
  31626. },
  31627. "nickit": {
  31628. name: "Nickit",
  31629. },
  31630. "lopunny": {
  31631. name: "Lopunny",
  31632. },
  31633. "dog": {
  31634. name: "Dog",
  31635. },
  31636. }
  31637. ))
  31638. characterMakers.push(() => makeCharacter(
  31639. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31640. {
  31641. front: {
  31642. height: math.unit(63.4, "meters"),
  31643. weight: math.unit(3.28349e+6, "kilograms"),
  31644. name: "Front",
  31645. image: {
  31646. source: "./media/characters/kirina-violet/front.svg",
  31647. extra: 2812 / 2725,
  31648. bottom: 0 / 2812
  31649. }
  31650. },
  31651. back: {
  31652. height: math.unit(63.4, "meters"),
  31653. weight: math.unit(3.28349e+6, "kilograms"),
  31654. name: "Back",
  31655. image: {
  31656. source: "./media/characters/kirina-violet/back.svg",
  31657. extra: 2812 / 2725,
  31658. bottom: 0 / 2812
  31659. }
  31660. },
  31661. mouth: {
  31662. height: math.unit(4.35, "meters"),
  31663. name: "Mouth",
  31664. image: {
  31665. source: "./media/characters/kirina-violet/mouth.svg"
  31666. }
  31667. },
  31668. paw: {
  31669. height: math.unit(5.6, "meters"),
  31670. name: "Paw",
  31671. image: {
  31672. source: "./media/characters/kirina-violet/paw.svg"
  31673. }
  31674. },
  31675. tail: {
  31676. height: math.unit(18, "meters"),
  31677. name: "Tail",
  31678. image: {
  31679. source: "./media/characters/kirina-violet/tail.svg"
  31680. }
  31681. },
  31682. },
  31683. [
  31684. {
  31685. name: "Macro",
  31686. height: math.unit(63.4, "meters"),
  31687. default: true
  31688. },
  31689. ]
  31690. ))
  31691. characterMakers.push(() => makeCharacter(
  31692. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  31693. {
  31694. front: {
  31695. height: math.unit(75, "feet"),
  31696. name: "Front",
  31697. image: {
  31698. source: "./media/characters/cat-gigachu/front.svg",
  31699. extra: 1239/1027,
  31700. bottom: 32/1271
  31701. }
  31702. },
  31703. back: {
  31704. height: math.unit(75, "feet"),
  31705. name: "Back",
  31706. image: {
  31707. source: "./media/characters/cat-gigachu/back.svg",
  31708. extra: 1229/1030,
  31709. bottom: 9/1238
  31710. }
  31711. },
  31712. },
  31713. [
  31714. {
  31715. name: "Dynamax",
  31716. height: math.unit(75, "feet"),
  31717. default: true
  31718. },
  31719. ]
  31720. ))
  31721. characterMakers.push(() => makeCharacter(
  31722. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  31723. {
  31724. front: {
  31725. height: math.unit(6, "feet"),
  31726. weight: math.unit(150, "lb"),
  31727. name: "Front",
  31728. image: {
  31729. source: "./media/characters/sfaiyan/front.svg",
  31730. extra: 999 / 978,
  31731. bottom: 5 / 1004
  31732. }
  31733. },
  31734. },
  31735. [
  31736. {
  31737. name: "Normal",
  31738. height: math.unit(1.82, "meters")
  31739. },
  31740. {
  31741. name: "Giant",
  31742. height: math.unit(2.27, "km"),
  31743. default: true
  31744. },
  31745. ]
  31746. ))
  31747. characterMakers.push(() => makeCharacter(
  31748. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31749. {
  31750. front: {
  31751. height: math.unit(179, "cm"),
  31752. weight: math.unit(100, "kg"),
  31753. name: "Front",
  31754. image: {
  31755. source: "./media/characters/raunehkeli/front.svg",
  31756. extra: 1934 / 1926,
  31757. bottom: 0 / 1934
  31758. }
  31759. },
  31760. },
  31761. [
  31762. {
  31763. name: "Normal",
  31764. height: math.unit(179, "cm")
  31765. },
  31766. {
  31767. name: "Maximum",
  31768. height: math.unit(575, "meters"),
  31769. default: true
  31770. },
  31771. ]
  31772. ))
  31773. characterMakers.push(() => makeCharacter(
  31774. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31775. {
  31776. front: {
  31777. height: math.unit(6, "feet"),
  31778. weight: math.unit(150, "lb"),
  31779. name: "Front",
  31780. image: {
  31781. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31782. extra: 2625 / 2518,
  31783. bottom: 60 / 2685
  31784. }
  31785. },
  31786. },
  31787. [
  31788. {
  31789. name: "Normal",
  31790. height: math.unit(6 + 2 / 12, "feet")
  31791. },
  31792. {
  31793. name: "Macro",
  31794. height: math.unit(1180, "feet"),
  31795. default: true
  31796. },
  31797. ]
  31798. ))
  31799. characterMakers.push(() => makeCharacter(
  31800. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31801. {
  31802. front: {
  31803. height: math.unit(5 + 6 / 12, "feet"),
  31804. weight: math.unit(108, "lb"),
  31805. name: "Front",
  31806. image: {
  31807. source: "./media/characters/lilith-zott/front.svg",
  31808. extra: 2510 / 2238,
  31809. bottom: 100 / 2610
  31810. }
  31811. },
  31812. frontDressed: {
  31813. height: math.unit(5 + 6 / 12, "feet"),
  31814. weight: math.unit(108, "lb"),
  31815. name: "Front (Dressed)",
  31816. image: {
  31817. source: "./media/characters/lilith-zott/front-dressed.svg",
  31818. extra: 2510 / 2238,
  31819. bottom: 100 / 2610
  31820. }
  31821. },
  31822. },
  31823. [
  31824. {
  31825. name: "Normal",
  31826. height: math.unit(5 + 6 / 12, "feet")
  31827. },
  31828. {
  31829. name: "Macro",
  31830. height: math.unit(1030, "feet"),
  31831. default: true
  31832. },
  31833. ]
  31834. ))
  31835. characterMakers.push(() => makeCharacter(
  31836. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31837. {
  31838. front: {
  31839. height: math.unit(6, "feet"),
  31840. weight: math.unit(150, "lb"),
  31841. name: "Front",
  31842. image: {
  31843. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31844. extra: 2567 / 2435,
  31845. bottom: 39 / 2606
  31846. }
  31847. },
  31848. frontSuper: {
  31849. height: math.unit(6, "feet"),
  31850. name: "Front (Super)",
  31851. image: {
  31852. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31853. extra: 2567 / 2435,
  31854. bottom: 39 / 2606
  31855. }
  31856. },
  31857. },
  31858. [
  31859. {
  31860. name: "Normal",
  31861. height: math.unit(5 + 10 / 12, "feet")
  31862. },
  31863. {
  31864. name: "Macro",
  31865. height: math.unit(1100, "feet"),
  31866. default: true
  31867. },
  31868. ]
  31869. ))
  31870. characterMakers.push(() => makeCharacter(
  31871. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31872. {
  31873. front: {
  31874. height: math.unit(100, "miles"),
  31875. name: "Front",
  31876. image: {
  31877. source: "./media/characters/sona/front.svg",
  31878. extra: 2433 / 2201,
  31879. bottom: 53 / 2486
  31880. }
  31881. },
  31882. foot: {
  31883. height: math.unit(16.1, "miles"),
  31884. name: "Foot",
  31885. image: {
  31886. source: "./media/characters/sona/foot.svg"
  31887. }
  31888. },
  31889. },
  31890. [
  31891. {
  31892. name: "Macro",
  31893. height: math.unit(100, "miles"),
  31894. default: true
  31895. },
  31896. ]
  31897. ))
  31898. characterMakers.push(() => makeCharacter(
  31899. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31900. {
  31901. front: {
  31902. height: math.unit(6, "feet"),
  31903. weight: math.unit(150, "lb"),
  31904. name: "Front",
  31905. image: {
  31906. source: "./media/characters/bailey/front.svg",
  31907. extra: 1778 / 1724,
  31908. bottom: 30 / 1808
  31909. }
  31910. },
  31911. },
  31912. [
  31913. {
  31914. name: "Micro",
  31915. height: math.unit(4, "inches")
  31916. },
  31917. {
  31918. name: "Normal",
  31919. height: math.unit(5 + 5 / 12, "feet"),
  31920. default: true
  31921. },
  31922. {
  31923. name: "Macro",
  31924. height: math.unit(250, "feet")
  31925. },
  31926. {
  31927. name: "Megamacro",
  31928. height: math.unit(100, "miles")
  31929. },
  31930. ]
  31931. ))
  31932. characterMakers.push(() => makeCharacter(
  31933. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31934. {
  31935. front: {
  31936. height: math.unit(5 + 2 / 12, "feet"),
  31937. weight: math.unit(120, "lb"),
  31938. name: "Front",
  31939. image: {
  31940. source: "./media/characters/snaps/front.svg",
  31941. extra: 2370 / 2177,
  31942. bottom: 48 / 2418
  31943. }
  31944. },
  31945. back: {
  31946. height: math.unit(5 + 2 / 12, "feet"),
  31947. weight: math.unit(120, "lb"),
  31948. name: "Back",
  31949. image: {
  31950. source: "./media/characters/snaps/back.svg",
  31951. extra: 2408 / 2258,
  31952. bottom: 15 / 2423
  31953. }
  31954. },
  31955. },
  31956. [
  31957. {
  31958. name: "Micro",
  31959. height: math.unit(9, "inches")
  31960. },
  31961. {
  31962. name: "Normal",
  31963. height: math.unit(5 + 2 / 12, "feet"),
  31964. default: true
  31965. },
  31966. {
  31967. name: "Mini Macro",
  31968. height: math.unit(10, "feet")
  31969. },
  31970. ]
  31971. ))
  31972. characterMakers.push(() => makeCharacter(
  31973. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31974. {
  31975. front: {
  31976. height: math.unit(1.8, "meters"),
  31977. weight: math.unit(85, "kg"),
  31978. name: "Front",
  31979. image: {
  31980. source: "./media/characters/azteck/front.svg",
  31981. extra: 2815 / 2625,
  31982. bottom: 89 / 2904
  31983. }
  31984. },
  31985. back: {
  31986. height: math.unit(1.8, "meters"),
  31987. weight: math.unit(85, "kg"),
  31988. name: "Back",
  31989. image: {
  31990. source: "./media/characters/azteck/back.svg",
  31991. extra: 2856 / 2648,
  31992. bottom: 85 / 2941
  31993. }
  31994. },
  31995. frontDressed: {
  31996. height: math.unit(1.8, "meters"),
  31997. weight: math.unit(85, "kg"),
  31998. name: "Front (Dressed)",
  31999. image: {
  32000. source: "./media/characters/azteck/front-dressed.svg",
  32001. extra: 2147 / 2003,
  32002. bottom: 68 / 2215
  32003. }
  32004. },
  32005. head: {
  32006. height: math.unit(0.47, "meters"),
  32007. weight: math.unit(85, "kg"),
  32008. name: "Head",
  32009. image: {
  32010. source: "./media/characters/azteck/head.svg"
  32011. }
  32012. },
  32013. },
  32014. [
  32015. {
  32016. name: "Bite sized",
  32017. height: math.unit(16, "cm")
  32018. },
  32019. {
  32020. name: "Normal",
  32021. height: math.unit(1.8, "meters"),
  32022. default: true
  32023. },
  32024. ]
  32025. ))
  32026. characterMakers.push(() => makeCharacter(
  32027. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  32028. {
  32029. front: {
  32030. height: math.unit(6, "feet"),
  32031. weight: math.unit(150, "lb"),
  32032. name: "Front",
  32033. image: {
  32034. source: "./media/characters/pidge/front.svg",
  32035. extra: 1936/1820,
  32036. bottom: 0/1936
  32037. }
  32038. },
  32039. back: {
  32040. height: math.unit(6, "feet"),
  32041. weight: math.unit(150, "lb"),
  32042. name: "Back",
  32043. image: {
  32044. source: "./media/characters/pidge/back.svg",
  32045. extra: 1938/1843,
  32046. bottom: 0/1938
  32047. }
  32048. },
  32049. casual: {
  32050. height: math.unit(6, "feet"),
  32051. weight: math.unit(150, "lb"),
  32052. name: "Casual",
  32053. image: {
  32054. source: "./media/characters/pidge/casual.svg",
  32055. extra: 1936/1820,
  32056. bottom: 0/1936
  32057. }
  32058. },
  32059. tech: {
  32060. height: math.unit(6, "feet"),
  32061. weight: math.unit(150, "lb"),
  32062. name: "Tech",
  32063. image: {
  32064. source: "./media/characters/pidge/tech.svg",
  32065. extra: 1802/1682,
  32066. bottom: 0/1802
  32067. }
  32068. },
  32069. head: {
  32070. height: math.unit(1.61, "feet"),
  32071. name: "Head",
  32072. image: {
  32073. source: "./media/characters/pidge/head.svg"
  32074. }
  32075. },
  32076. collar: {
  32077. height: math.unit(0.82, "feet"),
  32078. name: "Collar",
  32079. image: {
  32080. source: "./media/characters/pidge/collar.svg"
  32081. }
  32082. },
  32083. },
  32084. [
  32085. {
  32086. name: "Macro",
  32087. height: math.unit(2, "mile"),
  32088. default: true
  32089. },
  32090. {
  32091. name: "PUPPY",
  32092. height: math.unit(20, "miles")
  32093. },
  32094. ]
  32095. ))
  32096. characterMakers.push(() => makeCharacter(
  32097. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  32098. {
  32099. front: {
  32100. height: math.unit(6, "feet"),
  32101. weight: math.unit(150, "lb"),
  32102. name: "Front",
  32103. image: {
  32104. source: "./media/characters/en/front.svg",
  32105. extra: 1697 / 1563,
  32106. bottom: 103 / 1800
  32107. }
  32108. },
  32109. back: {
  32110. height: math.unit(6, "feet"),
  32111. weight: math.unit(150, "lb"),
  32112. name: "Back",
  32113. image: {
  32114. source: "./media/characters/en/back.svg",
  32115. extra: 1700 / 1570,
  32116. bottom: 51 / 1751
  32117. }
  32118. },
  32119. frontDressed: {
  32120. height: math.unit(6, "feet"),
  32121. weight: math.unit(150, "lb"),
  32122. name: "Front (Dressed)",
  32123. image: {
  32124. source: "./media/characters/en/front-dressed.svg",
  32125. extra: 1697 / 1563,
  32126. bottom: 103 / 1800
  32127. }
  32128. },
  32129. backDressed: {
  32130. height: math.unit(6, "feet"),
  32131. weight: math.unit(150, "lb"),
  32132. name: "Back (Dressed)",
  32133. image: {
  32134. source: "./media/characters/en/back-dressed.svg",
  32135. extra: 1700 / 1570,
  32136. bottom: 51 / 1751
  32137. }
  32138. },
  32139. },
  32140. [
  32141. {
  32142. name: "Macro",
  32143. height: math.unit(210, "feet"),
  32144. default: true
  32145. },
  32146. ]
  32147. ))
  32148. characterMakers.push(() => makeCharacter(
  32149. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  32150. {
  32151. front: {
  32152. height: math.unit(6, "feet"),
  32153. weight: math.unit(150, "lb"),
  32154. name: "Front",
  32155. image: {
  32156. source: "./media/characters/haze-orris/front.svg",
  32157. extra: 3975 / 3525,
  32158. bottom: 137 / 4112
  32159. }
  32160. },
  32161. },
  32162. [
  32163. {
  32164. name: "Micro",
  32165. height: math.unit(150, "mm"),
  32166. default: true
  32167. },
  32168. ]
  32169. ))
  32170. characterMakers.push(() => makeCharacter(
  32171. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  32172. {
  32173. front: {
  32174. height: math.unit(6, "feet"),
  32175. weight: math.unit(150, "lb"),
  32176. name: "Front",
  32177. image: {
  32178. source: "./media/characters/casselene-yaro/front.svg",
  32179. extra: 4721 / 4541,
  32180. bottom: 82 / 4803
  32181. }
  32182. },
  32183. back: {
  32184. height: math.unit(6, "feet"),
  32185. weight: math.unit(150, "lb"),
  32186. name: "Back",
  32187. image: {
  32188. source: "./media/characters/casselene-yaro/back.svg",
  32189. extra: 4569 / 4377,
  32190. bottom: 69 / 4638
  32191. }
  32192. },
  32193. dressed: {
  32194. height: math.unit(6, "feet"),
  32195. weight: math.unit(150, "lb"),
  32196. name: "Dressed",
  32197. image: {
  32198. source: "./media/characters/casselene-yaro/dressed.svg",
  32199. extra: 4721 / 4541,
  32200. bottom: 82 / 4803
  32201. }
  32202. },
  32203. maw: {
  32204. height: math.unit(1, "feet"),
  32205. name: "Maw",
  32206. image: {
  32207. source: "./media/characters/casselene-yaro/maw.svg"
  32208. }
  32209. },
  32210. },
  32211. [
  32212. {
  32213. name: "Macro",
  32214. height: math.unit(190, "feet"),
  32215. default: true
  32216. },
  32217. ]
  32218. ))
  32219. characterMakers.push(() => makeCharacter(
  32220. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  32221. {
  32222. front: {
  32223. height: math.unit(10, "feet"),
  32224. weight: math.unit(15015, "lb"),
  32225. name: "Front",
  32226. image: {
  32227. source: "./media/characters/platine/front.svg",
  32228. extra: 1741/1650,
  32229. bottom: 84/1825
  32230. }
  32231. },
  32232. side: {
  32233. height: math.unit(10, "feet"),
  32234. weight: math.unit(15015, "lb"),
  32235. name: "Side",
  32236. image: {
  32237. source: "./media/characters/platine/side.svg",
  32238. extra: 1790/1705,
  32239. bottom: 29/1819
  32240. }
  32241. },
  32242. },
  32243. [
  32244. {
  32245. name: "Normal",
  32246. height: math.unit(10, "feet"),
  32247. default: true
  32248. },
  32249. {
  32250. name: "Macro",
  32251. height: math.unit(100, "feet")
  32252. },
  32253. {
  32254. name: "Megamacro",
  32255. height: math.unit(1000, "feet")
  32256. },
  32257. ]
  32258. ))
  32259. characterMakers.push(() => makeCharacter(
  32260. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  32261. {
  32262. front: {
  32263. height: math.unit(15 + 5 / 12, "feet"),
  32264. weight: math.unit(4600, "lb"),
  32265. name: "Front",
  32266. image: {
  32267. source: "./media/characters/neapolitan-ananassa/front.svg",
  32268. extra: 2903 / 2736,
  32269. bottom: 0 / 2903
  32270. }
  32271. },
  32272. side: {
  32273. height: math.unit(15 + 5 / 12, "feet"),
  32274. weight: math.unit(4600, "lb"),
  32275. name: "Side",
  32276. image: {
  32277. source: "./media/characters/neapolitan-ananassa/side.svg",
  32278. extra: 2925 / 2719,
  32279. bottom: 0 / 2925
  32280. }
  32281. },
  32282. back: {
  32283. height: math.unit(15 + 5 / 12, "feet"),
  32284. weight: math.unit(4600, "lb"),
  32285. name: "Back",
  32286. image: {
  32287. source: "./media/characters/neapolitan-ananassa/back.svg",
  32288. extra: 2903 / 2736,
  32289. bottom: 0 / 2903
  32290. }
  32291. },
  32292. },
  32293. [
  32294. {
  32295. name: "Normal",
  32296. height: math.unit(15 + 5 / 12, "feet"),
  32297. default: true
  32298. },
  32299. {
  32300. name: "Post-Millenium",
  32301. height: math.unit(35 + 5 / 12, "feet")
  32302. },
  32303. {
  32304. name: "Post-Era",
  32305. height: math.unit(450 + 5 / 12, "feet")
  32306. },
  32307. ]
  32308. ))
  32309. characterMakers.push(() => makeCharacter(
  32310. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  32311. {
  32312. front: {
  32313. height: math.unit(300, "meters"),
  32314. weight: math.unit(125000, "tonnes"),
  32315. name: "Front",
  32316. image: {
  32317. source: "./media/characters/pazuzu/front.svg",
  32318. extra: 877 / 794,
  32319. bottom: 47 / 924
  32320. }
  32321. },
  32322. },
  32323. [
  32324. {
  32325. name: "Macro",
  32326. height: math.unit(300, "meters"),
  32327. default: true
  32328. },
  32329. ]
  32330. ))
  32331. characterMakers.push(() => makeCharacter(
  32332. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  32333. {
  32334. side: {
  32335. height: math.unit(10 + 7 / 12, "feet"),
  32336. weight: math.unit(2.5, "tons"),
  32337. name: "Side",
  32338. image: {
  32339. source: "./media/characters/aasha/side.svg",
  32340. extra: 1345 / 1245,
  32341. bottom: 111 / 1456
  32342. }
  32343. },
  32344. back: {
  32345. height: math.unit(10 + 7 / 12, "feet"),
  32346. weight: math.unit(2.5, "tons"),
  32347. name: "Back",
  32348. image: {
  32349. source: "./media/characters/aasha/back.svg",
  32350. extra: 1133 / 1057,
  32351. bottom: 257 / 1390
  32352. }
  32353. },
  32354. },
  32355. [
  32356. {
  32357. name: "Normal",
  32358. height: math.unit(10 + 7 / 12, "feet"),
  32359. default: true
  32360. },
  32361. ]
  32362. ))
  32363. characterMakers.push(() => makeCharacter(
  32364. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  32365. {
  32366. front: {
  32367. height: math.unit(6 + 3 / 12, "feet"),
  32368. name: "Front",
  32369. image: {
  32370. source: "./media/characters/nevan/front.svg",
  32371. extra: 704 / 704,
  32372. bottom: 28 / 732
  32373. }
  32374. },
  32375. back: {
  32376. height: math.unit(6 + 3 / 12, "feet"),
  32377. name: "Back",
  32378. image: {
  32379. source: "./media/characters/nevan/back.svg",
  32380. extra: 714 / 714,
  32381. bottom: 21 / 735
  32382. }
  32383. },
  32384. frontFlaccid: {
  32385. height: math.unit(6 + 3 / 12, "feet"),
  32386. name: "Front (Flaccid)",
  32387. image: {
  32388. source: "./media/characters/nevan/front-flaccid.svg",
  32389. extra: 704 / 704,
  32390. bottom: 28 / 732
  32391. }
  32392. },
  32393. frontErect: {
  32394. height: math.unit(6 + 3 / 12, "feet"),
  32395. name: "Front (Erect)",
  32396. image: {
  32397. source: "./media/characters/nevan/front-erect.svg",
  32398. extra: 704 / 704,
  32399. bottom: 28 / 732
  32400. }
  32401. },
  32402. backFlaccid: {
  32403. height: math.unit(6 + 3 / 12, "feet"),
  32404. name: "Back (Flaccid)",
  32405. image: {
  32406. source: "./media/characters/nevan/back-flaccid.svg",
  32407. extra: 714 / 714,
  32408. bottom: 21 / 735
  32409. }
  32410. },
  32411. },
  32412. [
  32413. {
  32414. name: "Normal",
  32415. height: math.unit(6 + 3 / 12, "feet"),
  32416. default: true
  32417. },
  32418. ]
  32419. ))
  32420. characterMakers.push(() => makeCharacter(
  32421. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32422. {
  32423. front: {
  32424. height: math.unit(4, "feet"),
  32425. name: "Front",
  32426. image: {
  32427. source: "./media/characters/arhan/front.svg",
  32428. extra: 3368 / 3133,
  32429. bottom: 0 / 3368
  32430. }
  32431. },
  32432. side: {
  32433. height: math.unit(4, "feet"),
  32434. name: "Side",
  32435. image: {
  32436. source: "./media/characters/arhan/side.svg",
  32437. extra: 3347 / 3105,
  32438. bottom: 0 / 3347
  32439. }
  32440. },
  32441. tongue: {
  32442. height: math.unit(1.42, "feet"),
  32443. name: "Tongue",
  32444. image: {
  32445. source: "./media/characters/arhan/tongue.svg"
  32446. }
  32447. },
  32448. head: {
  32449. height: math.unit(0.85, "feet"),
  32450. name: "Head",
  32451. image: {
  32452. source: "./media/characters/arhan/head.svg"
  32453. }
  32454. },
  32455. },
  32456. [
  32457. {
  32458. name: "Normal",
  32459. height: math.unit(4, "feet"),
  32460. default: true
  32461. },
  32462. ]
  32463. ))
  32464. characterMakers.push(() => makeCharacter(
  32465. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32466. {
  32467. front: {
  32468. height: math.unit(5 + 7.5 / 12, "feet"),
  32469. weight: math.unit(120, "lb"),
  32470. name: "Front",
  32471. image: {
  32472. source: "./media/characters/digi-duncan/front.svg",
  32473. extra: 330 / 326,
  32474. bottom: 16 / 346
  32475. }
  32476. },
  32477. side: {
  32478. height: math.unit(5 + 7.5 / 12, "feet"),
  32479. weight: math.unit(120, "lb"),
  32480. name: "Side",
  32481. image: {
  32482. source: "./media/characters/digi-duncan/side.svg",
  32483. extra: 341 / 337,
  32484. bottom: 1 / 342
  32485. }
  32486. },
  32487. back: {
  32488. height: math.unit(5 + 7.5 / 12, "feet"),
  32489. weight: math.unit(120, "lb"),
  32490. name: "Back",
  32491. image: {
  32492. source: "./media/characters/digi-duncan/back.svg",
  32493. extra: 330 / 326,
  32494. bottom: 12 / 342
  32495. }
  32496. },
  32497. },
  32498. [
  32499. {
  32500. name: "Speck",
  32501. height: math.unit(0.25, "mm")
  32502. },
  32503. {
  32504. name: "Micro",
  32505. height: math.unit(5, "mm")
  32506. },
  32507. {
  32508. name: "Tiny",
  32509. height: math.unit(0.5, "inches"),
  32510. default: true
  32511. },
  32512. {
  32513. name: "Human",
  32514. height: math.unit(5 + 7.5 / 12, "feet")
  32515. },
  32516. {
  32517. name: "Minigiant",
  32518. height: math.unit(8 + 5.25, "feet")
  32519. },
  32520. {
  32521. name: "Giant",
  32522. height: math.unit(2000, "feet")
  32523. },
  32524. {
  32525. name: "Mega",
  32526. height: math.unit(371.1, "miles")
  32527. },
  32528. ]
  32529. ))
  32530. characterMakers.push(() => makeCharacter(
  32531. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32532. {
  32533. front: {
  32534. height: math.unit(2, "meters"),
  32535. weight: math.unit(350, "kg"),
  32536. name: "Front",
  32537. image: {
  32538. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32539. extra: 898 / 838,
  32540. bottom: 9 / 907
  32541. }
  32542. },
  32543. },
  32544. [
  32545. {
  32546. name: "Micro",
  32547. height: math.unit(8, "meters")
  32548. },
  32549. {
  32550. name: "Normal",
  32551. height: math.unit(50, "meters"),
  32552. default: true
  32553. },
  32554. {
  32555. name: "Macro",
  32556. height: math.unit(500, "meters")
  32557. },
  32558. ]
  32559. ))
  32560. characterMakers.push(() => makeCharacter(
  32561. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32562. {
  32563. front: {
  32564. height: math.unit(6 + 6 / 12, "feet"),
  32565. name: "Front",
  32566. image: {
  32567. source: "./media/characters/khardesh/front.svg",
  32568. extra: 1788/1596,
  32569. bottom: 66/1854
  32570. }
  32571. },
  32572. back: {
  32573. height: math.unit(6 + 6 / 12, "feet"),
  32574. name: "Back",
  32575. image: {
  32576. source: "./media/characters/khardesh/back.svg",
  32577. extra: 1781/1584,
  32578. bottom: 68/1849
  32579. }
  32580. },
  32581. },
  32582. [
  32583. {
  32584. name: "Normal",
  32585. height: math.unit(6 + 6 / 12, "feet"),
  32586. default: true
  32587. },
  32588. {
  32589. name: "Normal+",
  32590. height: math.unit(4, "meters")
  32591. },
  32592. {
  32593. name: "Macro",
  32594. height: math.unit(50, "meters")
  32595. },
  32596. {
  32597. name: "Macro+",
  32598. height: math.unit(100, "meters")
  32599. },
  32600. {
  32601. name: "Megamacro",
  32602. height: math.unit(20, "km")
  32603. },
  32604. ]
  32605. ))
  32606. characterMakers.push(() => makeCharacter(
  32607. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32608. {
  32609. front: {
  32610. height: math.unit(6, "feet"),
  32611. weight: math.unit(150, "lb"),
  32612. name: "Front",
  32613. image: {
  32614. source: "./media/characters/kosho/front.svg",
  32615. extra: 1847 / 1847,
  32616. bottom: 86 / 1933
  32617. }
  32618. },
  32619. },
  32620. [
  32621. {
  32622. name: "Second-stage micro",
  32623. height: math.unit(0.5, "inches")
  32624. },
  32625. {
  32626. name: "First-stage micro",
  32627. height: math.unit(6, "inches")
  32628. },
  32629. {
  32630. name: "Normal",
  32631. height: math.unit(6, "feet"),
  32632. default: true
  32633. },
  32634. {
  32635. name: "First-stage macro",
  32636. height: math.unit(72, "feet")
  32637. },
  32638. {
  32639. name: "Second-stage macro",
  32640. height: math.unit(864, "feet")
  32641. },
  32642. ]
  32643. ))
  32644. characterMakers.push(() => makeCharacter(
  32645. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32646. {
  32647. normal: {
  32648. height: math.unit(4 + 6 / 12, "feet"),
  32649. name: "Normal",
  32650. image: {
  32651. source: "./media/characters/hydra/normal.svg",
  32652. extra: 2833 / 2634,
  32653. bottom: 68 / 2901
  32654. }
  32655. },
  32656. smol: {
  32657. height: math.unit(0.705, "inches"),
  32658. name: "Smol",
  32659. image: {
  32660. source: "./media/characters/hydra/smol.svg",
  32661. extra: 2715 / 2540,
  32662. bottom: 0 / 2715
  32663. }
  32664. },
  32665. },
  32666. [
  32667. {
  32668. name: "Normal",
  32669. height: math.unit(4 + 6 / 12, "feet"),
  32670. default: true
  32671. }
  32672. ]
  32673. ))
  32674. characterMakers.push(() => makeCharacter(
  32675. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32676. {
  32677. front: {
  32678. height: math.unit(0.6, "cm"),
  32679. name: "Front",
  32680. image: {
  32681. source: "./media/characters/daz/front.svg",
  32682. extra: 1682 / 1164,
  32683. bottom: 42 / 1724
  32684. }
  32685. },
  32686. },
  32687. [
  32688. {
  32689. name: "Normal",
  32690. height: math.unit(0.6, "cm"),
  32691. default: true
  32692. },
  32693. ]
  32694. ))
  32695. characterMakers.push(() => makeCharacter(
  32696. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32697. {
  32698. front: {
  32699. height: math.unit(6, "feet"),
  32700. weight: math.unit(235, "lb"),
  32701. name: "Front",
  32702. image: {
  32703. source: "./media/characters/theo-pangolin/front.svg",
  32704. extra: 1996 / 1969,
  32705. bottom: 115 / 2111
  32706. }
  32707. },
  32708. back: {
  32709. height: math.unit(6, "feet"),
  32710. weight: math.unit(235, "lb"),
  32711. name: "Back",
  32712. image: {
  32713. source: "./media/characters/theo-pangolin/back.svg",
  32714. extra: 1979 / 1979,
  32715. bottom: 40 / 2019
  32716. }
  32717. },
  32718. feral: {
  32719. height: math.unit(2, "feet"),
  32720. weight: math.unit(30, "lb"),
  32721. name: "Feral",
  32722. image: {
  32723. source: "./media/characters/theo-pangolin/feral.svg",
  32724. extra: 803 / 791,
  32725. bottom: 181 / 984
  32726. }
  32727. },
  32728. footFive: {
  32729. height: math.unit(1.43, "feet"),
  32730. name: "Foot (Five Toes)",
  32731. image: {
  32732. source: "./media/characters/theo-pangolin/foot-five.svg"
  32733. }
  32734. },
  32735. footFour: {
  32736. height: math.unit(1.43, "feet"),
  32737. name: "Foot (Four Toes)",
  32738. image: {
  32739. source: "./media/characters/theo-pangolin/foot-four.svg"
  32740. }
  32741. },
  32742. handFour: {
  32743. height: math.unit(0.81, "feet"),
  32744. name: "Hand (Four Fingers)",
  32745. image: {
  32746. source: "./media/characters/theo-pangolin/hand-four.svg"
  32747. }
  32748. },
  32749. handThree: {
  32750. height: math.unit(0.81, "feet"),
  32751. name: "Hand (Three Fingers)",
  32752. image: {
  32753. source: "./media/characters/theo-pangolin/hand-three.svg"
  32754. }
  32755. },
  32756. headFront: {
  32757. height: math.unit(1.37, "feet"),
  32758. name: "Head (Front)",
  32759. image: {
  32760. source: "./media/characters/theo-pangolin/head-front.svg"
  32761. }
  32762. },
  32763. headSide: {
  32764. height: math.unit(1.43, "feet"),
  32765. name: "Head (Side)",
  32766. image: {
  32767. source: "./media/characters/theo-pangolin/head-side.svg"
  32768. }
  32769. },
  32770. tongue: {
  32771. height: math.unit(2.29, "feet"),
  32772. name: "Tongue",
  32773. image: {
  32774. source: "./media/characters/theo-pangolin/tongue.svg"
  32775. }
  32776. },
  32777. },
  32778. [
  32779. {
  32780. name: "Normal",
  32781. height: math.unit(6, "feet")
  32782. },
  32783. {
  32784. name: "Macro",
  32785. height: math.unit(400, "feet"),
  32786. default: true
  32787. },
  32788. ]
  32789. ))
  32790. characterMakers.push(() => makeCharacter(
  32791. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32792. {
  32793. front: {
  32794. height: math.unit(6, "inches"),
  32795. weight: math.unit(0.036, "kg"),
  32796. name: "Front",
  32797. image: {
  32798. source: "./media/characters/renée/front.svg",
  32799. extra: 900 / 886,
  32800. bottom: 8 / 908
  32801. }
  32802. },
  32803. },
  32804. [
  32805. {
  32806. name: "Nano",
  32807. height: math.unit(1, "nm")
  32808. },
  32809. {
  32810. name: "Micro",
  32811. height: math.unit(1, "mm")
  32812. },
  32813. {
  32814. name: "Normal",
  32815. height: math.unit(6, "inches")
  32816. },
  32817. {
  32818. name: "Macro",
  32819. height: math.unit(2000, "feet"),
  32820. default: true
  32821. },
  32822. {
  32823. name: "Megamacro",
  32824. height: math.unit(2, "km")
  32825. },
  32826. {
  32827. name: "Gigamacro",
  32828. height: math.unit(2000, "km")
  32829. },
  32830. {
  32831. name: "Teramacro",
  32832. height: math.unit(250000, "km")
  32833. },
  32834. ]
  32835. ))
  32836. characterMakers.push(() => makeCharacter(
  32837. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32838. {
  32839. front: {
  32840. height: math.unit(4, "meters"),
  32841. weight: math.unit(150, "kg"),
  32842. name: "Front",
  32843. image: {
  32844. source: "./media/characters/caledvwlch/front.svg",
  32845. extra: 1757/1537,
  32846. bottom: 31/1788
  32847. }
  32848. },
  32849. side: {
  32850. height: math.unit(4, "meters"),
  32851. weight: math.unit(150, "kg"),
  32852. name: "Side",
  32853. image: {
  32854. source: "./media/characters/caledvwlch/side.svg",
  32855. extra: 1605 / 1536,
  32856. bottom: 31 / 1636
  32857. }
  32858. },
  32859. back: {
  32860. height: math.unit(4, "meters"),
  32861. weight: math.unit(150, "kg"),
  32862. name: "Back",
  32863. image: {
  32864. source: "./media/characters/caledvwlch/back.svg",
  32865. extra: 1635 / 1565,
  32866. bottom: 27 / 1662
  32867. }
  32868. },
  32869. },
  32870. [
  32871. {
  32872. name: "\"Incognito\"",
  32873. height: math.unit(4, "meters")
  32874. },
  32875. {
  32876. name: "Small rampage",
  32877. height: math.unit(600, "meters")
  32878. },
  32879. {
  32880. name: "Mega",
  32881. height: math.unit(30, "km")
  32882. },
  32883. {
  32884. name: "Home-size",
  32885. height: math.unit(50, "km"),
  32886. default: true
  32887. },
  32888. {
  32889. name: "Giga",
  32890. height: math.unit(300, "km")
  32891. },
  32892. {
  32893. name: "Lounging",
  32894. height: math.unit(11000, "km")
  32895. },
  32896. {
  32897. name: "Planet snacking",
  32898. height: math.unit(2000000, "km")
  32899. },
  32900. ]
  32901. ))
  32902. characterMakers.push(() => makeCharacter(
  32903. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32904. {
  32905. front: {
  32906. height: math.unit(6, "feet"),
  32907. weight: math.unit(215, "lb"),
  32908. name: "Front",
  32909. image: {
  32910. source: "./media/characters/sapphire-svell/front.svg",
  32911. extra: 495 / 455,
  32912. bottom: 20 / 515
  32913. }
  32914. },
  32915. back: {
  32916. height: math.unit(6, "feet"),
  32917. weight: math.unit(216, "lb"),
  32918. name: "Back",
  32919. image: {
  32920. source: "./media/characters/sapphire-svell/back.svg",
  32921. extra: 497 / 477,
  32922. bottom: 7 / 504
  32923. }
  32924. },
  32925. maw: {
  32926. height: math.unit(1.57, "feet"),
  32927. name: "Maw",
  32928. image: {
  32929. source: "./media/characters/sapphire-svell/maw.svg"
  32930. }
  32931. },
  32932. foot: {
  32933. height: math.unit(1.07, "feet"),
  32934. name: "Foot",
  32935. image: {
  32936. source: "./media/characters/sapphire-svell/foot.svg"
  32937. }
  32938. },
  32939. toering: {
  32940. height: math.unit(1.7, "inch"),
  32941. name: "Toering",
  32942. image: {
  32943. source: "./media/characters/sapphire-svell/toering.svg"
  32944. }
  32945. },
  32946. },
  32947. [
  32948. {
  32949. name: "Normal",
  32950. height: math.unit(300, "feet"),
  32951. default: true
  32952. },
  32953. {
  32954. name: "Augmented",
  32955. height: math.unit(1250, "feet")
  32956. },
  32957. {
  32958. name: "Unleashed",
  32959. height: math.unit(3000, "feet")
  32960. },
  32961. ]
  32962. ))
  32963. characterMakers.push(() => makeCharacter(
  32964. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32965. {
  32966. side: {
  32967. height: math.unit(2 + 3 / 12, "feet"),
  32968. weight: math.unit(110, "lb"),
  32969. name: "Side",
  32970. image: {
  32971. source: "./media/characters/glitch-flux/side.svg",
  32972. extra: 997 / 805,
  32973. bottom: 20 / 1017
  32974. }
  32975. },
  32976. },
  32977. [
  32978. {
  32979. name: "Normal",
  32980. height: math.unit(2 + 3 / 12, "feet"),
  32981. default: true
  32982. },
  32983. ]
  32984. ))
  32985. characterMakers.push(() => makeCharacter(
  32986. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32987. {
  32988. front: {
  32989. height: math.unit(4, "meters"),
  32990. name: "Front",
  32991. image: {
  32992. source: "./media/characters/mid/front.svg",
  32993. extra: 507 / 476,
  32994. bottom: 17 / 524
  32995. }
  32996. },
  32997. back: {
  32998. height: math.unit(4, "meters"),
  32999. name: "Back",
  33000. image: {
  33001. source: "./media/characters/mid/back.svg",
  33002. extra: 519 / 487,
  33003. bottom: 7 / 526
  33004. }
  33005. },
  33006. stuck: {
  33007. height: math.unit(2.2, "meters"),
  33008. name: "Stuck",
  33009. image: {
  33010. source: "./media/characters/mid/stuck.svg",
  33011. extra: 1951 / 1869,
  33012. bottom: 88 / 2039
  33013. }
  33014. }
  33015. },
  33016. [
  33017. {
  33018. name: "Normal",
  33019. height: math.unit(4, "meters"),
  33020. default: true
  33021. },
  33022. {
  33023. name: "Big",
  33024. height: math.unit(10, "meters")
  33025. },
  33026. {
  33027. name: "Macro",
  33028. height: math.unit(800, "meters")
  33029. },
  33030. {
  33031. name: "Megamacro",
  33032. height: math.unit(100, "km")
  33033. },
  33034. {
  33035. name: "Overgrown",
  33036. height: math.unit(1, "parsec")
  33037. },
  33038. ]
  33039. ))
  33040. characterMakers.push(() => makeCharacter(
  33041. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  33042. {
  33043. front: {
  33044. height: math.unit(2.5, "meters"),
  33045. weight: math.unit(225, "kg"),
  33046. name: "Front",
  33047. image: {
  33048. source: "./media/characters/iris/front.svg",
  33049. extra: 3348 / 3251,
  33050. bottom: 205 / 3553
  33051. }
  33052. },
  33053. maw: {
  33054. height: math.unit(0.56, "meter"),
  33055. name: "Maw",
  33056. image: {
  33057. source: "./media/characters/iris/maw.svg"
  33058. }
  33059. },
  33060. },
  33061. [
  33062. {
  33063. name: "Mewter cat",
  33064. height: math.unit(1.2, "meters")
  33065. },
  33066. {
  33067. name: "Normal",
  33068. height: math.unit(2.5, "meters"),
  33069. default: true
  33070. },
  33071. {
  33072. name: "Minimacro",
  33073. height: math.unit(18, "feet")
  33074. },
  33075. {
  33076. name: "Macro",
  33077. height: math.unit(140, "feet")
  33078. },
  33079. {
  33080. name: "Macro+",
  33081. height: math.unit(180, "meters")
  33082. },
  33083. {
  33084. name: "Megamacro",
  33085. height: math.unit(2746, "meters")
  33086. },
  33087. ]
  33088. ))
  33089. characterMakers.push(() => makeCharacter(
  33090. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  33091. {
  33092. front: {
  33093. height: math.unit(6, "feet"),
  33094. weight: math.unit(135, "lb"),
  33095. name: "Front",
  33096. image: {
  33097. source: "./media/characters/axel/front.svg",
  33098. extra: 908 / 908,
  33099. bottom: 58 / 966
  33100. }
  33101. },
  33102. side: {
  33103. height: math.unit(6, "feet"),
  33104. weight: math.unit(135, "lb"),
  33105. name: "Side",
  33106. image: {
  33107. source: "./media/characters/axel/side.svg",
  33108. extra: 958 / 958,
  33109. bottom: 11 / 969
  33110. }
  33111. },
  33112. back: {
  33113. height: math.unit(6, "feet"),
  33114. weight: math.unit(135, "lb"),
  33115. name: "Back",
  33116. image: {
  33117. source: "./media/characters/axel/back.svg",
  33118. extra: 887 / 887,
  33119. bottom: 34 / 921
  33120. }
  33121. },
  33122. head: {
  33123. height: math.unit(1.07, "feet"),
  33124. name: "Head",
  33125. image: {
  33126. source: "./media/characters/axel/head.svg"
  33127. }
  33128. },
  33129. beak: {
  33130. height: math.unit(1.4, "feet"),
  33131. name: "Beak",
  33132. image: {
  33133. source: "./media/characters/axel/beak.svg"
  33134. }
  33135. },
  33136. beakSide: {
  33137. height: math.unit(1.4, "feet"),
  33138. name: "Beak Side",
  33139. image: {
  33140. source: "./media/characters/axel/beak-side.svg"
  33141. }
  33142. },
  33143. sheath: {
  33144. height: math.unit(0.5, "feet"),
  33145. name: "Sheath",
  33146. image: {
  33147. source: "./media/characters/axel/sheath.svg"
  33148. }
  33149. },
  33150. dick: {
  33151. height: math.unit(0.98, "feet"),
  33152. name: "Dick",
  33153. image: {
  33154. source: "./media/characters/axel/dick.svg"
  33155. }
  33156. },
  33157. },
  33158. [
  33159. {
  33160. name: "Macro",
  33161. height: math.unit(68, "meters"),
  33162. default: true
  33163. },
  33164. ]
  33165. ))
  33166. characterMakers.push(() => makeCharacter(
  33167. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  33168. {
  33169. front: {
  33170. height: math.unit(3.5, "meters"),
  33171. weight: math.unit(1200, "kg"),
  33172. name: "Front",
  33173. image: {
  33174. source: "./media/characters/joanna/front.svg",
  33175. extra: 1596 / 1488,
  33176. bottom: 29 / 1625
  33177. }
  33178. },
  33179. back: {
  33180. height: math.unit(3.5, "meters"),
  33181. weight: math.unit(1200, "kg"),
  33182. name: "Back",
  33183. image: {
  33184. source: "./media/characters/joanna/back.svg",
  33185. extra: 1594 / 1495,
  33186. bottom: 26 / 1620
  33187. }
  33188. },
  33189. frontShorts: {
  33190. height: math.unit(3.5, "meters"),
  33191. weight: math.unit(1200, "kg"),
  33192. name: "Front (Shorts)",
  33193. image: {
  33194. source: "./media/characters/joanna/front-shorts.svg",
  33195. extra: 1596 / 1488,
  33196. bottom: 29 / 1625
  33197. }
  33198. },
  33199. frontBiker: {
  33200. height: math.unit(3.5, "meters"),
  33201. weight: math.unit(1200, "kg"),
  33202. name: "Front (Biker)",
  33203. image: {
  33204. source: "./media/characters/joanna/front-biker.svg",
  33205. extra: 1596 / 1488,
  33206. bottom: 29 / 1625
  33207. }
  33208. },
  33209. backBiker: {
  33210. height: math.unit(3.5, "meters"),
  33211. weight: math.unit(1200, "kg"),
  33212. name: "Back (Biker)",
  33213. image: {
  33214. source: "./media/characters/joanna/back-biker.svg",
  33215. extra: 1594 / 1495,
  33216. bottom: 88 / 1682
  33217. }
  33218. },
  33219. bikeLeft: {
  33220. height: math.unit(2.4, "meters"),
  33221. weight: math.unit(1600, "kg"),
  33222. name: "Bike (Left)",
  33223. image: {
  33224. source: "./media/characters/joanna/bike-left.svg",
  33225. extra: 720 / 720,
  33226. bottom: 8 / 728
  33227. }
  33228. },
  33229. bikeRight: {
  33230. height: math.unit(2.4, "meters"),
  33231. weight: math.unit(1600, "kg"),
  33232. name: "Bike (Right)",
  33233. image: {
  33234. source: "./media/characters/joanna/bike-right.svg",
  33235. extra: 720 / 720,
  33236. bottom: 8 / 728
  33237. }
  33238. },
  33239. },
  33240. [
  33241. {
  33242. name: "Incognito",
  33243. height: math.unit(3.5, "meters")
  33244. },
  33245. {
  33246. name: "Casual Big",
  33247. height: math.unit(200, "meters")
  33248. },
  33249. {
  33250. name: "Macro",
  33251. height: math.unit(600, "meters")
  33252. },
  33253. {
  33254. name: "Original",
  33255. height: math.unit(20, "km"),
  33256. default: true
  33257. },
  33258. {
  33259. name: "Giga",
  33260. height: math.unit(400, "km")
  33261. },
  33262. {
  33263. name: "Lounging",
  33264. height: math.unit(1500, "km")
  33265. },
  33266. {
  33267. name: "Planetary",
  33268. height: math.unit(200000, "km")
  33269. },
  33270. ]
  33271. ))
  33272. characterMakers.push(() => makeCharacter(
  33273. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  33274. {
  33275. front: {
  33276. height: math.unit(6, "feet"),
  33277. weight: math.unit(150, "lb"),
  33278. name: "Front",
  33279. image: {
  33280. source: "./media/characters/hugo-sigil/front.svg",
  33281. extra: 522 / 500,
  33282. bottom: 2 / 524
  33283. }
  33284. },
  33285. back: {
  33286. height: math.unit(6, "feet"),
  33287. weight: math.unit(150, "lb"),
  33288. name: "Back",
  33289. image: {
  33290. source: "./media/characters/hugo-sigil/back.svg",
  33291. extra: 519 / 495,
  33292. bottom: 5 / 524
  33293. }
  33294. },
  33295. maw: {
  33296. height: math.unit(1.4, "feet"),
  33297. weight: math.unit(150, "lb"),
  33298. name: "Maw",
  33299. image: {
  33300. source: "./media/characters/hugo-sigil/maw.svg"
  33301. }
  33302. },
  33303. feet: {
  33304. height: math.unit(1.56, "feet"),
  33305. weight: math.unit(150, "lb"),
  33306. name: "Feet",
  33307. image: {
  33308. source: "./media/characters/hugo-sigil/feet.svg",
  33309. extra: 177 / 177,
  33310. bottom: 12 / 189
  33311. }
  33312. },
  33313. },
  33314. [
  33315. {
  33316. name: "Normal",
  33317. height: math.unit(6, "feet")
  33318. },
  33319. {
  33320. name: "Macro",
  33321. height: math.unit(200, "feet"),
  33322. default: true
  33323. },
  33324. ]
  33325. ))
  33326. characterMakers.push(() => makeCharacter(
  33327. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  33328. {
  33329. front: {
  33330. height: math.unit(6, "feet"),
  33331. weight: math.unit(150, "lb"),
  33332. name: "Front",
  33333. image: {
  33334. source: "./media/characters/peri/front.svg",
  33335. extra: 2354 / 2233,
  33336. bottom: 49 / 2403
  33337. }
  33338. },
  33339. },
  33340. [
  33341. {
  33342. name: "Really Small",
  33343. height: math.unit(1, "nm")
  33344. },
  33345. {
  33346. name: "Micro",
  33347. height: math.unit(4, "inches")
  33348. },
  33349. {
  33350. name: "Normal",
  33351. height: math.unit(7, "inches"),
  33352. default: true
  33353. },
  33354. {
  33355. name: "Macro",
  33356. height: math.unit(400, "feet")
  33357. },
  33358. {
  33359. name: "Megamacro",
  33360. height: math.unit(100, "miles")
  33361. },
  33362. ]
  33363. ))
  33364. characterMakers.push(() => makeCharacter(
  33365. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  33366. {
  33367. frontSlim: {
  33368. height: math.unit(7, "feet"),
  33369. name: "Front (Slim)",
  33370. image: {
  33371. source: "./media/characters/issilora/front-slim.svg",
  33372. extra: 529 / 449,
  33373. bottom: 53 / 582
  33374. }
  33375. },
  33376. sideSlim: {
  33377. height: math.unit(7, "feet"),
  33378. name: "Side (Slim)",
  33379. image: {
  33380. source: "./media/characters/issilora/side-slim.svg",
  33381. extra: 570 / 480,
  33382. bottom: 30 / 600
  33383. }
  33384. },
  33385. backSlim: {
  33386. height: math.unit(7, "feet"),
  33387. name: "Back (Slim)",
  33388. image: {
  33389. source: "./media/characters/issilora/back-slim.svg",
  33390. extra: 537 / 455,
  33391. bottom: 46 / 583
  33392. }
  33393. },
  33394. frontBuff: {
  33395. height: math.unit(7, "feet"),
  33396. name: "Front (Buff)",
  33397. image: {
  33398. source: "./media/characters/issilora/front-buff.svg",
  33399. extra: 2310 / 2035,
  33400. bottom: 335 / 2645
  33401. }
  33402. },
  33403. head: {
  33404. height: math.unit(1.94, "feet"),
  33405. name: "Head",
  33406. image: {
  33407. source: "./media/characters/issilora/head.svg"
  33408. }
  33409. },
  33410. },
  33411. [
  33412. {
  33413. name: "Minimum",
  33414. height: math.unit(7, "feet")
  33415. },
  33416. {
  33417. name: "Comfortable",
  33418. height: math.unit(17, "feet")
  33419. },
  33420. {
  33421. name: "Fun Size",
  33422. height: math.unit(47, "feet")
  33423. },
  33424. {
  33425. name: "Natural Macro",
  33426. height: math.unit(137, "feet"),
  33427. default: true
  33428. },
  33429. {
  33430. name: "Maximum Kaiju",
  33431. height: math.unit(397, "feet")
  33432. },
  33433. ]
  33434. ))
  33435. characterMakers.push(() => makeCharacter(
  33436. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33437. {
  33438. front: {
  33439. height: math.unit(50 + 9/12, "feet"),
  33440. weight: math.unit(32.8, "tons"),
  33441. name: "Front",
  33442. image: {
  33443. source: "./media/characters/irb'iiritaahn/front.svg",
  33444. extra: 1878/1826,
  33445. bottom: 326/2204
  33446. }
  33447. },
  33448. back: {
  33449. height: math.unit(50 + 9/12, "feet"),
  33450. weight: math.unit(32.8, "tons"),
  33451. name: "Back",
  33452. image: {
  33453. source: "./media/characters/irb'iiritaahn/back.svg",
  33454. extra: 2052/2018,
  33455. bottom: 152/2204
  33456. }
  33457. },
  33458. head: {
  33459. height: math.unit(12.86, "feet"),
  33460. name: "Head",
  33461. image: {
  33462. source: "./media/characters/irb'iiritaahn/head.svg"
  33463. }
  33464. },
  33465. maw: {
  33466. height: math.unit(9.66, "feet"),
  33467. name: "Maw",
  33468. image: {
  33469. source: "./media/characters/irb'iiritaahn/maw.svg"
  33470. }
  33471. },
  33472. frontDick: {
  33473. height: math.unit(8.78461, "feet"),
  33474. name: "Front Dick",
  33475. image: {
  33476. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33477. }
  33478. },
  33479. rearDick: {
  33480. height: math.unit(8.78461, "feet"),
  33481. name: "Rear Dick",
  33482. image: {
  33483. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33484. }
  33485. },
  33486. rearDickUnfolded: {
  33487. height: math.unit(8.78, "feet"),
  33488. name: "Rear Dick (Unfolded)",
  33489. image: {
  33490. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33491. }
  33492. },
  33493. wings: {
  33494. height: math.unit(43, "feet"),
  33495. name: "Wings",
  33496. image: {
  33497. source: "./media/characters/irb'iiritaahn/wings.svg"
  33498. }
  33499. },
  33500. },
  33501. [
  33502. {
  33503. name: "Macro",
  33504. height: math.unit(50 + 9/12, "feet"),
  33505. default: true
  33506. },
  33507. ]
  33508. ))
  33509. characterMakers.push(() => makeCharacter(
  33510. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33511. {
  33512. front: {
  33513. height: math.unit(205, "cm"),
  33514. weight: math.unit(102, "kg"),
  33515. name: "Front",
  33516. image: {
  33517. source: "./media/characters/irbisgreif/front.svg",
  33518. extra: 785/706,
  33519. bottom: 13/798
  33520. }
  33521. },
  33522. back: {
  33523. height: math.unit(205, "cm"),
  33524. weight: math.unit(102, "kg"),
  33525. name: "Back",
  33526. image: {
  33527. source: "./media/characters/irbisgreif/back.svg",
  33528. extra: 713/701,
  33529. bottom: 26/739
  33530. }
  33531. },
  33532. frontDressed: {
  33533. height: math.unit(216, "cm"),
  33534. weight: math.unit(102, "kg"),
  33535. name: "Front-dressed",
  33536. image: {
  33537. source: "./media/characters/irbisgreif/front-dressed.svg",
  33538. extra: 902/776,
  33539. bottom: 14/916
  33540. }
  33541. },
  33542. sideDressed: {
  33543. height: math.unit(195, "cm"),
  33544. weight: math.unit(102, "kg"),
  33545. name: "Side-dressed",
  33546. image: {
  33547. source: "./media/characters/irbisgreif/side-dressed.svg",
  33548. extra: 788/688,
  33549. bottom: 21/809
  33550. }
  33551. },
  33552. backDressed: {
  33553. height: math.unit(216, "cm"),
  33554. weight: math.unit(102, "kg"),
  33555. name: "Back-dressed",
  33556. image: {
  33557. source: "./media/characters/irbisgreif/back-dressed.svg",
  33558. extra: 901/783,
  33559. bottom: 10/911
  33560. }
  33561. },
  33562. dick: {
  33563. height: math.unit(0.49, "feet"),
  33564. name: "Dick",
  33565. image: {
  33566. source: "./media/characters/irbisgreif/dick.svg"
  33567. }
  33568. },
  33569. wingTop: {
  33570. height: math.unit(1.93 , "feet"),
  33571. name: "Wing-top",
  33572. image: {
  33573. source: "./media/characters/irbisgreif/wing-top.svg"
  33574. }
  33575. },
  33576. wingBottom: {
  33577. height: math.unit(1.93 , "feet"),
  33578. name: "Wing-bottom",
  33579. image: {
  33580. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33581. }
  33582. },
  33583. },
  33584. [
  33585. {
  33586. name: "Normal",
  33587. height: math.unit(216, "cm"),
  33588. default: true
  33589. },
  33590. ]
  33591. ))
  33592. characterMakers.push(() => makeCharacter(
  33593. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33594. {
  33595. front: {
  33596. height: math.unit(6, "feet"),
  33597. weight: math.unit(150, "lb"),
  33598. name: "Front",
  33599. image: {
  33600. source: "./media/characters/pride/front.svg",
  33601. extra: 1299/1230,
  33602. bottom: 18/1317
  33603. }
  33604. },
  33605. },
  33606. [
  33607. {
  33608. name: "Normal",
  33609. height: math.unit(7, "feet")
  33610. },
  33611. {
  33612. name: "Mini-macro",
  33613. height: math.unit(11, "feet")
  33614. },
  33615. {
  33616. name: "Macro",
  33617. height: math.unit(15, "meters"),
  33618. default: true
  33619. },
  33620. {
  33621. name: "Macro+",
  33622. height: math.unit(40, "meters")
  33623. },
  33624. ]
  33625. ))
  33626. characterMakers.push(() => makeCharacter(
  33627. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33628. {
  33629. front: {
  33630. height: math.unit(4 + 2 / 12, "feet"),
  33631. weight: math.unit(95, "lb"),
  33632. name: "Front",
  33633. image: {
  33634. source: "./media/characters/vaelophis-nyx/front.svg",
  33635. extra: 2532/2330,
  33636. bottom: 0/2532
  33637. }
  33638. },
  33639. back: {
  33640. height: math.unit(4 + 2 / 12, "feet"),
  33641. weight: math.unit(95, "lb"),
  33642. name: "Back",
  33643. image: {
  33644. source: "./media/characters/vaelophis-nyx/back.svg",
  33645. extra: 2484/2361,
  33646. bottom: 0/2484
  33647. }
  33648. },
  33649. feralSide: {
  33650. height: math.unit(2 + 1/12, "feet"),
  33651. weight: math.unit(20, "lb"),
  33652. name: "Feral (Side)",
  33653. image: {
  33654. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33655. extra: 1721/1581,
  33656. bottom: 70/1791
  33657. }
  33658. },
  33659. feralLazing: {
  33660. height: math.unit(1.08, "feet"),
  33661. weight: math.unit(20, "lb"),
  33662. name: "Feral (Lazing)",
  33663. image: {
  33664. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33665. extra: 822/822,
  33666. bottom: 248/1070
  33667. }
  33668. },
  33669. ear: {
  33670. height: math.unit(0.416, "feet"),
  33671. name: "Ear",
  33672. image: {
  33673. source: "./media/characters/vaelophis-nyx/ear.svg"
  33674. }
  33675. },
  33676. eye: {
  33677. height: math.unit(0.0748, "feet"),
  33678. name: "Eye",
  33679. image: {
  33680. source: "./media/characters/vaelophis-nyx/eye.svg"
  33681. }
  33682. },
  33683. mouth: {
  33684. height: math.unit(0.378, "feet"),
  33685. name: "Mouth",
  33686. image: {
  33687. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33688. }
  33689. },
  33690. spade: {
  33691. height: math.unit(0.55, "feet"),
  33692. name: "Spade",
  33693. image: {
  33694. source: "./media/characters/vaelophis-nyx/spade.svg"
  33695. }
  33696. },
  33697. },
  33698. [
  33699. {
  33700. name: "Normal",
  33701. height: math.unit(4 + 2/12, "feet"),
  33702. default: true
  33703. },
  33704. ]
  33705. ))
  33706. characterMakers.push(() => makeCharacter(
  33707. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33708. {
  33709. front: {
  33710. height: math.unit(7, "feet"),
  33711. weight: math.unit(231, "lb"),
  33712. name: "Front",
  33713. image: {
  33714. source: "./media/characters/flux/front.svg",
  33715. extra: 919/871,
  33716. bottom: 0/919
  33717. }
  33718. },
  33719. back: {
  33720. height: math.unit(7, "feet"),
  33721. weight: math.unit(231, "lb"),
  33722. name: "Back",
  33723. image: {
  33724. source: "./media/characters/flux/back.svg",
  33725. extra: 1040/992,
  33726. bottom: 0/1040
  33727. }
  33728. },
  33729. frontDressed: {
  33730. height: math.unit(7, "feet"),
  33731. weight: math.unit(231, "lb"),
  33732. name: "Front (Dressed)",
  33733. image: {
  33734. source: "./media/characters/flux/front-dressed.svg",
  33735. extra: 919/871,
  33736. bottom: 0/919
  33737. }
  33738. },
  33739. feralSide: {
  33740. height: math.unit(5, "feet"),
  33741. weight: math.unit(150, "lb"),
  33742. name: "Feral (Side)",
  33743. image: {
  33744. source: "./media/characters/flux/feral-side.svg",
  33745. extra: 598/528,
  33746. bottom: 28/626
  33747. }
  33748. },
  33749. head: {
  33750. height: math.unit(1.585, "feet"),
  33751. name: "Head",
  33752. image: {
  33753. source: "./media/characters/flux/head.svg"
  33754. }
  33755. },
  33756. headSide: {
  33757. height: math.unit(1.74, "feet"),
  33758. name: "Head (Side)",
  33759. image: {
  33760. source: "./media/characters/flux/head-side.svg"
  33761. }
  33762. },
  33763. headSideFire: {
  33764. height: math.unit(1.76, "feet"),
  33765. name: "Head (Side, Fire)",
  33766. image: {
  33767. source: "./media/characters/flux/head-side-fire.svg"
  33768. }
  33769. },
  33770. },
  33771. [
  33772. {
  33773. name: "Normal",
  33774. height: math.unit(7, "feet"),
  33775. default: true
  33776. },
  33777. ]
  33778. ))
  33779. characterMakers.push(() => makeCharacter(
  33780. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33781. {
  33782. front: {
  33783. height: math.unit(9, "feet"),
  33784. weight: math.unit(1012, "lb"),
  33785. name: "Front",
  33786. image: {
  33787. source: "./media/characters/ulfra-lupae/front.svg",
  33788. extra: 1083/1011,
  33789. bottom: 67/1150
  33790. }
  33791. },
  33792. },
  33793. [
  33794. {
  33795. name: "Micro",
  33796. height: math.unit(6, "inches")
  33797. },
  33798. {
  33799. name: "Socializing",
  33800. height: math.unit(6 + 5/12, "feet")
  33801. },
  33802. {
  33803. name: "Normal",
  33804. height: math.unit(9, "feet"),
  33805. default: true
  33806. },
  33807. {
  33808. name: "Macro",
  33809. height: math.unit(150, "feet")
  33810. },
  33811. ]
  33812. ))
  33813. characterMakers.push(() => makeCharacter(
  33814. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33815. {
  33816. front: {
  33817. height: math.unit(5 + 2/12, "feet"),
  33818. weight: math.unit(120, "lb"),
  33819. name: "Front",
  33820. image: {
  33821. source: "./media/characters/timber/front.svg",
  33822. extra: 2814/2705,
  33823. bottom: 181/2995
  33824. }
  33825. },
  33826. },
  33827. [
  33828. {
  33829. name: "Normal",
  33830. height: math.unit(5 + 2/12, "feet"),
  33831. default: true
  33832. },
  33833. ]
  33834. ))
  33835. characterMakers.push(() => makeCharacter(
  33836. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33837. {
  33838. front: {
  33839. height: math.unit(9, "feet"),
  33840. name: "Front",
  33841. image: {
  33842. source: "./media/characters/nicki/front.svg",
  33843. extra: 1240/990,
  33844. bottom: 45/1285
  33845. },
  33846. form: "anthro",
  33847. default: true
  33848. },
  33849. side: {
  33850. height: math.unit(9, "feet"),
  33851. name: "Side",
  33852. image: {
  33853. source: "./media/characters/nicki/side.svg",
  33854. extra: 1047/973,
  33855. bottom: 61/1108
  33856. },
  33857. form: "anthro"
  33858. },
  33859. back: {
  33860. height: math.unit(9, "feet"),
  33861. name: "Back",
  33862. image: {
  33863. source: "./media/characters/nicki/back.svg",
  33864. extra: 1006/965,
  33865. bottom: 39/1045
  33866. },
  33867. form: "anthro"
  33868. },
  33869. taur: {
  33870. height: math.unit(15, "feet"),
  33871. name: "Taur",
  33872. image: {
  33873. source: "./media/characters/nicki/taur.svg",
  33874. extra: 1592/1347,
  33875. bottom: 0/1592
  33876. },
  33877. form: "taur",
  33878. default: true
  33879. },
  33880. },
  33881. [
  33882. {
  33883. name: "Normal",
  33884. height: math.unit(9, "feet"),
  33885. form: "anthro",
  33886. default: true
  33887. },
  33888. {
  33889. name: "Normal",
  33890. height: math.unit(15, "feet"),
  33891. form: "taur",
  33892. default: true
  33893. }
  33894. ],
  33895. {
  33896. "anthro": {
  33897. name: "Anthro",
  33898. default: true
  33899. },
  33900. "taur": {
  33901. name: "Taur"
  33902. }
  33903. }
  33904. ))
  33905. characterMakers.push(() => makeCharacter(
  33906. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33907. {
  33908. front: {
  33909. height: math.unit(7 + 10/12, "feet"),
  33910. weight: math.unit(3.5, "tons"),
  33911. name: "Front",
  33912. image: {
  33913. source: "./media/characters/lee/front.svg",
  33914. extra: 1773/1615,
  33915. bottom: 86/1859
  33916. }
  33917. },
  33918. hand: {
  33919. height: math.unit(1.78, "feet"),
  33920. name: "Hand",
  33921. image: {
  33922. source: "./media/characters/lee/hand.svg"
  33923. }
  33924. },
  33925. maw: {
  33926. height: math.unit(1.18, "feet"),
  33927. name: "Maw",
  33928. image: {
  33929. source: "./media/characters/lee/maw.svg"
  33930. }
  33931. },
  33932. },
  33933. [
  33934. {
  33935. name: "Normal",
  33936. height: math.unit(7 + 10/12, "feet"),
  33937. default: true
  33938. },
  33939. ]
  33940. ))
  33941. characterMakers.push(() => makeCharacter(
  33942. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33943. {
  33944. front: {
  33945. height: math.unit(9, "feet"),
  33946. name: "Front",
  33947. image: {
  33948. source: "./media/characters/guti/front.svg",
  33949. extra: 4551/4355,
  33950. bottom: 123/4674
  33951. }
  33952. },
  33953. tongue: {
  33954. height: math.unit(1, "feet"),
  33955. name: "Tongue",
  33956. image: {
  33957. source: "./media/characters/guti/tongue.svg"
  33958. }
  33959. },
  33960. paw: {
  33961. height: math.unit(1.18, "feet"),
  33962. name: "Paw",
  33963. image: {
  33964. source: "./media/characters/guti/paw.svg"
  33965. }
  33966. },
  33967. },
  33968. [
  33969. {
  33970. name: "Normal",
  33971. height: math.unit(9, "feet"),
  33972. default: true
  33973. },
  33974. ]
  33975. ))
  33976. characterMakers.push(() => makeCharacter(
  33977. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33978. {
  33979. side: {
  33980. height: math.unit(5, "meters"),
  33981. name: "Side",
  33982. image: {
  33983. source: "./media/characters/vesper/side.svg",
  33984. extra: 1605/1518,
  33985. bottom: 0/1605
  33986. }
  33987. },
  33988. },
  33989. [
  33990. {
  33991. name: "Small",
  33992. height: math.unit(5, "meters")
  33993. },
  33994. {
  33995. name: "Sage",
  33996. height: math.unit(100, "meters"),
  33997. default: true
  33998. },
  33999. {
  34000. name: "Fun Size",
  34001. height: math.unit(600, "meters")
  34002. },
  34003. {
  34004. name: "Goddess",
  34005. height: math.unit(20000, "km")
  34006. },
  34007. {
  34008. name: "Maximum",
  34009. height: math.unit(5, "galaxies")
  34010. },
  34011. ]
  34012. ))
  34013. characterMakers.push(() => makeCharacter(
  34014. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  34015. {
  34016. front: {
  34017. height: math.unit(6 + 3/12, "feet"),
  34018. weight: math.unit(190, "lb"),
  34019. name: "Front",
  34020. image: {
  34021. source: "./media/characters/gawain/front.svg",
  34022. extra: 2222/2139,
  34023. bottom: 90/2312
  34024. }
  34025. },
  34026. back: {
  34027. height: math.unit(6 + 3/12, "feet"),
  34028. weight: math.unit(190, "lb"),
  34029. name: "Back",
  34030. image: {
  34031. source: "./media/characters/gawain/back.svg",
  34032. extra: 2199/2111,
  34033. bottom: 73/2272
  34034. }
  34035. },
  34036. },
  34037. [
  34038. {
  34039. name: "Normal",
  34040. height: math.unit(6 + 3/12, "feet"),
  34041. default: true
  34042. },
  34043. ]
  34044. ))
  34045. characterMakers.push(() => makeCharacter(
  34046. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  34047. {
  34048. side: {
  34049. height: math.unit(3.5, "meters"),
  34050. weight: math.unit(16000, "lb"),
  34051. name: "Side",
  34052. image: {
  34053. source: "./media/characters/dascalti/side.svg",
  34054. extra: 392/273,
  34055. bottom: 47/439
  34056. }
  34057. },
  34058. breath: {
  34059. height: math.unit(7.4, "feet"),
  34060. name: "Breath",
  34061. image: {
  34062. source: "./media/characters/dascalti/breath.svg"
  34063. }
  34064. },
  34065. fed: {
  34066. height: math.unit(3.6, "meters"),
  34067. weight: math.unit(16000, "lb"),
  34068. name: "Fed",
  34069. image: {
  34070. source: "./media/characters/dascalti/fed.svg",
  34071. extra: 1419/820,
  34072. bottom: 95/1514
  34073. }
  34074. },
  34075. },
  34076. [
  34077. {
  34078. name: "Normal",
  34079. height: math.unit(3.5, "meters"),
  34080. default: true
  34081. },
  34082. ]
  34083. ))
  34084. characterMakers.push(() => makeCharacter(
  34085. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  34086. {
  34087. front: {
  34088. height: math.unit(3 + 5/12, "feet"),
  34089. name: "Front",
  34090. image: {
  34091. source: "./media/characters/mauve/front.svg",
  34092. extra: 1126/1033,
  34093. bottom: 65/1191
  34094. }
  34095. },
  34096. side: {
  34097. height: math.unit(3 + 5/12, "feet"),
  34098. name: "Side",
  34099. image: {
  34100. source: "./media/characters/mauve/side.svg",
  34101. extra: 1089/1001,
  34102. bottom: 29/1118
  34103. }
  34104. },
  34105. back: {
  34106. height: math.unit(3 + 5/12, "feet"),
  34107. name: "Back",
  34108. image: {
  34109. source: "./media/characters/mauve/back.svg",
  34110. extra: 1173/1053,
  34111. bottom: 109/1282
  34112. }
  34113. },
  34114. },
  34115. [
  34116. {
  34117. name: "Normal",
  34118. height: math.unit(3 + 5/12, "feet"),
  34119. default: true
  34120. },
  34121. ]
  34122. ))
  34123. characterMakers.push(() => makeCharacter(
  34124. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  34125. {
  34126. front: {
  34127. height: math.unit(6 + 3/12, "feet"),
  34128. weight: math.unit(430, "lb"),
  34129. name: "Front",
  34130. image: {
  34131. source: "./media/characters/carlos/front.svg",
  34132. extra: 1964/1913,
  34133. bottom: 70/2034
  34134. }
  34135. },
  34136. },
  34137. [
  34138. {
  34139. name: "Normal",
  34140. height: math.unit(6 + 3/12, "feet"),
  34141. default: true
  34142. },
  34143. ]
  34144. ))
  34145. characterMakers.push(() => makeCharacter(
  34146. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  34147. {
  34148. back: {
  34149. height: math.unit(5 + 10/12, "feet"),
  34150. weight: math.unit(200, "lb"),
  34151. name: "Back",
  34152. image: {
  34153. source: "./media/characters/jax/back.svg",
  34154. extra: 764/739,
  34155. bottom: 25/789
  34156. }
  34157. },
  34158. },
  34159. [
  34160. {
  34161. name: "Normal",
  34162. height: math.unit(5 + 10/12, "feet"),
  34163. default: true
  34164. },
  34165. ]
  34166. ))
  34167. characterMakers.push(() => makeCharacter(
  34168. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  34169. {
  34170. front: {
  34171. height: math.unit(8, "feet"),
  34172. weight: math.unit(250, "lb"),
  34173. name: "Front",
  34174. image: {
  34175. source: "./media/characters/eikthynir/front.svg",
  34176. extra: 1332/1166,
  34177. bottom: 82/1414
  34178. }
  34179. },
  34180. back: {
  34181. height: math.unit(8, "feet"),
  34182. weight: math.unit(250, "lb"),
  34183. name: "Back",
  34184. image: {
  34185. source: "./media/characters/eikthynir/back.svg",
  34186. extra: 1342/1190,
  34187. bottom: 19/1361
  34188. }
  34189. },
  34190. dick: {
  34191. height: math.unit(2.35, "feet"),
  34192. name: "Dick",
  34193. image: {
  34194. source: "./media/characters/eikthynir/dick.svg"
  34195. }
  34196. },
  34197. },
  34198. [
  34199. {
  34200. name: "Normal",
  34201. height: math.unit(8, "feet"),
  34202. default: true
  34203. },
  34204. ]
  34205. ))
  34206. characterMakers.push(() => makeCharacter(
  34207. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  34208. {
  34209. front: {
  34210. height: math.unit(99, "meters"),
  34211. weight: math.unit(13000, "tons"),
  34212. name: "Front",
  34213. image: {
  34214. source: "./media/characters/zlmos/front.svg",
  34215. extra: 2202/1992,
  34216. bottom: 315/2517
  34217. }
  34218. },
  34219. },
  34220. [
  34221. {
  34222. name: "Macro",
  34223. height: math.unit(99, "meters"),
  34224. default: true
  34225. },
  34226. ]
  34227. ))
  34228. characterMakers.push(() => makeCharacter(
  34229. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  34230. {
  34231. front: {
  34232. height: math.unit(6 + 5/12, "feet"),
  34233. name: "Front",
  34234. image: {
  34235. source: "./media/characters/purri/front.svg",
  34236. extra: 1698/1610,
  34237. bottom: 32/1730
  34238. }
  34239. },
  34240. frontAlt: {
  34241. height: math.unit(6 + 5/12, "feet"),
  34242. name: "Front (Alt)",
  34243. image: {
  34244. source: "./media/characters/purri/front-alt.svg",
  34245. extra: 450/420,
  34246. bottom: 26/476
  34247. }
  34248. },
  34249. boots: {
  34250. height: math.unit(5.5, "feet"),
  34251. name: "Boots",
  34252. image: {
  34253. source: "./media/characters/purri/boots.svg",
  34254. extra: 905/853,
  34255. bottom: 18/923
  34256. },
  34257. extraAttributes: {
  34258. "shoeSize": {
  34259. name: "Shoe Size",
  34260. power: 1,
  34261. type: "length",
  34262. base: math.unit(12, "ShoeSizeMensUS")
  34263. },
  34264. "platformHeight": {
  34265. name: "Platform Height",
  34266. power: 1,
  34267. type: "length",
  34268. base: math.unit(2, "inches")
  34269. },
  34270. }
  34271. },
  34272. lying: {
  34273. height: math.unit(2, "feet"),
  34274. name: "Lying",
  34275. image: {
  34276. source: "./media/characters/purri/lying.svg",
  34277. extra: 940/843,
  34278. bottom: 146/1086
  34279. }
  34280. },
  34281. devious: {
  34282. height: math.unit(1.77, "feet"),
  34283. name: "Devious",
  34284. image: {
  34285. source: "./media/characters/purri/devious.svg",
  34286. extra: 1440/1155,
  34287. bottom: 147/1587
  34288. }
  34289. },
  34290. bean: {
  34291. height: math.unit(1.94, "feet"),
  34292. name: "Bean",
  34293. image: {
  34294. source: "./media/characters/purri/bean.svg"
  34295. }
  34296. },
  34297. },
  34298. [
  34299. {
  34300. name: "Micro",
  34301. height: math.unit(1, "mm")
  34302. },
  34303. {
  34304. name: "Normal",
  34305. height: math.unit(6 + 5/12, "feet"),
  34306. default: true
  34307. },
  34308. {
  34309. name: "Macro :3c",
  34310. height: math.unit(2, "miles")
  34311. },
  34312. ]
  34313. ))
  34314. characterMakers.push(() => makeCharacter(
  34315. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  34316. {
  34317. front: {
  34318. height: math.unit(6 + 2/12, "feet"),
  34319. weight: math.unit(250, "lb"),
  34320. name: "Front",
  34321. image: {
  34322. source: "./media/characters/moonlight/front.svg",
  34323. extra: 1044/908,
  34324. bottom: 56/1100
  34325. }
  34326. },
  34327. feral: {
  34328. height: math.unit(3 + 1/12, "feet"),
  34329. weight: math.unit(50, "kg"),
  34330. name: "Feral",
  34331. image: {
  34332. source: "./media/characters/moonlight/feral.svg",
  34333. extra: 3705/2791,
  34334. bottom: 145/3850
  34335. }
  34336. },
  34337. paw: {
  34338. height: math.unit(1, "feet"),
  34339. name: "Paw",
  34340. image: {
  34341. source: "./media/characters/moonlight/paw.svg"
  34342. }
  34343. },
  34344. paws: {
  34345. height: math.unit(0.98, "feet"),
  34346. name: "Paws",
  34347. image: {
  34348. source: "./media/characters/moonlight/paws.svg",
  34349. extra: 939/939,
  34350. bottom: 50/989
  34351. }
  34352. },
  34353. mouth: {
  34354. height: math.unit(0.48, "feet"),
  34355. name: "Mouth",
  34356. image: {
  34357. source: "./media/characters/moonlight/mouth.svg"
  34358. }
  34359. },
  34360. dick: {
  34361. height: math.unit(1.46, "feet"),
  34362. name: "Dick",
  34363. image: {
  34364. source: "./media/characters/moonlight/dick.svg"
  34365. }
  34366. },
  34367. },
  34368. [
  34369. {
  34370. name: "Normal",
  34371. height: math.unit(6 + 2/12, "feet"),
  34372. default: true
  34373. },
  34374. {
  34375. name: "Macro",
  34376. height: math.unit(300, "feet")
  34377. },
  34378. {
  34379. name: "Macro+",
  34380. height: math.unit(1, "mile")
  34381. },
  34382. {
  34383. name: "Mt. Moon",
  34384. height: math.unit(5, "miles")
  34385. },
  34386. {
  34387. name: "Megamacro",
  34388. height: math.unit(15, "miles")
  34389. },
  34390. ]
  34391. ))
  34392. characterMakers.push(() => makeCharacter(
  34393. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  34394. {
  34395. back: {
  34396. height: math.unit(6, "feet"),
  34397. weight: math.unit(150, "lb"),
  34398. name: "Back",
  34399. image: {
  34400. source: "./media/characters/sylen/back.svg",
  34401. extra: 1335/1273,
  34402. bottom: 107/1442
  34403. }
  34404. },
  34405. },
  34406. [
  34407. {
  34408. name: "Normal",
  34409. height: math.unit(5 + 5/12, "feet")
  34410. },
  34411. {
  34412. name: "Megamacro",
  34413. height: math.unit(3, "miles"),
  34414. default: true
  34415. },
  34416. ]
  34417. ))
  34418. characterMakers.push(() => makeCharacter(
  34419. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  34420. {
  34421. front: {
  34422. height: math.unit(6, "feet"),
  34423. weight: math.unit(190, "lb"),
  34424. name: "Front",
  34425. image: {
  34426. source: "./media/characters/huttser/front.svg",
  34427. extra: 1152/1058,
  34428. bottom: 23/1175
  34429. }
  34430. },
  34431. side: {
  34432. height: math.unit(6, "feet"),
  34433. weight: math.unit(190, "lb"),
  34434. name: "Side",
  34435. image: {
  34436. source: "./media/characters/huttser/side.svg",
  34437. extra: 1174/1065,
  34438. bottom: 18/1192
  34439. }
  34440. },
  34441. back: {
  34442. height: math.unit(6, "feet"),
  34443. weight: math.unit(190, "lb"),
  34444. name: "Back",
  34445. image: {
  34446. source: "./media/characters/huttser/back.svg",
  34447. extra: 1158/1056,
  34448. bottom: 12/1170
  34449. }
  34450. },
  34451. },
  34452. [
  34453. ]
  34454. ))
  34455. characterMakers.push(() => makeCharacter(
  34456. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34457. {
  34458. side: {
  34459. height: math.unit(12 + 9/12, "feet"),
  34460. weight: math.unit(15000, "lb"),
  34461. name: "Side",
  34462. image: {
  34463. source: "./media/characters/faan/side.svg",
  34464. extra: 2747/2697,
  34465. bottom: 0/2747
  34466. }
  34467. },
  34468. front: {
  34469. height: math.unit(12 + 9/12, "feet"),
  34470. weight: math.unit(15000, "lb"),
  34471. name: "Front",
  34472. image: {
  34473. source: "./media/characters/faan/front.svg",
  34474. extra: 607/571,
  34475. bottom: 24/631
  34476. }
  34477. },
  34478. head: {
  34479. height: math.unit(2.85, "feet"),
  34480. name: "Head",
  34481. image: {
  34482. source: "./media/characters/faan/head.svg"
  34483. }
  34484. },
  34485. headAlt: {
  34486. height: math.unit(3.13, "feet"),
  34487. name: "Head-alt",
  34488. image: {
  34489. source: "./media/characters/faan/head-alt.svg"
  34490. }
  34491. },
  34492. },
  34493. [
  34494. {
  34495. name: "Normal",
  34496. height: math.unit(12 + 9/12, "feet"),
  34497. default: true
  34498. },
  34499. ]
  34500. ))
  34501. characterMakers.push(() => makeCharacter(
  34502. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34503. {
  34504. front: {
  34505. height: math.unit(6, "feet"),
  34506. weight: math.unit(300, "lb"),
  34507. name: "Front",
  34508. image: {
  34509. source: "./media/characters/tanio/front.svg",
  34510. extra: 711/673,
  34511. bottom: 25/736
  34512. }
  34513. },
  34514. },
  34515. [
  34516. {
  34517. name: "Normal",
  34518. height: math.unit(6, "feet"),
  34519. default: true
  34520. },
  34521. ]
  34522. ))
  34523. characterMakers.push(() => makeCharacter(
  34524. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34525. {
  34526. front: {
  34527. height: math.unit(3, "inches"),
  34528. name: "Front",
  34529. image: {
  34530. source: "./media/characters/noboru/front.svg",
  34531. extra: 1039/932,
  34532. bottom: 18/1057
  34533. }
  34534. },
  34535. },
  34536. [
  34537. {
  34538. name: "Micro",
  34539. height: math.unit(3, "inches"),
  34540. default: true
  34541. },
  34542. ]
  34543. ))
  34544. characterMakers.push(() => makeCharacter(
  34545. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34546. {
  34547. front: {
  34548. height: math.unit(1.85, "meters"),
  34549. weight: math.unit(80, "kg"),
  34550. name: "Front",
  34551. image: {
  34552. source: "./media/characters/daniel-barrett/front.svg",
  34553. extra: 355/337,
  34554. bottom: 9/364
  34555. }
  34556. },
  34557. },
  34558. [
  34559. {
  34560. name: "Pico",
  34561. height: math.unit(0.0433, "mm")
  34562. },
  34563. {
  34564. name: "Nano",
  34565. height: math.unit(1.5, "mm")
  34566. },
  34567. {
  34568. name: "Micro",
  34569. height: math.unit(5.3, "cm"),
  34570. default: true
  34571. },
  34572. {
  34573. name: "Normal",
  34574. height: math.unit(1.85, "meters")
  34575. },
  34576. {
  34577. name: "Macro",
  34578. height: math.unit(64.7, "meters")
  34579. },
  34580. {
  34581. name: "Megamacro",
  34582. height: math.unit(2.26, "km")
  34583. },
  34584. {
  34585. name: "Gigamacro",
  34586. height: math.unit(79, "km")
  34587. },
  34588. {
  34589. name: "Teramacro",
  34590. height: math.unit(2765, "km")
  34591. },
  34592. {
  34593. name: "Petamacro",
  34594. height: math.unit(96678, "km")
  34595. },
  34596. ]
  34597. ))
  34598. characterMakers.push(() => makeCharacter(
  34599. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34600. {
  34601. front: {
  34602. height: math.unit(30, "meters"),
  34603. weight: math.unit(400, "tons"),
  34604. name: "Front",
  34605. image: {
  34606. source: "./media/characters/zeel/front.svg",
  34607. extra: 2599/2599,
  34608. bottom: 226/2825
  34609. }
  34610. },
  34611. },
  34612. [
  34613. {
  34614. name: "Macro",
  34615. height: math.unit(30, "meters"),
  34616. default: true
  34617. },
  34618. ]
  34619. ))
  34620. characterMakers.push(() => makeCharacter(
  34621. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34622. {
  34623. front: {
  34624. height: math.unit(6 + 7/12, "feet"),
  34625. weight: math.unit(210, "lb"),
  34626. name: "Front",
  34627. image: {
  34628. source: "./media/characters/tarn/front.svg",
  34629. extra: 3517/3220,
  34630. bottom: 91/3608
  34631. }
  34632. },
  34633. back: {
  34634. height: math.unit(6 + 7/12, "feet"),
  34635. weight: math.unit(210, "lb"),
  34636. name: "Back",
  34637. image: {
  34638. source: "./media/characters/tarn/back.svg",
  34639. extra: 3566/3241,
  34640. bottom: 34/3600
  34641. }
  34642. },
  34643. dick: {
  34644. height: math.unit(1.65, "feet"),
  34645. name: "Dick",
  34646. image: {
  34647. source: "./media/characters/tarn/dick.svg"
  34648. }
  34649. },
  34650. paw: {
  34651. height: math.unit(1.80, "feet"),
  34652. name: "Paw",
  34653. image: {
  34654. source: "./media/characters/tarn/paw.svg"
  34655. }
  34656. },
  34657. tongue: {
  34658. height: math.unit(0.97, "feet"),
  34659. name: "Tongue",
  34660. image: {
  34661. source: "./media/characters/tarn/tongue.svg"
  34662. }
  34663. },
  34664. },
  34665. [
  34666. {
  34667. name: "Micro",
  34668. height: math.unit(4, "inches")
  34669. },
  34670. {
  34671. name: "Normal",
  34672. height: math.unit(6 + 7/12, "feet"),
  34673. default: true
  34674. },
  34675. {
  34676. name: "Macro",
  34677. height: math.unit(300, "feet")
  34678. },
  34679. ]
  34680. ))
  34681. characterMakers.push(() => makeCharacter(
  34682. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34683. {
  34684. front: {
  34685. height: math.unit(5 + 7/12, "feet"),
  34686. weight: math.unit(80, "kg"),
  34687. name: "Front",
  34688. image: {
  34689. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34690. extra: 3023/2865,
  34691. bottom: 33/3056
  34692. }
  34693. },
  34694. back: {
  34695. height: math.unit(5 + 7/12, "feet"),
  34696. weight: math.unit(80, "kg"),
  34697. name: "Back",
  34698. image: {
  34699. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34700. extra: 3020/2886,
  34701. bottom: 30/3050
  34702. }
  34703. },
  34704. dick: {
  34705. height: math.unit(0.98, "feet"),
  34706. name: "Dick",
  34707. image: {
  34708. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34709. }
  34710. },
  34711. anatomy: {
  34712. height: math.unit(2.86, "feet"),
  34713. name: "Anatomy",
  34714. image: {
  34715. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  34716. }
  34717. },
  34718. },
  34719. [
  34720. {
  34721. name: "Really Small",
  34722. height: math.unit(2, "inches")
  34723. },
  34724. {
  34725. name: "Micro",
  34726. height: math.unit(5.583, "inches")
  34727. },
  34728. {
  34729. name: "Normal",
  34730. height: math.unit(5 + 7/12, "feet"),
  34731. default: true
  34732. },
  34733. {
  34734. name: "Macro",
  34735. height: math.unit(67, "feet")
  34736. },
  34737. {
  34738. name: "Megamacro",
  34739. height: math.unit(134, "feet")
  34740. },
  34741. ]
  34742. ))
  34743. characterMakers.push(() => makeCharacter(
  34744. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34745. {
  34746. front: {
  34747. height: math.unit(9, "feet"),
  34748. weight: math.unit(120, "lb"),
  34749. name: "Front",
  34750. image: {
  34751. source: "./media/characters/sally/front.svg",
  34752. extra: 1506/1349,
  34753. bottom: 66/1572
  34754. }
  34755. },
  34756. },
  34757. [
  34758. {
  34759. name: "Normal",
  34760. height: math.unit(9, "feet"),
  34761. default: true
  34762. },
  34763. ]
  34764. ))
  34765. characterMakers.push(() => makeCharacter(
  34766. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34767. {
  34768. front: {
  34769. height: math.unit(8, "feet"),
  34770. weight: math.unit(900, "lb"),
  34771. name: "Front",
  34772. image: {
  34773. source: "./media/characters/owen/front.svg",
  34774. extra: 1761/1657,
  34775. bottom: 74/1835
  34776. }
  34777. },
  34778. side: {
  34779. height: math.unit(8, "feet"),
  34780. weight: math.unit(900, "lb"),
  34781. name: "Side",
  34782. image: {
  34783. source: "./media/characters/owen/side.svg",
  34784. extra: 1797/1734,
  34785. bottom: 30/1827
  34786. }
  34787. },
  34788. back: {
  34789. height: math.unit(8, "feet"),
  34790. weight: math.unit(900, "lb"),
  34791. name: "Back",
  34792. image: {
  34793. source: "./media/characters/owen/back.svg",
  34794. extra: 1796/1706,
  34795. bottom: 59/1855
  34796. }
  34797. },
  34798. maw: {
  34799. height: math.unit(1.76, "feet"),
  34800. name: "Maw",
  34801. image: {
  34802. source: "./media/characters/owen/maw.svg"
  34803. }
  34804. },
  34805. },
  34806. [
  34807. {
  34808. name: "Normal",
  34809. height: math.unit(8, "feet"),
  34810. default: true
  34811. },
  34812. ]
  34813. ))
  34814. characterMakers.push(() => makeCharacter(
  34815. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34816. {
  34817. front: {
  34818. height: math.unit(4, "feet"),
  34819. weight: math.unit(400, "lb"),
  34820. name: "Front",
  34821. image: {
  34822. source: "./media/characters/ryth/front.svg",
  34823. extra: 1920/1748,
  34824. bottom: 42/1962
  34825. }
  34826. },
  34827. back: {
  34828. height: math.unit(4, "feet"),
  34829. weight: math.unit(400, "lb"),
  34830. name: "Back",
  34831. image: {
  34832. source: "./media/characters/ryth/back.svg",
  34833. extra: 1897/1690,
  34834. bottom: 89/1986
  34835. }
  34836. },
  34837. mouth: {
  34838. height: math.unit(1.39, "feet"),
  34839. name: "Mouth",
  34840. image: {
  34841. source: "./media/characters/ryth/mouth.svg"
  34842. }
  34843. },
  34844. tailmaw: {
  34845. height: math.unit(1.23, "feet"),
  34846. name: "Tailmaw",
  34847. image: {
  34848. source: "./media/characters/ryth/tailmaw.svg"
  34849. }
  34850. },
  34851. goia: {
  34852. height: math.unit(4, "meters"),
  34853. weight: math.unit(10800, "lb"),
  34854. name: "Goia",
  34855. image: {
  34856. source: "./media/characters/ryth/goia.svg",
  34857. extra: 745/640,
  34858. bottom: 107/852
  34859. }
  34860. },
  34861. goiaFront: {
  34862. height: math.unit(4, "meters"),
  34863. weight: math.unit(10800, "lb"),
  34864. name: "Goia (Front)",
  34865. image: {
  34866. source: "./media/characters/ryth/goia-front.svg",
  34867. extra: 750/586,
  34868. bottom: 114/864
  34869. }
  34870. },
  34871. goiaMaw: {
  34872. height: math.unit(5.55, "feet"),
  34873. name: "Goia Maw",
  34874. image: {
  34875. source: "./media/characters/ryth/goia-maw.svg"
  34876. }
  34877. },
  34878. goiaForepaw: {
  34879. height: math.unit(3.5, "feet"),
  34880. name: "Goia Forepaw",
  34881. image: {
  34882. source: "./media/characters/ryth/goia-forepaw.svg"
  34883. }
  34884. },
  34885. goiaHindpaw: {
  34886. height: math.unit(5.55, "feet"),
  34887. name: "Goia Hindpaw",
  34888. image: {
  34889. source: "./media/characters/ryth/goia-hindpaw.svg"
  34890. }
  34891. },
  34892. },
  34893. [
  34894. {
  34895. name: "Normal",
  34896. height: math.unit(4, "feet"),
  34897. default: true
  34898. },
  34899. ]
  34900. ))
  34901. characterMakers.push(() => makeCharacter(
  34902. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34903. {
  34904. front: {
  34905. height: math.unit(7, "feet"),
  34906. weight: math.unit(180, "lb"),
  34907. name: "Front",
  34908. image: {
  34909. source: "./media/characters/necrolance/front.svg",
  34910. extra: 1062/947,
  34911. bottom: 41/1103
  34912. }
  34913. },
  34914. back: {
  34915. height: math.unit(7, "feet"),
  34916. weight: math.unit(180, "lb"),
  34917. name: "Back",
  34918. image: {
  34919. source: "./media/characters/necrolance/back.svg",
  34920. extra: 1045/984,
  34921. bottom: 14/1059
  34922. }
  34923. },
  34924. wing: {
  34925. height: math.unit(2.67, "feet"),
  34926. name: "Wing",
  34927. image: {
  34928. source: "./media/characters/necrolance/wing.svg"
  34929. }
  34930. },
  34931. },
  34932. [
  34933. {
  34934. name: "Normal",
  34935. height: math.unit(7, "feet"),
  34936. default: true
  34937. },
  34938. ]
  34939. ))
  34940. characterMakers.push(() => makeCharacter(
  34941. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34942. {
  34943. front: {
  34944. height: math.unit(76, "meters"),
  34945. weight: math.unit(30000, "tons"),
  34946. name: "Front",
  34947. image: {
  34948. source: "./media/characters/tyler/front.svg",
  34949. extra: 1640/1640,
  34950. bottom: 114/1754
  34951. }
  34952. },
  34953. },
  34954. [
  34955. {
  34956. name: "Macro",
  34957. height: math.unit(76, "meters"),
  34958. default: true
  34959. },
  34960. ]
  34961. ))
  34962. characterMakers.push(() => makeCharacter(
  34963. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34964. {
  34965. front: {
  34966. height: math.unit(4 + 11/12, "feet"),
  34967. weight: math.unit(132, "lb"),
  34968. name: "Front",
  34969. image: {
  34970. source: "./media/characters/icey/front.svg",
  34971. extra: 2750/2550,
  34972. bottom: 33/2783
  34973. }
  34974. },
  34975. back: {
  34976. height: math.unit(4 + 11/12, "feet"),
  34977. weight: math.unit(132, "lb"),
  34978. name: "Back",
  34979. image: {
  34980. source: "./media/characters/icey/back.svg",
  34981. extra: 2624/2481,
  34982. bottom: 35/2659
  34983. }
  34984. },
  34985. },
  34986. [
  34987. {
  34988. name: "Normal",
  34989. height: math.unit(4 + 11/12, "feet"),
  34990. default: true
  34991. },
  34992. ]
  34993. ))
  34994. characterMakers.push(() => makeCharacter(
  34995. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34996. {
  34997. front: {
  34998. height: math.unit(100, "feet"),
  34999. weight: math.unit(0, "lb"),
  35000. name: "Front",
  35001. image: {
  35002. source: "./media/characters/smile/front.svg",
  35003. extra: 2983/2912,
  35004. bottom: 162/3145
  35005. }
  35006. },
  35007. back: {
  35008. height: math.unit(100, "feet"),
  35009. weight: math.unit(0, "lb"),
  35010. name: "Back",
  35011. image: {
  35012. source: "./media/characters/smile/back.svg",
  35013. extra: 3143/3031,
  35014. bottom: 91/3234
  35015. }
  35016. },
  35017. head: {
  35018. height: math.unit(26.3, "feet"),
  35019. weight: math.unit(0, "lb"),
  35020. name: "Head",
  35021. image: {
  35022. source: "./media/characters/smile/head.svg"
  35023. }
  35024. },
  35025. collar: {
  35026. height: math.unit(5.3, "feet"),
  35027. weight: math.unit(0, "lb"),
  35028. name: "Collar",
  35029. image: {
  35030. source: "./media/characters/smile/collar.svg"
  35031. }
  35032. },
  35033. },
  35034. [
  35035. {
  35036. name: "Macro",
  35037. height: math.unit(100, "feet"),
  35038. default: true
  35039. },
  35040. ]
  35041. ))
  35042. characterMakers.push(() => makeCharacter(
  35043. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  35044. {
  35045. dragon: {
  35046. height: math.unit(26, "feet"),
  35047. weight: math.unit(36, "tons"),
  35048. name: "Dragon",
  35049. image: {
  35050. source: "./media/characters/arimphae/dragon.svg",
  35051. extra: 1574/983,
  35052. bottom: 357/1931
  35053. }
  35054. },
  35055. drake: {
  35056. height: math.unit(9, "feet"),
  35057. weight: math.unit(1.5, "tons"),
  35058. name: "Drake",
  35059. image: {
  35060. source: "./media/characters/arimphae/drake.svg",
  35061. extra: 1120/925,
  35062. bottom: 435/1555
  35063. }
  35064. },
  35065. },
  35066. [
  35067. {
  35068. name: "Small",
  35069. height: math.unit(26*5/9, "feet")
  35070. },
  35071. {
  35072. name: "Normal",
  35073. height: math.unit(26, "feet"),
  35074. default: true
  35075. },
  35076. ]
  35077. ))
  35078. characterMakers.push(() => makeCharacter(
  35079. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  35080. {
  35081. front: {
  35082. height: math.unit(8 + 9/12, "feet"),
  35083. name: "Front",
  35084. image: {
  35085. source: "./media/characters/xander/front.svg",
  35086. extra: 1237/974,
  35087. bottom: 94/1331
  35088. }
  35089. },
  35090. },
  35091. [
  35092. {
  35093. name: "Normal",
  35094. height: math.unit(8 + 9/12, "feet"),
  35095. default: true
  35096. },
  35097. {
  35098. name: "Gaze Grabber",
  35099. height: math.unit(13 + 8/12, "feet")
  35100. },
  35101. {
  35102. name: "Jaw Dropper",
  35103. height: math.unit(27, "feet")
  35104. },
  35105. {
  35106. name: "Show Stopper",
  35107. height: math.unit(136, "feet")
  35108. },
  35109. {
  35110. name: "Superstar",
  35111. height: math.unit(1.9e6, "miles")
  35112. },
  35113. ]
  35114. ))
  35115. characterMakers.push(() => makeCharacter(
  35116. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  35117. {
  35118. side: {
  35119. height: math.unit(2100, "feet"),
  35120. name: "Side",
  35121. image: {
  35122. source: "./media/characters/osiris/side.svg",
  35123. extra: 1105/939,
  35124. bottom: 167/1272
  35125. }
  35126. },
  35127. },
  35128. [
  35129. {
  35130. name: "Macro",
  35131. height: math.unit(2100, "feet"),
  35132. default: true
  35133. },
  35134. ]
  35135. ))
  35136. characterMakers.push(() => makeCharacter(
  35137. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  35138. {
  35139. front: {
  35140. height: math.unit(6 + 8/12, "feet"),
  35141. weight: math.unit(225, "lb"),
  35142. name: "Front",
  35143. image: {
  35144. source: "./media/characters/rhys-londe/front.svg",
  35145. extra: 2258/2141,
  35146. bottom: 188/2446
  35147. }
  35148. },
  35149. back: {
  35150. height: math.unit(6 + 8/12, "feet"),
  35151. weight: math.unit(225, "lb"),
  35152. name: "Back",
  35153. image: {
  35154. source: "./media/characters/rhys-londe/back.svg",
  35155. extra: 2237/2137,
  35156. bottom: 63/2300
  35157. }
  35158. },
  35159. frontNsfw: {
  35160. height: math.unit(6 + 8/12, "feet"),
  35161. weight: math.unit(225, "lb"),
  35162. name: "Front (NSFW)",
  35163. image: {
  35164. source: "./media/characters/rhys-londe/front-nsfw.svg",
  35165. extra: 2258/2141,
  35166. bottom: 188/2446
  35167. }
  35168. },
  35169. backNsfw: {
  35170. height: math.unit(6 + 8/12, "feet"),
  35171. weight: math.unit(225, "lb"),
  35172. name: "Back (NSFW)",
  35173. image: {
  35174. source: "./media/characters/rhys-londe/back-nsfw.svg",
  35175. extra: 2237/2137,
  35176. bottom: 63/2300
  35177. }
  35178. },
  35179. dick: {
  35180. height: math.unit(30, "inches"),
  35181. name: "Dick",
  35182. image: {
  35183. source: "./media/characters/rhys-londe/dick.svg"
  35184. }
  35185. },
  35186. maw: {
  35187. height: math.unit(1.6, "feet"),
  35188. name: "Maw",
  35189. image: {
  35190. source: "./media/characters/rhys-londe/maw.svg"
  35191. }
  35192. },
  35193. },
  35194. [
  35195. {
  35196. name: "Normal",
  35197. height: math.unit(6 + 8/12, "feet"),
  35198. default: true
  35199. },
  35200. ]
  35201. ))
  35202. characterMakers.push(() => makeCharacter(
  35203. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  35204. {
  35205. front: {
  35206. height: math.unit(3 + 10/12, "feet"),
  35207. weight: math.unit(90, "lb"),
  35208. name: "Front",
  35209. image: {
  35210. source: "./media/characters/taivas-ensim/front.svg",
  35211. extra: 1327/1216,
  35212. bottom: 96/1423
  35213. }
  35214. },
  35215. back: {
  35216. height: math.unit(3 + 10/12, "feet"),
  35217. weight: math.unit(90, "lb"),
  35218. name: "Back",
  35219. image: {
  35220. source: "./media/characters/taivas-ensim/back.svg",
  35221. extra: 1355/1247,
  35222. bottom: 11/1366
  35223. }
  35224. },
  35225. frontNsfw: {
  35226. height: math.unit(3 + 10/12, "feet"),
  35227. weight: math.unit(90, "lb"),
  35228. name: "Front (NSFW)",
  35229. image: {
  35230. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  35231. extra: 1327/1216,
  35232. bottom: 96/1423
  35233. }
  35234. },
  35235. backNsfw: {
  35236. height: math.unit(3 + 10/12, "feet"),
  35237. weight: math.unit(90, "lb"),
  35238. name: "Back (NSFW)",
  35239. image: {
  35240. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  35241. extra: 1355/1247,
  35242. bottom: 11/1366
  35243. }
  35244. },
  35245. },
  35246. [
  35247. {
  35248. name: "Normal",
  35249. height: math.unit(3 + 10/12, "feet"),
  35250. default: true
  35251. },
  35252. ]
  35253. ))
  35254. characterMakers.push(() => makeCharacter(
  35255. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  35256. {
  35257. front: {
  35258. height: math.unit(9 + 6/12, "feet"),
  35259. weight: math.unit(940, "lb"),
  35260. name: "Front",
  35261. image: {
  35262. source: "./media/characters/byliss/front.svg",
  35263. extra: 1327/1290,
  35264. bottom: 82/1409
  35265. }
  35266. },
  35267. back: {
  35268. height: math.unit(9 + 6/12, "feet"),
  35269. weight: math.unit(940, "lb"),
  35270. name: "Back",
  35271. image: {
  35272. source: "./media/characters/byliss/back.svg",
  35273. extra: 1376/1349,
  35274. bottom: 9/1385
  35275. }
  35276. },
  35277. frontNsfw: {
  35278. height: math.unit(9 + 6/12, "feet"),
  35279. weight: math.unit(940, "lb"),
  35280. name: "Front (NSFW)",
  35281. image: {
  35282. source: "./media/characters/byliss/front-nsfw.svg",
  35283. extra: 1327/1290,
  35284. bottom: 82/1409
  35285. }
  35286. },
  35287. backNsfw: {
  35288. height: math.unit(9 + 6/12, "feet"),
  35289. weight: math.unit(940, "lb"),
  35290. name: "Back (NSFW)",
  35291. image: {
  35292. source: "./media/characters/byliss/back-nsfw.svg",
  35293. extra: 1376/1349,
  35294. bottom: 9/1385
  35295. }
  35296. },
  35297. },
  35298. [
  35299. {
  35300. name: "Normal",
  35301. height: math.unit(9 + 6/12, "feet"),
  35302. default: true
  35303. },
  35304. ]
  35305. ))
  35306. characterMakers.push(() => makeCharacter(
  35307. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  35308. {
  35309. front: {
  35310. height: math.unit(5 + 2/12, "feet"),
  35311. weight: math.unit(200, "lb"),
  35312. name: "Front",
  35313. image: {
  35314. source: "./media/characters/noraly/front.svg",
  35315. extra: 4985/4773,
  35316. bottom: 150/5135
  35317. }
  35318. },
  35319. full: {
  35320. height: math.unit(5 + 2/12, "feet"),
  35321. weight: math.unit(164, "lb"),
  35322. name: "Full",
  35323. image: {
  35324. source: "./media/characters/noraly/full.svg",
  35325. extra: 1114/1059,
  35326. bottom: 35/1149
  35327. }
  35328. },
  35329. fuller: {
  35330. height: math.unit(5 + 2/12, "feet"),
  35331. weight: math.unit(230, "lb"),
  35332. name: "Fuller",
  35333. image: {
  35334. source: "./media/characters/noraly/fuller.svg",
  35335. extra: 1114/1059,
  35336. bottom: 35/1149
  35337. }
  35338. },
  35339. fullest: {
  35340. height: math.unit(5 + 2/12, "feet"),
  35341. weight: math.unit(300, "lb"),
  35342. name: "Fullest",
  35343. image: {
  35344. source: "./media/characters/noraly/fullest.svg",
  35345. extra: 1114/1059,
  35346. bottom: 35/1149
  35347. }
  35348. },
  35349. },
  35350. [
  35351. {
  35352. name: "Normal",
  35353. height: math.unit(5 + 2/12, "feet"),
  35354. default: true
  35355. },
  35356. ]
  35357. ))
  35358. characterMakers.push(() => makeCharacter(
  35359. { name: "Pera", species: ["snake"], tags: ["naga"] },
  35360. {
  35361. front: {
  35362. height: math.unit(5 + 2/12, "feet"),
  35363. weight: math.unit(210, "lb"),
  35364. name: "Front",
  35365. image: {
  35366. source: "./media/characters/pera/front.svg",
  35367. extra: 1560/1531,
  35368. bottom: 165/1725
  35369. }
  35370. },
  35371. back: {
  35372. height: math.unit(5 + 2/12, "feet"),
  35373. weight: math.unit(210, "lb"),
  35374. name: "Back",
  35375. image: {
  35376. source: "./media/characters/pera/back.svg",
  35377. extra: 1523/1493,
  35378. bottom: 152/1675
  35379. }
  35380. },
  35381. dick: {
  35382. height: math.unit(2.4, "feet"),
  35383. name: "Dick",
  35384. image: {
  35385. source: "./media/characters/pera/dick.svg"
  35386. }
  35387. },
  35388. },
  35389. [
  35390. {
  35391. name: "Normal",
  35392. height: math.unit(5 + 2/12, "feet"),
  35393. default: true
  35394. },
  35395. ]
  35396. ))
  35397. characterMakers.push(() => makeCharacter(
  35398. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  35399. {
  35400. front: {
  35401. height: math.unit(12, "feet"),
  35402. weight: math.unit(3200, "lb"),
  35403. name: "Front",
  35404. image: {
  35405. source: "./media/characters/julian/front.svg",
  35406. extra: 2962/2701,
  35407. bottom: 184/3146
  35408. }
  35409. },
  35410. maw: {
  35411. height: math.unit(5.35, "feet"),
  35412. name: "Maw",
  35413. image: {
  35414. source: "./media/characters/julian/maw.svg"
  35415. }
  35416. },
  35417. paw: {
  35418. height: math.unit(3.07, "feet"),
  35419. name: "Paw",
  35420. image: {
  35421. source: "./media/characters/julian/paw.svg"
  35422. }
  35423. },
  35424. },
  35425. [
  35426. {
  35427. name: "Default",
  35428. height: math.unit(12, "feet"),
  35429. default: true
  35430. },
  35431. {
  35432. name: "Big",
  35433. height: math.unit(50, "feet")
  35434. },
  35435. {
  35436. name: "Really Big",
  35437. height: math.unit(1, "mile")
  35438. },
  35439. {
  35440. name: "Extremely Big",
  35441. height: math.unit(100, "miles")
  35442. },
  35443. {
  35444. name: "Planet Hugger",
  35445. height: math.unit(200, "megameters")
  35446. },
  35447. {
  35448. name: "Unreasonably Big",
  35449. height: math.unit(1e300, "meters")
  35450. },
  35451. ]
  35452. ))
  35453. characterMakers.push(() => makeCharacter(
  35454. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35455. {
  35456. solgooleo: {
  35457. height: math.unit(4, "meters"),
  35458. weight: math.unit(6000*1.5, "kg"),
  35459. volume: math.unit(6000, "liters"),
  35460. name: "Solgooleo",
  35461. image: {
  35462. source: "./media/characters/pi/solgooleo.svg",
  35463. extra: 388/331,
  35464. bottom: 29/417
  35465. }
  35466. },
  35467. },
  35468. [
  35469. {
  35470. name: "Normal",
  35471. height: math.unit(4, "meters"),
  35472. default: true
  35473. },
  35474. ]
  35475. ))
  35476. characterMakers.push(() => makeCharacter(
  35477. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35478. {
  35479. front: {
  35480. height: math.unit(8, "feet"),
  35481. weight: math.unit(4, "tons"),
  35482. name: "Front",
  35483. image: {
  35484. source: "./media/characters/shaun/front.svg",
  35485. extra: 503/495,
  35486. bottom: 20/523
  35487. }
  35488. },
  35489. back: {
  35490. height: math.unit(8, "feet"),
  35491. weight: math.unit(4, "tons"),
  35492. name: "Back",
  35493. image: {
  35494. source: "./media/characters/shaun/back.svg",
  35495. extra: 487/480,
  35496. bottom: 20/507
  35497. }
  35498. },
  35499. },
  35500. [
  35501. {
  35502. name: "Lorg",
  35503. height: math.unit(8, "feet"),
  35504. default: true
  35505. },
  35506. ]
  35507. ))
  35508. characterMakers.push(() => makeCharacter(
  35509. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35510. {
  35511. frontAnthro: {
  35512. height: math.unit(7, "feet"),
  35513. name: "Front",
  35514. image: {
  35515. source: "./media/characters/sini/front-anthro.svg",
  35516. extra: 726/678,
  35517. bottom: 35/761
  35518. },
  35519. form: "anthro",
  35520. default: true
  35521. },
  35522. backAnthro: {
  35523. height: math.unit(7, "feet"),
  35524. name: "Back",
  35525. image: {
  35526. source: "./media/characters/sini/back-anthro.svg",
  35527. extra: 743/701,
  35528. bottom: 12/755
  35529. },
  35530. form: "anthro",
  35531. },
  35532. frontAnthroNsfw: {
  35533. height: math.unit(7, "feet"),
  35534. name: "Front (NSFW)",
  35535. image: {
  35536. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35537. extra: 726/678,
  35538. bottom: 35/761
  35539. },
  35540. form: "anthro"
  35541. },
  35542. backAnthroNsfw: {
  35543. height: math.unit(7, "feet"),
  35544. name: "Back (NSFW)",
  35545. image: {
  35546. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35547. extra: 743/701,
  35548. bottom: 12/755
  35549. },
  35550. form: "anthro",
  35551. },
  35552. mawAnthro: {
  35553. height: math.unit(2.14, "feet"),
  35554. name: "Maw",
  35555. image: {
  35556. source: "./media/characters/sini/maw-anthro.svg"
  35557. },
  35558. form: "anthro"
  35559. },
  35560. dick: {
  35561. height: math.unit(1.45, "feet"),
  35562. name: "Dick",
  35563. image: {
  35564. source: "./media/characters/sini/dick-anthro.svg"
  35565. },
  35566. form: "anthro"
  35567. },
  35568. feral: {
  35569. height: math.unit(16, "feet"),
  35570. name: "Feral",
  35571. image: {
  35572. source: "./media/characters/sini/feral.svg",
  35573. extra: 814/605,
  35574. bottom: 11/825
  35575. },
  35576. form: "feral",
  35577. default: true
  35578. },
  35579. feralNsfw: {
  35580. height: math.unit(16, "feet"),
  35581. name: "Feral (NSFW)",
  35582. image: {
  35583. source: "./media/characters/sini/feral-nsfw.svg",
  35584. extra: 814/605,
  35585. bottom: 11/825
  35586. },
  35587. form: "feral"
  35588. },
  35589. mawFeral: {
  35590. height: math.unit(5.66, "feet"),
  35591. name: "Maw",
  35592. image: {
  35593. source: "./media/characters/sini/maw-feral.svg"
  35594. },
  35595. form: "feral",
  35596. },
  35597. pawFeral: {
  35598. height: math.unit(5.17, "feet"),
  35599. name: "Paw",
  35600. image: {
  35601. source: "./media/characters/sini/paw-feral.svg"
  35602. },
  35603. form: "feral",
  35604. },
  35605. rumpFeral: {
  35606. height: math.unit(13.11, "feet"),
  35607. name: "Rump",
  35608. image: {
  35609. source: "./media/characters/sini/rump-feral.svg"
  35610. },
  35611. form: "feral",
  35612. },
  35613. dickFeral: {
  35614. height: math.unit(1, "feet"),
  35615. name: "Dick",
  35616. image: {
  35617. source: "./media/characters/sini/dick-feral.svg"
  35618. },
  35619. form: "feral",
  35620. },
  35621. eyeFeral: {
  35622. height: math.unit(1.23, "feet"),
  35623. name: "Eye",
  35624. image: {
  35625. source: "./media/characters/sini/eye-feral.svg"
  35626. },
  35627. form: "feral",
  35628. },
  35629. },
  35630. [
  35631. {
  35632. name: "Normal",
  35633. height: math.unit(7, "feet"),
  35634. default: true,
  35635. form: "anthro"
  35636. },
  35637. {
  35638. name: "Normal",
  35639. height: math.unit(16, "feet"),
  35640. default: true,
  35641. form: "feral"
  35642. },
  35643. ],
  35644. {
  35645. "anthro": {
  35646. name: "Anthro",
  35647. default: true
  35648. },
  35649. "feral": {
  35650. name: "Feral",
  35651. }
  35652. }
  35653. ))
  35654. characterMakers.push(() => makeCharacter(
  35655. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35656. {
  35657. side: {
  35658. height: math.unit(47.2, "meters"),
  35659. weight: math.unit(10000, "tons"),
  35660. name: "Side",
  35661. image: {
  35662. source: "./media/characters/raylldo/side.svg",
  35663. extra: 2363/642,
  35664. bottom: 221/2584
  35665. }
  35666. },
  35667. top: {
  35668. height: math.unit(240, "meters"),
  35669. weight: math.unit(10000, "tons"),
  35670. name: "Top",
  35671. image: {
  35672. source: "./media/characters/raylldo/top.svg"
  35673. }
  35674. },
  35675. bottom: {
  35676. height: math.unit(240, "meters"),
  35677. weight: math.unit(10000, "tons"),
  35678. name: "Bottom",
  35679. image: {
  35680. source: "./media/characters/raylldo/bottom.svg"
  35681. }
  35682. },
  35683. head: {
  35684. height: math.unit(38.6, "meters"),
  35685. name: "Head",
  35686. image: {
  35687. source: "./media/characters/raylldo/head.svg",
  35688. extra: 1335/1112,
  35689. bottom: 0/1335
  35690. }
  35691. },
  35692. maw: {
  35693. height: math.unit(16.37, "meters"),
  35694. name: "Maw",
  35695. image: {
  35696. source: "./media/characters/raylldo/maw.svg",
  35697. extra: 883/660,
  35698. bottom: 0/883
  35699. },
  35700. extraAttributes: {
  35701. preyCapacity: {
  35702. name: "Capacity",
  35703. power: 3,
  35704. type: "volume",
  35705. base: math.unit(1000, "people")
  35706. },
  35707. tongueSize: {
  35708. name: "Tongue Size",
  35709. power: 2,
  35710. type: "area",
  35711. base: math.unit(21, "m^2")
  35712. }
  35713. }
  35714. },
  35715. forepaw: {
  35716. height: math.unit(18, "meters"),
  35717. name: "Forepaw",
  35718. image: {
  35719. source: "./media/characters/raylldo/forepaw.svg"
  35720. }
  35721. },
  35722. hindpaw: {
  35723. height: math.unit(23, "meters"),
  35724. name: "Hindpaw",
  35725. image: {
  35726. source: "./media/characters/raylldo/hindpaw.svg"
  35727. }
  35728. },
  35729. genitals: {
  35730. height: math.unit(42, "meters"),
  35731. name: "Genitals",
  35732. image: {
  35733. source: "./media/characters/raylldo/genitals.svg"
  35734. }
  35735. },
  35736. },
  35737. [
  35738. {
  35739. name: "Normal",
  35740. height: math.unit(47.2, "meters"),
  35741. default: true
  35742. },
  35743. ]
  35744. ))
  35745. characterMakers.push(() => makeCharacter(
  35746. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35747. {
  35748. anthroFront: {
  35749. height: math.unit(9, "feet"),
  35750. weight: math.unit(600, "lb"),
  35751. name: "Anthro (Front)",
  35752. image: {
  35753. source: "./media/characters/glint/anthro-front.svg",
  35754. extra: 1097/1018,
  35755. bottom: 28/1125
  35756. }
  35757. },
  35758. anthroBack: {
  35759. height: math.unit(9, "feet"),
  35760. weight: math.unit(600, "lb"),
  35761. name: "Anthro (Back)",
  35762. image: {
  35763. source: "./media/characters/glint/anthro-back.svg",
  35764. extra: 1154/997,
  35765. bottom: 36/1190
  35766. }
  35767. },
  35768. feral: {
  35769. height: math.unit(11, "feet"),
  35770. weight: math.unit(50000, "lb"),
  35771. name: "Feral",
  35772. image: {
  35773. source: "./media/characters/glint/feral.svg",
  35774. extra: 3035/1585,
  35775. bottom: 1169/4204
  35776. }
  35777. },
  35778. dickAnthro: {
  35779. height: math.unit(0.7, "meters"),
  35780. name: "Dick (Anthro)",
  35781. image: {
  35782. source: "./media/characters/glint/dick-anthro.svg"
  35783. }
  35784. },
  35785. dickFeral: {
  35786. height: math.unit(2.65, "meters"),
  35787. name: "Dick (Feral)",
  35788. image: {
  35789. source: "./media/characters/glint/dick-feral.svg"
  35790. }
  35791. },
  35792. slitHidden: {
  35793. height: math.unit(5.85, "meters"),
  35794. name: "Slit (Hidden)",
  35795. image: {
  35796. source: "./media/characters/glint/slit-hidden.svg"
  35797. }
  35798. },
  35799. slitErect: {
  35800. height: math.unit(5.85, "meters"),
  35801. name: "Slit (Erect)",
  35802. image: {
  35803. source: "./media/characters/glint/slit-erect.svg"
  35804. }
  35805. },
  35806. mawAnthro: {
  35807. height: math.unit(0.63, "meters"),
  35808. name: "Maw (Anthro)",
  35809. image: {
  35810. source: "./media/characters/glint/maw.svg"
  35811. }
  35812. },
  35813. mawFeral: {
  35814. height: math.unit(2.89, "meters"),
  35815. name: "Maw (Feral)",
  35816. image: {
  35817. source: "./media/characters/glint/maw.svg"
  35818. }
  35819. },
  35820. },
  35821. [
  35822. {
  35823. name: "Normal",
  35824. height: math.unit(9, "feet"),
  35825. default: true
  35826. },
  35827. ]
  35828. ))
  35829. characterMakers.push(() => makeCharacter(
  35830. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35831. {
  35832. side: {
  35833. height: math.unit(15, "feet"),
  35834. weight: math.unit(5000, "kg"),
  35835. name: "Side",
  35836. image: {
  35837. source: "./media/characters/kairne/side.svg",
  35838. extra: 979/811,
  35839. bottom: 13/992
  35840. }
  35841. },
  35842. front: {
  35843. height: math.unit(15, "feet"),
  35844. weight: math.unit(5000, "kg"),
  35845. name: "Front",
  35846. image: {
  35847. source: "./media/characters/kairne/front.svg",
  35848. extra: 908/814,
  35849. bottom: 26/934
  35850. }
  35851. },
  35852. sideNsfw: {
  35853. height: math.unit(15, "feet"),
  35854. weight: math.unit(5000, "kg"),
  35855. name: "Side (NSFW)",
  35856. image: {
  35857. source: "./media/characters/kairne/side-nsfw.svg",
  35858. extra: 979/811,
  35859. bottom: 13/992
  35860. }
  35861. },
  35862. frontNsfw: {
  35863. height: math.unit(15, "feet"),
  35864. weight: math.unit(5000, "kg"),
  35865. name: "Front (NSFW)",
  35866. image: {
  35867. source: "./media/characters/kairne/front-nsfw.svg",
  35868. extra: 908/814,
  35869. bottom: 26/934
  35870. }
  35871. },
  35872. dickCaged: {
  35873. height: math.unit(0.65, "meters"),
  35874. name: "Dick-caged",
  35875. image: {
  35876. source: "./media/characters/kairne/dick-caged.svg"
  35877. }
  35878. },
  35879. dick: {
  35880. height: math.unit(0.79, "meters"),
  35881. name: "Dick",
  35882. image: {
  35883. source: "./media/characters/kairne/dick.svg"
  35884. }
  35885. },
  35886. genitals: {
  35887. height: math.unit(1.29, "meters"),
  35888. name: "Genitals",
  35889. image: {
  35890. source: "./media/characters/kairne/genitals.svg"
  35891. }
  35892. },
  35893. maw: {
  35894. height: math.unit(1.73, "meters"),
  35895. name: "Maw",
  35896. image: {
  35897. source: "./media/characters/kairne/maw.svg"
  35898. }
  35899. },
  35900. },
  35901. [
  35902. {
  35903. name: "Normal",
  35904. height: math.unit(15, "feet"),
  35905. default: true
  35906. },
  35907. ]
  35908. ))
  35909. characterMakers.push(() => makeCharacter(
  35910. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35911. {
  35912. front: {
  35913. height: math.unit(5 + 8/12, "feet"),
  35914. weight: math.unit(139, "lb"),
  35915. name: "Front",
  35916. image: {
  35917. source: "./media/characters/biscuit-jackal/front.svg",
  35918. extra: 2106/1961,
  35919. bottom: 58/2164
  35920. }
  35921. },
  35922. back: {
  35923. height: math.unit(5 + 8/12, "feet"),
  35924. weight: math.unit(139, "lb"),
  35925. name: "Back",
  35926. image: {
  35927. source: "./media/characters/biscuit-jackal/back.svg",
  35928. extra: 2132/1976,
  35929. bottom: 57/2189
  35930. }
  35931. },
  35932. werejackal: {
  35933. height: math.unit(6 + 3/12, "feet"),
  35934. weight: math.unit(188, "lb"),
  35935. name: "Werejackal",
  35936. image: {
  35937. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35938. extra: 2373/2178,
  35939. bottom: 53/2426
  35940. }
  35941. },
  35942. },
  35943. [
  35944. {
  35945. name: "Normal",
  35946. height: math.unit(5 + 8/12, "feet"),
  35947. default: true
  35948. },
  35949. ]
  35950. ))
  35951. characterMakers.push(() => makeCharacter(
  35952. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35953. {
  35954. front: {
  35955. height: math.unit(140, "cm"),
  35956. weight: math.unit(45, "kg"),
  35957. name: "Front",
  35958. image: {
  35959. source: "./media/characters/tayra-white/front.svg",
  35960. extra: 2229/2192,
  35961. bottom: 75/2304
  35962. }
  35963. },
  35964. },
  35965. [
  35966. {
  35967. name: "Normal",
  35968. height: math.unit(140, "cm"),
  35969. default: true
  35970. },
  35971. ]
  35972. ))
  35973. characterMakers.push(() => makeCharacter(
  35974. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35975. {
  35976. front: {
  35977. height: math.unit(4 + 5/12, "feet"),
  35978. name: "Front",
  35979. image: {
  35980. source: "./media/characters/scoop/front.svg",
  35981. extra: 1257/1136,
  35982. bottom: 69/1326
  35983. }
  35984. },
  35985. back: {
  35986. height: math.unit(4 + 5/12, "feet"),
  35987. name: "Back",
  35988. image: {
  35989. source: "./media/characters/scoop/back.svg",
  35990. extra: 1321/1152,
  35991. bottom: 32/1353
  35992. }
  35993. },
  35994. maw: {
  35995. height: math.unit(0.68, "feet"),
  35996. name: "Maw",
  35997. image: {
  35998. source: "./media/characters/scoop/maw.svg"
  35999. }
  36000. },
  36001. },
  36002. [
  36003. {
  36004. name: "Really Small",
  36005. height: math.unit(1, "mm")
  36006. },
  36007. {
  36008. name: "Micro",
  36009. height: math.unit(1, "inch")
  36010. },
  36011. {
  36012. name: "Normal",
  36013. height: math.unit(4 + 5/12, "feet"),
  36014. default: true
  36015. },
  36016. {
  36017. name: "Macro",
  36018. height: math.unit(200, "feet")
  36019. },
  36020. {
  36021. name: "Megamacro",
  36022. height: math.unit(3240, "feet")
  36023. },
  36024. {
  36025. name: "Teramacro",
  36026. height: math.unit(2500, "miles")
  36027. },
  36028. ]
  36029. ))
  36030. characterMakers.push(() => makeCharacter(
  36031. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  36032. {
  36033. front: {
  36034. height: math.unit(15 + 7/12, "feet"),
  36035. weight: math.unit(1150, "tons"),
  36036. name: "Front",
  36037. image: {
  36038. source: "./media/characters/saphinara/front.svg",
  36039. extra: 1837/1643,
  36040. bottom: 84/1921
  36041. },
  36042. form: "normal",
  36043. default: true
  36044. },
  36045. side: {
  36046. height: math.unit(15 + 7/12, "feet"),
  36047. weight: math.unit(1150, "tons"),
  36048. name: "Side",
  36049. image: {
  36050. source: "./media/characters/saphinara/side.svg",
  36051. extra: 605/547,
  36052. bottom: 6/611
  36053. },
  36054. form: "normal"
  36055. },
  36056. back: {
  36057. height: math.unit(15 + 7/12, "feet"),
  36058. weight: math.unit(1150, "tons"),
  36059. name: "Back",
  36060. image: {
  36061. source: "./media/characters/saphinara/back.svg",
  36062. extra: 591/531,
  36063. bottom: 13/604
  36064. },
  36065. form: "normal"
  36066. },
  36067. frontTail: {
  36068. height: math.unit(15 + 7/12, "feet"),
  36069. weight: math.unit(1150, "tons"),
  36070. name: "Front (Full Tail)",
  36071. image: {
  36072. source: "./media/characters/saphinara/front-tail.svg",
  36073. extra: 2256/1630,
  36074. bottom: 261/2517
  36075. },
  36076. form: "normal"
  36077. },
  36078. insides: {
  36079. height: math.unit(11.92, "feet"),
  36080. name: "Insides",
  36081. image: {
  36082. source: "./media/characters/saphinara/insides.svg"
  36083. },
  36084. form: "normal"
  36085. },
  36086. head: {
  36087. height: math.unit(4.17, "feet"),
  36088. name: "Head",
  36089. image: {
  36090. source: "./media/characters/saphinara/head.svg"
  36091. },
  36092. form: "normal"
  36093. },
  36094. tongue: {
  36095. height: math.unit(4.60, "feet"),
  36096. name: "Tongue",
  36097. image: {
  36098. source: "./media/characters/saphinara/tongue.svg"
  36099. },
  36100. form: "normal"
  36101. },
  36102. headEnraged: {
  36103. height: math.unit(5.55, "feet"),
  36104. name: "Head (Enraged)",
  36105. image: {
  36106. source: "./media/characters/saphinara/head-enraged.svg"
  36107. },
  36108. form: "normal"
  36109. },
  36110. wings: {
  36111. height: math.unit(11.95, "feet"),
  36112. name: "Wings",
  36113. image: {
  36114. source: "./media/characters/saphinara/wings.svg"
  36115. },
  36116. form: "normal"
  36117. },
  36118. feathers: {
  36119. height: math.unit(8.92, "feet"),
  36120. name: "Feathers",
  36121. image: {
  36122. source: "./media/characters/saphinara/feathers.svg"
  36123. },
  36124. form: "normal"
  36125. },
  36126. shackles: {
  36127. height: math.unit(2, "feet"),
  36128. name: "Shackles",
  36129. image: {
  36130. source: "./media/characters/saphinara/shackles.svg"
  36131. },
  36132. form: "normal"
  36133. },
  36134. eyes: {
  36135. height: math.unit(1.331, "feet"),
  36136. name: "Eyes",
  36137. image: {
  36138. source: "./media/characters/saphinara/eyes.svg"
  36139. },
  36140. form: "normal"
  36141. },
  36142. eyesEnraged: {
  36143. height: math.unit(1.331, "feet"),
  36144. name: "Eyes (Enraged)",
  36145. image: {
  36146. source: "./media/characters/saphinara/eyes-enraged.svg"
  36147. },
  36148. form: "normal"
  36149. },
  36150. trueFormSide: {
  36151. height: math.unit(200, "feet"),
  36152. weight: math.unit(1e7, "tons"),
  36153. name: "Side",
  36154. image: {
  36155. source: "./media/characters/saphinara/true-form-side.svg",
  36156. extra: 1399/770,
  36157. bottom: 97/1496
  36158. },
  36159. form: "true-form",
  36160. default: true
  36161. },
  36162. trueFormMaw: {
  36163. height: math.unit(71.5, "feet"),
  36164. name: "Maw",
  36165. image: {
  36166. source: "./media/characters/saphinara/true-form-maw.svg",
  36167. extra: 2302/1453,
  36168. bottom: 0/2302
  36169. },
  36170. form: "true-form"
  36171. },
  36172. meowberusSide: {
  36173. height: math.unit(75, "feet"),
  36174. weight: math.unit(180000, "kg"),
  36175. preyCapacity: math.unit(50000, "people"),
  36176. name: "Side",
  36177. image: {
  36178. source: "./media/characters/saphinara/meowberus-side.svg",
  36179. extra: 1400/711,
  36180. bottom: 126/1526
  36181. },
  36182. form: "meowberus",
  36183. extraAttributes: {
  36184. "pawArea": {
  36185. name: "Paw Size",
  36186. power: 2,
  36187. type: "area",
  36188. base: math.unit(35, "m^2")
  36189. }
  36190. }
  36191. },
  36192. },
  36193. [
  36194. {
  36195. name: "Normal",
  36196. height: math.unit(15 + 7/12, "feet"),
  36197. default: true,
  36198. form: "normal"
  36199. },
  36200. {
  36201. name: "Angry",
  36202. height: math.unit(30 + 6/12, "feet"),
  36203. form: "normal"
  36204. },
  36205. {
  36206. name: "Enraged",
  36207. height: math.unit(102 + 1/12, "feet"),
  36208. form: "normal"
  36209. },
  36210. {
  36211. name: "True",
  36212. height: math.unit(200, "feet"),
  36213. default: true,
  36214. form: "true-form"
  36215. },
  36216. {
  36217. name: "Normal",
  36218. height: math.unit(75, "feet"),
  36219. default: true,
  36220. form: "meowberus"
  36221. },
  36222. ],
  36223. {
  36224. "normal": {
  36225. name: "Normal",
  36226. default: true
  36227. },
  36228. "true-form": {
  36229. name: "True Form"
  36230. },
  36231. "meowberus": {
  36232. name: "Meowberus",
  36233. },
  36234. }
  36235. ))
  36236. characterMakers.push(() => makeCharacter(
  36237. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  36238. {
  36239. front: {
  36240. height: math.unit(6 + 8/12, "feet"),
  36241. weight: math.unit(300, "lb"),
  36242. name: "Front",
  36243. image: {
  36244. source: "./media/characters/jrain/front.svg",
  36245. extra: 3039/2865,
  36246. bottom: 399/3438
  36247. }
  36248. },
  36249. back: {
  36250. height: math.unit(6 + 8/12, "feet"),
  36251. weight: math.unit(300, "lb"),
  36252. name: "Back",
  36253. image: {
  36254. source: "./media/characters/jrain/back.svg",
  36255. extra: 3089/2938,
  36256. bottom: 172/3261
  36257. }
  36258. },
  36259. head: {
  36260. height: math.unit(2.14, "feet"),
  36261. name: "Head",
  36262. image: {
  36263. source: "./media/characters/jrain/head.svg"
  36264. }
  36265. },
  36266. maw: {
  36267. height: math.unit(1.77, "feet"),
  36268. name: "Maw",
  36269. image: {
  36270. source: "./media/characters/jrain/maw.svg"
  36271. }
  36272. },
  36273. leftHand: {
  36274. height: math.unit(1.1, "feet"),
  36275. name: "Left Hand",
  36276. image: {
  36277. source: "./media/characters/jrain/left-hand.svg"
  36278. }
  36279. },
  36280. rightHand: {
  36281. height: math.unit(1.1, "feet"),
  36282. name: "Right Hand",
  36283. image: {
  36284. source: "./media/characters/jrain/right-hand.svg"
  36285. }
  36286. },
  36287. eye: {
  36288. height: math.unit(0.35, "feet"),
  36289. name: "Eye",
  36290. image: {
  36291. source: "./media/characters/jrain/eye.svg"
  36292. }
  36293. },
  36294. },
  36295. [
  36296. {
  36297. name: "Normal",
  36298. height: math.unit(6 + 8/12, "feet"),
  36299. default: true
  36300. },
  36301. {
  36302. name: "Casually Large",
  36303. height: math.unit(25, "feet")
  36304. },
  36305. {
  36306. name: "Giant",
  36307. height: math.unit(100, "feet")
  36308. },
  36309. {
  36310. name: "Kaiju",
  36311. height: math.unit(300, "feet")
  36312. },
  36313. ]
  36314. ))
  36315. characterMakers.push(() => makeCharacter(
  36316. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  36317. {
  36318. dragon: {
  36319. height: math.unit(5, "meters"),
  36320. name: "Dragon",
  36321. image: {
  36322. source: "./media/characters/sabrina/dragon.svg",
  36323. extra: 3670 / 2365,
  36324. bottom: 333 / 4003
  36325. }
  36326. },
  36327. gryphon: {
  36328. height: math.unit(3, "meters"),
  36329. name: "Gryphon",
  36330. image: {
  36331. source: "./media/characters/sabrina/gryphon.svg",
  36332. extra: 1576 / 945,
  36333. bottom: 71 / 1647
  36334. }
  36335. },
  36336. snake: {
  36337. height: math.unit(12, "meters"),
  36338. name: "Snake",
  36339. image: {
  36340. source: "./media/characters/sabrina/snake.svg",
  36341. extra: 1758 / 1320,
  36342. bottom: 186 / 1944
  36343. }
  36344. },
  36345. collar: {
  36346. height: math.unit(1.86, "meters"),
  36347. name: "Collar",
  36348. image: {
  36349. source: "./media/characters/sabrina/collar.svg"
  36350. }
  36351. },
  36352. eye: {
  36353. height: math.unit(0.53, "meters"),
  36354. name: "Eye",
  36355. image: {
  36356. source: "./media/characters/sabrina/eye.svg"
  36357. }
  36358. },
  36359. foot: {
  36360. height: math.unit(1.86, "meters"),
  36361. name: "Foot",
  36362. image: {
  36363. source: "./media/characters/sabrina/foot.svg"
  36364. }
  36365. },
  36366. hand: {
  36367. height: math.unit(1.32, "meters"),
  36368. name: "Hand",
  36369. image: {
  36370. source: "./media/characters/sabrina/hand.svg"
  36371. }
  36372. },
  36373. head: {
  36374. height: math.unit(2.44, "meters"),
  36375. name: "Head",
  36376. image: {
  36377. source: "./media/characters/sabrina/head.svg"
  36378. }
  36379. },
  36380. headAngry: {
  36381. height: math.unit(2.44, "meters"),
  36382. name: "Head (Angry))",
  36383. image: {
  36384. source: "./media/characters/sabrina/head-angry.svg"
  36385. }
  36386. },
  36387. maw: {
  36388. height: math.unit(1.65, "meters"),
  36389. name: "Maw",
  36390. image: {
  36391. source: "./media/characters/sabrina/maw.svg"
  36392. }
  36393. },
  36394. spikes: {
  36395. height: math.unit(1.69, "meters"),
  36396. name: "Spikes",
  36397. image: {
  36398. source: "./media/characters/sabrina/spikes.svg"
  36399. }
  36400. },
  36401. stomach: {
  36402. height: math.unit(1.15, "meters"),
  36403. name: "Stomach",
  36404. image: {
  36405. source: "./media/characters/sabrina/stomach.svg"
  36406. }
  36407. },
  36408. tongue: {
  36409. height: math.unit(1.27, "meters"),
  36410. name: "Tongue",
  36411. image: {
  36412. source: "./media/characters/sabrina/tongue.svg"
  36413. }
  36414. },
  36415. wingDorsal: {
  36416. height: math.unit(4.85, "meters"),
  36417. name: "Wing (Dorsal)",
  36418. image: {
  36419. source: "./media/characters/sabrina/wing-dorsal.svg"
  36420. }
  36421. },
  36422. wingVentral: {
  36423. height: math.unit(4.85, "meters"),
  36424. name: "Wing (Ventral)",
  36425. image: {
  36426. source: "./media/characters/sabrina/wing-ventral.svg"
  36427. }
  36428. },
  36429. },
  36430. [
  36431. {
  36432. name: "Normal",
  36433. height: math.unit(5, "meters"),
  36434. default: true
  36435. },
  36436. ]
  36437. ))
  36438. characterMakers.push(() => makeCharacter(
  36439. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  36440. {
  36441. frontMaid: {
  36442. height: math.unit(5 + 5/12, "feet"),
  36443. weight: math.unit(130, "lb"),
  36444. name: "Front (Maid)",
  36445. image: {
  36446. source: "./media/characters/midnight-tales/front-maid.svg",
  36447. extra: 489/454,
  36448. bottom: 61/550
  36449. }
  36450. },
  36451. frontFormal: {
  36452. height: math.unit(5 + 5/12, "feet"),
  36453. weight: math.unit(130, "lb"),
  36454. name: "Front (Formal)",
  36455. image: {
  36456. source: "./media/characters/midnight-tales/front-formal.svg",
  36457. extra: 489/454,
  36458. bottom: 61/550
  36459. }
  36460. },
  36461. back: {
  36462. height: math.unit(5 + 5/12, "feet"),
  36463. weight: math.unit(130, "lb"),
  36464. name: "Back",
  36465. image: {
  36466. source: "./media/characters/midnight-tales/back.svg",
  36467. extra: 498/456,
  36468. bottom: 33/531
  36469. }
  36470. },
  36471. frontBeast: {
  36472. height: math.unit(40, "feet"),
  36473. weight: math.unit(64000, "lb"),
  36474. name: "Front (Beast)",
  36475. image: {
  36476. source: "./media/characters/midnight-tales/front-beast.svg",
  36477. extra: 927/860,
  36478. bottom: 53/980
  36479. }
  36480. },
  36481. backBeast: {
  36482. height: math.unit(40, "feet"),
  36483. weight: math.unit(64000, "lb"),
  36484. name: "Back (Beast)",
  36485. image: {
  36486. source: "./media/characters/midnight-tales/back-beast.svg",
  36487. extra: 929/855,
  36488. bottom: 16/945
  36489. }
  36490. },
  36491. footBeast: {
  36492. height: math.unit(6.7, "feet"),
  36493. name: "Foot (Beast)",
  36494. image: {
  36495. source: "./media/characters/midnight-tales/foot-beast.svg"
  36496. }
  36497. },
  36498. headBeast: {
  36499. height: math.unit(8, "feet"),
  36500. name: "Head (Beast)",
  36501. image: {
  36502. source: "./media/characters/midnight-tales/head-beast.svg"
  36503. }
  36504. },
  36505. },
  36506. [
  36507. {
  36508. name: "Normal",
  36509. height: math.unit(5 + 5 / 12, "feet"),
  36510. default: true
  36511. },
  36512. {
  36513. name: "Macro",
  36514. height: math.unit(25, "feet")
  36515. },
  36516. ]
  36517. ))
  36518. characterMakers.push(() => makeCharacter(
  36519. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36520. {
  36521. front: {
  36522. height: math.unit(5 + 10/12, "feet"),
  36523. name: "Front",
  36524. image: {
  36525. source: "./media/characters/argon/front.svg",
  36526. extra: 2009/1935,
  36527. bottom: 118/2127
  36528. }
  36529. },
  36530. back: {
  36531. height: math.unit(5 + 10/12, "feet"),
  36532. name: "Back",
  36533. image: {
  36534. source: "./media/characters/argon/back.svg",
  36535. extra: 2047/1992,
  36536. bottom: 20/2067
  36537. }
  36538. },
  36539. frontDressed: {
  36540. height: math.unit(5 + 10/12, "feet"),
  36541. name: "Front (Dressed)",
  36542. image: {
  36543. source: "./media/characters/argon/front-dressed.svg",
  36544. extra: 2009/1935,
  36545. bottom: 118/2127
  36546. }
  36547. },
  36548. },
  36549. [
  36550. {
  36551. name: "Normal",
  36552. height: math.unit(5 + 10/12, "feet"),
  36553. default: true
  36554. },
  36555. ]
  36556. ))
  36557. characterMakers.push(() => makeCharacter(
  36558. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  36559. {
  36560. front: {
  36561. height: math.unit(8 + 6/12, "feet"),
  36562. weight: math.unit(1150, "lb"),
  36563. name: "Front",
  36564. image: {
  36565. source: "./media/characters/kichi/front.svg",
  36566. extra: 1267/1164,
  36567. bottom: 61/1328
  36568. }
  36569. },
  36570. back: {
  36571. height: math.unit(8 + 6/12, "feet"),
  36572. weight: math.unit(1150, "lb"),
  36573. name: "Back",
  36574. image: {
  36575. source: "./media/characters/kichi/back.svg",
  36576. extra: 1273/1166,
  36577. bottom: 33/1306
  36578. }
  36579. },
  36580. },
  36581. [
  36582. {
  36583. name: "Normal",
  36584. height: math.unit(8 + 6/12, "feet"),
  36585. default: true
  36586. },
  36587. ]
  36588. ))
  36589. characterMakers.push(() => makeCharacter(
  36590. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36591. {
  36592. front: {
  36593. height: math.unit(6, "feet"),
  36594. weight: math.unit(210, "lb"),
  36595. name: "Front",
  36596. image: {
  36597. source: "./media/characters/manetel-greyscale/front.svg",
  36598. extra: 350/312,
  36599. bottom: 8/358
  36600. }
  36601. },
  36602. },
  36603. [
  36604. {
  36605. name: "Micro",
  36606. height: math.unit(2, "inches")
  36607. },
  36608. {
  36609. name: "Normal",
  36610. height: math.unit(6, "feet"),
  36611. default: true
  36612. },
  36613. {
  36614. name: "Minimacro",
  36615. height: math.unit(17, "feet")
  36616. },
  36617. {
  36618. name: "Macro",
  36619. height: math.unit(117, "feet")
  36620. },
  36621. ]
  36622. ))
  36623. characterMakers.push(() => makeCharacter(
  36624. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36625. {
  36626. side: {
  36627. height: math.unit(5 + 1/12, "feet"),
  36628. weight: math.unit(418, "lb"),
  36629. name: "Side",
  36630. image: {
  36631. source: "./media/characters/softpurr/side.svg",
  36632. extra: 1993/1945,
  36633. bottom: 134/2127
  36634. }
  36635. },
  36636. front: {
  36637. height: math.unit(5 + 1/12, "feet"),
  36638. weight: math.unit(418, "lb"),
  36639. name: "Front",
  36640. image: {
  36641. source: "./media/characters/softpurr/front.svg",
  36642. extra: 1950/1856,
  36643. bottom: 174/2124
  36644. }
  36645. },
  36646. paw: {
  36647. height: math.unit(1, "feet"),
  36648. name: "Paw",
  36649. image: {
  36650. source: "./media/characters/softpurr/paw.svg"
  36651. }
  36652. },
  36653. },
  36654. [
  36655. {
  36656. name: "Normal",
  36657. height: math.unit(5 + 1/12, "feet"),
  36658. default: true
  36659. },
  36660. ]
  36661. ))
  36662. characterMakers.push(() => makeCharacter(
  36663. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36664. {
  36665. front: {
  36666. height: math.unit(260, "meters"),
  36667. name: "Front",
  36668. image: {
  36669. source: "./media/characters/anahita/front.svg",
  36670. extra: 665/635,
  36671. bottom: 89/754
  36672. }
  36673. },
  36674. },
  36675. [
  36676. {
  36677. name: "Macro",
  36678. height: math.unit(260, "meters"),
  36679. default: true
  36680. },
  36681. ]
  36682. ))
  36683. characterMakers.push(() => makeCharacter(
  36684. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36685. {
  36686. front: {
  36687. height: math.unit(4 + 10/12, "feet"),
  36688. weight: math.unit(160, "lb"),
  36689. name: "Front",
  36690. image: {
  36691. source: "./media/characters/chip-mouse/front.svg",
  36692. extra: 3528/3408,
  36693. bottom: 0/3528
  36694. }
  36695. },
  36696. frontNsfw: {
  36697. height: math.unit(4 + 10/12, "feet"),
  36698. weight: math.unit(160, "lb"),
  36699. name: "Front (NSFW)",
  36700. image: {
  36701. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36702. extra: 3528/3408,
  36703. bottom: 0/3528
  36704. }
  36705. },
  36706. },
  36707. [
  36708. {
  36709. name: "Normal",
  36710. height: math.unit(4 + 10/12, "feet"),
  36711. default: true
  36712. },
  36713. ]
  36714. ))
  36715. characterMakers.push(() => makeCharacter(
  36716. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  36717. {
  36718. side: {
  36719. height: math.unit(10, "feet"),
  36720. weight: math.unit(14000, "lb"),
  36721. name: "Side",
  36722. image: {
  36723. source: "./media/characters/kremm/side.svg",
  36724. extra: 1390/1053,
  36725. bottom: 90/1480
  36726. }
  36727. },
  36728. gut: {
  36729. height: math.unit(5.8, "feet"),
  36730. name: "Gut",
  36731. image: {
  36732. source: "./media/characters/kremm/gut.svg"
  36733. }
  36734. },
  36735. ass: {
  36736. height: math.unit(6.1, "feet"),
  36737. name: "Ass",
  36738. image: {
  36739. source: "./media/characters/kremm/ass.svg"
  36740. }
  36741. },
  36742. jaws: {
  36743. height: math.unit(2.2, "feet"),
  36744. name: "Jaws",
  36745. image: {
  36746. source: "./media/characters/kremm/jaws.svg"
  36747. }
  36748. },
  36749. dick: {
  36750. height: math.unit(4.26, "feet"),
  36751. name: "Dick",
  36752. image: {
  36753. source: "./media/characters/kremm/dick.svg"
  36754. }
  36755. },
  36756. },
  36757. [
  36758. {
  36759. name: "Normal",
  36760. height: math.unit(10, "feet"),
  36761. default: true
  36762. },
  36763. ]
  36764. ))
  36765. characterMakers.push(() => makeCharacter(
  36766. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36767. {
  36768. front: {
  36769. height: math.unit(30, "stories"),
  36770. name: "Front",
  36771. image: {
  36772. source: "./media/characters/kai/front.svg",
  36773. extra: 1892/1718,
  36774. bottom: 162/2054
  36775. }
  36776. },
  36777. },
  36778. [
  36779. {
  36780. name: "Macro",
  36781. height: math.unit(30, "stories"),
  36782. default: true
  36783. },
  36784. ]
  36785. ))
  36786. characterMakers.push(() => makeCharacter(
  36787. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36788. {
  36789. front: {
  36790. height: math.unit(6 + 4/12, "feet"),
  36791. weight: math.unit(145, "lb"),
  36792. name: "Front",
  36793. image: {
  36794. source: "./media/characters/sykes/front.svg",
  36795. extra: 1321 / 1187,
  36796. bottom: 66 / 1387
  36797. }
  36798. },
  36799. back: {
  36800. height: math.unit(6 + 4/12, "feet"),
  36801. weight: math.unit(145, "lb"),
  36802. name: "Back",
  36803. image: {
  36804. source: "./media/characters/sykes/back.svg",
  36805. extra: 1326/1181,
  36806. bottom: 31/1357
  36807. }
  36808. },
  36809. traditionalOutfit: {
  36810. height: math.unit(6 + 4/12, "feet"),
  36811. weight: math.unit(145, "lb"),
  36812. name: "Traditional Outfit",
  36813. image: {
  36814. source: "./media/characters/sykes/traditional-outfit.svg",
  36815. extra: 1321 / 1187,
  36816. bottom: 66 / 1387
  36817. }
  36818. },
  36819. adventureOutfit: {
  36820. height: math.unit(6 + 4/12, "feet"),
  36821. weight: math.unit(145, "lb"),
  36822. name: "Adventure Outfit",
  36823. image: {
  36824. source: "./media/characters/sykes/adventure-outfit.svg",
  36825. extra: 1321 / 1187,
  36826. bottom: 66 / 1387
  36827. }
  36828. },
  36829. handLeft: {
  36830. height: math.unit(0.9, "feet"),
  36831. name: "Hand (Left)",
  36832. image: {
  36833. source: "./media/characters/sykes/hand-left.svg"
  36834. }
  36835. },
  36836. handRight: {
  36837. height: math.unit(0.839, "feet"),
  36838. name: "Hand (Right)",
  36839. image: {
  36840. source: "./media/characters/sykes/hand-right.svg"
  36841. }
  36842. },
  36843. leftFoot: {
  36844. height: math.unit(1.2, "feet"),
  36845. name: "Foot (Left)",
  36846. image: {
  36847. source: "./media/characters/sykes/foot-left.svg"
  36848. }
  36849. },
  36850. rightFoot: {
  36851. height: math.unit(1.2, "feet"),
  36852. name: "Foot (Right)",
  36853. image: {
  36854. source: "./media/characters/sykes/foot-right.svg"
  36855. }
  36856. },
  36857. maw: {
  36858. height: math.unit(1.93, "feet"),
  36859. name: "Maw",
  36860. image: {
  36861. source: "./media/characters/sykes/maw.svg"
  36862. }
  36863. },
  36864. teeth: {
  36865. height: math.unit(0.51, "feet"),
  36866. name: "Teeth",
  36867. image: {
  36868. source: "./media/characters/sykes/teeth.svg"
  36869. }
  36870. },
  36871. tongue: {
  36872. height: math.unit(2.13, "feet"),
  36873. name: "Tongue",
  36874. image: {
  36875. source: "./media/characters/sykes/tongue.svg"
  36876. }
  36877. },
  36878. uvula: {
  36879. height: math.unit(0.16, "feet"),
  36880. name: "Uvula",
  36881. image: {
  36882. source: "./media/characters/sykes/uvula.svg"
  36883. }
  36884. },
  36885. collar: {
  36886. height: math.unit(0.287, "feet"),
  36887. name: "Collar",
  36888. image: {
  36889. source: "./media/characters/sykes/collar.svg"
  36890. }
  36891. },
  36892. tail: {
  36893. height: math.unit(3.8, "feet"),
  36894. name: "Tail",
  36895. image: {
  36896. source: "./media/characters/sykes/tail.svg"
  36897. }
  36898. },
  36899. },
  36900. [
  36901. {
  36902. name: "Shrunken",
  36903. height: math.unit(5, "inches")
  36904. },
  36905. {
  36906. name: "Normal",
  36907. height: math.unit(6 + 4 / 12, "feet"),
  36908. default: true
  36909. },
  36910. {
  36911. name: "Big",
  36912. height: math.unit(15, "feet")
  36913. },
  36914. ]
  36915. ))
  36916. characterMakers.push(() => makeCharacter(
  36917. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36918. {
  36919. front: {
  36920. height: math.unit(5 + 8/12, "feet"),
  36921. weight: math.unit(190, "lb"),
  36922. name: "Front",
  36923. image: {
  36924. source: "./media/characters/oven-otter/front.svg",
  36925. extra: 1809/1740,
  36926. bottom: 181/1990
  36927. }
  36928. },
  36929. back: {
  36930. height: math.unit(5 + 8/12, "feet"),
  36931. weight: math.unit(190, "lb"),
  36932. name: "Back",
  36933. image: {
  36934. source: "./media/characters/oven-otter/back.svg",
  36935. extra: 1709/1635,
  36936. bottom: 118/1827
  36937. }
  36938. },
  36939. hand: {
  36940. height: math.unit(1.07, "feet"),
  36941. name: "Hand",
  36942. image: {
  36943. source: "./media/characters/oven-otter/hand.svg"
  36944. }
  36945. },
  36946. beans: {
  36947. height: math.unit(1.74, "feet"),
  36948. name: "Beans",
  36949. image: {
  36950. source: "./media/characters/oven-otter/beans.svg"
  36951. }
  36952. },
  36953. },
  36954. [
  36955. {
  36956. name: "Micro",
  36957. height: math.unit(0.5, "inches")
  36958. },
  36959. {
  36960. name: "Normal",
  36961. height: math.unit(5 + 8/12, "feet"),
  36962. default: true
  36963. },
  36964. {
  36965. name: "Macro",
  36966. height: math.unit(250, "feet")
  36967. },
  36968. {
  36969. name: "Really High",
  36970. height: math.unit(420, "feet")
  36971. },
  36972. ]
  36973. ))
  36974. characterMakers.push(() => makeCharacter(
  36975. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36976. {
  36977. front: {
  36978. height: math.unit(5, "meters"),
  36979. weight: math.unit(292000000000000, "kg"),
  36980. name: "Front",
  36981. image: {
  36982. source: "./media/characters/devourer/front.svg",
  36983. extra: 1800/1733,
  36984. bottom: 211/2011
  36985. }
  36986. },
  36987. maw: {
  36988. height: math.unit(1.1, "meter"),
  36989. name: "Maw",
  36990. image: {
  36991. source: "./media/characters/devourer/maw.svg"
  36992. }
  36993. },
  36994. },
  36995. [
  36996. {
  36997. name: "Small",
  36998. height: math.unit(3, "meters")
  36999. },
  37000. {
  37001. name: "Large",
  37002. height: math.unit(5, "meters"),
  37003. default: true
  37004. },
  37005. ]
  37006. ))
  37007. characterMakers.push(() => makeCharacter(
  37008. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  37009. {
  37010. front: {
  37011. height: math.unit(6, "feet"),
  37012. weight: math.unit(400, "lb"),
  37013. name: "Front",
  37014. image: {
  37015. source: "./media/characters/ellarby/front.svg",
  37016. extra: 1909/1763,
  37017. bottom: 80/1989
  37018. }
  37019. },
  37020. back: {
  37021. height: math.unit(6, "feet"),
  37022. weight: math.unit(400, "lb"),
  37023. name: "Back",
  37024. image: {
  37025. source: "./media/characters/ellarby/back.svg",
  37026. extra: 1914/1784,
  37027. bottom: 172/2086
  37028. }
  37029. },
  37030. },
  37031. [
  37032. {
  37033. name: "Mischief",
  37034. height: math.unit(18, "inches")
  37035. },
  37036. {
  37037. name: "Trouble",
  37038. height: math.unit(12, "feet")
  37039. },
  37040. {
  37041. name: "Havoc",
  37042. height: math.unit(200, "feet"),
  37043. default: true
  37044. },
  37045. {
  37046. name: "Pandemonium",
  37047. height: math.unit(1, "mile")
  37048. },
  37049. {
  37050. name: "Catastrophe",
  37051. height: math.unit(100, "miles")
  37052. },
  37053. ]
  37054. ))
  37055. characterMakers.push(() => makeCharacter(
  37056. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  37057. {
  37058. front: {
  37059. height: math.unit(4.7, "meters"),
  37060. weight: math.unit(6500, "kg"),
  37061. name: "Front",
  37062. image: {
  37063. source: "./media/characters/vex/front.svg",
  37064. extra: 1288/1140,
  37065. bottom: 100/1388
  37066. }
  37067. },
  37068. },
  37069. [
  37070. {
  37071. name: "Normal",
  37072. height: math.unit(4.7, "meters"),
  37073. default: true
  37074. },
  37075. ]
  37076. ))
  37077. characterMakers.push(() => makeCharacter(
  37078. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  37079. {
  37080. normal: {
  37081. height: math.unit(6, "feet"),
  37082. weight: math.unit(350, "lb"),
  37083. name: "Normal",
  37084. image: {
  37085. source: "./media/characters/teshy/normal.svg",
  37086. extra: 1795/1735,
  37087. bottom: 16/1811
  37088. }
  37089. },
  37090. monsterFront: {
  37091. height: math.unit(12, "feet"),
  37092. weight: math.unit(4700, "lb"),
  37093. name: "Monster (Front)",
  37094. image: {
  37095. source: "./media/characters/teshy/monster-front.svg",
  37096. extra: 2042/2034,
  37097. bottom: 128/2170
  37098. }
  37099. },
  37100. monsterSide: {
  37101. height: math.unit(12, "feet"),
  37102. weight: math.unit(4700, "lb"),
  37103. name: "Monster (Side)",
  37104. image: {
  37105. source: "./media/characters/teshy/monster-side.svg",
  37106. extra: 2067/2056,
  37107. bottom: 70/2137
  37108. }
  37109. },
  37110. monsterBack: {
  37111. height: math.unit(12, "feet"),
  37112. weight: math.unit(4700, "lb"),
  37113. name: "Monster (Back)",
  37114. image: {
  37115. source: "./media/characters/teshy/monster-back.svg",
  37116. extra: 1921/1914,
  37117. bottom: 171/2092
  37118. }
  37119. },
  37120. },
  37121. [
  37122. {
  37123. name: "Normal",
  37124. height: math.unit(6, "feet"),
  37125. default: true
  37126. },
  37127. ]
  37128. ))
  37129. characterMakers.push(() => makeCharacter(
  37130. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  37131. {
  37132. front: {
  37133. height: math.unit(6, "feet"),
  37134. name: "Front",
  37135. image: {
  37136. source: "./media/characters/ramey/front.svg",
  37137. extra: 790/787,
  37138. bottom: 27/817
  37139. }
  37140. },
  37141. },
  37142. [
  37143. {
  37144. name: "Normal",
  37145. height: math.unit(6, "feet"),
  37146. default: true
  37147. },
  37148. ]
  37149. ))
  37150. characterMakers.push(() => makeCharacter(
  37151. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  37152. {
  37153. front: {
  37154. height: math.unit(5 + 5/12, "feet"),
  37155. weight: math.unit(120, "lb"),
  37156. name: "Front",
  37157. image: {
  37158. source: "./media/characters/phirae/front.svg",
  37159. extra: 2491/2436,
  37160. bottom: 38/2529
  37161. }
  37162. },
  37163. },
  37164. [
  37165. {
  37166. name: "Normal",
  37167. height: math.unit(5 + 5/12, "feet"),
  37168. default: true
  37169. },
  37170. ]
  37171. ))
  37172. characterMakers.push(() => makeCharacter(
  37173. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  37174. {
  37175. front: {
  37176. height: math.unit(5 + 3/12, "feet"),
  37177. name: "Front",
  37178. image: {
  37179. source: "./media/characters/stagglas/front.svg",
  37180. extra: 962/882,
  37181. bottom: 53/1015
  37182. }
  37183. },
  37184. feral: {
  37185. height: math.unit(335, "cm"),
  37186. name: "Feral",
  37187. image: {
  37188. source: "./media/characters/stagglas/feral.svg",
  37189. extra: 1732/1090,
  37190. bottom: 48/1780
  37191. }
  37192. },
  37193. },
  37194. [
  37195. {
  37196. name: "Normal",
  37197. height: math.unit(5 + 3/12, "feet"),
  37198. default: true
  37199. },
  37200. ]
  37201. ))
  37202. characterMakers.push(() => makeCharacter(
  37203. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  37204. {
  37205. front: {
  37206. height: math.unit(5 + 4/12, "feet"),
  37207. weight: math.unit(145, "lb"),
  37208. name: "Front",
  37209. image: {
  37210. source: "./media/characters/starra/front.svg",
  37211. extra: 1790/1691,
  37212. bottom: 91/1881
  37213. }
  37214. },
  37215. },
  37216. [
  37217. {
  37218. name: "Normal",
  37219. height: math.unit(5 + 4/12, "feet"),
  37220. default: true
  37221. },
  37222. ]
  37223. ))
  37224. characterMakers.push(() => makeCharacter(
  37225. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  37226. {
  37227. front: {
  37228. height: math.unit(3.5, "meters"),
  37229. name: "Front",
  37230. image: {
  37231. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  37232. extra: 1248/972,
  37233. bottom: 38/1286
  37234. }
  37235. },
  37236. },
  37237. [
  37238. {
  37239. name: "Normal",
  37240. height: math.unit(3.5, "meters"),
  37241. default: true
  37242. },
  37243. ]
  37244. ))
  37245. characterMakers.push(() => makeCharacter(
  37246. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  37247. {
  37248. side: {
  37249. height: math.unit(8 + 2/12, "feet"),
  37250. weight: math.unit(1240, "lb"),
  37251. name: "Side",
  37252. image: {
  37253. source: "./media/characters/mika-valentine/side.svg",
  37254. extra: 2670/2501,
  37255. bottom: 250/2920
  37256. }
  37257. },
  37258. },
  37259. [
  37260. {
  37261. name: "Normal",
  37262. height: math.unit(8 + 2/12, "feet"),
  37263. default: true
  37264. },
  37265. ]
  37266. ))
  37267. characterMakers.push(() => makeCharacter(
  37268. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  37269. {
  37270. front: {
  37271. height: math.unit(7 + 2/12, "feet"),
  37272. name: "Front",
  37273. image: {
  37274. source: "./media/characters/xoltol/front.svg",
  37275. extra: 2212/2124,
  37276. bottom: 84/2296
  37277. }
  37278. },
  37279. side: {
  37280. height: math.unit(7 + 2/12, "feet"),
  37281. name: "Side",
  37282. image: {
  37283. source: "./media/characters/xoltol/side.svg",
  37284. extra: 2273/2197,
  37285. bottom: 26/2299
  37286. }
  37287. },
  37288. hand: {
  37289. height: math.unit(2.5, "feet"),
  37290. name: "Hand",
  37291. image: {
  37292. source: "./media/characters/xoltol/hand.svg"
  37293. }
  37294. },
  37295. },
  37296. [
  37297. {
  37298. name: "Small-ish",
  37299. height: math.unit(5 + 11/12, "feet")
  37300. },
  37301. {
  37302. name: "Normal",
  37303. height: math.unit(7 + 2/12, "feet")
  37304. },
  37305. {
  37306. name: "\"Macro\"",
  37307. height: math.unit(14 + 9/12, "feet"),
  37308. default: true
  37309. },
  37310. {
  37311. name: "Alternate Height",
  37312. height: math.unit(20, "feet")
  37313. },
  37314. {
  37315. name: "Actually Macro",
  37316. height: math.unit(100, "feet")
  37317. },
  37318. ]
  37319. ))
  37320. characterMakers.push(() => makeCharacter(
  37321. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  37322. {
  37323. front: {
  37324. height: math.unit(5 + 2/12, "feet"),
  37325. weight: math.unit(75, "kg"),
  37326. name: "Front",
  37327. image: {
  37328. source: "./media/characters/kotetsu-redwood/front.svg",
  37329. extra: 1053/942,
  37330. bottom: 60/1113
  37331. }
  37332. },
  37333. },
  37334. [
  37335. {
  37336. name: "Normal",
  37337. height: math.unit(5 + 2/12, "feet"),
  37338. default: true
  37339. },
  37340. ]
  37341. ))
  37342. characterMakers.push(() => makeCharacter(
  37343. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  37344. {
  37345. front: {
  37346. height: math.unit(2.4, "meters"),
  37347. weight: math.unit(125, "kg"),
  37348. name: "Front",
  37349. image: {
  37350. source: "./media/characters/lilith/front.svg",
  37351. extra: 1590/1513,
  37352. bottom: 203/1793
  37353. }
  37354. },
  37355. },
  37356. [
  37357. {
  37358. name: "Humanoid",
  37359. height: math.unit(2.4, "meters")
  37360. },
  37361. {
  37362. name: "Normal",
  37363. height: math.unit(6, "meters"),
  37364. default: true
  37365. },
  37366. {
  37367. name: "Largest",
  37368. height: math.unit(55, "meters")
  37369. },
  37370. ]
  37371. ))
  37372. characterMakers.push(() => makeCharacter(
  37373. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  37374. {
  37375. front: {
  37376. height: math.unit(8 + 4/12, "feet"),
  37377. weight: math.unit(535, "lb"),
  37378. name: "Front",
  37379. image: {
  37380. source: "./media/characters/beh'kah-bolger/front.svg",
  37381. extra: 1660/1603,
  37382. bottom: 37/1697
  37383. }
  37384. },
  37385. },
  37386. [
  37387. {
  37388. name: "Normal",
  37389. height: math.unit(8 + 4/12, "feet"),
  37390. default: true
  37391. },
  37392. {
  37393. name: "Kaiju",
  37394. height: math.unit(250, "feet")
  37395. },
  37396. {
  37397. name: "Still Growing",
  37398. height: math.unit(10, "miles")
  37399. },
  37400. {
  37401. name: "Continental",
  37402. height: math.unit(5000, "miles")
  37403. },
  37404. {
  37405. name: "Final Form",
  37406. height: math.unit(2500000, "miles")
  37407. },
  37408. ]
  37409. ))
  37410. characterMakers.push(() => makeCharacter(
  37411. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  37412. {
  37413. front: {
  37414. height: math.unit(7 + 2/12, "feet"),
  37415. weight: math.unit(230, "kg"),
  37416. name: "Front",
  37417. image: {
  37418. source: "./media/characters/tatyana-milewska/front.svg",
  37419. extra: 1199/1150,
  37420. bottom: 86/1285
  37421. }
  37422. },
  37423. },
  37424. [
  37425. {
  37426. name: "Normal",
  37427. height: math.unit(7 + 2/12, "feet"),
  37428. default: true
  37429. },
  37430. {
  37431. name: "Big",
  37432. height: math.unit(12, "feet")
  37433. },
  37434. {
  37435. name: "Minimacro",
  37436. height: math.unit(20, "feet")
  37437. },
  37438. {
  37439. name: "Macro",
  37440. height: math.unit(120, "feet")
  37441. },
  37442. ]
  37443. ))
  37444. characterMakers.push(() => makeCharacter(
  37445. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  37446. {
  37447. front: {
  37448. height: math.unit(7 + 8/12, "feet"),
  37449. weight: math.unit(152, "kg"),
  37450. name: "Front",
  37451. image: {
  37452. source: "./media/characters/helen-arri/front.svg",
  37453. extra: 440/423,
  37454. bottom: 14/454
  37455. }
  37456. },
  37457. back: {
  37458. height: math.unit(7 + 8/12, "feet"),
  37459. weight: math.unit(152, "kg"),
  37460. name: "Back",
  37461. image: {
  37462. source: "./media/characters/helen-arri/back.svg",
  37463. extra: 443/426,
  37464. bottom: 8/451
  37465. }
  37466. },
  37467. },
  37468. [
  37469. {
  37470. name: "Normal",
  37471. height: math.unit(7 + 8/12, "feet"),
  37472. default: true
  37473. },
  37474. {
  37475. name: "Big",
  37476. height: math.unit(14, "feet")
  37477. },
  37478. {
  37479. name: "Minimacro",
  37480. height: math.unit(24, "feet")
  37481. },
  37482. {
  37483. name: "Macro",
  37484. height: math.unit(140, "feet")
  37485. },
  37486. ]
  37487. ))
  37488. characterMakers.push(() => makeCharacter(
  37489. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  37490. {
  37491. front: {
  37492. height: math.unit(6, "meters"),
  37493. name: "Front",
  37494. image: {
  37495. source: "./media/characters/ehanu-rehu/front.svg",
  37496. extra: 1800/1800,
  37497. bottom: 59/1859
  37498. }
  37499. },
  37500. },
  37501. [
  37502. {
  37503. name: "Normal",
  37504. height: math.unit(6, "meters"),
  37505. default: true
  37506. },
  37507. ]
  37508. ))
  37509. characterMakers.push(() => makeCharacter(
  37510. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  37511. {
  37512. front: {
  37513. height: math.unit(7 + 3/12, "feet"),
  37514. name: "Front",
  37515. image: {
  37516. source: "./media/characters/renholder/front.svg",
  37517. extra: 3096/2960,
  37518. bottom: 250/3346
  37519. }
  37520. },
  37521. },
  37522. [
  37523. {
  37524. name: "Normal Bat",
  37525. height: math.unit(7 + 3/12, "feet"),
  37526. default: true
  37527. },
  37528. {
  37529. name: "Slightly Tall Bat",
  37530. height: math.unit(100, "feet")
  37531. },
  37532. {
  37533. name: "Big Bat",
  37534. height: math.unit(1000, "feet")
  37535. },
  37536. {
  37537. name: "City-Sized Bat",
  37538. height: math.unit(200000, "feet")
  37539. },
  37540. {
  37541. name: "Bigger Bat",
  37542. height: math.unit(10000, "miles")
  37543. },
  37544. {
  37545. name: "Solar Sized Bat",
  37546. height: math.unit(100, "AU")
  37547. },
  37548. {
  37549. name: "Galactic Bat",
  37550. height: math.unit(200000, "lightyears")
  37551. },
  37552. {
  37553. name: "Universally Known Bat",
  37554. height: math.unit(1, "universe")
  37555. },
  37556. ]
  37557. ))
  37558. characterMakers.push(() => makeCharacter(
  37559. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  37560. {
  37561. front: {
  37562. height: math.unit(6 + 11/12, "feet"),
  37563. weight: math.unit(250, "lb"),
  37564. name: "Front",
  37565. image: {
  37566. source: "./media/characters/cookiecat/front.svg",
  37567. extra: 893/827,
  37568. bottom: 14/907
  37569. }
  37570. },
  37571. },
  37572. [
  37573. {
  37574. name: "Micro",
  37575. height: math.unit(3, "inches")
  37576. },
  37577. {
  37578. name: "Normal",
  37579. height: math.unit(6 + 11/12, "feet"),
  37580. default: true
  37581. },
  37582. {
  37583. name: "Macro",
  37584. height: math.unit(100, "feet")
  37585. },
  37586. {
  37587. name: "Macro+",
  37588. height: math.unit(404, "feet")
  37589. },
  37590. {
  37591. name: "Megamacro",
  37592. height: math.unit(165, "miles")
  37593. },
  37594. {
  37595. name: "Planetary",
  37596. height: math.unit(4600, "miles")
  37597. },
  37598. ]
  37599. ))
  37600. characterMakers.push(() => makeCharacter(
  37601. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  37602. {
  37603. front: {
  37604. height: math.unit(10 + 3/12, "feet"),
  37605. weight: math.unit(1500, "lb"),
  37606. name: "Front",
  37607. image: {
  37608. source: "./media/characters/tux-kusanagi/front.svg",
  37609. extra: 944/840,
  37610. bottom: 39/983
  37611. }
  37612. },
  37613. back: {
  37614. height: math.unit(10 + 3/12, "feet"),
  37615. weight: math.unit(1500, "lb"),
  37616. name: "Back",
  37617. image: {
  37618. source: "./media/characters/tux-kusanagi/back.svg",
  37619. extra: 941/842,
  37620. bottom: 28/969
  37621. }
  37622. },
  37623. rump: {
  37624. height: math.unit(5.25, "feet"),
  37625. name: "Rump",
  37626. image: {
  37627. source: "./media/characters/tux-kusanagi/rump.svg"
  37628. }
  37629. },
  37630. beak: {
  37631. height: math.unit(1.54, "feet"),
  37632. name: "Beak",
  37633. image: {
  37634. source: "./media/characters/tux-kusanagi/beak.svg"
  37635. }
  37636. },
  37637. },
  37638. [
  37639. {
  37640. name: "Normal",
  37641. height: math.unit(10 + 3/12, "feet"),
  37642. default: true
  37643. },
  37644. ]
  37645. ))
  37646. characterMakers.push(() => makeCharacter(
  37647. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37648. {
  37649. front: {
  37650. height: math.unit(58, "feet"),
  37651. weight: math.unit(200, "tons"),
  37652. name: "Front",
  37653. image: {
  37654. source: "./media/characters/uzarmazari/front.svg",
  37655. extra: 1575/1455,
  37656. bottom: 152/1727
  37657. }
  37658. },
  37659. back: {
  37660. height: math.unit(58, "feet"),
  37661. weight: math.unit(200, "tons"),
  37662. name: "Back",
  37663. image: {
  37664. source: "./media/characters/uzarmazari/back.svg",
  37665. extra: 1585/1510,
  37666. bottom: 157/1742
  37667. }
  37668. },
  37669. head: {
  37670. height: math.unit(26, "feet"),
  37671. name: "Head",
  37672. image: {
  37673. source: "./media/characters/uzarmazari/head.svg"
  37674. }
  37675. },
  37676. },
  37677. [
  37678. {
  37679. name: "Normal",
  37680. height: math.unit(58, "feet"),
  37681. default: true
  37682. },
  37683. ]
  37684. ))
  37685. characterMakers.push(() => makeCharacter(
  37686. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37687. {
  37688. side: {
  37689. height: math.unit(15, "feet"),
  37690. name: "Side",
  37691. image: {
  37692. source: "./media/characters/akitu/side.svg",
  37693. extra: 1421/1321,
  37694. bottom: 157/1578
  37695. }
  37696. },
  37697. front: {
  37698. height: math.unit(15, "feet"),
  37699. name: "Front",
  37700. image: {
  37701. source: "./media/characters/akitu/front.svg",
  37702. extra: 1435/1326,
  37703. bottom: 232/1667
  37704. }
  37705. },
  37706. },
  37707. [
  37708. {
  37709. name: "Normal",
  37710. height: math.unit(15, "feet"),
  37711. default: true
  37712. },
  37713. ]
  37714. ))
  37715. characterMakers.push(() => makeCharacter(
  37716. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  37717. {
  37718. front: {
  37719. height: math.unit(10 + 8/12, "feet"),
  37720. name: "Front",
  37721. image: {
  37722. source: "./media/characters/azalie-croixland/front.svg",
  37723. extra: 1972/1856,
  37724. bottom: 31/2003
  37725. }
  37726. },
  37727. },
  37728. [
  37729. {
  37730. name: "Original Height",
  37731. height: math.unit(5 + 4/12, "feet")
  37732. },
  37733. {
  37734. name: "Normal Height",
  37735. height: math.unit(10 + 8/12, "feet"),
  37736. default: true
  37737. },
  37738. ]
  37739. ))
  37740. characterMakers.push(() => makeCharacter(
  37741. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37742. {
  37743. side: {
  37744. height: math.unit(7 + 1/12, "feet"),
  37745. weight: math.unit(245, "lb"),
  37746. name: "Side",
  37747. image: {
  37748. source: "./media/characters/kavus-kazian/side.svg",
  37749. extra: 349/342,
  37750. bottom: 15/364
  37751. }
  37752. },
  37753. },
  37754. [
  37755. {
  37756. name: "Normal",
  37757. height: math.unit(7 + 1/12, "feet"),
  37758. default: true
  37759. },
  37760. ]
  37761. ))
  37762. characterMakers.push(() => makeCharacter(
  37763. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37764. {
  37765. normalFront: {
  37766. height: math.unit(5 + 11/12, "feet"),
  37767. name: "Front",
  37768. image: {
  37769. source: "./media/characters/moonlight-rose/normal-front.svg",
  37770. extra: 1980/1825,
  37771. bottom: 18/1998
  37772. },
  37773. form: "normal",
  37774. default: true
  37775. },
  37776. normalBack: {
  37777. height: math.unit(5 + 11/12, "feet"),
  37778. name: "Back",
  37779. image: {
  37780. source: "./media/characters/moonlight-rose/normal-back.svg",
  37781. extra: 2010/1839,
  37782. bottom: 10/2020
  37783. },
  37784. form: "normal"
  37785. },
  37786. demonFront: {
  37787. height: math.unit(1.5, "earths"),
  37788. name: "Front",
  37789. image: {
  37790. source: "./media/characters/moonlight-rose/demon.svg",
  37791. extra: 1400/1294,
  37792. bottom: 45/1445
  37793. },
  37794. form: "demon",
  37795. default: true
  37796. },
  37797. terraFront: {
  37798. height: math.unit(1.5, "earths"),
  37799. name: "Front",
  37800. image: {
  37801. source: "./media/characters/moonlight-rose/terra.svg"
  37802. },
  37803. form: "terra",
  37804. default: true
  37805. },
  37806. jupiterFront: {
  37807. height: math.unit(69911*2, "km"),
  37808. name: "Front",
  37809. image: {
  37810. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37811. extra: 1367/1286,
  37812. bottom: 55/1422
  37813. },
  37814. form: "jupiter",
  37815. default: true
  37816. },
  37817. neptuneFront: {
  37818. height: math.unit(24622*2, "feet"),
  37819. name: "Front",
  37820. image: {
  37821. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37822. extra: 1851/1712,
  37823. bottom: 0/1851
  37824. },
  37825. form: "neptune",
  37826. default: true
  37827. },
  37828. },
  37829. [
  37830. {
  37831. name: "\"Natural\" Height",
  37832. height: math.unit(5 + 11/12, "feet"),
  37833. form: "normal"
  37834. },
  37835. {
  37836. name: "Smallest comfortable size",
  37837. height: math.unit(40, "meters"),
  37838. form: "normal"
  37839. },
  37840. {
  37841. name: "Common size",
  37842. height: math.unit(50, "km"),
  37843. form: "normal",
  37844. default: true
  37845. },
  37846. {
  37847. name: "Normal",
  37848. height: math.unit(1.5, "earths"),
  37849. form: "demon",
  37850. default: true
  37851. },
  37852. {
  37853. name: "Universal",
  37854. height: math.unit(15, "universes"),
  37855. form: "demon"
  37856. },
  37857. {
  37858. name: "Earth",
  37859. height: math.unit(1.5, "earths"),
  37860. form: "terra",
  37861. default: true
  37862. },
  37863. {
  37864. name: "Super Earth",
  37865. height: math.unit(67.5, "earths"),
  37866. form: "terra"
  37867. },
  37868. {
  37869. name: "Doesn't fit in a solar system...",
  37870. height: math.unit(1, "galaxy"),
  37871. form: "terra"
  37872. },
  37873. {
  37874. name: "Saturn",
  37875. height: math.unit(58232*2, "km"),
  37876. form: "jupiter"
  37877. },
  37878. {
  37879. name: "Jupiter",
  37880. height: math.unit(69911*2, "km"),
  37881. form: "jupiter",
  37882. default: true
  37883. },
  37884. {
  37885. name: "HD 100546 b",
  37886. height: math.unit(482938, "km"),
  37887. form: "jupiter"
  37888. },
  37889. {
  37890. name: "Enceladus",
  37891. height: math.unit(513*2, "km"),
  37892. form: "neptune"
  37893. },
  37894. {
  37895. name: "Europe",
  37896. height: math.unit(1560*2, "km"),
  37897. form: "neptune"
  37898. },
  37899. {
  37900. name: "Neptune",
  37901. height: math.unit(24622*2, "km"),
  37902. form: "neptune",
  37903. default: true
  37904. },
  37905. {
  37906. name: "CoRoT-9b",
  37907. height: math.unit(75067*2, "km"),
  37908. form: "neptune"
  37909. },
  37910. ],
  37911. {
  37912. "normal": {
  37913. name: "Normal",
  37914. default: true
  37915. },
  37916. "demon": {
  37917. name: "Demon"
  37918. },
  37919. "terra": {
  37920. name: "Terra"
  37921. },
  37922. "jupiter": {
  37923. name: "Jupiter"
  37924. },
  37925. "neptune": {
  37926. name: "Neptune"
  37927. }
  37928. }
  37929. ))
  37930. characterMakers.push(() => makeCharacter(
  37931. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37932. {
  37933. front: {
  37934. height: math.unit(16, "feet"),
  37935. weight: math.unit(610, "kg"),
  37936. name: "Front",
  37937. image: {
  37938. source: "./media/characters/huckle/front.svg",
  37939. extra: 1731/1625,
  37940. bottom: 33/1764
  37941. }
  37942. },
  37943. back: {
  37944. height: math.unit(16, "feet"),
  37945. weight: math.unit(610, "kg"),
  37946. name: "Back",
  37947. image: {
  37948. source: "./media/characters/huckle/back.svg",
  37949. extra: 1738/1651,
  37950. bottom: 37/1775
  37951. }
  37952. },
  37953. laughing: {
  37954. height: math.unit(3.75, "feet"),
  37955. name: "Laughing",
  37956. image: {
  37957. source: "./media/characters/huckle/laughing.svg"
  37958. }
  37959. },
  37960. angry: {
  37961. height: math.unit(4.15, "feet"),
  37962. name: "Angry",
  37963. image: {
  37964. source: "./media/characters/huckle/angry.svg"
  37965. }
  37966. },
  37967. },
  37968. [
  37969. {
  37970. name: "Normal",
  37971. height: math.unit(16, "feet"),
  37972. default: true
  37973. },
  37974. {
  37975. name: "Mini Macro",
  37976. height: math.unit(463, "feet")
  37977. },
  37978. {
  37979. name: "Macro",
  37980. height: math.unit(1680, "meters")
  37981. },
  37982. {
  37983. name: "Mega Macro",
  37984. height: math.unit(175, "km")
  37985. },
  37986. {
  37987. name: "Terra Macro",
  37988. height: math.unit(32, "gigameters")
  37989. },
  37990. {
  37991. name: "Multiverse+",
  37992. height: math.unit(2.56e23, "yottameters")
  37993. },
  37994. ]
  37995. ))
  37996. characterMakers.push(() => makeCharacter(
  37997. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37998. {
  37999. front: {
  38000. height: math.unit(6 + 9/12, "feet"),
  38001. weight: math.unit(280, "lb"),
  38002. name: "Front",
  38003. image: {
  38004. source: "./media/characters/candy/front.svg",
  38005. extra: 234/217,
  38006. bottom: 11/245
  38007. }
  38008. },
  38009. },
  38010. [
  38011. {
  38012. name: "Really Small",
  38013. height: math.unit(0.1, "nm")
  38014. },
  38015. {
  38016. name: "Micro",
  38017. height: math.unit(2, "inches")
  38018. },
  38019. {
  38020. name: "Normal",
  38021. height: math.unit(6 + 9/12, "feet"),
  38022. default: true
  38023. },
  38024. {
  38025. name: "Small Macro",
  38026. height: math.unit(69, "feet")
  38027. },
  38028. {
  38029. name: "Macro",
  38030. height: math.unit(160, "feet")
  38031. },
  38032. {
  38033. name: "Megamacro",
  38034. height: math.unit(22000, "miles")
  38035. },
  38036. {
  38037. name: "Gigamacro",
  38038. height: math.unit(50000, "miles")
  38039. },
  38040. ]
  38041. ))
  38042. characterMakers.push(() => makeCharacter(
  38043. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  38044. {
  38045. front: {
  38046. height: math.unit(4, "feet"),
  38047. weight: math.unit(90, "lb"),
  38048. name: "Front",
  38049. image: {
  38050. source: "./media/characters/joey-mcdonald/front.svg",
  38051. extra: 1059/852,
  38052. bottom: 33/1092
  38053. }
  38054. },
  38055. back: {
  38056. height: math.unit(4, "feet"),
  38057. weight: math.unit(90, "lb"),
  38058. name: "Back",
  38059. image: {
  38060. source: "./media/characters/joey-mcdonald/back.svg",
  38061. extra: 1077/879,
  38062. bottom: 5/1082
  38063. }
  38064. },
  38065. frontKobold: {
  38066. height: math.unit(4, "feet"),
  38067. weight: math.unit(100, "lb"),
  38068. name: "Front-kobold",
  38069. image: {
  38070. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  38071. extra: 1480/1367,
  38072. bottom: 0/1480
  38073. }
  38074. },
  38075. backKobold: {
  38076. height: math.unit(4, "feet"),
  38077. weight: math.unit(100, "lb"),
  38078. name: "Back-kobold",
  38079. image: {
  38080. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  38081. extra: 1449/1361,
  38082. bottom: 0/1449
  38083. }
  38084. },
  38085. },
  38086. [
  38087. {
  38088. name: "Normal",
  38089. height: math.unit(4, "feet"),
  38090. default: true
  38091. },
  38092. ]
  38093. ))
  38094. characterMakers.push(() => makeCharacter(
  38095. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  38096. {
  38097. front: {
  38098. height: math.unit(12 + 6/12, "feet"),
  38099. name: "Front",
  38100. image: {
  38101. source: "./media/characters/kass-lockheed/front.svg",
  38102. extra: 354/343,
  38103. bottom: 9/363
  38104. }
  38105. },
  38106. back: {
  38107. height: math.unit(12 + 6/12, "feet"),
  38108. name: "Back",
  38109. image: {
  38110. source: "./media/characters/kass-lockheed/back.svg",
  38111. extra: 364/352,
  38112. bottom: 3/367
  38113. }
  38114. },
  38115. dick: {
  38116. height: math.unit(3.12, "feet"),
  38117. name: "Dick",
  38118. image: {
  38119. source: "./media/characters/kass-lockheed/dick.svg"
  38120. }
  38121. },
  38122. head: {
  38123. height: math.unit(2.6, "feet"),
  38124. name: "Head",
  38125. image: {
  38126. source: "./media/characters/kass-lockheed/head.svg"
  38127. }
  38128. },
  38129. bleh: {
  38130. height: math.unit(2.85, "feet"),
  38131. name: "Bleh",
  38132. image: {
  38133. source: "./media/characters/kass-lockheed/bleh.svg"
  38134. }
  38135. },
  38136. smug: {
  38137. height: math.unit(2.85, "feet"),
  38138. name: "Smug",
  38139. image: {
  38140. source: "./media/characters/kass-lockheed/smug.svg"
  38141. }
  38142. },
  38143. },
  38144. [
  38145. {
  38146. name: "Normal",
  38147. height: math.unit(12 + 6/12, "feet"),
  38148. default: true
  38149. },
  38150. ]
  38151. ))
  38152. characterMakers.push(() => makeCharacter(
  38153. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  38154. {
  38155. front: {
  38156. height: math.unit(6 + 2/12, "feet"),
  38157. name: "Front",
  38158. image: {
  38159. source: "./media/characters/taylor/front.svg",
  38160. extra: 639/495,
  38161. bottom: 12/651
  38162. }
  38163. },
  38164. },
  38165. [
  38166. {
  38167. name: "Normal",
  38168. height: math.unit(6 + 2/12, "feet"),
  38169. default: true
  38170. },
  38171. {
  38172. name: "Big",
  38173. height: math.unit(15, "feet")
  38174. },
  38175. {
  38176. name: "Lorg",
  38177. height: math.unit(80, "feet")
  38178. },
  38179. {
  38180. name: "Too Lorg",
  38181. height: math.unit(120, "feet")
  38182. },
  38183. ]
  38184. ))
  38185. characterMakers.push(() => makeCharacter(
  38186. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  38187. {
  38188. front: {
  38189. height: math.unit(15, "feet"),
  38190. name: "Front",
  38191. image: {
  38192. source: "./media/characters/kaizer/front.svg",
  38193. extra: 1612/1436,
  38194. bottom: 43/1655
  38195. }
  38196. },
  38197. },
  38198. [
  38199. {
  38200. name: "Normal",
  38201. height: math.unit(15, "feet"),
  38202. default: true
  38203. },
  38204. ]
  38205. ))
  38206. characterMakers.push(() => makeCharacter(
  38207. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  38208. {
  38209. front: {
  38210. height: math.unit(2, "feet"),
  38211. weight: math.unit(30, "lb"),
  38212. name: "Front",
  38213. image: {
  38214. source: "./media/characters/sandy/front.svg",
  38215. extra: 1439/1307,
  38216. bottom: 194/1633
  38217. }
  38218. },
  38219. },
  38220. [
  38221. {
  38222. name: "Normal",
  38223. height: math.unit(2, "feet"),
  38224. default: true
  38225. },
  38226. ]
  38227. ))
  38228. characterMakers.push(() => makeCharacter(
  38229. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  38230. {
  38231. front: {
  38232. height: math.unit(3, "feet"),
  38233. name: "Front",
  38234. image: {
  38235. source: "./media/characters/mellvi/front.svg",
  38236. extra: 1831/1630,
  38237. bottom: 58/1889
  38238. }
  38239. },
  38240. },
  38241. [
  38242. {
  38243. name: "Normal",
  38244. height: math.unit(3, "feet"),
  38245. default: true
  38246. },
  38247. ]
  38248. ))
  38249. characterMakers.push(() => makeCharacter(
  38250. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  38251. {
  38252. front: {
  38253. height: math.unit(5 + 11/12, "feet"),
  38254. weight: math.unit(200, "lb"),
  38255. name: "Front",
  38256. image: {
  38257. source: "./media/characters/shirou/front.svg",
  38258. extra: 2491/2383,
  38259. bottom: 189/2680
  38260. }
  38261. },
  38262. back: {
  38263. height: math.unit(5 + 11/12, "feet"),
  38264. weight: math.unit(200, "lb"),
  38265. name: "Back",
  38266. image: {
  38267. source: "./media/characters/shirou/back.svg",
  38268. extra: 2554/2450,
  38269. bottom: 76/2630
  38270. }
  38271. },
  38272. },
  38273. [
  38274. {
  38275. name: "Normal",
  38276. height: math.unit(5 + 11/12, "feet"),
  38277. default: true
  38278. },
  38279. ]
  38280. ))
  38281. characterMakers.push(() => makeCharacter(
  38282. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  38283. {
  38284. front: {
  38285. height: math.unit(6 + 3/12, "feet"),
  38286. weight: math.unit(177, "lb"),
  38287. name: "Front",
  38288. image: {
  38289. source: "./media/characters/noryu/front.svg",
  38290. extra: 973/885,
  38291. bottom: 10/983
  38292. }
  38293. },
  38294. },
  38295. [
  38296. {
  38297. name: "Normal",
  38298. height: math.unit(6 + 3/12, "feet"),
  38299. default: true
  38300. },
  38301. ]
  38302. ))
  38303. characterMakers.push(() => makeCharacter(
  38304. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  38305. {
  38306. front: {
  38307. height: math.unit(5 + 6/12, "feet"),
  38308. weight: math.unit(170, "lb"),
  38309. name: "Front",
  38310. image: {
  38311. source: "./media/characters/mevolas-rubenido/front.svg",
  38312. extra: 2109/1901,
  38313. bottom: 96/2205
  38314. }
  38315. },
  38316. },
  38317. [
  38318. {
  38319. name: "Normal",
  38320. height: math.unit(5 + 6/12, "feet"),
  38321. default: true
  38322. },
  38323. ]
  38324. ))
  38325. characterMakers.push(() => makeCharacter(
  38326. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  38327. {
  38328. front: {
  38329. height: math.unit(100, "feet"),
  38330. name: "Front",
  38331. image: {
  38332. source: "./media/characters/dee/front.svg",
  38333. extra: 2153/2036,
  38334. bottom: 59/2212
  38335. }
  38336. },
  38337. back: {
  38338. height: math.unit(100, "feet"),
  38339. name: "Back",
  38340. image: {
  38341. source: "./media/characters/dee/back.svg",
  38342. extra: 2183/2058,
  38343. bottom: 75/2258
  38344. }
  38345. },
  38346. foot: {
  38347. height: math.unit(19.43, "feet"),
  38348. name: "Foot",
  38349. image: {
  38350. source: "./media/characters/dee/foot.svg"
  38351. }
  38352. },
  38353. hoof: {
  38354. height: math.unit(20.6, "feet"),
  38355. name: "Hoof",
  38356. image: {
  38357. source: "./media/characters/dee/hoof.svg"
  38358. }
  38359. },
  38360. },
  38361. [
  38362. {
  38363. name: "Macro",
  38364. height: math.unit(100, "feet"),
  38365. default: true
  38366. },
  38367. ]
  38368. ))
  38369. characterMakers.push(() => makeCharacter(
  38370. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  38371. {
  38372. front: {
  38373. height: math.unit(5 + 6/12, "feet"),
  38374. name: "Front",
  38375. image: {
  38376. source: "./media/characters/teh/front.svg",
  38377. extra: 1002/847,
  38378. bottom: 62/1064
  38379. }
  38380. },
  38381. },
  38382. [
  38383. {
  38384. name: "Normal",
  38385. height: math.unit(5 + 6/12, "feet"),
  38386. default: true
  38387. },
  38388. ]
  38389. ))
  38390. characterMakers.push(() => makeCharacter(
  38391. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  38392. {
  38393. side: {
  38394. height: math.unit(6 + 1/12, "feet"),
  38395. weight: math.unit(204, "lb"),
  38396. name: "Side",
  38397. image: {
  38398. source: "./media/characters/quicksilver-ayukoti/side.svg",
  38399. extra: 974/775,
  38400. bottom: 169/1143
  38401. }
  38402. },
  38403. sitting: {
  38404. height: math.unit(6 + 2/12, "feet"),
  38405. weight: math.unit(204, "lb"),
  38406. name: "Sitting",
  38407. image: {
  38408. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  38409. extra: 1175/964,
  38410. bottom: 378/1553
  38411. }
  38412. },
  38413. },
  38414. [
  38415. {
  38416. name: "Normal",
  38417. height: math.unit(6 + 1/12, "feet"),
  38418. default: true
  38419. },
  38420. ]
  38421. ))
  38422. characterMakers.push(() => makeCharacter(
  38423. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  38424. {
  38425. front: {
  38426. height: math.unit(6, "inches"),
  38427. name: "Front",
  38428. image: {
  38429. source: "./media/characters/tululi/front.svg",
  38430. extra: 1997/1876,
  38431. bottom: 20/2017
  38432. }
  38433. },
  38434. },
  38435. [
  38436. {
  38437. name: "Normal",
  38438. height: math.unit(6, "inches"),
  38439. default: true
  38440. },
  38441. ]
  38442. ))
  38443. characterMakers.push(() => makeCharacter(
  38444. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  38445. {
  38446. front: {
  38447. height: math.unit(4 + 1/12, "feet"),
  38448. name: "Front",
  38449. image: {
  38450. source: "./media/characters/star/front.svg",
  38451. extra: 1493/1189,
  38452. bottom: 48/1541
  38453. }
  38454. },
  38455. },
  38456. [
  38457. {
  38458. name: "Normal",
  38459. height: math.unit(4 + 1/12, "feet"),
  38460. default: true
  38461. },
  38462. ]
  38463. ))
  38464. characterMakers.push(() => makeCharacter(
  38465. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  38466. {
  38467. front: {
  38468. height: math.unit(6 + 3/12, "feet"),
  38469. name: "Front",
  38470. image: {
  38471. source: "./media/characters/comet/front.svg",
  38472. extra: 1681/1462,
  38473. bottom: 26/1707
  38474. }
  38475. },
  38476. },
  38477. [
  38478. {
  38479. name: "Normal",
  38480. height: math.unit(6 + 3/12, "feet"),
  38481. default: true
  38482. },
  38483. ]
  38484. ))
  38485. characterMakers.push(() => makeCharacter(
  38486. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  38487. {
  38488. front: {
  38489. height: math.unit(950, "feet"),
  38490. name: "Front",
  38491. image: {
  38492. source: "./media/characters/vortex/front.svg",
  38493. extra: 1497/1434,
  38494. bottom: 56/1553
  38495. }
  38496. },
  38497. maw: {
  38498. height: math.unit(285, "feet"),
  38499. name: "Maw",
  38500. image: {
  38501. source: "./media/characters/vortex/maw.svg"
  38502. }
  38503. },
  38504. },
  38505. [
  38506. {
  38507. name: "Macro",
  38508. height: math.unit(950, "feet"),
  38509. default: true
  38510. },
  38511. ]
  38512. ))
  38513. characterMakers.push(() => makeCharacter(
  38514. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  38515. {
  38516. front: {
  38517. height: math.unit(600, "feet"),
  38518. weight: math.unit(0.02, "grams"),
  38519. name: "Front",
  38520. image: {
  38521. source: "./media/characters/doodle/front.svg",
  38522. extra: 1578/1413,
  38523. bottom: 37/1615
  38524. }
  38525. },
  38526. },
  38527. [
  38528. {
  38529. name: "Macro",
  38530. height: math.unit(600, "feet"),
  38531. default: true
  38532. },
  38533. ]
  38534. ))
  38535. characterMakers.push(() => makeCharacter(
  38536. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  38537. {
  38538. front: {
  38539. height: math.unit(6 + 6/12, "feet"),
  38540. name: "Front",
  38541. image: {
  38542. source: "./media/characters/jai/front.svg",
  38543. extra: 1645/1534,
  38544. bottom: 115/1760
  38545. }
  38546. },
  38547. },
  38548. [
  38549. {
  38550. name: "Normal",
  38551. height: math.unit(6 + 6/12, "feet"),
  38552. default: true
  38553. },
  38554. ]
  38555. ))
  38556. characterMakers.push(() => makeCharacter(
  38557. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  38558. {
  38559. front: {
  38560. height: math.unit(6 + 8/12, "feet"),
  38561. name: "Front",
  38562. image: {
  38563. source: "./media/characters/pixel/front.svg",
  38564. extra: 1900/1735,
  38565. bottom: 63/1963
  38566. }
  38567. },
  38568. },
  38569. [
  38570. {
  38571. name: "Normal",
  38572. height: math.unit(6 + 8/12, "feet"),
  38573. default: true
  38574. },
  38575. ]
  38576. ))
  38577. characterMakers.push(() => makeCharacter(
  38578. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38579. {
  38580. back: {
  38581. height: math.unit(4 + 1/12, "feet"),
  38582. weight: math.unit(75, "lb"),
  38583. name: "Back",
  38584. image: {
  38585. source: "./media/characters/rhett/back.svg",
  38586. extra: 930/878,
  38587. bottom: 25/955
  38588. }
  38589. },
  38590. front: {
  38591. height: math.unit(4 + 1/12, "feet"),
  38592. weight: math.unit(75, "lb"),
  38593. name: "Front",
  38594. image: {
  38595. source: "./media/characters/rhett/front.svg",
  38596. extra: 1682/1586,
  38597. bottom: 92/1774
  38598. }
  38599. },
  38600. },
  38601. [
  38602. {
  38603. name: "Micro",
  38604. height: math.unit(8, "inches")
  38605. },
  38606. {
  38607. name: "Tiny",
  38608. height: math.unit(2, "feet")
  38609. },
  38610. {
  38611. name: "Normal",
  38612. height: math.unit(4 + 1/12, "feet"),
  38613. default: true
  38614. },
  38615. ]
  38616. ))
  38617. characterMakers.push(() => makeCharacter(
  38618. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  38619. {
  38620. front: {
  38621. height: math.unit(3 + 3/12, "feet"),
  38622. name: "Front",
  38623. image: {
  38624. source: "./media/characters/penny/front.svg",
  38625. extra: 1406/1311,
  38626. bottom: 26/1432
  38627. }
  38628. },
  38629. },
  38630. [
  38631. {
  38632. name: "Normal",
  38633. height: math.unit(3 + 3/12, "feet"),
  38634. default: true
  38635. },
  38636. ]
  38637. ))
  38638. characterMakers.push(() => makeCharacter(
  38639. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38640. {
  38641. front: {
  38642. height: math.unit(4 + 11/12, "feet"),
  38643. name: "Front",
  38644. image: {
  38645. source: "./media/characters/monty/front.svg",
  38646. extra: 1479/1209,
  38647. bottom: 0/1479
  38648. }
  38649. },
  38650. },
  38651. [
  38652. {
  38653. name: "Normal",
  38654. height: math.unit(4 + 11/12, "feet"),
  38655. default: true
  38656. },
  38657. ]
  38658. ))
  38659. characterMakers.push(() => makeCharacter(
  38660. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38661. {
  38662. front: {
  38663. height: math.unit(8 + 4/12, "feet"),
  38664. name: "Front",
  38665. image: {
  38666. source: "./media/characters/sterling/front.svg",
  38667. extra: 1420/1236,
  38668. bottom: 27/1447
  38669. }
  38670. },
  38671. },
  38672. [
  38673. {
  38674. name: "Normal",
  38675. height: math.unit(8 + 4/12, "feet"),
  38676. default: true
  38677. },
  38678. ]
  38679. ))
  38680. characterMakers.push(() => makeCharacter(
  38681. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38682. {
  38683. front: {
  38684. height: math.unit(15, "feet"),
  38685. name: "Front",
  38686. image: {
  38687. source: "./media/characters/marble/front.svg",
  38688. extra: 973/937,
  38689. bottom: 32/1005
  38690. }
  38691. },
  38692. },
  38693. [
  38694. {
  38695. name: "Normal",
  38696. height: math.unit(15, "feet"),
  38697. default: true
  38698. },
  38699. ]
  38700. ))
  38701. characterMakers.push(() => makeCharacter(
  38702. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38703. {
  38704. front: {
  38705. height: math.unit(3, "inches"),
  38706. name: "Front",
  38707. image: {
  38708. source: "./media/characters/powder/front.svg",
  38709. extra: 1504/1334,
  38710. bottom: 518/2022
  38711. }
  38712. },
  38713. },
  38714. [
  38715. {
  38716. name: "Normal",
  38717. height: math.unit(3, "inches"),
  38718. default: true
  38719. },
  38720. ]
  38721. ))
  38722. characterMakers.push(() => makeCharacter(
  38723. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  38724. {
  38725. front: {
  38726. height: math.unit(4 + 5/12, "feet"),
  38727. name: "Front",
  38728. image: {
  38729. source: "./media/characters/joey-raccoon/front.svg",
  38730. extra: 1273/1197,
  38731. bottom: 0/1273
  38732. }
  38733. },
  38734. },
  38735. [
  38736. {
  38737. name: "Normal",
  38738. height: math.unit(4 + 5/12, "feet"),
  38739. default: true
  38740. },
  38741. ]
  38742. ))
  38743. characterMakers.push(() => makeCharacter(
  38744. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38745. {
  38746. front: {
  38747. height: math.unit(8 + 4/12, "feet"),
  38748. name: "Front",
  38749. image: {
  38750. source: "./media/characters/vick/front.svg",
  38751. extra: 2187/2118,
  38752. bottom: 47/2234
  38753. }
  38754. },
  38755. },
  38756. [
  38757. {
  38758. name: "Normal",
  38759. height: math.unit(8 + 4/12, "feet"),
  38760. default: true
  38761. },
  38762. ]
  38763. ))
  38764. characterMakers.push(() => makeCharacter(
  38765. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38766. {
  38767. front: {
  38768. height: math.unit(5 + 5/12, "feet"),
  38769. name: "Front",
  38770. image: {
  38771. source: "./media/characters/mitsy/front.svg",
  38772. extra: 1842/1695,
  38773. bottom: 0/1842
  38774. }
  38775. },
  38776. },
  38777. [
  38778. {
  38779. name: "Normal",
  38780. height: math.unit(5 + 5/12, "feet"),
  38781. default: true
  38782. },
  38783. ]
  38784. ))
  38785. characterMakers.push(() => makeCharacter(
  38786. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38787. {
  38788. front: {
  38789. height: math.unit(6 + 3/12, "feet"),
  38790. name: "Front",
  38791. image: {
  38792. source: "./media/characters/silvy/front.svg",
  38793. extra: 1995/1836,
  38794. bottom: 225/2220
  38795. }
  38796. },
  38797. },
  38798. [
  38799. {
  38800. name: "Normal",
  38801. height: math.unit(6 + 3/12, "feet"),
  38802. default: true
  38803. },
  38804. ]
  38805. ))
  38806. characterMakers.push(() => makeCharacter(
  38807. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38808. {
  38809. front: {
  38810. height: math.unit(3 + 8/12, "feet"),
  38811. name: "Front",
  38812. image: {
  38813. source: "./media/characters/rodney/front.svg",
  38814. extra: 1956/1747,
  38815. bottom: 31/1987
  38816. }
  38817. },
  38818. frontDressed: {
  38819. height: math.unit(2.9, "feet"),
  38820. name: "Front (Dressed)",
  38821. image: {
  38822. source: "./media/characters/rodney/front-dressed.svg",
  38823. extra: 1382/1241,
  38824. bottom: 385/1767
  38825. }
  38826. },
  38827. },
  38828. [
  38829. {
  38830. name: "Normal",
  38831. height: math.unit(3 + 8/12, "feet"),
  38832. default: true
  38833. },
  38834. ]
  38835. ))
  38836. characterMakers.push(() => makeCharacter(
  38837. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38838. {
  38839. front: {
  38840. height: math.unit(5 + 9/12, "feet"),
  38841. weight: math.unit(194, "lbs"),
  38842. name: "Front",
  38843. image: {
  38844. source: "./media/characters/zakail-sudekai/front.svg",
  38845. extra: 2696/2533,
  38846. bottom: 248/2944
  38847. }
  38848. },
  38849. maw: {
  38850. height: math.unit(1.35, "feet"),
  38851. name: "Maw",
  38852. image: {
  38853. source: "./media/characters/zakail-sudekai/maw.svg"
  38854. }
  38855. },
  38856. },
  38857. [
  38858. {
  38859. name: "Normal",
  38860. height: math.unit(5 + 9/12, "feet"),
  38861. default: true
  38862. },
  38863. ]
  38864. ))
  38865. characterMakers.push(() => makeCharacter(
  38866. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38867. {
  38868. front: {
  38869. height: math.unit(8 + 4/12, "feet"),
  38870. weight: math.unit(1200, "lb"),
  38871. name: "Front",
  38872. image: {
  38873. source: "./media/characters/eleanor/front.svg",
  38874. extra: 1226/1192,
  38875. bottom: 52/1278
  38876. }
  38877. },
  38878. back: {
  38879. height: math.unit(8 + 4/12, "feet"),
  38880. weight: math.unit(1200, "lb"),
  38881. name: "Back",
  38882. image: {
  38883. source: "./media/characters/eleanor/back.svg",
  38884. extra: 1242/1184,
  38885. bottom: 60/1302
  38886. }
  38887. },
  38888. head: {
  38889. height: math.unit(2.62, "feet"),
  38890. name: "Head",
  38891. image: {
  38892. source: "./media/characters/eleanor/head.svg"
  38893. }
  38894. },
  38895. },
  38896. [
  38897. {
  38898. name: "Normal",
  38899. height: math.unit(8 + 4/12, "feet"),
  38900. default: true
  38901. },
  38902. ]
  38903. ))
  38904. characterMakers.push(() => makeCharacter(
  38905. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38906. {
  38907. front: {
  38908. height: math.unit(8 + 4/12, "feet"),
  38909. weight: math.unit(750, "lb"),
  38910. name: "Front",
  38911. image: {
  38912. source: "./media/characters/tanya/front.svg",
  38913. extra: 1749/1615,
  38914. bottom: 33/1782
  38915. }
  38916. },
  38917. },
  38918. [
  38919. {
  38920. name: "Normal",
  38921. height: math.unit(8 + 4/12, "feet"),
  38922. default: true
  38923. },
  38924. ]
  38925. ))
  38926. characterMakers.push(() => makeCharacter(
  38927. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38928. {
  38929. front: {
  38930. height: math.unit(5, "feet"),
  38931. weight: math.unit(225, "lb"),
  38932. name: "Front",
  38933. image: {
  38934. source: "./media/characters/cindy/front.svg",
  38935. extra: 1320/1250,
  38936. bottom: 42/1362
  38937. }
  38938. },
  38939. frontDressed: {
  38940. height: math.unit(5, "feet"),
  38941. weight: math.unit(225, "lb"),
  38942. name: "Front (Dressed)",
  38943. image: {
  38944. source: "./media/characters/cindy/front-dressed.svg",
  38945. extra: 1320/1250,
  38946. bottom: 42/1362
  38947. }
  38948. },
  38949. back: {
  38950. height: math.unit(5, "feet"),
  38951. weight: math.unit(225, "lb"),
  38952. name: "Back",
  38953. image: {
  38954. source: "./media/characters/cindy/back.svg",
  38955. extra: 1384/1346,
  38956. bottom: 14/1398
  38957. }
  38958. },
  38959. },
  38960. [
  38961. {
  38962. name: "Normal",
  38963. height: math.unit(5, "feet"),
  38964. default: true
  38965. },
  38966. ]
  38967. ))
  38968. characterMakers.push(() => makeCharacter(
  38969. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38970. {
  38971. front: {
  38972. height: math.unit(6 + 9/12, "feet"),
  38973. weight: math.unit(440, "lb"),
  38974. name: "Front",
  38975. image: {
  38976. source: "./media/characters/wilbur-owen/front.svg",
  38977. extra: 1575/1448,
  38978. bottom: 72/1647
  38979. }
  38980. },
  38981. back: {
  38982. height: math.unit(6 + 9/12, "feet"),
  38983. weight: math.unit(440, "lb"),
  38984. name: "Back",
  38985. image: {
  38986. source: "./media/characters/wilbur-owen/back.svg",
  38987. extra: 1578/1445,
  38988. bottom: 36/1614
  38989. }
  38990. },
  38991. },
  38992. [
  38993. {
  38994. name: "Normal",
  38995. height: math.unit(6 + 9/12, "feet"),
  38996. default: true
  38997. },
  38998. ]
  38999. ))
  39000. characterMakers.push(() => makeCharacter(
  39001. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  39002. {
  39003. front: {
  39004. height: math.unit(6 + 5/12, "feet"),
  39005. weight: math.unit(650, "lb"),
  39006. name: "Front",
  39007. image: {
  39008. source: "./media/characters/keegan/front.svg",
  39009. extra: 2387/2198,
  39010. bottom: 33/2420
  39011. }
  39012. },
  39013. side: {
  39014. height: math.unit(6 + 5/12, "feet"),
  39015. weight: math.unit(650, "lb"),
  39016. name: "Side",
  39017. image: {
  39018. source: "./media/characters/keegan/side.svg",
  39019. extra: 2390/2202,
  39020. bottom: 47/2437
  39021. }
  39022. },
  39023. back: {
  39024. height: math.unit(6 + 5/12, "feet"),
  39025. weight: math.unit(650, "lb"),
  39026. name: "Back",
  39027. image: {
  39028. source: "./media/characters/keegan/back.svg",
  39029. extra: 2418/2268,
  39030. bottom: 15/2433
  39031. }
  39032. },
  39033. frontSfw: {
  39034. height: math.unit(6 + 5/12, "feet"),
  39035. weight: math.unit(650, "lb"),
  39036. name: "Front (SFW)",
  39037. image: {
  39038. source: "./media/characters/keegan/front-sfw.svg",
  39039. extra: 2387/2198,
  39040. bottom: 33/2420
  39041. }
  39042. },
  39043. beans: {
  39044. height: math.unit(1.85, "feet"),
  39045. name: "Beans",
  39046. image: {
  39047. source: "./media/characters/keegan/beans.svg"
  39048. }
  39049. },
  39050. },
  39051. [
  39052. {
  39053. name: "Normal",
  39054. height: math.unit(6 + 5/12, "feet"),
  39055. default: true
  39056. },
  39057. ]
  39058. ))
  39059. characterMakers.push(() => makeCharacter(
  39060. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  39061. {
  39062. front: {
  39063. height: math.unit(9, "feet"),
  39064. name: "Front",
  39065. image: {
  39066. source: "./media/characters/colton/front.svg",
  39067. extra: 1589/1326,
  39068. bottom: 139/1728
  39069. }
  39070. },
  39071. },
  39072. [
  39073. {
  39074. name: "Normal",
  39075. height: math.unit(9, "feet"),
  39076. default: true
  39077. },
  39078. ]
  39079. ))
  39080. characterMakers.push(() => makeCharacter(
  39081. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  39082. {
  39083. front: {
  39084. height: math.unit(2 + 9/12, "feet"),
  39085. name: "Front",
  39086. image: {
  39087. source: "./media/characters/bora/front.svg",
  39088. extra: 1265/1250,
  39089. bottom: 24/1289
  39090. }
  39091. },
  39092. },
  39093. [
  39094. {
  39095. name: "Normal",
  39096. height: math.unit(2 + 9/12, "feet"),
  39097. default: true
  39098. },
  39099. ]
  39100. ))
  39101. characterMakers.push(() => makeCharacter(
  39102. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  39103. {
  39104. front: {
  39105. height: math.unit(8, "feet"),
  39106. name: "Front",
  39107. image: {
  39108. source: "./media/characters/myu-myu/front.svg",
  39109. extra: 1949/1857,
  39110. bottom: 90/2039
  39111. }
  39112. },
  39113. },
  39114. [
  39115. {
  39116. name: "Normal",
  39117. height: math.unit(8, "feet"),
  39118. default: true
  39119. },
  39120. {
  39121. name: "Big",
  39122. height: math.unit(15, "feet")
  39123. },
  39124. {
  39125. name: "BIG",
  39126. height: math.unit(25, "feet")
  39127. },
  39128. ]
  39129. ))
  39130. characterMakers.push(() => makeCharacter(
  39131. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  39132. {
  39133. side: {
  39134. height: math.unit(7 + 5/12, "feet"),
  39135. weight: math.unit(2800, "lb"),
  39136. name: "Side",
  39137. image: {
  39138. source: "./media/characters/haloren/side.svg",
  39139. extra: 1793/409,
  39140. bottom: 59/1852
  39141. }
  39142. },
  39143. frontPaw: {
  39144. height: math.unit(2.36, "feet"),
  39145. name: "Front paw",
  39146. image: {
  39147. source: "./media/characters/haloren/front-paw.svg"
  39148. }
  39149. },
  39150. hindPaw: {
  39151. height: math.unit(3.18, "feet"),
  39152. name: "Hind paw",
  39153. image: {
  39154. source: "./media/characters/haloren/hind-paw.svg"
  39155. }
  39156. },
  39157. maw: {
  39158. height: math.unit(5.05, "feet"),
  39159. name: "Maw",
  39160. image: {
  39161. source: "./media/characters/haloren/maw.svg"
  39162. }
  39163. },
  39164. dick: {
  39165. height: math.unit(2.90, "feet"),
  39166. name: "Dick",
  39167. image: {
  39168. source: "./media/characters/haloren/dick.svg"
  39169. }
  39170. },
  39171. },
  39172. [
  39173. {
  39174. name: "Normal",
  39175. height: math.unit(7 + 5/12, "feet"),
  39176. default: true
  39177. },
  39178. {
  39179. name: "Enhanced",
  39180. height: math.unit(14 + 3/12, "feet")
  39181. },
  39182. ]
  39183. ))
  39184. characterMakers.push(() => makeCharacter(
  39185. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  39186. {
  39187. front: {
  39188. height: math.unit(171, "cm"),
  39189. name: "Front",
  39190. image: {
  39191. source: "./media/characters/kimmy/front.svg",
  39192. extra: 1491/1435,
  39193. bottom: 53/1544
  39194. }
  39195. },
  39196. },
  39197. [
  39198. {
  39199. name: "Small",
  39200. height: math.unit(9, "cm")
  39201. },
  39202. {
  39203. name: "Normal",
  39204. height: math.unit(171, "cm"),
  39205. default: true
  39206. },
  39207. ]
  39208. ))
  39209. characterMakers.push(() => makeCharacter(
  39210. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  39211. {
  39212. front: {
  39213. height: math.unit(8, "feet"),
  39214. weight: math.unit(300, "lb"),
  39215. name: "Front",
  39216. image: {
  39217. source: "./media/characters/galeboomer/front.svg",
  39218. extra: 4651/4415,
  39219. bottom: 162/4813
  39220. }
  39221. },
  39222. back: {
  39223. height: math.unit(8, "feet"),
  39224. weight: math.unit(300, "lb"),
  39225. name: "Back",
  39226. image: {
  39227. source: "./media/characters/galeboomer/back.svg",
  39228. extra: 4544/4314,
  39229. bottom: 16/4560
  39230. }
  39231. },
  39232. frontAlt: {
  39233. height: math.unit(8, "feet"),
  39234. weight: math.unit(300, "lb"),
  39235. name: "Front (Alt)",
  39236. image: {
  39237. source: "./media/characters/galeboomer/front-alt.svg",
  39238. extra: 4458/4228,
  39239. bottom: 68/4526
  39240. }
  39241. },
  39242. maw: {
  39243. height: math.unit(1.2, "feet"),
  39244. name: "Maw",
  39245. image: {
  39246. source: "./media/characters/galeboomer/maw.svg"
  39247. }
  39248. },
  39249. },
  39250. [
  39251. {
  39252. name: "Normal",
  39253. height: math.unit(8, "feet"),
  39254. default: true
  39255. },
  39256. ]
  39257. ))
  39258. characterMakers.push(() => makeCharacter(
  39259. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  39260. {
  39261. front: {
  39262. height: math.unit(5 + 9/12, "feet"),
  39263. weight: math.unit(120, "lb"),
  39264. name: "Front",
  39265. image: {
  39266. source: "./media/characters/chyr/front.svg",
  39267. extra: 1323/1254,
  39268. bottom: 63/1386
  39269. }
  39270. },
  39271. back: {
  39272. height: math.unit(5 + 9/12, "feet"),
  39273. weight: math.unit(120, "lb"),
  39274. name: "Back",
  39275. image: {
  39276. source: "./media/characters/chyr/back.svg",
  39277. extra: 1323/1252,
  39278. bottom: 48/1371
  39279. }
  39280. },
  39281. },
  39282. [
  39283. {
  39284. name: "Normal",
  39285. height: math.unit(5 + 9/12, "feet"),
  39286. default: true
  39287. },
  39288. ]
  39289. ))
  39290. characterMakers.push(() => makeCharacter(
  39291. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  39292. {
  39293. front: {
  39294. height: math.unit(7, "feet"),
  39295. weight: math.unit(310, "lb"),
  39296. name: "Front",
  39297. image: {
  39298. source: "./media/characters/solarus/front.svg",
  39299. extra: 2415/2021,
  39300. bottom: 103/2518
  39301. }
  39302. },
  39303. back: {
  39304. height: math.unit(7, "feet"),
  39305. weight: math.unit(310, "lb"),
  39306. name: "Back",
  39307. image: {
  39308. source: "./media/characters/solarus/back.svg",
  39309. extra: 2463/2089,
  39310. bottom: 79/2542
  39311. }
  39312. },
  39313. },
  39314. [
  39315. {
  39316. name: "Normal",
  39317. height: math.unit(7, "feet"),
  39318. default: true
  39319. },
  39320. ]
  39321. ))
  39322. characterMakers.push(() => makeCharacter(
  39323. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  39324. {
  39325. front: {
  39326. height: math.unit(16, "feet"),
  39327. name: "Front",
  39328. image: {
  39329. source: "./media/characters/mutsuju-koizaemon/front.svg",
  39330. extra: 1844/1780,
  39331. bottom: 58/1902
  39332. }
  39333. },
  39334. winterCoat: {
  39335. height: math.unit(16, "feet"),
  39336. name: "Winter Coat",
  39337. image: {
  39338. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  39339. extra: 1807/1775,
  39340. bottom: 69/1876
  39341. }
  39342. },
  39343. },
  39344. [
  39345. {
  39346. name: "Normal",
  39347. height: math.unit(16, "feet"),
  39348. default: true
  39349. },
  39350. {
  39351. name: "Chicago Size",
  39352. height: math.unit(560, "feet")
  39353. },
  39354. ]
  39355. ))
  39356. characterMakers.push(() => makeCharacter(
  39357. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  39358. {
  39359. front: {
  39360. height: math.unit(11 + 6/12, "feet"),
  39361. weight: math.unit(1366, "lb"),
  39362. name: "Front",
  39363. image: {
  39364. source: "./media/characters/lexor/front.svg",
  39365. extra: 1560/1481,
  39366. bottom: 211/1771
  39367. }
  39368. },
  39369. back: {
  39370. height: math.unit(11 + 6/12, "feet"),
  39371. weight: math.unit(1366, "lb"),
  39372. name: "Back",
  39373. image: {
  39374. source: "./media/characters/lexor/back.svg",
  39375. extra: 1614/1533,
  39376. bottom: 76/1690
  39377. }
  39378. },
  39379. maw: {
  39380. height: math.unit(3, "feet"),
  39381. name: "Maw",
  39382. image: {
  39383. source: "./media/characters/lexor/maw.svg"
  39384. }
  39385. },
  39386. dick: {
  39387. height: math.unit(2.59, "feet"),
  39388. name: "Dick",
  39389. image: {
  39390. source: "./media/characters/lexor/dick.svg"
  39391. }
  39392. },
  39393. },
  39394. [
  39395. {
  39396. name: "Normal",
  39397. height: math.unit(11 + 6/12, "feet"),
  39398. default: true
  39399. },
  39400. ]
  39401. ))
  39402. characterMakers.push(() => makeCharacter(
  39403. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  39404. {
  39405. front: {
  39406. height: math.unit(5 + 8/12, "feet"),
  39407. name: "Front",
  39408. image: {
  39409. source: "./media/characters/magnum/front.svg",
  39410. extra: 942/855,
  39411. bottom: 26/968
  39412. }
  39413. },
  39414. },
  39415. [
  39416. {
  39417. name: "Normal",
  39418. height: math.unit(5 + 8/12, "feet"),
  39419. default: true
  39420. },
  39421. ]
  39422. ))
  39423. characterMakers.push(() => makeCharacter(
  39424. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  39425. {
  39426. front: {
  39427. height: math.unit(18 + 4/12, "feet"),
  39428. weight: math.unit(1500, "kg"),
  39429. name: "Front",
  39430. image: {
  39431. source: "./media/characters/solas-sharpsman/front.svg",
  39432. extra: 1698/1589,
  39433. bottom: 0/1698
  39434. }
  39435. },
  39436. },
  39437. [
  39438. {
  39439. name: "Normal",
  39440. height: math.unit(18 + 4/12, "feet"),
  39441. default: true
  39442. },
  39443. ]
  39444. ))
  39445. characterMakers.push(() => makeCharacter(
  39446. { name: "October", species: ["tiger"], tags: ["anthro"] },
  39447. {
  39448. front: {
  39449. height: math.unit(5 + 5/12, "feet"),
  39450. weight: math.unit(180, "lb"),
  39451. name: "Front",
  39452. image: {
  39453. source: "./media/characters/october/front.svg",
  39454. extra: 1800/1650,
  39455. bottom: 0/1800
  39456. }
  39457. },
  39458. frontNsfw: {
  39459. height: math.unit(5 + 5/12, "feet"),
  39460. weight: math.unit(180, "lb"),
  39461. name: "Front (NSFW)",
  39462. image: {
  39463. source: "./media/characters/october/front-nsfw.svg",
  39464. extra: 1392/1307,
  39465. bottom: 42/1434
  39466. }
  39467. },
  39468. },
  39469. [
  39470. {
  39471. name: "Normal",
  39472. height: math.unit(5 + 5/12, "feet"),
  39473. default: true
  39474. },
  39475. ]
  39476. ))
  39477. characterMakers.push(() => makeCharacter(
  39478. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  39479. {
  39480. front: {
  39481. height: math.unit(8 + 6/12, "feet"),
  39482. name: "Front",
  39483. image: {
  39484. source: "./media/characters/essynkardi/front.svg",
  39485. extra: 1541/1457,
  39486. bottom: 47/1588
  39487. }
  39488. },
  39489. },
  39490. [
  39491. {
  39492. name: "Normal",
  39493. height: math.unit(8 + 6/12, "feet"),
  39494. default: true
  39495. },
  39496. ]
  39497. ))
  39498. characterMakers.push(() => makeCharacter(
  39499. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  39500. {
  39501. front: {
  39502. height: math.unit(6 + 6/12, "feet"),
  39503. weight: math.unit(7, "lb"),
  39504. name: "Front",
  39505. image: {
  39506. source: "./media/characters/icky/front.svg",
  39507. extra: 813/782,
  39508. bottom: 66/879
  39509. }
  39510. },
  39511. back: {
  39512. height: math.unit(6 + 6/12, "feet"),
  39513. weight: math.unit(7, "lb"),
  39514. name: "Back",
  39515. image: {
  39516. source: "./media/characters/icky/back.svg",
  39517. extra: 754/735,
  39518. bottom: 56/810
  39519. }
  39520. },
  39521. },
  39522. [
  39523. {
  39524. name: "Normal",
  39525. height: math.unit(6 + 6/12, "feet"),
  39526. default: true
  39527. },
  39528. ]
  39529. ))
  39530. characterMakers.push(() => makeCharacter(
  39531. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  39532. {
  39533. front: {
  39534. height: math.unit(15, "feet"),
  39535. name: "Front",
  39536. image: {
  39537. source: "./media/characters/rojas/front.svg",
  39538. extra: 1462/1408,
  39539. bottom: 95/1557
  39540. }
  39541. },
  39542. back: {
  39543. height: math.unit(15, "feet"),
  39544. name: "Back",
  39545. image: {
  39546. source: "./media/characters/rojas/back.svg",
  39547. extra: 1023/954,
  39548. bottom: 28/1051
  39549. }
  39550. },
  39551. },
  39552. [
  39553. {
  39554. name: "Normal",
  39555. height: math.unit(15, "feet"),
  39556. default: true
  39557. },
  39558. ]
  39559. ))
  39560. characterMakers.push(() => makeCharacter(
  39561. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  39562. {
  39563. frontHuman: {
  39564. height: math.unit(5 + 7/12, "feet"),
  39565. name: "Front (Human)",
  39566. image: {
  39567. source: "./media/characters/alek-dryagan/front-human.svg",
  39568. extra: 1687/1667,
  39569. bottom: 69/1756
  39570. }
  39571. },
  39572. backHuman: {
  39573. height: math.unit(5 + 7/12, "feet"),
  39574. name: "Back (Human)",
  39575. image: {
  39576. source: "./media/characters/alek-dryagan/back-human.svg",
  39577. extra: 1670/1649,
  39578. bottom: 65/1735
  39579. }
  39580. },
  39581. frontDemi: {
  39582. height: math.unit(65, "feet"),
  39583. name: "Front (Demi)",
  39584. image: {
  39585. source: "./media/characters/alek-dryagan/front-demi.svg",
  39586. extra: 1669/1642,
  39587. bottom: 49/1718
  39588. }
  39589. },
  39590. backDemi: {
  39591. height: math.unit(65, "feet"),
  39592. name: "Back (Demi)",
  39593. image: {
  39594. source: "./media/characters/alek-dryagan/back-demi.svg",
  39595. extra: 1658/1637,
  39596. bottom: 40/1698
  39597. }
  39598. },
  39599. mawHuman: {
  39600. height: math.unit(0.3, "feet"),
  39601. name: "Maw (Human)",
  39602. image: {
  39603. source: "./media/characters/alek-dryagan/maw-human.svg"
  39604. }
  39605. },
  39606. mawDemi: {
  39607. height: math.unit(3.8, "feet"),
  39608. name: "Maw (Demi)",
  39609. image: {
  39610. source: "./media/characters/alek-dryagan/maw-demi.svg"
  39611. }
  39612. },
  39613. },
  39614. [
  39615. {
  39616. name: "Normal",
  39617. height: math.unit(5 + 7/12, "feet"),
  39618. default: true
  39619. },
  39620. ]
  39621. ))
  39622. characterMakers.push(() => makeCharacter(
  39623. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  39624. {
  39625. frontHuman: {
  39626. height: math.unit(5 + 2/12, "feet"),
  39627. name: "Front (Human)",
  39628. image: {
  39629. source: "./media/characters/gen/front-human.svg",
  39630. extra: 1627/1538,
  39631. bottom: 71/1698
  39632. }
  39633. },
  39634. backHuman: {
  39635. height: math.unit(5 + 2/12, "feet"),
  39636. name: "Back (Human)",
  39637. image: {
  39638. source: "./media/characters/gen/back-human.svg",
  39639. extra: 1638/1548,
  39640. bottom: 69/1707
  39641. }
  39642. },
  39643. frontDemi: {
  39644. height: math.unit(5 + 2/12, "feet"),
  39645. name: "Front (Demi)",
  39646. image: {
  39647. source: "./media/characters/gen/front-demi.svg",
  39648. extra: 1627/1538,
  39649. bottom: 71/1698
  39650. }
  39651. },
  39652. backDemi: {
  39653. height: math.unit(5 + 2/12, "feet"),
  39654. name: "Back (Demi)",
  39655. image: {
  39656. source: "./media/characters/gen/back-demi.svg",
  39657. extra: 1638/1548,
  39658. bottom: 69/1707
  39659. }
  39660. },
  39661. },
  39662. [
  39663. {
  39664. name: "Normal",
  39665. height: math.unit(5 + 2/12, "feet"),
  39666. default: true
  39667. },
  39668. ]
  39669. ))
  39670. characterMakers.push(() => makeCharacter(
  39671. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39672. {
  39673. frontImp: {
  39674. height: math.unit(1 + 11/12, "feet"),
  39675. name: "Front (Imp)",
  39676. image: {
  39677. source: "./media/characters/max-kobold/front-imp.svg",
  39678. extra: 1238/1134,
  39679. bottom: 81/1319
  39680. }
  39681. },
  39682. backImp: {
  39683. height: math.unit(1 + 11/12, "feet"),
  39684. name: "Back (Imp)",
  39685. image: {
  39686. source: "./media/characters/max-kobold/back-imp.svg",
  39687. extra: 1334/1175,
  39688. bottom: 34/1368
  39689. }
  39690. },
  39691. frontDemi: {
  39692. height: math.unit(5 + 9/12, "feet"),
  39693. name: "Front (Demi)",
  39694. image: {
  39695. source: "./media/characters/max-kobold/front-demi.svg",
  39696. extra: 1715/1685,
  39697. bottom: 54/1769
  39698. }
  39699. },
  39700. backDemi: {
  39701. height: math.unit(5 + 9/12, "feet"),
  39702. name: "Back (Demi)",
  39703. image: {
  39704. source: "./media/characters/max-kobold/back-demi.svg",
  39705. extra: 1752/1729,
  39706. bottom: 41/1793
  39707. }
  39708. },
  39709. handImp: {
  39710. height: math.unit(0.45, "feet"),
  39711. name: "Hand (Imp)",
  39712. image: {
  39713. source: "./media/characters/max-kobold/hand.svg"
  39714. }
  39715. },
  39716. pawImp: {
  39717. height: math.unit(0.46, "feet"),
  39718. name: "Paw (Imp)",
  39719. image: {
  39720. source: "./media/characters/max-kobold/paw.svg"
  39721. }
  39722. },
  39723. handDemi: {
  39724. height: math.unit(0.80, "feet"),
  39725. name: "Hand (Demi)",
  39726. image: {
  39727. source: "./media/characters/max-kobold/hand.svg"
  39728. }
  39729. },
  39730. pawDemi: {
  39731. height: math.unit(1.1, "feet"),
  39732. name: "Paw (Demi)",
  39733. image: {
  39734. source: "./media/characters/max-kobold/paw.svg"
  39735. }
  39736. },
  39737. headImp: {
  39738. height: math.unit(1.33, "feet"),
  39739. name: "Head (Imp)",
  39740. image: {
  39741. source: "./media/characters/max-kobold/head-imp.svg"
  39742. }
  39743. },
  39744. mawImp: {
  39745. height: math.unit(0.75, "feet"),
  39746. name: "Maw (Imp)",
  39747. image: {
  39748. source: "./media/characters/max-kobold/maw-imp.svg"
  39749. }
  39750. },
  39751. mawDemi: {
  39752. height: math.unit(0.42, "feet"),
  39753. name: "Maw (Demi)",
  39754. image: {
  39755. source: "./media/characters/max-kobold/maw-demi.svg"
  39756. }
  39757. },
  39758. },
  39759. [
  39760. {
  39761. name: "Normal",
  39762. height: math.unit(1 + 11/12, "feet"),
  39763. default: true
  39764. },
  39765. ]
  39766. ))
  39767. characterMakers.push(() => makeCharacter(
  39768. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39769. {
  39770. front: {
  39771. height: math.unit(7 + 5/12, "feet"),
  39772. name: "Front",
  39773. image: {
  39774. source: "./media/characters/carbon/front.svg",
  39775. extra: 1754/1689,
  39776. bottom: 65/1819
  39777. }
  39778. },
  39779. back: {
  39780. height: math.unit(7 + 5/12, "feet"),
  39781. name: "Back",
  39782. image: {
  39783. source: "./media/characters/carbon/back.svg",
  39784. extra: 1762/1695,
  39785. bottom: 24/1786
  39786. }
  39787. },
  39788. frontGigantamax: {
  39789. height: math.unit(150, "feet"),
  39790. name: "Front (Gigantamax)",
  39791. image: {
  39792. source: "./media/characters/carbon/front-gigantamax.svg",
  39793. extra: 1826/1669,
  39794. bottom: 59/1885
  39795. }
  39796. },
  39797. backGigantamax: {
  39798. height: math.unit(150, "feet"),
  39799. name: "Back (Gigantamax)",
  39800. image: {
  39801. source: "./media/characters/carbon/back-gigantamax.svg",
  39802. extra: 1796/1653,
  39803. bottom: 53/1849
  39804. }
  39805. },
  39806. maw: {
  39807. height: math.unit(0.48, "feet"),
  39808. name: "Maw",
  39809. image: {
  39810. source: "./media/characters/carbon/maw.svg"
  39811. }
  39812. },
  39813. mawGigantamax: {
  39814. height: math.unit(7.5, "feet"),
  39815. name: "Maw (Gigantamax)",
  39816. image: {
  39817. source: "./media/characters/carbon/maw-gigantamax.svg"
  39818. }
  39819. },
  39820. },
  39821. [
  39822. {
  39823. name: "Normal",
  39824. height: math.unit(7 + 5/12, "feet"),
  39825. default: true
  39826. },
  39827. ]
  39828. ))
  39829. characterMakers.push(() => makeCharacter(
  39830. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39831. {
  39832. front: {
  39833. height: math.unit(6, "feet"),
  39834. name: "Front",
  39835. image: {
  39836. source: "./media/characters/maverick/front.svg",
  39837. extra: 1672/1661,
  39838. bottom: 85/1757
  39839. }
  39840. },
  39841. back: {
  39842. height: math.unit(6, "feet"),
  39843. name: "Back",
  39844. image: {
  39845. source: "./media/characters/maverick/back.svg",
  39846. extra: 1642/1631,
  39847. bottom: 38/1680
  39848. }
  39849. },
  39850. },
  39851. [
  39852. {
  39853. name: "Normal",
  39854. height: math.unit(6, "feet"),
  39855. default: true
  39856. },
  39857. ]
  39858. ))
  39859. characterMakers.push(() => makeCharacter(
  39860. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39861. {
  39862. front: {
  39863. height: math.unit(15, "feet"),
  39864. weight: math.unit(615, "lb"),
  39865. name: "Front",
  39866. image: {
  39867. source: "./media/characters/grockle/front.svg",
  39868. extra: 1535/1427,
  39869. bottom: 56/1591
  39870. }
  39871. },
  39872. },
  39873. [
  39874. {
  39875. name: "Normal",
  39876. height: math.unit(15, "feet"),
  39877. default: true
  39878. },
  39879. {
  39880. name: "Large",
  39881. height: math.unit(150, "feet")
  39882. },
  39883. {
  39884. name: "Macro",
  39885. height: math.unit(1876, "feet")
  39886. },
  39887. {
  39888. name: "Mega Macro",
  39889. height: math.unit(121940, "feet")
  39890. },
  39891. {
  39892. name: "Giga Macro",
  39893. height: math.unit(750, "km")
  39894. },
  39895. {
  39896. name: "Tera Macro",
  39897. height: math.unit(750000, "km")
  39898. },
  39899. {
  39900. name: "Galactic",
  39901. height: math.unit(1.4e5, "km")
  39902. },
  39903. {
  39904. name: "Godlike",
  39905. height: math.unit(9.8e280, "galaxies")
  39906. },
  39907. ]
  39908. ))
  39909. characterMakers.push(() => makeCharacter(
  39910. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39911. {
  39912. front: {
  39913. height: math.unit(11, "meters"),
  39914. weight: math.unit(20, "tonnes"),
  39915. name: "Front",
  39916. image: {
  39917. source: "./media/characters/alistair/front.svg",
  39918. extra: 1265/1009,
  39919. bottom: 93/1358
  39920. }
  39921. },
  39922. },
  39923. [
  39924. {
  39925. name: "Normal",
  39926. height: math.unit(11, "meters"),
  39927. default: true
  39928. },
  39929. ]
  39930. ))
  39931. characterMakers.push(() => makeCharacter(
  39932. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39933. {
  39934. front: {
  39935. height: math.unit(5 + 8/12, "feet"),
  39936. name: "Front",
  39937. image: {
  39938. source: "./media/characters/haruka/front.svg",
  39939. extra: 2012/1952,
  39940. bottom: 0/2012
  39941. }
  39942. },
  39943. },
  39944. [
  39945. {
  39946. name: "Normal",
  39947. height: math.unit(5 + 8/12, "feet"),
  39948. default: true
  39949. },
  39950. ]
  39951. ))
  39952. characterMakers.push(() => makeCharacter(
  39953. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39954. {
  39955. back: {
  39956. height: math.unit(9, "feet"),
  39957. name: "Back",
  39958. image: {
  39959. source: "./media/characters/vivian-sylveon/back.svg",
  39960. extra: 1853/1714,
  39961. bottom: 0/1853
  39962. }
  39963. },
  39964. hyper: {
  39965. height: math.unit(5.58, "feet"),
  39966. name: "Hyper",
  39967. preyCapacity: math.unit(2.80616218797, "m^3"),
  39968. image: {
  39969. source: "./media/characters/vivian-sylveon/hyper.svg",
  39970. extra: 999/676,
  39971. bottom: 697/1696
  39972. },
  39973. },
  39974. paw: {
  39975. height: math.unit(1.8, "feet"),
  39976. name: "Paw",
  39977. image: {
  39978. source: "./media/characters/vivian-sylveon/paw.svg"
  39979. }
  39980. },
  39981. danger: {
  39982. height: math.unit(7.5, "feet"),
  39983. name: "DANGER",
  39984. image: {
  39985. source: "./media/characters/vivian-sylveon/danger.svg"
  39986. }
  39987. },
  39988. },
  39989. [
  39990. {
  39991. name: "Normal",
  39992. height: math.unit(9, "feet"),
  39993. default: true
  39994. },
  39995. {
  39996. name: "Macro",
  39997. height: math.unit(500, "feet")
  39998. },
  39999. {
  40000. name: "Megamacro",
  40001. height: math.unit(600, "miles")
  40002. },
  40003. {
  40004. name: "Gigamacro",
  40005. height: math.unit(30000, "miles")
  40006. },
  40007. ]
  40008. ))
  40009. characterMakers.push(() => makeCharacter(
  40010. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  40011. {
  40012. anthro: {
  40013. height: math.unit(5 + 10/12, "feet"),
  40014. weight: math.unit(100, "lb"),
  40015. name: "Anthro",
  40016. image: {
  40017. source: "./media/characters/daiki/anthro.svg",
  40018. extra: 1115/1027,
  40019. bottom: 69/1184
  40020. }
  40021. },
  40022. feral: {
  40023. height: math.unit(200, "feet"),
  40024. name: "Feral",
  40025. image: {
  40026. source: "./media/characters/daiki/feral.svg",
  40027. extra: 1256/313,
  40028. bottom: 39/1295
  40029. }
  40030. },
  40031. feralHead: {
  40032. height: math.unit(171, "feet"),
  40033. name: "Feral Head",
  40034. image: {
  40035. source: "./media/characters/daiki/feral-head.svg"
  40036. }
  40037. },
  40038. manaDragon: {
  40039. height: math.unit(170, "meters"),
  40040. name: "Mana-dragon",
  40041. image: {
  40042. source: "./media/characters/daiki/mana-dragon.svg",
  40043. extra: 763/420,
  40044. bottom: 97/860
  40045. }
  40046. },
  40047. },
  40048. [
  40049. {
  40050. name: "Normal",
  40051. height: math.unit(5 + 10/12, "feet"),
  40052. default: true
  40053. },
  40054. ]
  40055. ))
  40056. characterMakers.push(() => makeCharacter(
  40057. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  40058. {
  40059. fullyEquippedFront: {
  40060. height: math.unit(3 + 1/12, "feet"),
  40061. weight: math.unit(24, "lb"),
  40062. name: "Fully Equipped (Front)",
  40063. image: {
  40064. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  40065. extra: 687/605,
  40066. bottom: 18/705
  40067. }
  40068. },
  40069. fullyEquippedBack: {
  40070. height: math.unit(3 + 1/12, "feet"),
  40071. weight: math.unit(24, "lb"),
  40072. name: "Fully Equipped (Back)",
  40073. image: {
  40074. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  40075. extra: 689/590,
  40076. bottom: 18/707
  40077. }
  40078. },
  40079. dailyWear: {
  40080. height: math.unit(3 + 1/12, "feet"),
  40081. weight: math.unit(24, "lb"),
  40082. name: "Daily Wear",
  40083. image: {
  40084. source: "./media/characters/tea-spot/daily-wear.svg",
  40085. extra: 701/620,
  40086. bottom: 21/722
  40087. }
  40088. },
  40089. maidWork: {
  40090. height: math.unit(3 + 1/12, "feet"),
  40091. weight: math.unit(24, "lb"),
  40092. name: "Maid Work",
  40093. image: {
  40094. source: "./media/characters/tea-spot/maid-work.svg",
  40095. extra: 693/609,
  40096. bottom: 15/708
  40097. }
  40098. },
  40099. },
  40100. [
  40101. {
  40102. name: "Normal",
  40103. height: math.unit(3 + 1/12, "feet"),
  40104. default: true
  40105. },
  40106. ]
  40107. ))
  40108. characterMakers.push(() => makeCharacter(
  40109. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  40110. {
  40111. front: {
  40112. height: math.unit(175, "cm"),
  40113. weight: math.unit(75, "kg"),
  40114. name: "Front",
  40115. image: {
  40116. source: "./media/characters/chee/front.svg",
  40117. extra: 1796/1740,
  40118. bottom: 40/1836
  40119. }
  40120. },
  40121. },
  40122. [
  40123. {
  40124. name: "Micro-Micro",
  40125. height: math.unit(1, "nm")
  40126. },
  40127. {
  40128. name: "Micro-erst",
  40129. height: math.unit(1, "micrometer")
  40130. },
  40131. {
  40132. name: "Micro-er",
  40133. height: math.unit(1, "cm")
  40134. },
  40135. {
  40136. name: "Normal",
  40137. height: math.unit(175, "cm"),
  40138. default: true
  40139. },
  40140. {
  40141. name: "Macro",
  40142. height: math.unit(100, "m")
  40143. },
  40144. {
  40145. name: "Macro-er",
  40146. height: math.unit(1, "km")
  40147. },
  40148. {
  40149. name: "Macro-erst",
  40150. height: math.unit(10, "km")
  40151. },
  40152. {
  40153. name: "Macro-Macro",
  40154. height: math.unit(100, "km")
  40155. },
  40156. ]
  40157. ))
  40158. characterMakers.push(() => makeCharacter(
  40159. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  40160. {
  40161. front: {
  40162. height: math.unit(11 + 9/12, "feet"),
  40163. weight: math.unit(935, "lb"),
  40164. name: "Front",
  40165. image: {
  40166. source: "./media/characters/kingsley/front.svg",
  40167. extra: 1803/1674,
  40168. bottom: 127/1930
  40169. }
  40170. },
  40171. frontNude: {
  40172. height: math.unit(11 + 9/12, "feet"),
  40173. weight: math.unit(935, "lb"),
  40174. name: "Front (Nude)",
  40175. image: {
  40176. source: "./media/characters/kingsley/front-nude.svg",
  40177. extra: 1803/1674,
  40178. bottom: 127/1930
  40179. }
  40180. },
  40181. },
  40182. [
  40183. {
  40184. name: "Normal",
  40185. height: math.unit(11 + 9/12, "feet"),
  40186. default: true
  40187. },
  40188. ]
  40189. ))
  40190. characterMakers.push(() => makeCharacter(
  40191. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  40192. {
  40193. side: {
  40194. height: math.unit(9, "feet"),
  40195. name: "Side",
  40196. image: {
  40197. source: "./media/characters/rymel/side.svg",
  40198. extra: 792/469,
  40199. bottom: 121/913
  40200. }
  40201. },
  40202. maw: {
  40203. height: math.unit(2.4, "meters"),
  40204. name: "Maw",
  40205. image: {
  40206. source: "./media/characters/rymel/maw.svg"
  40207. }
  40208. },
  40209. },
  40210. [
  40211. {
  40212. name: "House Drake",
  40213. height: math.unit(2, "feet")
  40214. },
  40215. {
  40216. name: "Reduced",
  40217. height: math.unit(4.5, "feet")
  40218. },
  40219. {
  40220. name: "Normal",
  40221. height: math.unit(9, "feet"),
  40222. default: true
  40223. },
  40224. ]
  40225. ))
  40226. characterMakers.push(() => makeCharacter(
  40227. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  40228. {
  40229. front: {
  40230. height: math.unit(1.74, "meters"),
  40231. weight: math.unit(55, "kg"),
  40232. name: "Front",
  40233. image: {
  40234. source: "./media/characters/rubus/front.svg",
  40235. extra: 1894/1742,
  40236. bottom: 44/1938
  40237. }
  40238. },
  40239. },
  40240. [
  40241. {
  40242. name: "Normal",
  40243. height: math.unit(1.74, "meters"),
  40244. default: true
  40245. },
  40246. ]
  40247. ))
  40248. characterMakers.push(() => makeCharacter(
  40249. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  40250. {
  40251. front: {
  40252. height: math.unit(5 + 2/12, "feet"),
  40253. weight: math.unit(112, "lb"),
  40254. name: "Front",
  40255. image: {
  40256. source: "./media/characters/cassie-kingston/front.svg",
  40257. extra: 1438/1390,
  40258. bottom: 47/1485
  40259. }
  40260. },
  40261. },
  40262. [
  40263. {
  40264. name: "Normal",
  40265. height: math.unit(5 + 2/12, "feet"),
  40266. default: true
  40267. },
  40268. {
  40269. name: "Macro",
  40270. height: math.unit(128, "feet")
  40271. },
  40272. {
  40273. name: "Megamacro",
  40274. height: math.unit(2.56, "miles")
  40275. },
  40276. ]
  40277. ))
  40278. characterMakers.push(() => makeCharacter(
  40279. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  40280. {
  40281. front: {
  40282. height: math.unit(7, "feet"),
  40283. name: "Front",
  40284. image: {
  40285. source: "./media/characters/fox/front.svg",
  40286. extra: 1798/1703,
  40287. bottom: 55/1853
  40288. }
  40289. },
  40290. back: {
  40291. height: math.unit(7, "feet"),
  40292. name: "Back",
  40293. image: {
  40294. source: "./media/characters/fox/back.svg",
  40295. extra: 1748/1649,
  40296. bottom: 32/1780
  40297. }
  40298. },
  40299. head: {
  40300. height: math.unit(1.95, "feet"),
  40301. name: "Head",
  40302. image: {
  40303. source: "./media/characters/fox/head.svg"
  40304. }
  40305. },
  40306. dick: {
  40307. height: math.unit(1.33, "feet"),
  40308. name: "Dick",
  40309. image: {
  40310. source: "./media/characters/fox/dick.svg"
  40311. }
  40312. },
  40313. foot: {
  40314. height: math.unit(1, "feet"),
  40315. name: "Foot",
  40316. image: {
  40317. source: "./media/characters/fox/foot.svg"
  40318. }
  40319. },
  40320. paw: {
  40321. height: math.unit(0.92, "feet"),
  40322. name: "Paw",
  40323. image: {
  40324. source: "./media/characters/fox/paw.svg"
  40325. }
  40326. },
  40327. },
  40328. [
  40329. {
  40330. name: "Small",
  40331. height: math.unit(3, "inches")
  40332. },
  40333. {
  40334. name: "\"Realistic\"",
  40335. height: math.unit(7, "feet")
  40336. },
  40337. {
  40338. name: "Normal",
  40339. height: math.unit(150, "feet"),
  40340. default: true
  40341. },
  40342. {
  40343. name: "BIG",
  40344. height: math.unit(1200, "feet")
  40345. },
  40346. {
  40347. name: "👀",
  40348. height: math.unit(5, "miles")
  40349. },
  40350. {
  40351. name: "👀👀👀",
  40352. height: math.unit(64, "miles")
  40353. },
  40354. ]
  40355. ))
  40356. characterMakers.push(() => makeCharacter(
  40357. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  40358. {
  40359. front: {
  40360. height: math.unit(625, "feet"),
  40361. name: "Front",
  40362. image: {
  40363. source: "./media/characters/asonja-rossa/front.svg",
  40364. extra: 1833/1686,
  40365. bottom: 24/1857
  40366. }
  40367. },
  40368. back: {
  40369. height: math.unit(625, "feet"),
  40370. name: "Back",
  40371. image: {
  40372. source: "./media/characters/asonja-rossa/back.svg",
  40373. extra: 1852/1753,
  40374. bottom: 26/1878
  40375. }
  40376. },
  40377. },
  40378. [
  40379. {
  40380. name: "Macro",
  40381. height: math.unit(625, "feet"),
  40382. default: true
  40383. },
  40384. ]
  40385. ))
  40386. characterMakers.push(() => makeCharacter(
  40387. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  40388. {
  40389. side: {
  40390. height: math.unit(8, "feet"),
  40391. name: "Side",
  40392. image: {
  40393. source: "./media/characters/rezukii/side.svg",
  40394. extra: 979/542,
  40395. bottom: 87/1066
  40396. }
  40397. },
  40398. sitting: {
  40399. height: math.unit(14.6, "feet"),
  40400. name: "Sitting",
  40401. image: {
  40402. source: "./media/characters/rezukii/sitting.svg",
  40403. extra: 1023/813,
  40404. bottom: 45/1068
  40405. }
  40406. },
  40407. },
  40408. [
  40409. {
  40410. name: "Tiny",
  40411. height: math.unit(2, "feet")
  40412. },
  40413. {
  40414. name: "Smol",
  40415. height: math.unit(4, "feet")
  40416. },
  40417. {
  40418. name: "Normal",
  40419. height: math.unit(8, "feet"),
  40420. default: true
  40421. },
  40422. {
  40423. name: "Big",
  40424. height: math.unit(12, "feet")
  40425. },
  40426. {
  40427. name: "Macro",
  40428. height: math.unit(30, "feet")
  40429. },
  40430. ]
  40431. ))
  40432. characterMakers.push(() => makeCharacter(
  40433. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  40434. {
  40435. front: {
  40436. height: math.unit(14, "feet"),
  40437. weight: math.unit(9.5, "tonnes"),
  40438. name: "Front",
  40439. image: {
  40440. source: "./media/characters/dawnheart/front.svg",
  40441. extra: 2792/2675,
  40442. bottom: 64/2856
  40443. }
  40444. },
  40445. },
  40446. [
  40447. {
  40448. name: "Normal",
  40449. height: math.unit(14, "feet"),
  40450. default: true
  40451. },
  40452. ]
  40453. ))
  40454. characterMakers.push(() => makeCharacter(
  40455. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  40456. {
  40457. front: {
  40458. height: math.unit(1.7, "m"),
  40459. name: "Front",
  40460. image: {
  40461. source: "./media/characters/gladi/front.svg",
  40462. extra: 1460/1362,
  40463. bottom: 19/1479
  40464. }
  40465. },
  40466. back: {
  40467. height: math.unit(1.7, "m"),
  40468. name: "Back",
  40469. image: {
  40470. source: "./media/characters/gladi/back.svg",
  40471. extra: 1459/1357,
  40472. bottom: 12/1471
  40473. }
  40474. },
  40475. feral: {
  40476. height: math.unit(2.05, "m"),
  40477. name: "Feral",
  40478. image: {
  40479. source: "./media/characters/gladi/feral.svg",
  40480. extra: 821/557,
  40481. bottom: 91/912
  40482. }
  40483. },
  40484. },
  40485. [
  40486. {
  40487. name: "Shortest",
  40488. height: math.unit(70, "cm")
  40489. },
  40490. {
  40491. name: "Normal",
  40492. height: math.unit(1.7, "m")
  40493. },
  40494. {
  40495. name: "Macro",
  40496. height: math.unit(10, "m"),
  40497. default: true
  40498. },
  40499. {
  40500. name: "Tallest",
  40501. height: math.unit(200, "m")
  40502. },
  40503. ]
  40504. ))
  40505. characterMakers.push(() => makeCharacter(
  40506. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  40507. {
  40508. front: {
  40509. height: math.unit(5 + 7/12, "feet"),
  40510. weight: math.unit(2, "tons"),
  40511. name: "Front",
  40512. image: {
  40513. source: "./media/characters/erdno/front.svg",
  40514. extra: 1234/1129,
  40515. bottom: 35/1269
  40516. }
  40517. },
  40518. angled: {
  40519. height: math.unit(5 + 7/12, "feet"),
  40520. weight: math.unit(2, "tons"),
  40521. name: "Angled",
  40522. image: {
  40523. source: "./media/characters/erdno/angled.svg",
  40524. extra: 1185/1139,
  40525. bottom: 36/1221
  40526. }
  40527. },
  40528. side: {
  40529. height: math.unit(5 + 7/12, "feet"),
  40530. weight: math.unit(2, "tons"),
  40531. name: "Side",
  40532. image: {
  40533. source: "./media/characters/erdno/side.svg",
  40534. extra: 1191/1144,
  40535. bottom: 40/1231
  40536. }
  40537. },
  40538. back: {
  40539. height: math.unit(5 + 7/12, "feet"),
  40540. weight: math.unit(2, "tons"),
  40541. name: "Back",
  40542. image: {
  40543. source: "./media/characters/erdno/back.svg",
  40544. extra: 1202/1146,
  40545. bottom: 17/1219
  40546. }
  40547. },
  40548. frontNsfw: {
  40549. height: math.unit(5 + 7/12, "feet"),
  40550. weight: math.unit(2, "tons"),
  40551. name: "Front (NSFW)",
  40552. image: {
  40553. source: "./media/characters/erdno/front-nsfw.svg",
  40554. extra: 1234/1129,
  40555. bottom: 35/1269
  40556. }
  40557. },
  40558. angledNsfw: {
  40559. height: math.unit(5 + 7/12, "feet"),
  40560. weight: math.unit(2, "tons"),
  40561. name: "Angled (NSFW)",
  40562. image: {
  40563. source: "./media/characters/erdno/angled-nsfw.svg",
  40564. extra: 1185/1139,
  40565. bottom: 36/1221
  40566. }
  40567. },
  40568. sideNsfw: {
  40569. height: math.unit(5 + 7/12, "feet"),
  40570. weight: math.unit(2, "tons"),
  40571. name: "Side (NSFW)",
  40572. image: {
  40573. source: "./media/characters/erdno/side-nsfw.svg",
  40574. extra: 1191/1144,
  40575. bottom: 40/1231
  40576. }
  40577. },
  40578. backNsfw: {
  40579. height: math.unit(5 + 7/12, "feet"),
  40580. weight: math.unit(2, "tons"),
  40581. name: "Back (NSFW)",
  40582. image: {
  40583. source: "./media/characters/erdno/back-nsfw.svg",
  40584. extra: 1202/1146,
  40585. bottom: 17/1219
  40586. }
  40587. },
  40588. frontHyper: {
  40589. height: math.unit(5 + 7/12, "feet"),
  40590. weight: math.unit(2, "tons"),
  40591. name: "Front (Hyper)",
  40592. image: {
  40593. source: "./media/characters/erdno/front-hyper.svg",
  40594. extra: 1298/1136,
  40595. bottom: 35/1333
  40596. }
  40597. },
  40598. },
  40599. [
  40600. {
  40601. name: "Normal",
  40602. height: math.unit(5 + 7/12, "feet"),
  40603. default: true
  40604. },
  40605. {
  40606. name: "Big",
  40607. height: math.unit(5.7, "meters")
  40608. },
  40609. {
  40610. name: "Macro",
  40611. height: math.unit(5.7, "kilometers")
  40612. },
  40613. {
  40614. name: "Megamacro",
  40615. height: math.unit(5.7, "earths")
  40616. },
  40617. ]
  40618. ))
  40619. characterMakers.push(() => makeCharacter(
  40620. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  40621. {
  40622. front: {
  40623. height: math.unit(5 + 10/12, "feet"),
  40624. weight: math.unit(150, "lb"),
  40625. name: "Front",
  40626. image: {
  40627. source: "./media/characters/jamie/front.svg",
  40628. extra: 1908/1768,
  40629. bottom: 19/1927
  40630. }
  40631. },
  40632. },
  40633. [
  40634. {
  40635. name: "Minimum",
  40636. height: math.unit(2, "cm")
  40637. },
  40638. {
  40639. name: "Micro",
  40640. height: math.unit(3, "inches")
  40641. },
  40642. {
  40643. name: "Normal",
  40644. height: math.unit(5 + 10/12, "feet"),
  40645. default: true
  40646. },
  40647. {
  40648. name: "Macro",
  40649. height: math.unit(150, "feet")
  40650. },
  40651. {
  40652. name: "Megamacro",
  40653. height: math.unit(10000, "m")
  40654. },
  40655. ]
  40656. ))
  40657. characterMakers.push(() => makeCharacter(
  40658. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40659. {
  40660. front: {
  40661. height: math.unit(2, "meters"),
  40662. weight: math.unit(100, "kg"),
  40663. name: "Front",
  40664. image: {
  40665. source: "./media/characters/shiron/front.svg",
  40666. extra: 2103/1985,
  40667. bottom: 98/2201
  40668. }
  40669. },
  40670. back: {
  40671. height: math.unit(2, "meters"),
  40672. weight: math.unit(100, "kg"),
  40673. name: "Back",
  40674. image: {
  40675. source: "./media/characters/shiron/back.svg",
  40676. extra: 2110/2015,
  40677. bottom: 89/2199
  40678. }
  40679. },
  40680. hand: {
  40681. height: math.unit(0.96, "feet"),
  40682. name: "Hand",
  40683. image: {
  40684. source: "./media/characters/shiron/hand.svg"
  40685. }
  40686. },
  40687. foot: {
  40688. height: math.unit(1.464, "feet"),
  40689. name: "Foot",
  40690. image: {
  40691. source: "./media/characters/shiron/foot.svg"
  40692. }
  40693. },
  40694. },
  40695. [
  40696. {
  40697. name: "Normal",
  40698. height: math.unit(2, "meters")
  40699. },
  40700. {
  40701. name: "Macro",
  40702. height: math.unit(500, "meters"),
  40703. default: true
  40704. },
  40705. {
  40706. name: "Megamacro",
  40707. height: math.unit(20, "km")
  40708. },
  40709. ]
  40710. ))
  40711. characterMakers.push(() => makeCharacter(
  40712. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  40713. {
  40714. front: {
  40715. height: math.unit(6, "feet"),
  40716. name: "Front",
  40717. image: {
  40718. source: "./media/characters/sam/front.svg",
  40719. extra: 849/826,
  40720. bottom: 19/868
  40721. }
  40722. },
  40723. },
  40724. [
  40725. {
  40726. name: "Normal",
  40727. height: math.unit(6, "feet"),
  40728. default: true
  40729. },
  40730. ]
  40731. ))
  40732. characterMakers.push(() => makeCharacter(
  40733. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  40734. {
  40735. front: {
  40736. height: math.unit(8 + 4/12, "feet"),
  40737. weight: math.unit(122, "kg"),
  40738. name: "Front",
  40739. image: {
  40740. source: "./media/characters/namori-kurogawa/front.svg",
  40741. extra: 1894/1576,
  40742. bottom: 34/1928
  40743. }
  40744. },
  40745. },
  40746. [
  40747. {
  40748. name: "Normal",
  40749. height: math.unit(8 + 4/12, "feet"),
  40750. default: true
  40751. },
  40752. ]
  40753. ))
  40754. characterMakers.push(() => makeCharacter(
  40755. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  40756. {
  40757. front: {
  40758. height: math.unit(9, "feet"),
  40759. weight: math.unit(621, "lb"),
  40760. name: "Front",
  40761. image: {
  40762. source: "./media/characters/unmru/front.svg",
  40763. extra: 1853/1747,
  40764. bottom: 73/1926
  40765. }
  40766. },
  40767. side: {
  40768. height: math.unit(9, "feet"),
  40769. weight: math.unit(621, "lb"),
  40770. name: "Side",
  40771. image: {
  40772. source: "./media/characters/unmru/side.svg",
  40773. extra: 1781/1671,
  40774. bottom: 127/1908
  40775. }
  40776. },
  40777. back: {
  40778. height: math.unit(9, "feet"),
  40779. weight: math.unit(621, "lb"),
  40780. name: "Back",
  40781. image: {
  40782. source: "./media/characters/unmru/back.svg",
  40783. extra: 1894/1765,
  40784. bottom: 75/1969
  40785. }
  40786. },
  40787. dick: {
  40788. height: math.unit(3, "feet"),
  40789. weight: math.unit(35, "lb"),
  40790. name: "Dick",
  40791. image: {
  40792. source: "./media/characters/unmru/dick.svg"
  40793. }
  40794. },
  40795. },
  40796. [
  40797. {
  40798. name: "Normal",
  40799. height: math.unit(9, "feet")
  40800. },
  40801. {
  40802. name: "Natural",
  40803. height: math.unit(27, "feet"),
  40804. default: true
  40805. },
  40806. {
  40807. name: "Giant",
  40808. height: math.unit(90, "feet")
  40809. },
  40810. {
  40811. name: "Kaiju",
  40812. height: math.unit(270, "feet")
  40813. },
  40814. {
  40815. name: "Macro",
  40816. height: math.unit(900, "feet")
  40817. },
  40818. {
  40819. name: "Macro+",
  40820. height: math.unit(2700, "feet")
  40821. },
  40822. {
  40823. name: "Megamacro",
  40824. height: math.unit(9000, "feet")
  40825. },
  40826. {
  40827. name: "City-Crushing",
  40828. height: math.unit(27000, "feet")
  40829. },
  40830. {
  40831. name: "Mountain-Mashing",
  40832. height: math.unit(90000, "feet")
  40833. },
  40834. {
  40835. name: "Earth-Eclipsing",
  40836. height: math.unit(2.7e8, "feet")
  40837. },
  40838. {
  40839. name: "Sol-Swallowing",
  40840. height: math.unit(9e10, "feet")
  40841. },
  40842. {
  40843. name: "Majoris-Munching",
  40844. height: math.unit(2.7e13, "feet")
  40845. },
  40846. ]
  40847. ))
  40848. characterMakers.push(() => makeCharacter(
  40849. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40850. {
  40851. front: {
  40852. height: math.unit(1, "inch"),
  40853. name: "Front",
  40854. image: {
  40855. source: "./media/characters/squeaks-mouse/front.svg",
  40856. extra: 352/308,
  40857. bottom: 25/377
  40858. }
  40859. },
  40860. },
  40861. [
  40862. {
  40863. name: "Micro",
  40864. height: math.unit(1, "inch"),
  40865. default: true
  40866. },
  40867. ]
  40868. ))
  40869. characterMakers.push(() => makeCharacter(
  40870. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40871. {
  40872. side: {
  40873. height: math.unit(35, "feet"),
  40874. name: "Side",
  40875. image: {
  40876. source: "./media/characters/sayko/side.svg",
  40877. extra: 1697/1021,
  40878. bottom: 82/1779
  40879. }
  40880. },
  40881. head: {
  40882. height: math.unit(16, "feet"),
  40883. name: "Head",
  40884. image: {
  40885. source: "./media/characters/sayko/head.svg"
  40886. }
  40887. },
  40888. forepaw: {
  40889. height: math.unit(7.85, "feet"),
  40890. name: "Forepaw",
  40891. image: {
  40892. source: "./media/characters/sayko/forepaw.svg"
  40893. }
  40894. },
  40895. hindpaw: {
  40896. height: math.unit(8.8, "feet"),
  40897. name: "Hindpaw",
  40898. image: {
  40899. source: "./media/characters/sayko/hindpaw.svg"
  40900. }
  40901. },
  40902. },
  40903. [
  40904. {
  40905. name: "Normal",
  40906. height: math.unit(35, "feet"),
  40907. default: true
  40908. },
  40909. {
  40910. name: "Colossus",
  40911. height: math.unit(100, "meters")
  40912. },
  40913. {
  40914. name: "\"Small\" Deity",
  40915. height: math.unit(1, "km")
  40916. },
  40917. {
  40918. name: "\"Large\" Deity",
  40919. height: math.unit(15, "km")
  40920. },
  40921. ]
  40922. ))
  40923. characterMakers.push(() => makeCharacter(
  40924. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40925. {
  40926. front: {
  40927. height: math.unit(6, "feet"),
  40928. weight: math.unit(250, "lb"),
  40929. name: "Front",
  40930. image: {
  40931. source: "./media/characters/mukiro/front.svg",
  40932. extra: 1368/1310,
  40933. bottom: 34/1402
  40934. }
  40935. },
  40936. },
  40937. [
  40938. {
  40939. name: "Normal",
  40940. height: math.unit(6, "feet"),
  40941. default: true
  40942. },
  40943. ]
  40944. ))
  40945. characterMakers.push(() => makeCharacter(
  40946. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40947. {
  40948. front: {
  40949. height: math.unit(12 + 4/12, "feet"),
  40950. name: "Front",
  40951. image: {
  40952. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40953. extra: 1346/1311,
  40954. bottom: 65/1411
  40955. }
  40956. },
  40957. },
  40958. [
  40959. {
  40960. name: "Base",
  40961. height: math.unit(12 + 4/12, "feet"),
  40962. default: true
  40963. },
  40964. {
  40965. name: "Macro",
  40966. height: math.unit(150, "feet")
  40967. },
  40968. {
  40969. name: "Mega",
  40970. height: math.unit(2, "miles")
  40971. },
  40972. {
  40973. name: "Demi God",
  40974. height: math.unit(4, "AU")
  40975. },
  40976. {
  40977. name: "God Size",
  40978. height: math.unit(1, "universe")
  40979. },
  40980. ]
  40981. ))
  40982. characterMakers.push(() => makeCharacter(
  40983. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40984. {
  40985. front: {
  40986. height: math.unit(3 + 3/12, "feet"),
  40987. weight: math.unit(88, "lb"),
  40988. name: "Front",
  40989. image: {
  40990. source: "./media/characters/trey/front.svg",
  40991. extra: 1815/1509,
  40992. bottom: 60/1875
  40993. }
  40994. },
  40995. },
  40996. [
  40997. {
  40998. name: "Normal",
  40999. height: math.unit(3 + 3/12, "feet"),
  41000. default: true
  41001. },
  41002. ]
  41003. ))
  41004. characterMakers.push(() => makeCharacter(
  41005. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  41006. {
  41007. front: {
  41008. height: math.unit(4, "meters"),
  41009. name: "Front",
  41010. image: {
  41011. source: "./media/characters/adelonda/front.svg",
  41012. extra: 1077/982,
  41013. bottom: 39/1116
  41014. }
  41015. },
  41016. back: {
  41017. height: math.unit(4, "meters"),
  41018. name: "Back",
  41019. image: {
  41020. source: "./media/characters/adelonda/back.svg",
  41021. extra: 1105/1003,
  41022. bottom: 25/1130
  41023. }
  41024. },
  41025. feral: {
  41026. height: math.unit(40/1.5, "meters"),
  41027. name: "Feral",
  41028. image: {
  41029. source: "./media/characters/adelonda/feral.svg",
  41030. extra: 597/271,
  41031. bottom: 387/984
  41032. }
  41033. },
  41034. },
  41035. [
  41036. {
  41037. name: "Normal",
  41038. height: math.unit(4, "meters"),
  41039. default: true
  41040. },
  41041. ]
  41042. ))
  41043. characterMakers.push(() => makeCharacter(
  41044. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  41045. {
  41046. front: {
  41047. height: math.unit(8 + 4/12, "feet"),
  41048. weight: math.unit(670, "lb"),
  41049. name: "Front",
  41050. image: {
  41051. source: "./media/characters/acadiel/front.svg",
  41052. extra: 1901/1595,
  41053. bottom: 142/2043
  41054. }
  41055. },
  41056. },
  41057. [
  41058. {
  41059. name: "Normal",
  41060. height: math.unit(8 + 4/12, "feet"),
  41061. default: true
  41062. },
  41063. {
  41064. name: "Macro",
  41065. height: math.unit(200, "feet")
  41066. },
  41067. ]
  41068. ))
  41069. characterMakers.push(() => makeCharacter(
  41070. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  41071. {
  41072. front: {
  41073. height: math.unit(6 + 2/12, "feet"),
  41074. weight: math.unit(185, "lb"),
  41075. name: "Front",
  41076. image: {
  41077. source: "./media/characters/kayne-ein/front.svg",
  41078. extra: 1780/1560,
  41079. bottom: 81/1861
  41080. }
  41081. },
  41082. },
  41083. [
  41084. {
  41085. name: "Normal",
  41086. height: math.unit(6 + 2/12, "feet"),
  41087. default: true
  41088. },
  41089. {
  41090. name: "Transformation Stage",
  41091. height: math.unit(15, "feet")
  41092. },
  41093. {
  41094. name: "Macro",
  41095. height: math.unit(150, "feet")
  41096. },
  41097. {
  41098. name: "Earth's Shadow",
  41099. height: math.unit(6200, "miles")
  41100. },
  41101. {
  41102. name: "Universal Demon",
  41103. height: math.unit(28e9, "parsecs")
  41104. },
  41105. {
  41106. name: "Multiverse God",
  41107. height: math.unit(3, "multiverses")
  41108. },
  41109. ]
  41110. ))
  41111. characterMakers.push(() => makeCharacter(
  41112. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  41113. {
  41114. front: {
  41115. height: math.unit(5 + 5/12, "feet"),
  41116. name: "Front",
  41117. image: {
  41118. source: "./media/characters/fawn/front.svg",
  41119. extra: 1873/1731,
  41120. bottom: 95/1968
  41121. }
  41122. },
  41123. back: {
  41124. height: math.unit(5 + 5/12, "feet"),
  41125. name: "Back",
  41126. image: {
  41127. source: "./media/characters/fawn/back.svg",
  41128. extra: 1813/1700,
  41129. bottom: 14/1827
  41130. }
  41131. },
  41132. hoof: {
  41133. height: math.unit(1.45, "feet"),
  41134. name: "Hoof",
  41135. image: {
  41136. source: "./media/characters/fawn/hoof.svg"
  41137. }
  41138. },
  41139. },
  41140. [
  41141. {
  41142. name: "Normal",
  41143. height: math.unit(5 + 5/12, "feet"),
  41144. default: true
  41145. },
  41146. ]
  41147. ))
  41148. characterMakers.push(() => makeCharacter(
  41149. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  41150. {
  41151. front: {
  41152. height: math.unit(2 + 5/12, "feet"),
  41153. name: "Front",
  41154. image: {
  41155. source: "./media/characters/orion/front.svg",
  41156. extra: 1366/1304,
  41157. bottom: 43/1409
  41158. }
  41159. },
  41160. paw: {
  41161. height: math.unit(0.52, "feet"),
  41162. name: "Paw",
  41163. image: {
  41164. source: "./media/characters/orion/paw.svg"
  41165. }
  41166. },
  41167. },
  41168. [
  41169. {
  41170. name: "Normal",
  41171. height: math.unit(2 + 5/12, "feet"),
  41172. default: true
  41173. },
  41174. ]
  41175. ))
  41176. characterMakers.push(() => makeCharacter(
  41177. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  41178. {
  41179. front: {
  41180. height: math.unit(5 + 10/12, "feet"),
  41181. name: "Front",
  41182. image: {
  41183. source: "./media/characters/vera/front.svg",
  41184. extra: 1680/1575,
  41185. bottom: 49/1729
  41186. }
  41187. },
  41188. back: {
  41189. height: math.unit(5 + 10/12, "feet"),
  41190. name: "Back",
  41191. image: {
  41192. source: "./media/characters/vera/back.svg",
  41193. extra: 1700/1588,
  41194. bottom: 18/1718
  41195. }
  41196. },
  41197. arcanine: {
  41198. height: math.unit(6 + 8/12, "feet"),
  41199. name: "Arcanine",
  41200. image: {
  41201. source: "./media/characters/vera/arcanine.svg",
  41202. extra: 1590/1511,
  41203. bottom: 71/1661
  41204. }
  41205. },
  41206. maw: {
  41207. height: math.unit(0.82, "feet"),
  41208. name: "Maw",
  41209. image: {
  41210. source: "./media/characters/vera/maw.svg"
  41211. }
  41212. },
  41213. mawArcanine: {
  41214. height: math.unit(0.97, "feet"),
  41215. name: "Maw (Arcanine)",
  41216. image: {
  41217. source: "./media/characters/vera/maw-arcanine.svg"
  41218. }
  41219. },
  41220. paw: {
  41221. height: math.unit(0.75, "feet"),
  41222. name: "Paw",
  41223. image: {
  41224. source: "./media/characters/vera/paw.svg"
  41225. }
  41226. },
  41227. pawprint: {
  41228. height: math.unit(0.52, "feet"),
  41229. name: "Pawprint",
  41230. image: {
  41231. source: "./media/characters/vera/pawprint.svg"
  41232. }
  41233. },
  41234. },
  41235. [
  41236. {
  41237. name: "Normal",
  41238. height: math.unit(5 + 10/12, "feet"),
  41239. default: true
  41240. },
  41241. {
  41242. name: "Macro",
  41243. height: math.unit(75, "feet")
  41244. },
  41245. ]
  41246. ))
  41247. characterMakers.push(() => makeCharacter(
  41248. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  41249. {
  41250. front: {
  41251. height: math.unit(4, "feet"),
  41252. weight: math.unit(40, "lb"),
  41253. name: "Front",
  41254. image: {
  41255. source: "./media/characters/orvan-rabbit/front.svg",
  41256. extra: 1896/1642,
  41257. bottom: 29/1925
  41258. }
  41259. },
  41260. },
  41261. [
  41262. {
  41263. name: "Normal",
  41264. height: math.unit(4, "feet"),
  41265. default: true
  41266. },
  41267. ]
  41268. ))
  41269. characterMakers.push(() => makeCharacter(
  41270. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  41271. {
  41272. front: {
  41273. height: math.unit(6, "feet"),
  41274. weight: math.unit(168, "lb"),
  41275. name: "Front",
  41276. image: {
  41277. source: "./media/characters/lisa/front.svg",
  41278. extra: 2065/1867,
  41279. bottom: 46/2111
  41280. }
  41281. },
  41282. back: {
  41283. height: math.unit(6, "feet"),
  41284. weight: math.unit(168, "lb"),
  41285. name: "Back",
  41286. image: {
  41287. source: "./media/characters/lisa/back.svg",
  41288. extra: 1982/1838,
  41289. bottom: 29/2011
  41290. }
  41291. },
  41292. maw: {
  41293. height: math.unit(0.81, "feet"),
  41294. name: "Maw",
  41295. image: {
  41296. source: "./media/characters/lisa/maw.svg"
  41297. }
  41298. },
  41299. paw: {
  41300. height: math.unit(0.9, "feet"),
  41301. name: "Paw",
  41302. image: {
  41303. source: "./media/characters/lisa/paw.svg"
  41304. }
  41305. },
  41306. caribousune: {
  41307. height: math.unit(7 + 2/12, "feet"),
  41308. weight: math.unit(268, "lb"),
  41309. name: "Caribousune",
  41310. image: {
  41311. source: "./media/characters/lisa/caribousune.svg",
  41312. extra: 1843/1633,
  41313. bottom: 29/1872
  41314. }
  41315. },
  41316. frontCaribousune: {
  41317. height: math.unit(7 + 2/12, "feet"),
  41318. weight: math.unit(268, "lb"),
  41319. name: "Front (Caribousune)",
  41320. image: {
  41321. source: "./media/characters/lisa/front-caribousune.svg",
  41322. extra: 1818/1638,
  41323. bottom: 52/1870
  41324. }
  41325. },
  41326. sideCaribousune: {
  41327. height: math.unit(7 + 2/12, "feet"),
  41328. weight: math.unit(268, "lb"),
  41329. name: "Side (Caribousune)",
  41330. image: {
  41331. source: "./media/characters/lisa/side-caribousune.svg",
  41332. extra: 1851/1635,
  41333. bottom: 16/1867
  41334. }
  41335. },
  41336. backCaribousune: {
  41337. height: math.unit(7 + 2/12, "feet"),
  41338. weight: math.unit(268, "lb"),
  41339. name: "Back (Caribousune)",
  41340. image: {
  41341. source: "./media/characters/lisa/back-caribousune.svg",
  41342. extra: 1801/1604,
  41343. bottom: 44/1845
  41344. }
  41345. },
  41346. caribou: {
  41347. height: math.unit(7 + 2/12, "feet"),
  41348. weight: math.unit(268, "lb"),
  41349. name: "Caribou",
  41350. image: {
  41351. source: "./media/characters/lisa/caribou.svg",
  41352. extra: 1843/1633,
  41353. bottom: 29/1872
  41354. }
  41355. },
  41356. frontCaribou: {
  41357. height: math.unit(7 + 2/12, "feet"),
  41358. weight: math.unit(268, "lb"),
  41359. name: "Front (Caribou)",
  41360. image: {
  41361. source: "./media/characters/lisa/front-caribou.svg",
  41362. extra: 1818/1638,
  41363. bottom: 52/1870
  41364. }
  41365. },
  41366. sideCaribou: {
  41367. height: math.unit(7 + 2/12, "feet"),
  41368. weight: math.unit(268, "lb"),
  41369. name: "Side (Caribou)",
  41370. image: {
  41371. source: "./media/characters/lisa/side-caribou.svg",
  41372. extra: 1851/1635,
  41373. bottom: 16/1867
  41374. }
  41375. },
  41376. backCaribou: {
  41377. height: math.unit(7 + 2/12, "feet"),
  41378. weight: math.unit(268, "lb"),
  41379. name: "Back (Caribou)",
  41380. image: {
  41381. source: "./media/characters/lisa/back-caribou.svg",
  41382. extra: 1801/1604,
  41383. bottom: 44/1845
  41384. }
  41385. },
  41386. mawCaribou: {
  41387. height: math.unit(1.45, "feet"),
  41388. name: "Maw (Caribou)",
  41389. image: {
  41390. source: "./media/characters/lisa/maw-caribou.svg"
  41391. }
  41392. },
  41393. mawCaribousune: {
  41394. height: math.unit(1.45, "feet"),
  41395. name: "Maw (Caribousune)",
  41396. image: {
  41397. source: "./media/characters/lisa/maw-caribousune.svg"
  41398. }
  41399. },
  41400. pawCaribousune: {
  41401. height: math.unit(1.61, "feet"),
  41402. name: "Paw (Caribou)",
  41403. image: {
  41404. source: "./media/characters/lisa/paw-caribousune.svg"
  41405. }
  41406. },
  41407. },
  41408. [
  41409. {
  41410. name: "Normal",
  41411. height: math.unit(6, "feet")
  41412. },
  41413. {
  41414. name: "God Size",
  41415. height: math.unit(72, "feet"),
  41416. default: true
  41417. },
  41418. {
  41419. name: "Towering",
  41420. height: math.unit(288, "feet")
  41421. },
  41422. {
  41423. name: "City Size",
  41424. height: math.unit(48384, "feet")
  41425. },
  41426. {
  41427. name: "Continental",
  41428. height: math.unit(4200, "miles")
  41429. },
  41430. {
  41431. name: "Planet Eater",
  41432. height: math.unit(42, "earths")
  41433. },
  41434. {
  41435. name: "Star Swallower",
  41436. height: math.unit(42, "solarradii")
  41437. },
  41438. {
  41439. name: "System Swallower",
  41440. height: math.unit(84000, "AU")
  41441. },
  41442. {
  41443. name: "Galaxy Gobbler",
  41444. height: math.unit(42, "galaxies")
  41445. },
  41446. {
  41447. name: "Universe Devourer",
  41448. height: math.unit(42, "universes")
  41449. },
  41450. {
  41451. name: "Multiverse Muncher",
  41452. height: math.unit(42, "multiverses")
  41453. },
  41454. ]
  41455. ))
  41456. characterMakers.push(() => makeCharacter(
  41457. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  41458. {
  41459. front: {
  41460. height: math.unit(36, "feet"),
  41461. name: "Front",
  41462. image: {
  41463. source: "./media/characters/shadow-rat/front.svg",
  41464. extra: 1845/1758,
  41465. bottom: 83/1928
  41466. }
  41467. },
  41468. },
  41469. [
  41470. {
  41471. name: "Macro",
  41472. height: math.unit(36, "feet"),
  41473. default: true
  41474. },
  41475. ]
  41476. ))
  41477. characterMakers.push(() => makeCharacter(
  41478. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  41479. {
  41480. side: {
  41481. height: math.unit(8, "feet"),
  41482. weight: math.unit(2630, "lb"),
  41483. name: "Side",
  41484. image: {
  41485. source: "./media/characters/torallia/side.svg",
  41486. extra: 2164/2021,
  41487. bottom: 371/2535
  41488. }
  41489. },
  41490. },
  41491. [
  41492. {
  41493. name: "Mortal Interaction",
  41494. height: math.unit(8, "feet")
  41495. },
  41496. {
  41497. name: "Natural",
  41498. height: math.unit(24, "feet"),
  41499. default: true
  41500. },
  41501. {
  41502. name: "Giant",
  41503. height: math.unit(80, "feet")
  41504. },
  41505. {
  41506. name: "Kaiju",
  41507. height: math.unit(240, "feet")
  41508. },
  41509. {
  41510. name: "Macro",
  41511. height: math.unit(800, "feet")
  41512. },
  41513. {
  41514. name: "Macro+",
  41515. height: math.unit(2400, "feet")
  41516. },
  41517. {
  41518. name: "Macro++",
  41519. height: math.unit(8000, "feet")
  41520. },
  41521. {
  41522. name: "City-Crushing",
  41523. height: math.unit(24000, "feet")
  41524. },
  41525. {
  41526. name: "Mountain-Mashing",
  41527. height: math.unit(80000, "feet")
  41528. },
  41529. {
  41530. name: "District Demolisher",
  41531. height: math.unit(240000, "feet")
  41532. },
  41533. {
  41534. name: "Tri-County Terror",
  41535. height: math.unit(800000, "feet")
  41536. },
  41537. {
  41538. name: "State Smasher",
  41539. height: math.unit(2.4e6, "feet")
  41540. },
  41541. {
  41542. name: "Nation Nemesis",
  41543. height: math.unit(8e6, "feet")
  41544. },
  41545. {
  41546. name: "Continent Cracker",
  41547. height: math.unit(2.4e7, "feet")
  41548. },
  41549. {
  41550. name: "Planet-Pillaging",
  41551. height: math.unit(8e7, "feet")
  41552. },
  41553. {
  41554. name: "Earth-Eclipsing",
  41555. height: math.unit(2.4e8, "feet")
  41556. },
  41557. {
  41558. name: "Jovian-Jostling",
  41559. height: math.unit(8e8, "feet")
  41560. },
  41561. {
  41562. name: "Gas Giant Gulper",
  41563. height: math.unit(2.4e9, "feet")
  41564. },
  41565. {
  41566. name: "Astral Annihilator",
  41567. height: math.unit(8e9, "feet")
  41568. },
  41569. {
  41570. name: "Celestial Conqueror",
  41571. height: math.unit(2.4e10, "feet")
  41572. },
  41573. {
  41574. name: "Sol-Swallowing",
  41575. height: math.unit(8e10, "feet")
  41576. },
  41577. {
  41578. name: "Hunter of the Heavens",
  41579. height: math.unit(2.4e13, "feet")
  41580. },
  41581. ]
  41582. ))
  41583. characterMakers.push(() => makeCharacter(
  41584. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  41585. {
  41586. front: {
  41587. height: math.unit(10, "feet"),
  41588. weight: math.unit(844, "kilograms"),
  41589. name: "Front",
  41590. image: {
  41591. source: "./media/characters/rebecca-pawlson/front.svg",
  41592. extra: 1196/1099,
  41593. bottom: 81/1277
  41594. },
  41595. extraAttributes: {
  41596. "pawSize": {
  41597. name: "Paw Size",
  41598. power: 2,
  41599. type: "area",
  41600. base: math.unit(0.2 * 0.375, "meters^2")
  41601. },
  41602. "handSize": {
  41603. name: "Hand Size",
  41604. power: 2,
  41605. type: "area",
  41606. base: math.unit(0.2 * 0.35, "meters^2")
  41607. },
  41608. "breastDiameter": {
  41609. name: "Breast Diameter",
  41610. power: 1,
  41611. type: "length",
  41612. base: math.unit(0.5, "meters")
  41613. },
  41614. "breastVolume": {
  41615. name: "Breast Volume",
  41616. power: 3,
  41617. type: "volume",
  41618. base: math.unit(0.065, "m^3")
  41619. },
  41620. "breastMass": {
  41621. name: "Breast Mass",
  41622. power: 3,
  41623. type: "mass",
  41624. base: math.unit(65, "kg")
  41625. },
  41626. "nippleDiameter": {
  41627. name: "Nipple Diameter",
  41628. power: 1,
  41629. type: "length",
  41630. base: math.unit(0.1, "meters")
  41631. },
  41632. }
  41633. },
  41634. back: {
  41635. height: math.unit(10, "feet"),
  41636. weight: math.unit(844, "kilograms"),
  41637. name: "Back",
  41638. image: {
  41639. source: "./media/characters/rebecca-pawlson/back.svg",
  41640. extra: 879/776,
  41641. bottom: 43/922
  41642. },
  41643. extraAttributes: {
  41644. "pawSize": {
  41645. name: "Paw Size",
  41646. power: 2,
  41647. type: "area",
  41648. base: math.unit(0.2 * 0.375, "meters^2")
  41649. },
  41650. "handSize": {
  41651. name: "Hand Size",
  41652. power: 2,
  41653. type: "area",
  41654. base: math.unit(0.2 * 0.35, "meters^2")
  41655. },
  41656. "breastDiameter": {
  41657. name: "Breast Diameter",
  41658. power: 1,
  41659. type: "length",
  41660. base: math.unit(0.5, "meters")
  41661. },
  41662. "breastVolume": {
  41663. name: "Breast Volume",
  41664. power: 3,
  41665. type: "volume",
  41666. base: math.unit(0.065, "m^3")
  41667. },
  41668. "breastMass": {
  41669. name: "Breast Mass",
  41670. power: 3,
  41671. type: "mass",
  41672. base: math.unit(65, "kg")
  41673. },
  41674. "nippleDiameter": {
  41675. name: "Nipple Diameter",
  41676. power: 1,
  41677. type: "length",
  41678. base: math.unit(0.1, "meters")
  41679. },
  41680. }
  41681. },
  41682. },
  41683. [
  41684. {
  41685. name: "Normal",
  41686. height: math.unit(6 + 8/12, "feet")
  41687. },
  41688. {
  41689. name: "Mini Macro",
  41690. height: math.unit(10, "feet"),
  41691. default: true
  41692. },
  41693. {
  41694. name: "Macro",
  41695. height: math.unit(100, "feet")
  41696. },
  41697. {
  41698. name: "Mega Macro",
  41699. height: math.unit(2500, "feet")
  41700. },
  41701. {
  41702. name: "Giga Macro",
  41703. height: math.unit(50, "miles")
  41704. },
  41705. ]
  41706. ))
  41707. characterMakers.push(() => makeCharacter(
  41708. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  41709. {
  41710. front: {
  41711. height: math.unit(7 + 6/12, "feet"),
  41712. weight: math.unit(600, "lb"),
  41713. name: "Front",
  41714. image: {
  41715. source: "./media/characters/moxie-nova/front.svg",
  41716. extra: 1734/1652,
  41717. bottom: 41/1775
  41718. }
  41719. },
  41720. },
  41721. [
  41722. {
  41723. name: "Normal",
  41724. height: math.unit(7 + 6/12, "feet"),
  41725. default: true
  41726. },
  41727. ]
  41728. ))
  41729. characterMakers.push(() => makeCharacter(
  41730. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  41731. {
  41732. goat: {
  41733. height: math.unit(4, "feet"),
  41734. weight: math.unit(180, "lb"),
  41735. name: "Goat",
  41736. image: {
  41737. source: "./media/characters/tiffany/goat.svg",
  41738. extra: 1845/1595,
  41739. bottom: 106/1951
  41740. }
  41741. },
  41742. front: {
  41743. height: math.unit(5, "feet"),
  41744. weight: math.unit(150, "lb"),
  41745. name: "Foxcoon",
  41746. image: {
  41747. source: "./media/characters/tiffany/foxcoon.svg",
  41748. extra: 1941/1845,
  41749. bottom: 58/1999
  41750. }
  41751. },
  41752. },
  41753. [
  41754. {
  41755. name: "Normal",
  41756. height: math.unit(5, "feet"),
  41757. default: true
  41758. },
  41759. ]
  41760. ))
  41761. characterMakers.push(() => makeCharacter(
  41762. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  41763. {
  41764. front: {
  41765. height: math.unit(8, "feet"),
  41766. weight: math.unit(300, "lb"),
  41767. name: "Front",
  41768. image: {
  41769. source: "./media/characters/raxinath/front.svg",
  41770. extra: 1407/1309,
  41771. bottom: 39/1446
  41772. }
  41773. },
  41774. back: {
  41775. height: math.unit(8, "feet"),
  41776. weight: math.unit(300, "lb"),
  41777. name: "Back",
  41778. image: {
  41779. source: "./media/characters/raxinath/back.svg",
  41780. extra: 1405/1315,
  41781. bottom: 9/1414
  41782. }
  41783. },
  41784. },
  41785. [
  41786. {
  41787. name: "Speck",
  41788. height: math.unit(0.5, "nm")
  41789. },
  41790. {
  41791. name: "Micro",
  41792. height: math.unit(3, "inches")
  41793. },
  41794. {
  41795. name: "Kobold",
  41796. height: math.unit(3, "feet")
  41797. },
  41798. {
  41799. name: "Normal",
  41800. height: math.unit(8, "feet"),
  41801. default: true
  41802. },
  41803. {
  41804. name: "Giant",
  41805. height: math.unit(50, "feet")
  41806. },
  41807. {
  41808. name: "Macro",
  41809. height: math.unit(1000, "feet")
  41810. },
  41811. {
  41812. name: "Megamacro",
  41813. height: math.unit(1, "mile")
  41814. },
  41815. ]
  41816. ))
  41817. characterMakers.push(() => makeCharacter(
  41818. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  41819. {
  41820. front: {
  41821. height: math.unit(10, "feet"),
  41822. weight: math.unit(1442, "lb"),
  41823. name: "Front",
  41824. image: {
  41825. source: "./media/characters/mal-dragon/front.svg",
  41826. extra: 1515/1444,
  41827. bottom: 113/1628
  41828. }
  41829. },
  41830. back: {
  41831. height: math.unit(10, "feet"),
  41832. weight: math.unit(1442, "lb"),
  41833. name: "Back",
  41834. image: {
  41835. source: "./media/characters/mal-dragon/back.svg",
  41836. extra: 1527/1434,
  41837. bottom: 25/1552
  41838. }
  41839. },
  41840. },
  41841. [
  41842. {
  41843. name: "Mortal Interaction",
  41844. height: math.unit(10, "feet"),
  41845. default: true
  41846. },
  41847. {
  41848. name: "Large",
  41849. height: math.unit(30, "feet")
  41850. },
  41851. {
  41852. name: "Kaiju",
  41853. height: math.unit(300, "feet")
  41854. },
  41855. {
  41856. name: "Megamacro",
  41857. height: math.unit(10000, "feet")
  41858. },
  41859. {
  41860. name: "Continent Cracker",
  41861. height: math.unit(30000000, "feet")
  41862. },
  41863. {
  41864. name: "Sol-Swallowing",
  41865. height: math.unit(1e11, "feet")
  41866. },
  41867. {
  41868. name: "Light Universal",
  41869. height: math.unit(5, "universes")
  41870. },
  41871. {
  41872. name: "Universe Atoms",
  41873. height: math.unit(1.829e9, "universes")
  41874. },
  41875. {
  41876. name: "Light Multiversal",
  41877. height: math.unit(5, "multiverses")
  41878. },
  41879. {
  41880. name: "Multiverse Atoms",
  41881. height: math.unit(1.829e9, "multiverses")
  41882. },
  41883. {
  41884. name: "Fabric of Time",
  41885. height: math.unit(1e262, "multiverses")
  41886. },
  41887. ]
  41888. ))
  41889. characterMakers.push(() => makeCharacter(
  41890. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41891. {
  41892. front: {
  41893. height: math.unit(9, "feet"),
  41894. weight: math.unit(1050, "lb"),
  41895. name: "Front",
  41896. image: {
  41897. source: "./media/characters/tabitha/front.svg",
  41898. extra: 2083/1994,
  41899. bottom: 68/2151
  41900. }
  41901. },
  41902. },
  41903. [
  41904. {
  41905. name: "Baseline",
  41906. height: math.unit(9, "feet"),
  41907. default: true
  41908. },
  41909. {
  41910. name: "Giant",
  41911. height: math.unit(90, "feet")
  41912. },
  41913. {
  41914. name: "Macro",
  41915. height: math.unit(900, "feet")
  41916. },
  41917. {
  41918. name: "Megamacro",
  41919. height: math.unit(9000, "feet")
  41920. },
  41921. {
  41922. name: "City-Crushing",
  41923. height: math.unit(27000, "feet")
  41924. },
  41925. {
  41926. name: "Mountain-Mashing",
  41927. height: math.unit(90000, "feet")
  41928. },
  41929. {
  41930. name: "Nation Nemesis",
  41931. height: math.unit(9e6, "feet")
  41932. },
  41933. {
  41934. name: "Continent Cracker",
  41935. height: math.unit(27e6, "feet")
  41936. },
  41937. {
  41938. name: "Earth-Eclipsing",
  41939. height: math.unit(2.7e8, "feet")
  41940. },
  41941. {
  41942. name: "Gas Giant Gulper",
  41943. height: math.unit(2.7e9, "feet")
  41944. },
  41945. {
  41946. name: "Sol-Swallowing",
  41947. height: math.unit(9e10, "feet")
  41948. },
  41949. {
  41950. name: "Galaxy Gulper",
  41951. height: math.unit(9, "galaxies")
  41952. },
  41953. {
  41954. name: "Cosmos Churner",
  41955. height: math.unit(9, "universes")
  41956. },
  41957. ]
  41958. ))
  41959. characterMakers.push(() => makeCharacter(
  41960. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41961. {
  41962. front: {
  41963. height: math.unit(160, "cm"),
  41964. weight: math.unit(55, "kg"),
  41965. name: "Front",
  41966. image: {
  41967. source: "./media/characters/tow/front.svg",
  41968. extra: 1751/1722,
  41969. bottom: 74/1825
  41970. }
  41971. },
  41972. },
  41973. [
  41974. {
  41975. name: "Norm",
  41976. height: math.unit(160, "cm")
  41977. },
  41978. {
  41979. name: "Casual",
  41980. height: math.unit(3200, "m"),
  41981. default: true
  41982. },
  41983. {
  41984. name: "Show-Off",
  41985. height: math.unit(160, "km")
  41986. },
  41987. ]
  41988. ))
  41989. characterMakers.push(() => makeCharacter(
  41990. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41991. {
  41992. front: {
  41993. height: math.unit(7 + 11/12, "feet"),
  41994. weight: math.unit(342.8, "lb"),
  41995. name: "Front",
  41996. image: {
  41997. source: "./media/characters/vivian-orca-dragon/front.svg",
  41998. extra: 1890/1865,
  41999. bottom: 28/1918
  42000. }
  42001. },
  42002. },
  42003. [
  42004. {
  42005. name: "Micro",
  42006. height: math.unit(5, "inches")
  42007. },
  42008. {
  42009. name: "Normal",
  42010. height: math.unit(7 + 11/12, "feet"),
  42011. default: true
  42012. },
  42013. {
  42014. name: "Macro",
  42015. height: math.unit(395 + 7/12, "feet")
  42016. },
  42017. ]
  42018. ))
  42019. characterMakers.push(() => makeCharacter(
  42020. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  42021. {
  42022. side: {
  42023. height: math.unit(10, "feet"),
  42024. weight: math.unit(1442, "lb"),
  42025. name: "Side",
  42026. image: {
  42027. source: "./media/characters/lotherakon/side.svg",
  42028. extra: 1604/1497,
  42029. bottom: 89/1693
  42030. }
  42031. },
  42032. },
  42033. [
  42034. {
  42035. name: "Mortal Interaction",
  42036. height: math.unit(10, "feet")
  42037. },
  42038. {
  42039. name: "Large",
  42040. height: math.unit(30, "feet"),
  42041. default: true
  42042. },
  42043. {
  42044. name: "Giant",
  42045. height: math.unit(100, "feet")
  42046. },
  42047. {
  42048. name: "Kaiju",
  42049. height: math.unit(300, "feet")
  42050. },
  42051. {
  42052. name: "Macro",
  42053. height: math.unit(1000, "feet")
  42054. },
  42055. {
  42056. name: "Macro+",
  42057. height: math.unit(3000, "feet")
  42058. },
  42059. {
  42060. name: "Megamacro",
  42061. height: math.unit(10000, "feet")
  42062. },
  42063. {
  42064. name: "City-Crushing",
  42065. height: math.unit(30000, "feet")
  42066. },
  42067. {
  42068. name: "Continent Cracker",
  42069. height: math.unit(30e6, "feet")
  42070. },
  42071. {
  42072. name: "Earth Eclipsing",
  42073. height: math.unit(3e8, "feet")
  42074. },
  42075. {
  42076. name: "Gas Giant Gulper",
  42077. height: math.unit(3e9, "feet")
  42078. },
  42079. {
  42080. name: "Sol-Swallowing",
  42081. height: math.unit(1e11, "feet")
  42082. },
  42083. {
  42084. name: "System Swallower",
  42085. height: math.unit(3e14, "feet")
  42086. },
  42087. {
  42088. name: "Galaxy Gulper",
  42089. height: math.unit(10, "galaxies")
  42090. },
  42091. {
  42092. name: "Light Universal",
  42093. height: math.unit(5, "universes")
  42094. },
  42095. {
  42096. name: "Universe Palm",
  42097. height: math.unit(20, "universes")
  42098. },
  42099. {
  42100. name: "Light Multiversal",
  42101. height: math.unit(5, "multiverses")
  42102. },
  42103. {
  42104. name: "Multiverse Palm",
  42105. height: math.unit(20, "multiverses")
  42106. },
  42107. {
  42108. name: "Inferno Incarnate",
  42109. height: math.unit(1e7, "multiverses")
  42110. },
  42111. ]
  42112. ))
  42113. characterMakers.push(() => makeCharacter(
  42114. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  42115. {
  42116. front: {
  42117. height: math.unit(8, "feet"),
  42118. weight: math.unit(1200, "lb"),
  42119. name: "Front",
  42120. image: {
  42121. source: "./media/characters/malithee/front.svg",
  42122. extra: 1675/1640,
  42123. bottom: 162/1837
  42124. }
  42125. },
  42126. },
  42127. [
  42128. {
  42129. name: "Mortal Interaction",
  42130. height: math.unit(8, "feet"),
  42131. default: true
  42132. },
  42133. {
  42134. name: "Large",
  42135. height: math.unit(24, "feet")
  42136. },
  42137. {
  42138. name: "Kaiju",
  42139. height: math.unit(240, "feet")
  42140. },
  42141. {
  42142. name: "Megamacro",
  42143. height: math.unit(8000, "feet")
  42144. },
  42145. {
  42146. name: "Continent Cracker",
  42147. height: math.unit(24e6, "feet")
  42148. },
  42149. {
  42150. name: "Earth-Eclipsing",
  42151. height: math.unit(2.4e8, "feet")
  42152. },
  42153. {
  42154. name: "Sol-Swallowing",
  42155. height: math.unit(8e10, "feet")
  42156. },
  42157. {
  42158. name: "Galaxy Gulper",
  42159. height: math.unit(8, "galaxies")
  42160. },
  42161. {
  42162. name: "Light Universal",
  42163. height: math.unit(4, "universes")
  42164. },
  42165. {
  42166. name: "Universe Atoms",
  42167. height: math.unit(1.829e9, "universes")
  42168. },
  42169. {
  42170. name: "Light Multiversal",
  42171. height: math.unit(4, "multiverses")
  42172. },
  42173. {
  42174. name: "Multiverse Atoms",
  42175. height: math.unit(1.829e9, "multiverses")
  42176. },
  42177. {
  42178. name: "Nigh-Omnipresence",
  42179. height: math.unit(8e261, "multiverses")
  42180. },
  42181. ]
  42182. ))
  42183. characterMakers.push(() => makeCharacter(
  42184. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  42185. {
  42186. front: {
  42187. height: math.unit(10, "feet"),
  42188. weight: math.unit(1500, "lb"),
  42189. name: "Front",
  42190. image: {
  42191. source: "./media/characters/miles-thestia/front.svg",
  42192. extra: 1812/1727,
  42193. bottom: 86/1898
  42194. }
  42195. },
  42196. back: {
  42197. height: math.unit(10, "feet"),
  42198. weight: math.unit(1500, "lb"),
  42199. name: "Back",
  42200. image: {
  42201. source: "./media/characters/miles-thestia/back.svg",
  42202. extra: 1799/1690,
  42203. bottom: 47/1846
  42204. }
  42205. },
  42206. frontNsfw: {
  42207. height: math.unit(10, "feet"),
  42208. weight: math.unit(1500, "lb"),
  42209. name: "Front (NSFW)",
  42210. image: {
  42211. source: "./media/characters/miles-thestia/front-nsfw.svg",
  42212. extra: 1812/1727,
  42213. bottom: 86/1898
  42214. }
  42215. },
  42216. },
  42217. [
  42218. {
  42219. name: "Mini-Macro",
  42220. height: math.unit(10, "feet"),
  42221. default: true
  42222. },
  42223. ]
  42224. ))
  42225. characterMakers.push(() => makeCharacter(
  42226. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  42227. {
  42228. front: {
  42229. height: math.unit(25, "feet"),
  42230. name: "Front",
  42231. image: {
  42232. source: "./media/characters/titan-s-wulf/front.svg",
  42233. extra: 1560/1484,
  42234. bottom: 76/1636
  42235. }
  42236. },
  42237. },
  42238. [
  42239. {
  42240. name: "Smallest",
  42241. height: math.unit(25, "feet"),
  42242. default: true
  42243. },
  42244. {
  42245. name: "Normal",
  42246. height: math.unit(200, "feet")
  42247. },
  42248. {
  42249. name: "Macro",
  42250. height: math.unit(200000, "feet")
  42251. },
  42252. {
  42253. name: "Multiversal Original",
  42254. height: math.unit(10000, "multiverses")
  42255. },
  42256. ]
  42257. ))
  42258. characterMakers.push(() => makeCharacter(
  42259. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  42260. {
  42261. front: {
  42262. height: math.unit(8, "feet"),
  42263. weight: math.unit(553, "lb"),
  42264. name: "Front",
  42265. image: {
  42266. source: "./media/characters/tawendeh/front.svg",
  42267. extra: 2365/2268,
  42268. bottom: 83/2448
  42269. }
  42270. },
  42271. frontClothed: {
  42272. height: math.unit(8, "feet"),
  42273. weight: math.unit(553, "lb"),
  42274. name: "Front (Clothed)",
  42275. image: {
  42276. source: "./media/characters/tawendeh/front-clothed.svg",
  42277. extra: 2365/2268,
  42278. bottom: 83/2448
  42279. }
  42280. },
  42281. back: {
  42282. height: math.unit(8, "feet"),
  42283. weight: math.unit(553, "lb"),
  42284. name: "Back",
  42285. image: {
  42286. source: "./media/characters/tawendeh/back.svg",
  42287. extra: 2397/2294,
  42288. bottom: 42/2439
  42289. }
  42290. },
  42291. },
  42292. [
  42293. {
  42294. name: "Mortal Interaction",
  42295. height: math.unit(8, "feet"),
  42296. default: true
  42297. },
  42298. {
  42299. name: "Giant",
  42300. height: math.unit(80, "feet")
  42301. },
  42302. {
  42303. name: "Macro",
  42304. height: math.unit(800, "feet")
  42305. },
  42306. {
  42307. name: "Megamacro",
  42308. height: math.unit(8000, "feet")
  42309. },
  42310. {
  42311. name: "City-Crushing",
  42312. height: math.unit(24000, "feet")
  42313. },
  42314. {
  42315. name: "Mountain-Mashing",
  42316. height: math.unit(80000, "feet")
  42317. },
  42318. {
  42319. name: "Nation Nemesis",
  42320. height: math.unit(8e6, "feet")
  42321. },
  42322. {
  42323. name: "Continent Cracker",
  42324. height: math.unit(24e6, "feet")
  42325. },
  42326. {
  42327. name: "Earth-Eclipsing",
  42328. height: math.unit(2.4e8, "feet")
  42329. },
  42330. {
  42331. name: "Gas Giant Gulper",
  42332. height: math.unit(2.4e9, "feet")
  42333. },
  42334. {
  42335. name: "Sol-Swallowing",
  42336. height: math.unit(8e10, "feet")
  42337. },
  42338. {
  42339. name: "Galaxy Gulper",
  42340. height: math.unit(8, "galaxies")
  42341. },
  42342. {
  42343. name: "Cosmos Churner",
  42344. height: math.unit(8, "universes")
  42345. },
  42346. {
  42347. name: "Omnipotent Otter",
  42348. height: math.unit(80, "universes")
  42349. },
  42350. ]
  42351. ))
  42352. characterMakers.push(() => makeCharacter(
  42353. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  42354. {
  42355. front: {
  42356. height: math.unit(2.6, "meters"),
  42357. weight: math.unit(900, "kg"),
  42358. name: "Front",
  42359. image: {
  42360. source: "./media/characters/neesha/front.svg",
  42361. extra: 1803/1653,
  42362. bottom: 128/1931
  42363. }
  42364. },
  42365. },
  42366. [
  42367. {
  42368. name: "Normal",
  42369. height: math.unit(2.6, "meters"),
  42370. default: true
  42371. },
  42372. {
  42373. name: "Macro",
  42374. height: math.unit(50, "meters")
  42375. },
  42376. ]
  42377. ))
  42378. characterMakers.push(() => makeCharacter(
  42379. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  42380. {
  42381. front: {
  42382. height: math.unit(5, "feet"),
  42383. weight: math.unit(185, "lb"),
  42384. name: "Front",
  42385. image: {
  42386. source: "./media/characters/kyera/front.svg",
  42387. extra: 1875/1790,
  42388. bottom: 96/1971
  42389. }
  42390. },
  42391. },
  42392. [
  42393. {
  42394. name: "Normal",
  42395. height: math.unit(5, "feet"),
  42396. default: true
  42397. },
  42398. ]
  42399. ))
  42400. characterMakers.push(() => makeCharacter(
  42401. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  42402. {
  42403. front: {
  42404. height: math.unit(7 + 6/12, "feet"),
  42405. weight: math.unit(540, "lb"),
  42406. name: "Front",
  42407. image: {
  42408. source: "./media/characters/yuko/front.svg",
  42409. extra: 1282/1222,
  42410. bottom: 101/1383
  42411. }
  42412. },
  42413. frontClothed: {
  42414. height: math.unit(7 + 6/12, "feet"),
  42415. weight: math.unit(540, "lb"),
  42416. name: "Front (Clothed)",
  42417. image: {
  42418. source: "./media/characters/yuko/front-clothed.svg",
  42419. extra: 1282/1222,
  42420. bottom: 101/1383
  42421. }
  42422. },
  42423. },
  42424. [
  42425. {
  42426. name: "Normal",
  42427. height: math.unit(7 + 6/12, "feet"),
  42428. default: true
  42429. },
  42430. {
  42431. name: "Macro",
  42432. height: math.unit(26 + 9/12, "feet")
  42433. },
  42434. {
  42435. name: "Megamacro",
  42436. height: math.unit(300, "feet")
  42437. },
  42438. {
  42439. name: "Gigamacro",
  42440. height: math.unit(5000, "feet")
  42441. },
  42442. {
  42443. name: "Planetary",
  42444. height: math.unit(10000, "miles")
  42445. },
  42446. ]
  42447. ))
  42448. characterMakers.push(() => makeCharacter(
  42449. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  42450. {
  42451. front: {
  42452. height: math.unit(8 + 2/12, "feet"),
  42453. weight: math.unit(600, "lb"),
  42454. name: "Front",
  42455. image: {
  42456. source: "./media/characters/deam-nitrel/front.svg",
  42457. extra: 1308/1234,
  42458. bottom: 125/1433
  42459. }
  42460. },
  42461. },
  42462. [
  42463. {
  42464. name: "Normal",
  42465. height: math.unit(8 + 2/12, "feet"),
  42466. default: true
  42467. },
  42468. ]
  42469. ))
  42470. characterMakers.push(() => makeCharacter(
  42471. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  42472. {
  42473. front: {
  42474. height: math.unit(6.1, "feet"),
  42475. weight: math.unit(180, "lb"),
  42476. name: "Front",
  42477. image: {
  42478. source: "./media/characters/skyress/front.svg",
  42479. extra: 1045/915,
  42480. bottom: 28/1073
  42481. }
  42482. },
  42483. maw: {
  42484. height: math.unit(1, "feet"),
  42485. name: "Maw",
  42486. image: {
  42487. source: "./media/characters/skyress/maw.svg"
  42488. }
  42489. },
  42490. },
  42491. [
  42492. {
  42493. name: "Normal",
  42494. height: math.unit(6.1, "feet"),
  42495. default: true
  42496. },
  42497. {
  42498. name: "Macro",
  42499. height: math.unit(200, "feet")
  42500. },
  42501. ]
  42502. ))
  42503. characterMakers.push(() => makeCharacter(
  42504. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  42505. {
  42506. front: {
  42507. height: math.unit(4 + 2/12, "feet"),
  42508. weight: math.unit(40, "kg"),
  42509. name: "Front",
  42510. image: {
  42511. source: "./media/characters/amethyst-jones/front.svg",
  42512. extra: 1220/1150,
  42513. bottom: 101/1321
  42514. }
  42515. },
  42516. },
  42517. [
  42518. {
  42519. name: "Normal",
  42520. height: math.unit(4 + 2/12, "feet"),
  42521. default: true
  42522. },
  42523. ]
  42524. ))
  42525. characterMakers.push(() => makeCharacter(
  42526. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  42527. {
  42528. front: {
  42529. height: math.unit(1.7, "m"),
  42530. weight: math.unit(135, "lb"),
  42531. name: "Front",
  42532. image: {
  42533. source: "./media/characters/jade/front.svg",
  42534. extra: 1818/1767,
  42535. bottom: 32/1850
  42536. }
  42537. },
  42538. back: {
  42539. height: math.unit(1.7, "m"),
  42540. weight: math.unit(135, "lb"),
  42541. name: "Back",
  42542. image: {
  42543. source: "./media/characters/jade/back.svg",
  42544. extra: 1869/1809,
  42545. bottom: 35/1904
  42546. }
  42547. },
  42548. hand: {
  42549. height: math.unit(0.24, "m"),
  42550. name: "Hand",
  42551. image: {
  42552. source: "./media/characters/jade/hand.svg"
  42553. }
  42554. },
  42555. foot: {
  42556. height: math.unit(0.263, "m"),
  42557. name: "Foot",
  42558. image: {
  42559. source: "./media/characters/jade/foot.svg"
  42560. }
  42561. },
  42562. dick: {
  42563. height: math.unit(0.47, "m"),
  42564. name: "Dick",
  42565. image: {
  42566. source: "./media/characters/jade/dick.svg"
  42567. }
  42568. },
  42569. },
  42570. [
  42571. {
  42572. name: "Micro",
  42573. height: math.unit(22, "cm")
  42574. },
  42575. {
  42576. name: "Normal",
  42577. height: math.unit(1.7, "m"),
  42578. default: true
  42579. },
  42580. {
  42581. name: "Macro",
  42582. height: math.unit(152, "m")
  42583. },
  42584. ]
  42585. ))
  42586. characterMakers.push(() => makeCharacter(
  42587. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  42588. {
  42589. front: {
  42590. height: math.unit(100, "miles"),
  42591. weight: math.unit(20000, "tons"),
  42592. name: "Front",
  42593. image: {
  42594. source: "./media/characters/cookie/front.svg",
  42595. extra: 1125/1070,
  42596. bottom: 30/1155
  42597. }
  42598. },
  42599. },
  42600. [
  42601. {
  42602. name: "Big",
  42603. height: math.unit(50, "feet")
  42604. },
  42605. {
  42606. name: "Macro",
  42607. height: math.unit(100, "miles"),
  42608. default: true
  42609. },
  42610. {
  42611. name: "Megamacro",
  42612. height: math.unit(90000, "miles")
  42613. },
  42614. ]
  42615. ))
  42616. characterMakers.push(() => makeCharacter(
  42617. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  42618. {
  42619. front: {
  42620. height: math.unit(6, "feet"),
  42621. weight: math.unit(145, "lb"),
  42622. name: "Front",
  42623. image: {
  42624. source: "./media/characters/farzian/front.svg",
  42625. extra: 1902/1693,
  42626. bottom: 108/2010
  42627. }
  42628. },
  42629. },
  42630. [
  42631. {
  42632. name: "Macro",
  42633. height: math.unit(500, "feet"),
  42634. default: true
  42635. },
  42636. ]
  42637. ))
  42638. characterMakers.push(() => makeCharacter(
  42639. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  42640. {
  42641. front: {
  42642. height: math.unit(3 + 6/12, "feet"),
  42643. weight: math.unit(50, "lb"),
  42644. name: "Front",
  42645. image: {
  42646. source: "./media/characters/kimberly-tilson/front.svg",
  42647. extra: 1400/1322,
  42648. bottom: 36/1436
  42649. }
  42650. },
  42651. back: {
  42652. height: math.unit(3 + 6/12, "feet"),
  42653. weight: math.unit(50, "lb"),
  42654. name: "Back",
  42655. image: {
  42656. source: "./media/characters/kimberly-tilson/back.svg",
  42657. extra: 1370/1307,
  42658. bottom: 20/1390
  42659. }
  42660. },
  42661. },
  42662. [
  42663. {
  42664. name: "Normal",
  42665. height: math.unit(3 + 6/12, "feet"),
  42666. default: true
  42667. },
  42668. ]
  42669. ))
  42670. characterMakers.push(() => makeCharacter(
  42671. { name: "Harthos", species: ["peacekeeper", "allusus"], tags: ["anthro"] },
  42672. {
  42673. front: {
  42674. height: math.unit(350, "meters"),
  42675. weight: math.unit(7.57059e+8, "lb"),
  42676. name: "Front",
  42677. image: {
  42678. source: "./media/characters/harthos/front.svg",
  42679. extra: 455/446,
  42680. bottom: 15/470
  42681. },
  42682. form: "peacekeeper",
  42683. default: true
  42684. },
  42685. allusus_front: {
  42686. height: math.unit(270, "meters"),
  42687. weight: math.unit(3.47550e+8, "lb"),
  42688. name: "Front",
  42689. image: {
  42690. source: "./media/characters/harthos/allusus-front.svg",
  42691. extra: 455/446,
  42692. bottom: 15/470
  42693. },
  42694. form: "allusus",
  42695. },
  42696. },
  42697. [
  42698. {
  42699. name: "Macro",
  42700. height: math.unit(350, "meters"),
  42701. default: true,
  42702. form: "peacekeeper"
  42703. },
  42704. {
  42705. name: "Macro",
  42706. height: math.unit(270, "meters"),
  42707. default: true,
  42708. form: "allusus"
  42709. },
  42710. ],
  42711. {
  42712. "peacekeeper": {
  42713. name: "Peacekeeper",
  42714. default: true
  42715. },
  42716. "allusus": {
  42717. name: "Allusus",
  42718. },
  42719. }
  42720. ))
  42721. characterMakers.push(() => makeCharacter(
  42722. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  42723. {
  42724. front: {
  42725. height: math.unit(15, "feet"),
  42726. name: "Front",
  42727. image: {
  42728. source: "./media/characters/hypatia/front.svg",
  42729. extra: 1653/1591,
  42730. bottom: 79/1732
  42731. }
  42732. },
  42733. },
  42734. [
  42735. {
  42736. name: "Normal",
  42737. height: math.unit(15, "feet")
  42738. },
  42739. {
  42740. name: "Small",
  42741. height: math.unit(300, "feet")
  42742. },
  42743. {
  42744. name: "Macro",
  42745. height: math.unit(2500, "feet"),
  42746. default: true
  42747. },
  42748. {
  42749. name: "Mega Macro",
  42750. height: math.unit(1500, "miles")
  42751. },
  42752. {
  42753. name: "Giga Macro",
  42754. height: math.unit(1.5e6, "miles")
  42755. },
  42756. ]
  42757. ))
  42758. characterMakers.push(() => makeCharacter(
  42759. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  42760. {
  42761. front: {
  42762. height: math.unit(6, "feet"),
  42763. weight: math.unit(200, "lb"),
  42764. name: "Front",
  42765. image: {
  42766. source: "./media/characters/wulver/front.svg",
  42767. extra: 1724/1632,
  42768. bottom: 130/1854
  42769. }
  42770. },
  42771. frontNsfw: {
  42772. height: math.unit(6, "feet"),
  42773. weight: math.unit(200, "lb"),
  42774. name: "Front (NSFW)",
  42775. image: {
  42776. source: "./media/characters/wulver/front-nsfw.svg",
  42777. extra: 1724/1632,
  42778. bottom: 130/1854
  42779. }
  42780. },
  42781. },
  42782. [
  42783. {
  42784. name: "Human-Sized",
  42785. height: math.unit(6, "feet")
  42786. },
  42787. {
  42788. name: "Normal",
  42789. height: math.unit(4, "meters"),
  42790. default: true
  42791. },
  42792. {
  42793. name: "Large",
  42794. height: math.unit(6, "m")
  42795. },
  42796. ]
  42797. ))
  42798. characterMakers.push(() => makeCharacter(
  42799. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  42800. {
  42801. front: {
  42802. height: math.unit(7, "feet"),
  42803. name: "Front",
  42804. image: {
  42805. source: "./media/characters/maru/front.svg",
  42806. extra: 1595/1570,
  42807. bottom: 0/1595
  42808. }
  42809. },
  42810. },
  42811. [
  42812. {
  42813. name: "Normal",
  42814. height: math.unit(7, "feet"),
  42815. default: true
  42816. },
  42817. {
  42818. name: "Macro",
  42819. height: math.unit(700, "feet")
  42820. },
  42821. {
  42822. name: "Mega Macro",
  42823. height: math.unit(25, "miles")
  42824. },
  42825. ]
  42826. ))
  42827. characterMakers.push(() => makeCharacter(
  42828. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  42829. {
  42830. front: {
  42831. height: math.unit(6, "feet"),
  42832. weight: math.unit(170, "lb"),
  42833. name: "Front",
  42834. image: {
  42835. source: "./media/characters/xenon/front.svg",
  42836. extra: 1376/1305,
  42837. bottom: 56/1432
  42838. }
  42839. },
  42840. back: {
  42841. height: math.unit(6, "feet"),
  42842. weight: math.unit(170, "lb"),
  42843. name: "Back",
  42844. image: {
  42845. source: "./media/characters/xenon/back.svg",
  42846. extra: 1328/1259,
  42847. bottom: 95/1423
  42848. }
  42849. },
  42850. maw: {
  42851. height: math.unit(0.52, "feet"),
  42852. name: "Maw",
  42853. image: {
  42854. source: "./media/characters/xenon/maw.svg"
  42855. }
  42856. },
  42857. handLeft: {
  42858. height: math.unit(0.82 * 169 / 153, "feet"),
  42859. name: "Hand (Left)",
  42860. image: {
  42861. source: "./media/characters/xenon/hand-left.svg"
  42862. }
  42863. },
  42864. handRight: {
  42865. height: math.unit(0.82, "feet"),
  42866. name: "Hand (Right)",
  42867. image: {
  42868. source: "./media/characters/xenon/hand-right.svg"
  42869. }
  42870. },
  42871. footLeft: {
  42872. height: math.unit(1.13, "feet"),
  42873. name: "Foot (Left)",
  42874. image: {
  42875. source: "./media/characters/xenon/foot-left.svg"
  42876. }
  42877. },
  42878. footRight: {
  42879. height: math.unit(1.13 * 194 / 196, "feet"),
  42880. name: "Foot (Right)",
  42881. image: {
  42882. source: "./media/characters/xenon/foot-right.svg"
  42883. }
  42884. },
  42885. },
  42886. [
  42887. {
  42888. name: "Micro",
  42889. height: math.unit(0.8, "inches")
  42890. },
  42891. {
  42892. name: "Normal",
  42893. height: math.unit(6, "feet")
  42894. },
  42895. {
  42896. name: "Macro",
  42897. height: math.unit(50, "feet"),
  42898. default: true
  42899. },
  42900. {
  42901. name: "Macro+",
  42902. height: math.unit(250, "feet")
  42903. },
  42904. {
  42905. name: "Megamacro",
  42906. height: math.unit(1500, "feet")
  42907. },
  42908. ]
  42909. ))
  42910. characterMakers.push(() => makeCharacter(
  42911. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42912. {
  42913. front: {
  42914. height: math.unit(7 + 5/12, "feet"),
  42915. name: "Front",
  42916. image: {
  42917. source: "./media/characters/zane/front.svg",
  42918. extra: 1260/1203,
  42919. bottom: 94/1354
  42920. }
  42921. },
  42922. back: {
  42923. height: math.unit(5.05, "feet"),
  42924. name: "Back",
  42925. image: {
  42926. source: "./media/characters/zane/back.svg",
  42927. extra: 893/829,
  42928. bottom: 30/923
  42929. }
  42930. },
  42931. werewolf: {
  42932. height: math.unit(11, "feet"),
  42933. name: "Werewolf",
  42934. image: {
  42935. source: "./media/characters/zane/werewolf.svg",
  42936. extra: 1383/1323,
  42937. bottom: 89/1472
  42938. }
  42939. },
  42940. foot: {
  42941. height: math.unit(1.46, "feet"),
  42942. name: "Foot",
  42943. image: {
  42944. source: "./media/characters/zane/foot.svg"
  42945. }
  42946. },
  42947. footFront: {
  42948. height: math.unit(0.784, "feet"),
  42949. name: "Foot (Front)",
  42950. image: {
  42951. source: "./media/characters/zane/foot-front.svg"
  42952. }
  42953. },
  42954. dick: {
  42955. height: math.unit(1.95, "feet"),
  42956. name: "Dick",
  42957. image: {
  42958. source: "./media/characters/zane/dick.svg"
  42959. }
  42960. },
  42961. dickWerewolf: {
  42962. height: math.unit(3.77, "feet"),
  42963. name: "Dick (Werewolf)",
  42964. image: {
  42965. source: "./media/characters/zane/dick.svg"
  42966. }
  42967. },
  42968. },
  42969. [
  42970. {
  42971. name: "Normal",
  42972. height: math.unit(7 + 5/12, "feet"),
  42973. default: true
  42974. },
  42975. ]
  42976. ))
  42977. characterMakers.push(() => makeCharacter(
  42978. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42979. {
  42980. front: {
  42981. height: math.unit(6 + 2/12, "feet"),
  42982. weight: math.unit(284, "lb"),
  42983. name: "Front",
  42984. image: {
  42985. source: "./media/characters/benni-desparque/front.svg",
  42986. extra: 878/729,
  42987. bottom: 58/936
  42988. }
  42989. },
  42990. back: {
  42991. height: math.unit(6 + 2/12, "feet"),
  42992. weight: math.unit(284, "lb"),
  42993. name: "Back",
  42994. image: {
  42995. source: "./media/characters/benni-desparque/back.svg",
  42996. extra: 901/756,
  42997. bottom: 51/952
  42998. }
  42999. },
  43000. dressed: {
  43001. height: math.unit(6 + 2/12 + 0.5/12, "feet"),
  43002. weight: math.unit(284, "lb"),
  43003. name: "Dressed",
  43004. image: {
  43005. source: "./media/characters/benni-desparque/dressed.svg",
  43006. extra: 1514/1276,
  43007. bottom: 65/1579
  43008. }
  43009. },
  43010. hand: {
  43011. height: math.unit(1.28, "feet"),
  43012. name: "Hand",
  43013. image: {
  43014. source: "./media/characters/benni-desparque/hand.svg"
  43015. }
  43016. },
  43017. foot: {
  43018. height: math.unit(1.53, "feet"),
  43019. name: "Foot",
  43020. image: {
  43021. source: "./media/characters/benni-desparque/foot.svg"
  43022. }
  43023. },
  43024. aiControlUnit: {
  43025. height: math.unit(0.175, "feet"),
  43026. name: "AI Control Unit",
  43027. image: {
  43028. source: "./media/characters/benni-desparque/ai-control-unit.svg"
  43029. }
  43030. },
  43031. },
  43032. [
  43033. {
  43034. name: "Civilian",
  43035. height: math.unit(6 + 2/12, "feet")
  43036. },
  43037. {
  43038. name: "Normal",
  43039. height: math.unit(98, "feet"),
  43040. default: true
  43041. },
  43042. {
  43043. name: "Kaiju Fighter",
  43044. height: math.unit(268, "feet")
  43045. },
  43046. ]
  43047. ))
  43048. characterMakers.push(() => makeCharacter(
  43049. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  43050. {
  43051. front: {
  43052. height: math.unit(5, "feet"),
  43053. weight: math.unit(105, "lb"),
  43054. name: "Front",
  43055. image: {
  43056. source: "./media/characters/maxine/front.svg",
  43057. extra: 1386/1250,
  43058. bottom: 71/1457
  43059. }
  43060. },
  43061. },
  43062. [
  43063. {
  43064. name: "Normal",
  43065. height: math.unit(5, "feet"),
  43066. default: true
  43067. },
  43068. ]
  43069. ))
  43070. characterMakers.push(() => makeCharacter(
  43071. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  43072. {
  43073. front: {
  43074. height: math.unit(11 + 7/12, "feet"),
  43075. weight: math.unit(9576, "lb"),
  43076. name: "Front",
  43077. image: {
  43078. source: "./media/characters/scaly/front.svg",
  43079. extra: 888/867,
  43080. bottom: 36/924
  43081. }
  43082. },
  43083. },
  43084. [
  43085. {
  43086. name: "Normal",
  43087. height: math.unit(11 + 7/12, "feet"),
  43088. default: true
  43089. },
  43090. ]
  43091. ))
  43092. characterMakers.push(() => makeCharacter(
  43093. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  43094. {
  43095. front: {
  43096. height: math.unit(6 + 3/12, "feet"),
  43097. name: "Front",
  43098. image: {
  43099. source: "./media/characters/saelria/front.svg",
  43100. extra: 1243/1138,
  43101. bottom: 46/1289
  43102. }
  43103. },
  43104. },
  43105. [
  43106. {
  43107. name: "Micro",
  43108. height: math.unit(6, "inches"),
  43109. },
  43110. {
  43111. name: "Normal",
  43112. height: math.unit(6 + 3/12, "feet"),
  43113. default: true
  43114. },
  43115. {
  43116. name: "Macro",
  43117. height: math.unit(25, "feet")
  43118. },
  43119. ]
  43120. ))
  43121. characterMakers.push(() => makeCharacter(
  43122. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  43123. {
  43124. front: {
  43125. height: math.unit(80, "meters"),
  43126. weight: math.unit(7000, "tonnes"),
  43127. name: "Front",
  43128. image: {
  43129. source: "./media/characters/tef/front.svg",
  43130. extra: 2036/1991,
  43131. bottom: 54/2090
  43132. }
  43133. },
  43134. back: {
  43135. height: math.unit(80, "meters"),
  43136. weight: math.unit(7000, "tonnes"),
  43137. name: "Back",
  43138. image: {
  43139. source: "./media/characters/tef/back.svg",
  43140. extra: 2036/1991,
  43141. bottom: 54/2090
  43142. }
  43143. },
  43144. },
  43145. [
  43146. {
  43147. name: "Macro",
  43148. height: math.unit(80, "meters"),
  43149. default: true
  43150. },
  43151. ]
  43152. ))
  43153. characterMakers.push(() => makeCharacter(
  43154. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  43155. {
  43156. front: {
  43157. height: math.unit(13, "feet"),
  43158. weight: math.unit(6, "tons"),
  43159. name: "Front",
  43160. image: {
  43161. source: "./media/characters/rover/front.svg",
  43162. extra: 1233/1156,
  43163. bottom: 50/1283
  43164. }
  43165. },
  43166. back: {
  43167. height: math.unit(13, "feet"),
  43168. weight: math.unit(6, "tons"),
  43169. name: "Back",
  43170. image: {
  43171. source: "./media/characters/rover/back.svg",
  43172. extra: 1327/1258,
  43173. bottom: 39/1366
  43174. }
  43175. },
  43176. },
  43177. [
  43178. {
  43179. name: "Normal",
  43180. height: math.unit(13, "feet"),
  43181. default: true
  43182. },
  43183. {
  43184. name: "Macro",
  43185. height: math.unit(1300, "feet")
  43186. },
  43187. {
  43188. name: "Megamacro",
  43189. height: math.unit(1300, "miles")
  43190. },
  43191. {
  43192. name: "Gigamacro",
  43193. height: math.unit(1300000, "miles")
  43194. },
  43195. ]
  43196. ))
  43197. characterMakers.push(() => makeCharacter(
  43198. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  43199. {
  43200. front: {
  43201. height: math.unit(10, "feet"),
  43202. weight: math.unit(500, "lb"),
  43203. name: "Front",
  43204. image: {
  43205. source: "./media/characters/ariz/front.svg",
  43206. extra: 461/450,
  43207. bottom: 16/477
  43208. }
  43209. },
  43210. },
  43211. [
  43212. {
  43213. name: "MiniMacro",
  43214. height: math.unit(10, "feet"),
  43215. default: true
  43216. },
  43217. ]
  43218. ))
  43219. characterMakers.push(() => makeCharacter(
  43220. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  43221. {
  43222. front: {
  43223. height: math.unit(6, "feet"),
  43224. weight: math.unit(140, "lb"),
  43225. name: "Front",
  43226. image: {
  43227. source: "./media/characters/sigrun/front.svg",
  43228. extra: 1418/1359,
  43229. bottom: 27/1445
  43230. }
  43231. },
  43232. },
  43233. [
  43234. {
  43235. name: "Macro",
  43236. height: math.unit(35, "feet"),
  43237. default: true
  43238. },
  43239. ]
  43240. ))
  43241. characterMakers.push(() => makeCharacter(
  43242. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  43243. {
  43244. front: {
  43245. height: math.unit(6, "feet"),
  43246. weight: math.unit(150, "lb"),
  43247. name: "Front",
  43248. image: {
  43249. source: "./media/characters/numin/front.svg",
  43250. extra: 1433/1388,
  43251. bottom: 12/1445
  43252. }
  43253. },
  43254. },
  43255. [
  43256. {
  43257. name: "Macro",
  43258. height: math.unit(21.5, "km"),
  43259. default: true
  43260. },
  43261. ]
  43262. ))
  43263. characterMakers.push(() => makeCharacter(
  43264. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  43265. {
  43266. front: {
  43267. height: math.unit(6, "feet"),
  43268. weight: math.unit(463, "lb"),
  43269. name: "Front",
  43270. image: {
  43271. source: "./media/characters/melwa/front.svg",
  43272. extra: 1307/1248,
  43273. bottom: 93/1400
  43274. }
  43275. },
  43276. },
  43277. [
  43278. {
  43279. name: "Macro",
  43280. height: math.unit(50, "meters"),
  43281. default: true
  43282. },
  43283. ]
  43284. ))
  43285. characterMakers.push(() => makeCharacter(
  43286. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  43287. {
  43288. front: {
  43289. height: math.unit(325, "feet"),
  43290. name: "Front",
  43291. image: {
  43292. source: "./media/characters/zorkaiju/front.svg",
  43293. extra: 1955/1814,
  43294. bottom: 40/1995
  43295. }
  43296. },
  43297. frontExtended: {
  43298. height: math.unit(325, "feet"),
  43299. name: "Front (Extended)",
  43300. image: {
  43301. source: "./media/characters/zorkaiju/front-extended.svg",
  43302. extra: 1955/1814,
  43303. bottom: 40/1995
  43304. }
  43305. },
  43306. side: {
  43307. height: math.unit(325, "feet"),
  43308. name: "Side",
  43309. image: {
  43310. source: "./media/characters/zorkaiju/side.svg",
  43311. extra: 1495/1396,
  43312. bottom: 17/1512
  43313. }
  43314. },
  43315. sideExtended: {
  43316. height: math.unit(325, "feet"),
  43317. name: "Side (Extended)",
  43318. image: {
  43319. source: "./media/characters/zorkaiju/side-extended.svg",
  43320. extra: 1495/1396,
  43321. bottom: 17/1512
  43322. }
  43323. },
  43324. back: {
  43325. height: math.unit(325, "feet"),
  43326. name: "Back",
  43327. image: {
  43328. source: "./media/characters/zorkaiju/back.svg",
  43329. extra: 1959/1821,
  43330. bottom: 31/1990
  43331. }
  43332. },
  43333. backExtended: {
  43334. height: math.unit(325, "feet"),
  43335. name: "Back (Extended)",
  43336. image: {
  43337. source: "./media/characters/zorkaiju/back-extended.svg",
  43338. extra: 1959/1821,
  43339. bottom: 31/1990
  43340. }
  43341. },
  43342. hand: {
  43343. height: math.unit(58.4, "feet"),
  43344. name: "Hand",
  43345. image: {
  43346. source: "./media/characters/zorkaiju/hand.svg"
  43347. }
  43348. },
  43349. handExtended: {
  43350. height: math.unit(61.4, "feet"),
  43351. name: "Hand (Extended)",
  43352. image: {
  43353. source: "./media/characters/zorkaiju/hand-extended.svg"
  43354. }
  43355. },
  43356. foot: {
  43357. height: math.unit(95, "feet"),
  43358. name: "Foot",
  43359. image: {
  43360. source: "./media/characters/zorkaiju/foot.svg"
  43361. }
  43362. },
  43363. leftArm: {
  43364. height: math.unit(59, "feet"),
  43365. name: "Left Arm",
  43366. image: {
  43367. source: "./media/characters/zorkaiju/left-arm.svg"
  43368. }
  43369. },
  43370. rightArm: {
  43371. height: math.unit(59, "feet"),
  43372. name: "Right Arm",
  43373. image: {
  43374. source: "./media/characters/zorkaiju/right-arm.svg"
  43375. }
  43376. },
  43377. leftArmExtended: {
  43378. height: math.unit(59 * 1.033546, "feet"),
  43379. name: "Left Arm (Extended)",
  43380. image: {
  43381. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  43382. }
  43383. },
  43384. rightArmExtended: {
  43385. height: math.unit(59 * 1.0496, "feet"),
  43386. name: "Right Arm (Extended)",
  43387. image: {
  43388. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  43389. }
  43390. },
  43391. tail: {
  43392. height: math.unit(104, "feet"),
  43393. name: "Tail",
  43394. image: {
  43395. source: "./media/characters/zorkaiju/tail.svg"
  43396. }
  43397. },
  43398. tailExtended: {
  43399. height: math.unit(104, "feet"),
  43400. name: "Tail (Extended)",
  43401. image: {
  43402. source: "./media/characters/zorkaiju/tail-extended.svg"
  43403. }
  43404. },
  43405. tailBottom: {
  43406. height: math.unit(104, "feet"),
  43407. name: "Tail Bottom",
  43408. image: {
  43409. source: "./media/characters/zorkaiju/tail-bottom.svg"
  43410. }
  43411. },
  43412. crystal: {
  43413. height: math.unit(27.54, "feet"),
  43414. name: "Crystal",
  43415. image: {
  43416. source: "./media/characters/zorkaiju/crystal.svg"
  43417. }
  43418. },
  43419. },
  43420. [
  43421. {
  43422. name: "Kaiju",
  43423. height: math.unit(325, "feet"),
  43424. default: true
  43425. },
  43426. ]
  43427. ))
  43428. characterMakers.push(() => makeCharacter(
  43429. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  43430. {
  43431. front: {
  43432. height: math.unit(6 + 1/12, "feet"),
  43433. weight: math.unit(115, "lb"),
  43434. name: "Front",
  43435. image: {
  43436. source: "./media/characters/bailey-belfry/front.svg",
  43437. extra: 1240/1121,
  43438. bottom: 101/1341
  43439. }
  43440. },
  43441. },
  43442. [
  43443. {
  43444. name: "Normal",
  43445. height: math.unit(6 + 1/12, "feet"),
  43446. default: true
  43447. },
  43448. ]
  43449. ))
  43450. characterMakers.push(() => makeCharacter(
  43451. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  43452. {
  43453. side: {
  43454. height: math.unit(4, "meters"),
  43455. weight: math.unit(250, "kg"),
  43456. name: "Side",
  43457. image: {
  43458. source: "./media/characters/blacky/side.svg",
  43459. extra: 1027/919,
  43460. bottom: 43/1070
  43461. }
  43462. },
  43463. maw: {
  43464. height: math.unit(1, "meters"),
  43465. name: "Maw",
  43466. image: {
  43467. source: "./media/characters/blacky/maw.svg"
  43468. }
  43469. },
  43470. paw: {
  43471. height: math.unit(1, "meters"),
  43472. name: "Paw",
  43473. image: {
  43474. source: "./media/characters/blacky/paw.svg"
  43475. }
  43476. },
  43477. },
  43478. [
  43479. {
  43480. name: "Normal",
  43481. height: math.unit(4, "meters"),
  43482. default: true
  43483. },
  43484. ]
  43485. ))
  43486. characterMakers.push(() => makeCharacter(
  43487. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  43488. {
  43489. front: {
  43490. height: math.unit(170, "cm"),
  43491. weight: math.unit(66, "kg"),
  43492. name: "Front",
  43493. image: {
  43494. source: "./media/characters/thux-ei/front.svg",
  43495. extra: 1109/1011,
  43496. bottom: 8/1117
  43497. }
  43498. },
  43499. },
  43500. [
  43501. {
  43502. name: "Normal",
  43503. height: math.unit(170, "cm"),
  43504. default: true
  43505. },
  43506. ]
  43507. ))
  43508. characterMakers.push(() => makeCharacter(
  43509. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  43510. {
  43511. front: {
  43512. height: math.unit(5, "feet"),
  43513. weight: math.unit(120, "lb"),
  43514. name: "Front",
  43515. image: {
  43516. source: "./media/characters/roxanne-voltaire/front.svg",
  43517. extra: 1901/1779,
  43518. bottom: 53/1954
  43519. }
  43520. },
  43521. },
  43522. [
  43523. {
  43524. name: "Normal",
  43525. height: math.unit(5, "feet"),
  43526. default: true
  43527. },
  43528. {
  43529. name: "Giant",
  43530. height: math.unit(50, "feet")
  43531. },
  43532. {
  43533. name: "Titan",
  43534. height: math.unit(500, "feet")
  43535. },
  43536. {
  43537. name: "Macro",
  43538. height: math.unit(5000, "feet")
  43539. },
  43540. {
  43541. name: "Megamacro",
  43542. height: math.unit(50000, "feet")
  43543. },
  43544. {
  43545. name: "Gigamacro",
  43546. height: math.unit(500000, "feet")
  43547. },
  43548. {
  43549. name: "Teramacro",
  43550. height: math.unit(5e6, "feet")
  43551. },
  43552. ]
  43553. ))
  43554. characterMakers.push(() => makeCharacter(
  43555. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  43556. {
  43557. front: {
  43558. height: math.unit(6 + 2/12, "feet"),
  43559. name: "Front",
  43560. image: {
  43561. source: "./media/characters/squeaks/front.svg",
  43562. extra: 1823/1768,
  43563. bottom: 138/1961
  43564. }
  43565. },
  43566. },
  43567. [
  43568. {
  43569. name: "Micro",
  43570. height: math.unit(0.5, "inches")
  43571. },
  43572. {
  43573. name: "Normal",
  43574. height: math.unit(6 + 2/12, "feet"),
  43575. default: true
  43576. },
  43577. {
  43578. name: "Macro",
  43579. height: math.unit(600, "feet")
  43580. },
  43581. ]
  43582. ))
  43583. characterMakers.push(() => makeCharacter(
  43584. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  43585. {
  43586. front: {
  43587. height: math.unit(1.72, "meters"),
  43588. name: "Front",
  43589. image: {
  43590. source: "./media/characters/archinger/front.svg",
  43591. extra: 1861/1675,
  43592. bottom: 125/1986
  43593. }
  43594. },
  43595. back: {
  43596. height: math.unit(1.72, "meters"),
  43597. name: "Back",
  43598. image: {
  43599. source: "./media/characters/archinger/back.svg",
  43600. extra: 1844/1701,
  43601. bottom: 104/1948
  43602. }
  43603. },
  43604. cock: {
  43605. height: math.unit(0.59, "feet"),
  43606. name: "Cock",
  43607. image: {
  43608. source: "./media/characters/archinger/cock.svg"
  43609. }
  43610. },
  43611. },
  43612. [
  43613. {
  43614. name: "Normal",
  43615. height: math.unit(1.72, "meters"),
  43616. default: true
  43617. },
  43618. {
  43619. name: "Macro",
  43620. height: math.unit(84, "meters")
  43621. },
  43622. {
  43623. name: "Macro+",
  43624. height: math.unit(112, "meters")
  43625. },
  43626. {
  43627. name: "Macro++",
  43628. height: math.unit(960, "meters")
  43629. },
  43630. {
  43631. name: "Macro+++",
  43632. height: math.unit(4, "km")
  43633. },
  43634. {
  43635. name: "Macro++++",
  43636. height: math.unit(48, "km")
  43637. },
  43638. {
  43639. name: "Macro+++++",
  43640. height: math.unit(4500, "km")
  43641. },
  43642. ]
  43643. ))
  43644. characterMakers.push(() => makeCharacter(
  43645. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  43646. {
  43647. front: {
  43648. height: math.unit(5 + 5/12, "feet"),
  43649. name: "Front",
  43650. image: {
  43651. source: "./media/characters/alsnapz/front.svg",
  43652. extra: 1157/1065,
  43653. bottom: 42/1199
  43654. }
  43655. },
  43656. },
  43657. [
  43658. {
  43659. name: "Normal",
  43660. height: math.unit(5 + 5/12, "feet"),
  43661. default: true
  43662. },
  43663. ]
  43664. ))
  43665. characterMakers.push(() => makeCharacter(
  43666. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  43667. {
  43668. side: {
  43669. height: math.unit(3.2, "earths"),
  43670. name: "Side",
  43671. image: {
  43672. source: "./media/characters/mag/side.svg",
  43673. extra: 1331/1008,
  43674. bottom: 52/1383
  43675. }
  43676. },
  43677. wing: {
  43678. height: math.unit(1.94, "earths"),
  43679. name: "Wing",
  43680. image: {
  43681. source: "./media/characters/mag/wing.svg"
  43682. }
  43683. },
  43684. dick: {
  43685. height: math.unit(1.8, "earths"),
  43686. name: "Dick",
  43687. image: {
  43688. source: "./media/characters/mag/dick.svg"
  43689. }
  43690. },
  43691. ass: {
  43692. height: math.unit(1.33, "earths"),
  43693. name: "Ass",
  43694. image: {
  43695. source: "./media/characters/mag/ass.svg"
  43696. }
  43697. },
  43698. head: {
  43699. height: math.unit(1.1, "earths"),
  43700. name: "Head",
  43701. image: {
  43702. source: "./media/characters/mag/head.svg"
  43703. }
  43704. },
  43705. maw: {
  43706. height: math.unit(1.62, "earths"),
  43707. name: "Maw",
  43708. image: {
  43709. source: "./media/characters/mag/maw.svg"
  43710. }
  43711. },
  43712. },
  43713. [
  43714. {
  43715. name: "Small",
  43716. height: math.unit(162, "feet")
  43717. },
  43718. {
  43719. name: "Normal",
  43720. height: math.unit(3.2, "earths"),
  43721. default: true
  43722. },
  43723. ]
  43724. ))
  43725. characterMakers.push(() => makeCharacter(
  43726. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  43727. {
  43728. front: {
  43729. height: math.unit(512, "feet"),
  43730. weight: math.unit(63509, "tonnes"),
  43731. name: "Front",
  43732. image: {
  43733. source: "./media/characters/vorrel-harroc/front.svg",
  43734. extra: 1075/1063,
  43735. bottom: 62/1137
  43736. }
  43737. },
  43738. },
  43739. [
  43740. {
  43741. name: "Normal",
  43742. height: math.unit(10, "feet")
  43743. },
  43744. {
  43745. name: "Macro",
  43746. height: math.unit(512, "feet"),
  43747. default: true
  43748. },
  43749. {
  43750. name: "Megamacro",
  43751. height: math.unit(256, "miles")
  43752. },
  43753. {
  43754. name: "Gigamacro",
  43755. height: math.unit(4096, "miles")
  43756. },
  43757. ]
  43758. ))
  43759. characterMakers.push(() => makeCharacter(
  43760. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  43761. {
  43762. side: {
  43763. height: math.unit(50, "feet"),
  43764. name: "Side",
  43765. image: {
  43766. source: "./media/characters/froimar/side.svg",
  43767. extra: 855/638,
  43768. bottom: 99/954
  43769. }
  43770. },
  43771. },
  43772. [
  43773. {
  43774. name: "Macro",
  43775. height: math.unit(50, "feet"),
  43776. default: true
  43777. },
  43778. ]
  43779. ))
  43780. characterMakers.push(() => makeCharacter(
  43781. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  43782. {
  43783. front: {
  43784. height: math.unit(210, "miles"),
  43785. name: "Front",
  43786. image: {
  43787. source: "./media/characters/timothy/front.svg",
  43788. extra: 1007/943,
  43789. bottom: 62/1069
  43790. }
  43791. },
  43792. frontSkirt: {
  43793. height: math.unit(210, "miles"),
  43794. name: "Front (Skirt)",
  43795. image: {
  43796. source: "./media/characters/timothy/front-skirt.svg",
  43797. extra: 1007/943,
  43798. bottom: 62/1069
  43799. }
  43800. },
  43801. frontCoat: {
  43802. height: math.unit(210, "miles"),
  43803. name: "Front (Coat)",
  43804. image: {
  43805. source: "./media/characters/timothy/front-coat.svg",
  43806. extra: 1007/943,
  43807. bottom: 62/1069
  43808. }
  43809. },
  43810. },
  43811. [
  43812. {
  43813. name: "Macro",
  43814. height: math.unit(210, "miles"),
  43815. default: true
  43816. },
  43817. {
  43818. name: "Megamacro",
  43819. height: math.unit(210000, "miles")
  43820. },
  43821. ]
  43822. ))
  43823. characterMakers.push(() => makeCharacter(
  43824. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  43825. {
  43826. front: {
  43827. height: math.unit(188, "feet"),
  43828. name: "Front",
  43829. image: {
  43830. source: "./media/characters/pyotr/front.svg",
  43831. extra: 1912/1826,
  43832. bottom: 18/1930
  43833. }
  43834. },
  43835. },
  43836. [
  43837. {
  43838. name: "Macro",
  43839. height: math.unit(188, "feet"),
  43840. default: true
  43841. },
  43842. {
  43843. name: "Megamacro",
  43844. height: math.unit(8, "miles")
  43845. },
  43846. ]
  43847. ))
  43848. characterMakers.push(() => makeCharacter(
  43849. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  43850. {
  43851. side: {
  43852. height: math.unit(10, "feet"),
  43853. weight: math.unit(4500, "lb"),
  43854. name: "Side",
  43855. image: {
  43856. source: "./media/characters/ackart/side.svg",
  43857. extra: 1776/1668,
  43858. bottom: 116/1892
  43859. }
  43860. },
  43861. },
  43862. [
  43863. {
  43864. name: "Normal",
  43865. height: math.unit(10, "feet"),
  43866. default: true
  43867. },
  43868. ]
  43869. ))
  43870. characterMakers.push(() => makeCharacter(
  43871. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  43872. {
  43873. side: {
  43874. height: math.unit(21, "feet"),
  43875. name: "Side",
  43876. image: {
  43877. source: "./media/characters/nolow/side.svg",
  43878. extra: 1484/1434,
  43879. bottom: 85/1569
  43880. }
  43881. },
  43882. sideErect: {
  43883. height: math.unit(21, "feet"),
  43884. name: "Side-erect",
  43885. image: {
  43886. source: "./media/characters/nolow/side-erect.svg",
  43887. extra: 1484/1434,
  43888. bottom: 85/1569
  43889. }
  43890. },
  43891. },
  43892. [
  43893. {
  43894. name: "Regular",
  43895. height: math.unit(12, "feet")
  43896. },
  43897. {
  43898. name: "Big Chee",
  43899. height: math.unit(21, "feet"),
  43900. default: true
  43901. },
  43902. ]
  43903. ))
  43904. characterMakers.push(() => makeCharacter(
  43905. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  43906. {
  43907. front: {
  43908. height: math.unit(7, "feet"),
  43909. weight: math.unit(250, "lb"),
  43910. name: "Front",
  43911. image: {
  43912. source: "./media/characters/nines/front.svg",
  43913. extra: 1741/1607,
  43914. bottom: 41/1782
  43915. }
  43916. },
  43917. side: {
  43918. height: math.unit(7, "feet"),
  43919. weight: math.unit(250, "lb"),
  43920. name: "Side",
  43921. image: {
  43922. source: "./media/characters/nines/side.svg",
  43923. extra: 1854/1735,
  43924. bottom: 93/1947
  43925. }
  43926. },
  43927. back: {
  43928. height: math.unit(7, "feet"),
  43929. weight: math.unit(250, "lb"),
  43930. name: "Back",
  43931. image: {
  43932. source: "./media/characters/nines/back.svg",
  43933. extra: 1748/1615,
  43934. bottom: 20/1768
  43935. }
  43936. },
  43937. },
  43938. [
  43939. {
  43940. name: "Megamacro",
  43941. height: math.unit(99, "km"),
  43942. default: true
  43943. },
  43944. ]
  43945. ))
  43946. characterMakers.push(() => makeCharacter(
  43947. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43948. {
  43949. front: {
  43950. height: math.unit(5 + 10/12, "feet"),
  43951. weight: math.unit(210, "lb"),
  43952. name: "Front",
  43953. image: {
  43954. source: "./media/characters/zenith/front.svg",
  43955. extra: 1531/1452,
  43956. bottom: 198/1729
  43957. }
  43958. },
  43959. back: {
  43960. height: math.unit(5 + 10/12, "feet"),
  43961. weight: math.unit(210, "lb"),
  43962. name: "Back",
  43963. image: {
  43964. source: "./media/characters/zenith/back.svg",
  43965. extra: 1571/1487,
  43966. bottom: 75/1646
  43967. }
  43968. },
  43969. },
  43970. [
  43971. {
  43972. name: "Normal",
  43973. height: math.unit(5 + 10/12, "feet"),
  43974. default: true
  43975. }
  43976. ]
  43977. ))
  43978. characterMakers.push(() => makeCharacter(
  43979. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43980. {
  43981. front: {
  43982. height: math.unit(4, "feet"),
  43983. weight: math.unit(60, "lb"),
  43984. name: "Front",
  43985. image: {
  43986. source: "./media/characters/jasper/front.svg",
  43987. extra: 1450/1379,
  43988. bottom: 19/1469
  43989. }
  43990. },
  43991. },
  43992. [
  43993. {
  43994. name: "Normal",
  43995. height: math.unit(4, "feet"),
  43996. default: true
  43997. },
  43998. ]
  43999. ))
  44000. characterMakers.push(() => makeCharacter(
  44001. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  44002. {
  44003. front: {
  44004. height: math.unit(6 + 5/12, "feet"),
  44005. weight: math.unit(290, "lb"),
  44006. name: "Front",
  44007. image: {
  44008. source: "./media/characters/tiberius-thyben/front.svg",
  44009. extra: 757/739,
  44010. bottom: 39/796
  44011. }
  44012. },
  44013. },
  44014. [
  44015. {
  44016. name: "Micro",
  44017. height: math.unit(1.5, "inches")
  44018. },
  44019. {
  44020. name: "Normal",
  44021. height: math.unit(6 + 5/12, "feet"),
  44022. default: true
  44023. },
  44024. {
  44025. name: "Macro",
  44026. height: math.unit(300, "feet")
  44027. },
  44028. ]
  44029. ))
  44030. characterMakers.push(() => makeCharacter(
  44031. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  44032. {
  44033. front: {
  44034. height: math.unit(5 + 6/12, "feet"),
  44035. weight: math.unit(60, "kg"),
  44036. name: "Front",
  44037. image: {
  44038. source: "./media/characters/sabre/front.svg",
  44039. extra: 738/671,
  44040. bottom: 27/765
  44041. }
  44042. },
  44043. },
  44044. [
  44045. {
  44046. name: "Teeny",
  44047. height: math.unit(2, "inches")
  44048. },
  44049. {
  44050. name: "Smol",
  44051. height: math.unit(8, "inches")
  44052. },
  44053. {
  44054. name: "Normal",
  44055. height: math.unit(5 + 6/12, "feet"),
  44056. default: true
  44057. },
  44058. {
  44059. name: "Mini-Macro",
  44060. height: math.unit(15, "feet")
  44061. },
  44062. {
  44063. name: "Macro",
  44064. height: math.unit(50, "feet")
  44065. },
  44066. ]
  44067. ))
  44068. characterMakers.push(() => makeCharacter(
  44069. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  44070. {
  44071. front: {
  44072. height: math.unit(6 + 4/12, "feet"),
  44073. weight: math.unit(170, "lb"),
  44074. name: "Front",
  44075. image: {
  44076. source: "./media/characters/charlie/front.svg",
  44077. extra: 1348/1228,
  44078. bottom: 15/1363
  44079. }
  44080. },
  44081. },
  44082. [
  44083. {
  44084. name: "Macro",
  44085. height: math.unit(1700, "meters"),
  44086. default: true
  44087. },
  44088. {
  44089. name: "MegaMacro",
  44090. height: math.unit(20400, "meters")
  44091. },
  44092. ]
  44093. ))
  44094. characterMakers.push(() => makeCharacter(
  44095. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  44096. {
  44097. front: {
  44098. height: math.unit(1.96, "meters"),
  44099. weight: math.unit(220, "lb"),
  44100. name: "Front",
  44101. image: {
  44102. source: "./media/characters/susan-grant/front.svg",
  44103. extra: 482/478,
  44104. bottom: 7/489
  44105. }
  44106. },
  44107. },
  44108. [
  44109. {
  44110. name: "Normal",
  44111. height: math.unit(1.96, "meters"),
  44112. default: true
  44113. },
  44114. {
  44115. name: "Macro",
  44116. height: math.unit(76.2, "meters")
  44117. },
  44118. {
  44119. name: "MegaMacro",
  44120. height: math.unit(305, "meters")
  44121. },
  44122. {
  44123. name: "GigaMacro",
  44124. height: math.unit(1220, "meters")
  44125. },
  44126. {
  44127. name: "SuperMacro",
  44128. height: math.unit(4878, "meters")
  44129. },
  44130. ]
  44131. ))
  44132. characterMakers.push(() => makeCharacter(
  44133. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  44134. {
  44135. front: {
  44136. height: math.unit(5 + 4/12, "feet"),
  44137. weight: math.unit(110, "lb"),
  44138. name: "Front",
  44139. image: {
  44140. source: "./media/characters/axel-isanov/front.svg",
  44141. extra: 1096/1065,
  44142. bottom: 13/1109
  44143. }
  44144. },
  44145. },
  44146. [
  44147. {
  44148. name: "Normal",
  44149. height: math.unit(5 + 4/12, "feet"),
  44150. default: true
  44151. },
  44152. ]
  44153. ))
  44154. characterMakers.push(() => makeCharacter(
  44155. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  44156. {
  44157. front: {
  44158. height: math.unit(9, "feet"),
  44159. weight: math.unit(467, "lb"),
  44160. name: "Front",
  44161. image: {
  44162. source: "./media/characters/necahual/front.svg",
  44163. extra: 920/873,
  44164. bottom: 26/946
  44165. }
  44166. },
  44167. back: {
  44168. height: math.unit(9, "feet"),
  44169. weight: math.unit(467, "lb"),
  44170. name: "Back",
  44171. image: {
  44172. source: "./media/characters/necahual/back.svg",
  44173. extra: 930/884,
  44174. bottom: 16/946
  44175. }
  44176. },
  44177. frontUnderwear: {
  44178. height: math.unit(9, "feet"),
  44179. weight: math.unit(467, "lb"),
  44180. name: "Front (Underwear)",
  44181. image: {
  44182. source: "./media/characters/necahual/front-underwear.svg",
  44183. extra: 920/873,
  44184. bottom: 26/946
  44185. }
  44186. },
  44187. frontDressed: {
  44188. height: math.unit(9, "feet"),
  44189. weight: math.unit(467, "lb"),
  44190. name: "Front (Dressed)",
  44191. image: {
  44192. source: "./media/characters/necahual/front-dressed.svg",
  44193. extra: 920/873,
  44194. bottom: 26/946
  44195. }
  44196. },
  44197. },
  44198. [
  44199. {
  44200. name: "Comprsesed",
  44201. height: math.unit(9, "feet")
  44202. },
  44203. {
  44204. name: "Natural",
  44205. height: math.unit(15, "feet"),
  44206. default: true
  44207. },
  44208. {
  44209. name: "Boosted",
  44210. height: math.unit(50, "feet")
  44211. },
  44212. {
  44213. name: "Boosted+",
  44214. height: math.unit(150, "feet")
  44215. },
  44216. {
  44217. name: "Max",
  44218. height: math.unit(500, "feet")
  44219. },
  44220. ]
  44221. ))
  44222. characterMakers.push(() => makeCharacter(
  44223. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  44224. {
  44225. front: {
  44226. height: math.unit(22 + 1/12, "feet"),
  44227. weight: math.unit(3200, "lb"),
  44228. name: "Front",
  44229. image: {
  44230. source: "./media/characters/theo-acacia/front.svg",
  44231. extra: 1796/1741,
  44232. bottom: 83/1879
  44233. }
  44234. },
  44235. frontUnderwear: {
  44236. height: math.unit(22 + 1/12, "feet"),
  44237. weight: math.unit(3200, "lb"),
  44238. name: "Front (Underwear)",
  44239. image: {
  44240. source: "./media/characters/theo-acacia/front-underwear.svg",
  44241. extra: 1796/1741,
  44242. bottom: 83/1879
  44243. }
  44244. },
  44245. frontNude: {
  44246. height: math.unit(22 + 1/12, "feet"),
  44247. weight: math.unit(3200, "lb"),
  44248. name: "Front (Nude)",
  44249. image: {
  44250. source: "./media/characters/theo-acacia/front-nude.svg",
  44251. extra: 1796/1741,
  44252. bottom: 83/1879
  44253. }
  44254. },
  44255. },
  44256. [
  44257. {
  44258. name: "Normal",
  44259. height: math.unit(22 + 1/12, "feet"),
  44260. default: true
  44261. },
  44262. ]
  44263. ))
  44264. characterMakers.push(() => makeCharacter(
  44265. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44266. {
  44267. front: {
  44268. height: math.unit(20, "feet"),
  44269. name: "Front",
  44270. image: {
  44271. source: "./media/characters/astra/front.svg",
  44272. extra: 1850/1714,
  44273. bottom: 106/1956
  44274. }
  44275. },
  44276. frontUndressed: {
  44277. height: math.unit(20, "feet"),
  44278. name: "Front (Undressed)",
  44279. image: {
  44280. source: "./media/characters/astra/front-undressed.svg",
  44281. extra: 1926/1749,
  44282. bottom: 0/1926
  44283. }
  44284. },
  44285. hand: {
  44286. height: math.unit(1.53, "feet"),
  44287. name: "Hand",
  44288. image: {
  44289. source: "./media/characters/astra/hand.svg"
  44290. }
  44291. },
  44292. paw: {
  44293. height: math.unit(1.53, "feet"),
  44294. name: "Paw",
  44295. image: {
  44296. source: "./media/characters/astra/paw.svg"
  44297. }
  44298. },
  44299. },
  44300. [
  44301. {
  44302. name: "Smallest",
  44303. height: math.unit(20, "feet")
  44304. },
  44305. {
  44306. name: "Normal",
  44307. height: math.unit(1e9, "miles"),
  44308. default: true
  44309. },
  44310. {
  44311. name: "Larger",
  44312. height: math.unit(5, "multiverses")
  44313. },
  44314. {
  44315. name: "Largest",
  44316. height: math.unit(1e9, "multiverses")
  44317. },
  44318. ]
  44319. ))
  44320. characterMakers.push(() => makeCharacter(
  44321. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44322. {
  44323. front: {
  44324. height: math.unit(8, "feet"),
  44325. name: "Front",
  44326. image: {
  44327. source: "./media/characters/breanna/front.svg",
  44328. extra: 1912/1632,
  44329. bottom: 33/1945
  44330. }
  44331. },
  44332. },
  44333. [
  44334. {
  44335. name: "Smallest",
  44336. height: math.unit(8, "feet")
  44337. },
  44338. {
  44339. name: "Normal",
  44340. height: math.unit(1, "mile"),
  44341. default: true
  44342. },
  44343. {
  44344. name: "Maximum",
  44345. height: math.unit(1500000000000, "lightyears")
  44346. },
  44347. ]
  44348. ))
  44349. characterMakers.push(() => makeCharacter(
  44350. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  44351. {
  44352. front: {
  44353. height: math.unit(5 + 11/12, "feet"),
  44354. weight: math.unit(155, "lb"),
  44355. name: "Front",
  44356. image: {
  44357. source: "./media/characters/cai/front.svg",
  44358. extra: 1823/1702,
  44359. bottom: 32/1855
  44360. }
  44361. },
  44362. back: {
  44363. height: math.unit(5 + 11/12, "feet"),
  44364. weight: math.unit(155, "lb"),
  44365. name: "Back",
  44366. image: {
  44367. source: "./media/characters/cai/back.svg",
  44368. extra: 1809/1708,
  44369. bottom: 31/1840
  44370. }
  44371. },
  44372. },
  44373. [
  44374. {
  44375. name: "Normal",
  44376. height: math.unit(5 + 11/12, "feet"),
  44377. default: true
  44378. },
  44379. {
  44380. name: "Big",
  44381. height: math.unit(15, "feet")
  44382. },
  44383. {
  44384. name: "Macro",
  44385. height: math.unit(200, "feet")
  44386. },
  44387. ]
  44388. ))
  44389. characterMakers.push(() => makeCharacter(
  44390. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  44391. {
  44392. front: {
  44393. height: math.unit(5 + 6/12, "feet"),
  44394. weight: math.unit(160, "lb"),
  44395. name: "Front",
  44396. image: {
  44397. source: "./media/characters/zanna-virtuedòttir/front.svg",
  44398. extra: 1227/1174,
  44399. bottom: 37/1264
  44400. }
  44401. },
  44402. },
  44403. [
  44404. {
  44405. name: "Macro",
  44406. height: math.unit(444, "meters"),
  44407. default: true
  44408. },
  44409. ]
  44410. ))
  44411. characterMakers.push(() => makeCharacter(
  44412. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  44413. {
  44414. front: {
  44415. height: math.unit(18 + 7/12, "feet"),
  44416. name: "Front",
  44417. image: {
  44418. source: "./media/characters/rex/front.svg",
  44419. extra: 1941/1807,
  44420. bottom: 66/2007
  44421. }
  44422. },
  44423. back: {
  44424. height: math.unit(18 + 7/12, "feet"),
  44425. name: "Back",
  44426. image: {
  44427. source: "./media/characters/rex/back.svg",
  44428. extra: 1937/1822,
  44429. bottom: 42/1979
  44430. }
  44431. },
  44432. boot: {
  44433. height: math.unit(3.45, "feet"),
  44434. name: "Boot",
  44435. image: {
  44436. source: "./media/characters/rex/boot.svg"
  44437. }
  44438. },
  44439. paw: {
  44440. height: math.unit(4.17, "feet"),
  44441. name: "Paw",
  44442. image: {
  44443. source: "./media/characters/rex/paw.svg"
  44444. }
  44445. },
  44446. head: {
  44447. height: math.unit(6.728, "feet"),
  44448. name: "Head",
  44449. image: {
  44450. source: "./media/characters/rex/head.svg"
  44451. }
  44452. },
  44453. },
  44454. [
  44455. {
  44456. name: "Nano",
  44457. height: math.unit(18 + 7/12, "feet")
  44458. },
  44459. {
  44460. name: "Micro",
  44461. height: math.unit(1.5, "megameters")
  44462. },
  44463. {
  44464. name: "Normal",
  44465. height: math.unit(440, "megameters"),
  44466. default: true
  44467. },
  44468. {
  44469. name: "Macro",
  44470. height: math.unit(2.5, "gigameters")
  44471. },
  44472. {
  44473. name: "Gigamacro",
  44474. height: math.unit(2, "galaxies")
  44475. },
  44476. ]
  44477. ))
  44478. characterMakers.push(() => makeCharacter(
  44479. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  44480. {
  44481. side: {
  44482. height: math.unit(32, "feet"),
  44483. weight: math.unit(250000, "lb"),
  44484. name: "Side",
  44485. image: {
  44486. source: "./media/characters/silverwing/side.svg",
  44487. extra: 1100/1019,
  44488. bottom: 204/1304
  44489. }
  44490. },
  44491. },
  44492. [
  44493. {
  44494. name: "Normal",
  44495. height: math.unit(32, "feet"),
  44496. default: true
  44497. },
  44498. ]
  44499. ))
  44500. characterMakers.push(() => makeCharacter(
  44501. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  44502. {
  44503. front: {
  44504. height: math.unit(6 + 6/12, "feet"),
  44505. weight: math.unit(350, "lb"),
  44506. name: "Front",
  44507. image: {
  44508. source: "./media/characters/tristan-hawthorne/front.svg",
  44509. extra: 1159/1124,
  44510. bottom: 37/1196
  44511. },
  44512. form: "labrador",
  44513. default: true
  44514. },
  44515. skunkFront: {
  44516. height: math.unit(4 + 6/12, "feet"),
  44517. weight: math.unit(120, "lb"),
  44518. name: "Front",
  44519. image: {
  44520. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  44521. extra: 1609/1551,
  44522. bottom: 169/1778
  44523. },
  44524. form: "skunk",
  44525. default: true
  44526. },
  44527. },
  44528. [
  44529. {
  44530. name: "Normal",
  44531. height: math.unit(6 + 6/12, "feet"),
  44532. form: "labrador",
  44533. default: true
  44534. },
  44535. {
  44536. name: "Normal",
  44537. height: math.unit(4 + 6/12, "feet"),
  44538. form: "skunk",
  44539. default: true
  44540. },
  44541. ],
  44542. {
  44543. "labrador": {
  44544. name: "Labrador",
  44545. default: true
  44546. },
  44547. "skunk": {
  44548. name: "Skunk"
  44549. }
  44550. }
  44551. ))
  44552. characterMakers.push(() => makeCharacter(
  44553. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  44554. {
  44555. front: {
  44556. height: math.unit(5 + 11/12, "feet"),
  44557. weight: math.unit(190, "lb"),
  44558. name: "Front",
  44559. image: {
  44560. source: "./media/characters/mizu/front.svg",
  44561. extra: 1988/1788,
  44562. bottom: 14/2002
  44563. }
  44564. },
  44565. },
  44566. [
  44567. {
  44568. name: "Normal",
  44569. height: math.unit(5 + 11/12, "feet"),
  44570. default: true
  44571. },
  44572. ]
  44573. ))
  44574. characterMakers.push(() => makeCharacter(
  44575. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  44576. {
  44577. front: {
  44578. height: math.unit(1.7, "feet"),
  44579. weight: math.unit(50, "lb"),
  44580. name: "Front",
  44581. image: {
  44582. source: "./media/characters/dechroma/front.svg",
  44583. extra: 1095/859,
  44584. bottom: 64/1159
  44585. }
  44586. },
  44587. },
  44588. [
  44589. {
  44590. name: "Normal",
  44591. height: math.unit(1.7, "feet"),
  44592. default: true
  44593. },
  44594. ]
  44595. ))
  44596. characterMakers.push(() => makeCharacter(
  44597. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  44598. {
  44599. side: {
  44600. height: math.unit(30, "feet"),
  44601. name: "Side",
  44602. image: {
  44603. source: "./media/characters/veluren-thanazel/side.svg",
  44604. extra: 1611/633,
  44605. bottom: 118/1729
  44606. }
  44607. },
  44608. front: {
  44609. height: math.unit(30, "feet"),
  44610. name: "Front",
  44611. image: {
  44612. source: "./media/characters/veluren-thanazel/front.svg",
  44613. extra: 1486/636,
  44614. bottom: 238/1724
  44615. }
  44616. },
  44617. head: {
  44618. height: math.unit(21.4, "feet"),
  44619. name: "Head",
  44620. image: {
  44621. source: "./media/characters/veluren-thanazel/head.svg"
  44622. }
  44623. },
  44624. genitals: {
  44625. height: math.unit(19.4, "feet"),
  44626. name: "Genitals",
  44627. image: {
  44628. source: "./media/characters/veluren-thanazel/genitals.svg"
  44629. }
  44630. },
  44631. },
  44632. [
  44633. {
  44634. name: "Social",
  44635. height: math.unit(6, "feet")
  44636. },
  44637. {
  44638. name: "Play",
  44639. height: math.unit(12, "feet")
  44640. },
  44641. {
  44642. name: "True",
  44643. height: math.unit(30, "feet"),
  44644. default: true
  44645. },
  44646. ]
  44647. ))
  44648. characterMakers.push(() => makeCharacter(
  44649. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  44650. {
  44651. front: {
  44652. height: math.unit(7 + 6/12, "feet"),
  44653. weight: math.unit(500, "kg"),
  44654. name: "Front",
  44655. image: {
  44656. source: "./media/characters/arcturas/front.svg",
  44657. extra: 1700/1500,
  44658. bottom: 145/1845
  44659. }
  44660. },
  44661. },
  44662. [
  44663. {
  44664. name: "Normal",
  44665. height: math.unit(7 + 6/12, "feet"),
  44666. default: true
  44667. },
  44668. ]
  44669. ))
  44670. characterMakers.push(() => makeCharacter(
  44671. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  44672. {
  44673. side: {
  44674. height: math.unit(6, "feet"),
  44675. weight: math.unit(2, "tons"),
  44676. name: "Side",
  44677. image: {
  44678. source: "./media/characters/vitaen/side.svg",
  44679. extra: 1157/617,
  44680. bottom: 122/1279
  44681. }
  44682. },
  44683. },
  44684. [
  44685. {
  44686. name: "Normal",
  44687. height: math.unit(6, "feet"),
  44688. default: true
  44689. },
  44690. ]
  44691. ))
  44692. characterMakers.push(() => makeCharacter(
  44693. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  44694. {
  44695. front: {
  44696. height: math.unit(19, "feet"),
  44697. name: "Front",
  44698. image: {
  44699. source: "./media/characters/fia-dreamweaver/front.svg",
  44700. extra: 1630/1504,
  44701. bottom: 25/1655
  44702. }
  44703. },
  44704. },
  44705. [
  44706. {
  44707. name: "Normal",
  44708. height: math.unit(19, "feet"),
  44709. default: true
  44710. },
  44711. ]
  44712. ))
  44713. characterMakers.push(() => makeCharacter(
  44714. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  44715. {
  44716. front: {
  44717. height: math.unit(5 + 4/12, "feet"),
  44718. name: "Front",
  44719. image: {
  44720. source: "./media/characters/artan/front.svg",
  44721. extra: 1618/1535,
  44722. bottom: 46/1664
  44723. }
  44724. },
  44725. back: {
  44726. height: math.unit(5 + 4/12, "feet"),
  44727. name: "Back",
  44728. image: {
  44729. source: "./media/characters/artan/back.svg",
  44730. extra: 1618/1543,
  44731. bottom: 31/1649
  44732. }
  44733. },
  44734. },
  44735. [
  44736. {
  44737. name: "Normal",
  44738. height: math.unit(5 + 4/12, "feet"),
  44739. default: true
  44740. },
  44741. ]
  44742. ))
  44743. characterMakers.push(() => makeCharacter(
  44744. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  44745. {
  44746. side: {
  44747. height: math.unit(182, "cm"),
  44748. weight: math.unit(1000, "lb"),
  44749. name: "Side",
  44750. image: {
  44751. source: "./media/characters/silver-dragon/side.svg",
  44752. extra: 710/287,
  44753. bottom: 88/798
  44754. }
  44755. },
  44756. },
  44757. [
  44758. {
  44759. name: "Normal",
  44760. height: math.unit(182, "cm"),
  44761. default: true
  44762. },
  44763. ]
  44764. ))
  44765. characterMakers.push(() => makeCharacter(
  44766. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  44767. {
  44768. side: {
  44769. height: math.unit(6 + 6/12, "feet"),
  44770. weight: math.unit(1.5, "tons"),
  44771. name: "Side",
  44772. image: {
  44773. source: "./media/characters/zephyr/side.svg",
  44774. extra: 1433/586,
  44775. bottom: 109/1542
  44776. }
  44777. },
  44778. },
  44779. [
  44780. {
  44781. name: "Normal",
  44782. height: math.unit(6 + 6/12, "feet"),
  44783. default: true
  44784. },
  44785. ]
  44786. ))
  44787. characterMakers.push(() => makeCharacter(
  44788. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  44789. {
  44790. side: {
  44791. height: math.unit(1, "feet"),
  44792. name: "Side",
  44793. image: {
  44794. source: "./media/characters/vixye/side.svg",
  44795. extra: 632/541,
  44796. bottom: 0/632
  44797. }
  44798. },
  44799. },
  44800. [
  44801. {
  44802. name: "Normal",
  44803. height: math.unit(1, "feet"),
  44804. default: true
  44805. },
  44806. {
  44807. name: "True",
  44808. height: math.unit(1e15, "multiverses")
  44809. },
  44810. ]
  44811. ))
  44812. characterMakers.push(() => makeCharacter(
  44813. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  44814. {
  44815. front: {
  44816. height: math.unit(8 + 2/12, "feet"),
  44817. weight: math.unit(650, "lb"),
  44818. name: "Front",
  44819. image: {
  44820. source: "./media/characters/darla-mac-lochlainn/front.svg",
  44821. extra: 1174/1137,
  44822. bottom: 82/1256
  44823. }
  44824. },
  44825. back: {
  44826. height: math.unit(8 + 2/12, "feet"),
  44827. weight: math.unit(650, "lb"),
  44828. name: "Back",
  44829. image: {
  44830. source: "./media/characters/darla-mac-lochlainn/back.svg",
  44831. extra: 1204/1157,
  44832. bottom: 46/1250
  44833. }
  44834. },
  44835. },
  44836. [
  44837. {
  44838. name: "Wildform",
  44839. height: math.unit(8 + 2/12, "feet"),
  44840. default: true
  44841. },
  44842. ]
  44843. ))
  44844. characterMakers.push(() => makeCharacter(
  44845. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  44846. {
  44847. front: {
  44848. height: math.unit(18, "feet"),
  44849. name: "Front",
  44850. image: {
  44851. source: "./media/characters/cyphin/front.svg",
  44852. extra: 970/886,
  44853. bottom: 42/1012
  44854. }
  44855. },
  44856. back: {
  44857. height: math.unit(18, "feet"),
  44858. name: "Back",
  44859. image: {
  44860. source: "./media/characters/cyphin/back.svg",
  44861. extra: 1009/894,
  44862. bottom: 24/1033
  44863. }
  44864. },
  44865. head: {
  44866. height: math.unit(5.05, "feet"),
  44867. name: "Head",
  44868. image: {
  44869. source: "./media/characters/cyphin/head.svg"
  44870. }
  44871. },
  44872. tailbud: {
  44873. height: math.unit(5, "feet"),
  44874. name: "Tailbud",
  44875. image: {
  44876. source: "./media/characters/cyphin/tailbud.svg"
  44877. }
  44878. },
  44879. },
  44880. [
  44881. ]
  44882. ))
  44883. characterMakers.push(() => makeCharacter(
  44884. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  44885. {
  44886. side: {
  44887. height: math.unit(10, "feet"),
  44888. weight: math.unit(6, "tons"),
  44889. name: "Side",
  44890. image: {
  44891. source: "./media/characters/raijin/side.svg",
  44892. extra: 1529/613,
  44893. bottom: 337/1866
  44894. }
  44895. },
  44896. },
  44897. [
  44898. {
  44899. name: "Normal",
  44900. height: math.unit(10, "feet"),
  44901. default: true
  44902. },
  44903. ]
  44904. ))
  44905. characterMakers.push(() => makeCharacter(
  44906. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  44907. {
  44908. side: {
  44909. height: math.unit(9, "feet"),
  44910. name: "Side",
  44911. image: {
  44912. source: "./media/characters/nilghais/side.svg",
  44913. extra: 1047/744,
  44914. bottom: 91/1138
  44915. }
  44916. },
  44917. head: {
  44918. height: math.unit(3.14, "feet"),
  44919. name: "Head",
  44920. image: {
  44921. source: "./media/characters/nilghais/head.svg"
  44922. }
  44923. },
  44924. mouth: {
  44925. height: math.unit(4.6, "feet"),
  44926. name: "Mouth",
  44927. image: {
  44928. source: "./media/characters/nilghais/mouth.svg"
  44929. }
  44930. },
  44931. wings: {
  44932. height: math.unit(24, "feet"),
  44933. name: "Wings",
  44934. image: {
  44935. source: "./media/characters/nilghais/wings.svg"
  44936. }
  44937. },
  44938. ass: {
  44939. height: math.unit(6.12, "feet"),
  44940. name: "Ass",
  44941. image: {
  44942. source: "./media/characters/nilghais/ass.svg"
  44943. }
  44944. },
  44945. },
  44946. [
  44947. {
  44948. name: "Normal",
  44949. height: math.unit(9, "feet"),
  44950. default: true
  44951. },
  44952. ]
  44953. ))
  44954. characterMakers.push(() => makeCharacter(
  44955. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44956. {
  44957. regular: {
  44958. height: math.unit(16 + 2/12, "feet"),
  44959. weight: math.unit(2300, "lb"),
  44960. name: "Regular",
  44961. image: {
  44962. source: "./media/characters/zolgar/regular.svg",
  44963. extra: 1246/1004,
  44964. bottom: 124/1370
  44965. }
  44966. },
  44967. boxers: {
  44968. height: math.unit(16 + 2/12, "feet"),
  44969. weight: math.unit(2300, "lb"),
  44970. name: "Boxers",
  44971. image: {
  44972. source: "./media/characters/zolgar/boxers.svg",
  44973. extra: 1246/1004,
  44974. bottom: 124/1370
  44975. }
  44976. },
  44977. armored: {
  44978. height: math.unit(16 + 2/12, "feet"),
  44979. weight: math.unit(2300, "lb"),
  44980. name: "Armored",
  44981. image: {
  44982. source: "./media/characters/zolgar/armored.svg",
  44983. extra: 1246/1004,
  44984. bottom: 124/1370
  44985. }
  44986. },
  44987. goth: {
  44988. height: math.unit(16 + 2/12, "feet"),
  44989. weight: math.unit(2300, "lb"),
  44990. name: "Goth",
  44991. image: {
  44992. source: "./media/characters/zolgar/goth.svg",
  44993. extra: 1246/1004,
  44994. bottom: 124/1370
  44995. }
  44996. },
  44997. },
  44998. [
  44999. {
  45000. name: "Shrunken Down",
  45001. height: math.unit(9 + 2/12, "feet")
  45002. },
  45003. {
  45004. name: "Normal",
  45005. height: math.unit(16 + 2/12, "feet"),
  45006. default: true
  45007. },
  45008. ]
  45009. ))
  45010. characterMakers.push(() => makeCharacter(
  45011. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  45012. {
  45013. front: {
  45014. height: math.unit(6, "feet"),
  45015. weight: math.unit(168, "lb"),
  45016. name: "Front",
  45017. image: {
  45018. source: "./media/characters/luca/front.svg",
  45019. extra: 841/667,
  45020. bottom: 102/943
  45021. }
  45022. },
  45023. },
  45024. [
  45025. {
  45026. name: "Normal",
  45027. height: math.unit(6, "feet"),
  45028. default: true
  45029. },
  45030. ]
  45031. ))
  45032. characterMakers.push(() => makeCharacter(
  45033. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  45034. {
  45035. side: {
  45036. height: math.unit(7 + 3/12, "feet"),
  45037. weight: math.unit(312, "lb"),
  45038. name: "Side",
  45039. image: {
  45040. source: "./media/characters/zezo/side.svg",
  45041. extra: 1192/1067,
  45042. bottom: 63/1255
  45043. }
  45044. },
  45045. },
  45046. [
  45047. {
  45048. name: "Normal",
  45049. height: math.unit(7 + 3/12, "feet"),
  45050. default: true
  45051. },
  45052. ]
  45053. ))
  45054. characterMakers.push(() => makeCharacter(
  45055. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  45056. {
  45057. front: {
  45058. height: math.unit(5 + 5/12, "feet"),
  45059. weight: math.unit(170, "lb"),
  45060. name: "Front",
  45061. image: {
  45062. source: "./media/characters/mayso/front.svg",
  45063. extra: 1215/1108,
  45064. bottom: 16/1231
  45065. }
  45066. },
  45067. },
  45068. [
  45069. {
  45070. name: "Normal",
  45071. height: math.unit(5 + 5/12, "feet"),
  45072. default: true
  45073. },
  45074. ]
  45075. ))
  45076. characterMakers.push(() => makeCharacter(
  45077. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  45078. {
  45079. front: {
  45080. height: math.unit(4 + 3/12, "feet"),
  45081. weight: math.unit(80, "lb"),
  45082. name: "Front",
  45083. image: {
  45084. source: "./media/characters/hess/front.svg",
  45085. extra: 1200/1123,
  45086. bottom: 16/1216
  45087. }
  45088. },
  45089. },
  45090. [
  45091. {
  45092. name: "Normal",
  45093. height: math.unit(4 + 3/12, "feet"),
  45094. default: true
  45095. },
  45096. ]
  45097. ))
  45098. characterMakers.push(() => makeCharacter(
  45099. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  45100. {
  45101. front: {
  45102. height: math.unit(1.9, "meters"),
  45103. name: "Front",
  45104. image: {
  45105. source: "./media/characters/ashgar/front.svg",
  45106. extra: 1177/1146,
  45107. bottom: 99/1276
  45108. }
  45109. },
  45110. back: {
  45111. height: math.unit(1.9, "meters"),
  45112. name: "Back",
  45113. image: {
  45114. source: "./media/characters/ashgar/back.svg",
  45115. extra: 1201/1183,
  45116. bottom: 53/1254
  45117. }
  45118. },
  45119. feral: {
  45120. height: math.unit(1.4, "meters"),
  45121. name: "Feral",
  45122. image: {
  45123. source: "./media/characters/ashgar/feral.svg",
  45124. extra: 370/345,
  45125. bottom: 45/415
  45126. }
  45127. },
  45128. },
  45129. [
  45130. {
  45131. name: "Normal",
  45132. height: math.unit(1.9, "meters"),
  45133. default: true
  45134. },
  45135. ]
  45136. ))
  45137. characterMakers.push(() => makeCharacter(
  45138. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  45139. {
  45140. regular: {
  45141. height: math.unit(6, "feet"),
  45142. weight: math.unit(220, "lb"),
  45143. name: "Regular",
  45144. image: {
  45145. source: "./media/characters/phillip/regular.svg",
  45146. extra: 1373/1277,
  45147. bottom: 75/1448
  45148. }
  45149. },
  45150. dressed: {
  45151. height: math.unit(6, "feet"),
  45152. weight: math.unit(220, "lb"),
  45153. name: "Dressed",
  45154. image: {
  45155. source: "./media/characters/phillip/dressed.svg",
  45156. extra: 1373/1277,
  45157. bottom: 75/1448
  45158. }
  45159. },
  45160. paw: {
  45161. height: math.unit(1.44, "feet"),
  45162. name: "Paw",
  45163. image: {
  45164. source: "./media/characters/phillip/paw.svg"
  45165. }
  45166. },
  45167. },
  45168. [
  45169. {
  45170. name: "Normal",
  45171. height: math.unit(6, "feet"),
  45172. default: true
  45173. },
  45174. ]
  45175. ))
  45176. characterMakers.push(() => makeCharacter(
  45177. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  45178. {
  45179. side: {
  45180. height: math.unit(42, "feet"),
  45181. name: "Side",
  45182. image: {
  45183. source: "./media/characters/uvula/side.svg",
  45184. extra: 683/586,
  45185. bottom: 60/743
  45186. }
  45187. },
  45188. front: {
  45189. height: math.unit(42, "feet"),
  45190. name: "Front",
  45191. image: {
  45192. source: "./media/characters/uvula/front.svg",
  45193. extra: 705/613,
  45194. bottom: 54/759
  45195. }
  45196. },
  45197. maw: {
  45198. height: math.unit(23.5, "feet"),
  45199. name: "Maw",
  45200. image: {
  45201. source: "./media/characters/uvula/maw.svg"
  45202. }
  45203. },
  45204. },
  45205. [
  45206. {
  45207. name: "Original Size",
  45208. height: math.unit(14, "inches")
  45209. },
  45210. {
  45211. name: "Human Size",
  45212. height: math.unit(6, "feet")
  45213. },
  45214. {
  45215. name: "Big",
  45216. height: math.unit(42, "feet"),
  45217. default: true
  45218. },
  45219. {
  45220. name: "Bigger",
  45221. height: math.unit(100, "feet")
  45222. },
  45223. ]
  45224. ))
  45225. characterMakers.push(() => makeCharacter(
  45226. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  45227. {
  45228. front: {
  45229. height: math.unit(5 + 11/12, "feet"),
  45230. name: "Front",
  45231. image: {
  45232. source: "./media/characters/lannah/front.svg",
  45233. extra: 1208/1113,
  45234. bottom: 97/1305
  45235. }
  45236. },
  45237. },
  45238. [
  45239. {
  45240. name: "Normal",
  45241. height: math.unit(5 + 11/12, "feet"),
  45242. default: true
  45243. },
  45244. ]
  45245. ))
  45246. characterMakers.push(() => makeCharacter(
  45247. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  45248. {
  45249. front: {
  45250. height: math.unit(6 + 3/12, "feet"),
  45251. weight: math.unit(3.5, "tons"),
  45252. name: "Front",
  45253. image: {
  45254. source: "./media/characters/emberflame/front.svg",
  45255. extra: 1198/672,
  45256. bottom: 82/1280
  45257. }
  45258. },
  45259. side: {
  45260. height: math.unit(6 + 3/12, "feet"),
  45261. weight: math.unit(3.5, "tons"),
  45262. name: "Side",
  45263. image: {
  45264. source: "./media/characters/emberflame/side.svg",
  45265. extra: 938/527,
  45266. bottom: 56/994
  45267. }
  45268. },
  45269. },
  45270. [
  45271. {
  45272. name: "Normal",
  45273. height: math.unit(6 + 3/12, "feet"),
  45274. default: true
  45275. },
  45276. ]
  45277. ))
  45278. characterMakers.push(() => makeCharacter(
  45279. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  45280. {
  45281. side: {
  45282. height: math.unit(17.5, "feet"),
  45283. weight: math.unit(35, "tons"),
  45284. name: "Side",
  45285. image: {
  45286. source: "./media/characters/sophie-ambrose/side.svg",
  45287. extra: 1573/1242,
  45288. bottom: 71/1644
  45289. }
  45290. },
  45291. maw: {
  45292. height: math.unit(7.4, "feet"),
  45293. name: "Maw",
  45294. image: {
  45295. source: "./media/characters/sophie-ambrose/maw.svg"
  45296. }
  45297. },
  45298. },
  45299. [
  45300. {
  45301. name: "Normal",
  45302. height: math.unit(17.5, "feet"),
  45303. default: true
  45304. },
  45305. ]
  45306. ))
  45307. characterMakers.push(() => makeCharacter(
  45308. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  45309. {
  45310. front: {
  45311. height: math.unit(280, "feet"),
  45312. weight: math.unit(550, "tons"),
  45313. name: "Front",
  45314. image: {
  45315. source: "./media/characters/king-mugi/front.svg",
  45316. extra: 1102/947,
  45317. bottom: 104/1206
  45318. }
  45319. },
  45320. },
  45321. [
  45322. {
  45323. name: "King Mugi",
  45324. height: math.unit(280, "feet"),
  45325. default: true
  45326. },
  45327. ]
  45328. ))
  45329. characterMakers.push(() => makeCharacter(
  45330. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  45331. {
  45332. female: {
  45333. height: math.unit(300, "meters"),
  45334. name: "Front",
  45335. image: {
  45336. source: "./media/characters/nova-fox/female.svg",
  45337. extra: 664/632,
  45338. bottom: 51/715
  45339. },
  45340. form: "female",
  45341. default: true
  45342. },
  45343. male: {
  45344. height: math.unit(300, "meters"),
  45345. name: "Front",
  45346. image: {
  45347. source: "./media/characters/nova-fox/male.svg",
  45348. extra: 663/631,
  45349. bottom: 30/693
  45350. },
  45351. form: "male",
  45352. default: true
  45353. },
  45354. },
  45355. [
  45356. {
  45357. name: "Macro",
  45358. height: math.unit(300, "meters"),
  45359. default: true,
  45360. allForms: true
  45361. },
  45362. ],
  45363. {
  45364. "female": {
  45365. name: "Female",
  45366. default: true
  45367. },
  45368. "male": {
  45369. name: "Male",
  45370. },
  45371. }
  45372. ))
  45373. characterMakers.push(() => makeCharacter(
  45374. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  45375. {
  45376. front: {
  45377. height: math.unit(6 + 3/12, "feet"),
  45378. weight: math.unit(170, "lb"),
  45379. name: "Front",
  45380. image: {
  45381. source: "./media/characters/sam-bat/front.svg",
  45382. extra: 1601/1411,
  45383. bottom: 125/1726
  45384. }
  45385. },
  45386. back: {
  45387. height: math.unit(6 + 3/12, "feet"),
  45388. weight: math.unit(170, "lb"),
  45389. name: "Back",
  45390. image: {
  45391. source: "./media/characters/sam-bat/back.svg",
  45392. extra: 1577/1405,
  45393. bottom: 58/1635
  45394. }
  45395. },
  45396. },
  45397. [
  45398. {
  45399. name: "Normal",
  45400. height: math.unit(6 + 3/12, "feet"),
  45401. default: true
  45402. },
  45403. ]
  45404. ))
  45405. characterMakers.push(() => makeCharacter(
  45406. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  45407. {
  45408. front: {
  45409. height: math.unit(59, "feet"),
  45410. weight: math.unit(40000, "lb"),
  45411. name: "Front",
  45412. image: {
  45413. source: "./media/characters/inari/front.svg",
  45414. extra: 1884/1350,
  45415. bottom: 95/1979
  45416. }
  45417. },
  45418. },
  45419. [
  45420. {
  45421. name: "Gigantamax",
  45422. height: math.unit(59, "feet"),
  45423. default: true
  45424. },
  45425. ]
  45426. ))
  45427. characterMakers.push(() => makeCharacter(
  45428. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  45429. {
  45430. front: {
  45431. height: math.unit(5 + 8/12, "feet"),
  45432. name: "Front",
  45433. image: {
  45434. source: "./media/characters/elizabeth/front.svg",
  45435. extra: 1395/1298,
  45436. bottom: 54/1449
  45437. }
  45438. },
  45439. mouth: {
  45440. height: math.unit(1.97, "feet"),
  45441. name: "Mouth",
  45442. image: {
  45443. source: "./media/characters/elizabeth/mouth.svg"
  45444. }
  45445. },
  45446. foot: {
  45447. height: math.unit(1.17, "feet"),
  45448. name: "Foot",
  45449. image: {
  45450. source: "./media/characters/elizabeth/foot.svg"
  45451. }
  45452. },
  45453. },
  45454. [
  45455. {
  45456. name: "Normal",
  45457. height: math.unit(5 + 8/12, "feet"),
  45458. default: true
  45459. },
  45460. {
  45461. name: "Minimacro",
  45462. height: math.unit(18, "feet")
  45463. },
  45464. {
  45465. name: "Macro",
  45466. height: math.unit(180, "feet")
  45467. },
  45468. ]
  45469. ))
  45470. characterMakers.push(() => makeCharacter(
  45471. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  45472. {
  45473. front: {
  45474. height: math.unit(5 + 2/12, "feet"),
  45475. name: "Front",
  45476. image: {
  45477. source: "./media/characters/october-gossamer/front.svg",
  45478. extra: 505/454,
  45479. bottom: 7/512
  45480. }
  45481. },
  45482. back: {
  45483. height: math.unit(5 + 2/12, "feet"),
  45484. name: "Back",
  45485. image: {
  45486. source: "./media/characters/october-gossamer/back.svg",
  45487. extra: 501/454,
  45488. bottom: 11/512
  45489. }
  45490. },
  45491. },
  45492. [
  45493. {
  45494. name: "Normal",
  45495. height: math.unit(5 + 2/12, "feet"),
  45496. default: true
  45497. },
  45498. ]
  45499. ))
  45500. characterMakers.push(() => makeCharacter(
  45501. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  45502. {
  45503. front: {
  45504. height: math.unit(5, "feet"),
  45505. name: "Front",
  45506. image: {
  45507. source: "./media/characters/epiglottis/front.svg",
  45508. extra: 923/849,
  45509. bottom: 17/940
  45510. }
  45511. },
  45512. },
  45513. [
  45514. {
  45515. name: "Original Size",
  45516. height: math.unit(10, "inches")
  45517. },
  45518. {
  45519. name: "Human Size",
  45520. height: math.unit(5, "feet"),
  45521. default: true
  45522. },
  45523. {
  45524. name: "Big",
  45525. height: math.unit(25, "feet")
  45526. },
  45527. {
  45528. name: "Bigger",
  45529. height: math.unit(50, "feet")
  45530. },
  45531. {
  45532. name: "oh lawd",
  45533. height: math.unit(75, "feet")
  45534. },
  45535. ]
  45536. ))
  45537. characterMakers.push(() => makeCharacter(
  45538. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  45539. {
  45540. front: {
  45541. height: math.unit(2 + 4/12, "feet"),
  45542. weight: math.unit(60, "lb"),
  45543. name: "Front",
  45544. image: {
  45545. source: "./media/characters/lerm/front.svg",
  45546. extra: 796/790,
  45547. bottom: 79/875
  45548. }
  45549. },
  45550. },
  45551. [
  45552. {
  45553. name: "Normal",
  45554. height: math.unit(2 + 4/12, "feet"),
  45555. default: true
  45556. },
  45557. ]
  45558. ))
  45559. characterMakers.push(() => makeCharacter(
  45560. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  45561. {
  45562. front: {
  45563. height: math.unit(5.5, "feet"),
  45564. weight: math.unit(130, "lb"),
  45565. name: "Front",
  45566. image: {
  45567. source: "./media/characters/xena-nebadon/front.svg",
  45568. extra: 1828/1730,
  45569. bottom: 79/1907
  45570. }
  45571. },
  45572. },
  45573. [
  45574. {
  45575. name: "Tiny Puppy",
  45576. height: math.unit(3, "inches")
  45577. },
  45578. {
  45579. name: "Normal",
  45580. height: math.unit(5.5, "feet"),
  45581. default: true
  45582. },
  45583. {
  45584. name: "Lotta Lady",
  45585. height: math.unit(12, "feet")
  45586. },
  45587. {
  45588. name: "Pretty Big",
  45589. height: math.unit(100, "feet")
  45590. },
  45591. {
  45592. name: "Big",
  45593. height: math.unit(500, "feet")
  45594. },
  45595. {
  45596. name: "Skyscraper Toys",
  45597. height: math.unit(2500, "feet")
  45598. },
  45599. {
  45600. name: "Plane Catcher",
  45601. height: math.unit(8, "miles")
  45602. },
  45603. {
  45604. name: "Planet Toys",
  45605. height: math.unit(15, "earths")
  45606. },
  45607. {
  45608. name: "Stardust",
  45609. height: math.unit(0.25, "galaxies")
  45610. },
  45611. {
  45612. name: "Snacks",
  45613. height: math.unit(70, "universes")
  45614. },
  45615. ]
  45616. ))
  45617. characterMakers.push(() => makeCharacter(
  45618. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  45619. {
  45620. front: {
  45621. height: math.unit(1.6, "meters"),
  45622. weight: math.unit(60, "kg"),
  45623. name: "Front",
  45624. image: {
  45625. source: "./media/characters/bounty/front.svg",
  45626. extra: 1426/1308,
  45627. bottom: 15/1441
  45628. }
  45629. },
  45630. back: {
  45631. height: math.unit(1.6, "meters"),
  45632. weight: math.unit(60, "kg"),
  45633. name: "Back",
  45634. image: {
  45635. source: "./media/characters/bounty/back.svg",
  45636. extra: 1417/1307,
  45637. bottom: 8/1425
  45638. }
  45639. },
  45640. },
  45641. [
  45642. {
  45643. name: "Normal",
  45644. height: math.unit(1.6, "meters"),
  45645. default: true
  45646. },
  45647. {
  45648. name: "Macro",
  45649. height: math.unit(300, "meters")
  45650. },
  45651. ]
  45652. ))
  45653. characterMakers.push(() => makeCharacter(
  45654. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  45655. {
  45656. front: {
  45657. height: math.unit(2 + 8/12, "feet"),
  45658. weight: math.unit(15, "lb"),
  45659. name: "Front",
  45660. image: {
  45661. source: "./media/characters/mochi/front.svg",
  45662. extra: 1022/852,
  45663. bottom: 435/1457
  45664. }
  45665. },
  45666. back: {
  45667. height: math.unit(2 + 8/12, "feet"),
  45668. weight: math.unit(15, "lb"),
  45669. name: "Back",
  45670. image: {
  45671. source: "./media/characters/mochi/back.svg",
  45672. extra: 1335/1119,
  45673. bottom: 39/1374
  45674. }
  45675. },
  45676. bird: {
  45677. height: math.unit(2 + 8/12, "feet"),
  45678. weight: math.unit(15, "lb"),
  45679. name: "Bird",
  45680. image: {
  45681. source: "./media/characters/mochi/bird.svg",
  45682. extra: 1251/1113,
  45683. bottom: 178/1429
  45684. }
  45685. },
  45686. kaiju: {
  45687. height: math.unit(154, "feet"),
  45688. weight: math.unit(1e7, "lb"),
  45689. name: "Kaiju",
  45690. image: {
  45691. source: "./media/characters/mochi/kaiju.svg",
  45692. extra: 460/324,
  45693. bottom: 40/500
  45694. }
  45695. },
  45696. head: {
  45697. height: math.unit(1.21, "feet"),
  45698. name: "Head",
  45699. image: {
  45700. source: "./media/characters/mochi/head.svg"
  45701. }
  45702. },
  45703. alternateTail: {
  45704. height: math.unit(2 + 8/12, "feet"),
  45705. weight: math.unit(45, "lb"),
  45706. name: "Alternate Tail",
  45707. image: {
  45708. source: "./media/characters/mochi/alternate-tail.svg",
  45709. extra: 139/76,
  45710. bottom: 45/184
  45711. }
  45712. },
  45713. },
  45714. [
  45715. {
  45716. name: "Micro",
  45717. height: math.unit(2, "inches")
  45718. },
  45719. {
  45720. name: "Normal",
  45721. height: math.unit(2 + 8/12, "feet"),
  45722. default: true
  45723. },
  45724. {
  45725. name: "Macro",
  45726. height: math.unit(106, "feet")
  45727. },
  45728. ]
  45729. ))
  45730. characterMakers.push(() => makeCharacter(
  45731. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  45732. {
  45733. front: {
  45734. height: math.unit(5.67, "feet"),
  45735. weight: math.unit(135, "lb"),
  45736. name: "Front",
  45737. image: {
  45738. source: "./media/characters/sarel/front.svg",
  45739. extra: 865/788,
  45740. bottom: 97/962
  45741. }
  45742. },
  45743. back: {
  45744. height: math.unit(5.67, "feet"),
  45745. weight: math.unit(135, "lb"),
  45746. name: "Back",
  45747. image: {
  45748. source: "./media/characters/sarel/back.svg",
  45749. extra: 857/777,
  45750. bottom: 32/889
  45751. }
  45752. },
  45753. chozoan: {
  45754. height: math.unit(5.67, "feet"),
  45755. weight: math.unit(135, "lb"),
  45756. name: "Chozoan",
  45757. image: {
  45758. source: "./media/characters/sarel/chozoan.svg",
  45759. extra: 865/788,
  45760. bottom: 97/962
  45761. }
  45762. },
  45763. current: {
  45764. height: math.unit(5.67, "feet"),
  45765. weight: math.unit(135, "lb"),
  45766. name: "Current",
  45767. image: {
  45768. source: "./media/characters/sarel/current.svg",
  45769. extra: 865/788,
  45770. bottom: 97/962
  45771. }
  45772. },
  45773. head: {
  45774. height: math.unit(1.77, "feet"),
  45775. name: "Head",
  45776. image: {
  45777. source: "./media/characters/sarel/head.svg"
  45778. }
  45779. },
  45780. claws: {
  45781. height: math.unit(1.8, "feet"),
  45782. name: "Claws",
  45783. image: {
  45784. source: "./media/characters/sarel/claws.svg"
  45785. }
  45786. },
  45787. clawsAlt: {
  45788. height: math.unit(1.8, "feet"),
  45789. name: "Claws-alt",
  45790. image: {
  45791. source: "./media/characters/sarel/claws-alt.svg"
  45792. }
  45793. },
  45794. },
  45795. [
  45796. {
  45797. name: "Normal",
  45798. height: math.unit(5.67, "feet"),
  45799. default: true
  45800. },
  45801. ]
  45802. ))
  45803. characterMakers.push(() => makeCharacter(
  45804. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  45805. {
  45806. front: {
  45807. height: math.unit(5500, "feet"),
  45808. name: "Front",
  45809. image: {
  45810. source: "./media/characters/alyonia/front.svg",
  45811. extra: 1200/1135,
  45812. bottom: 29/1229
  45813. }
  45814. },
  45815. back: {
  45816. height: math.unit(5500, "feet"),
  45817. name: "Back",
  45818. image: {
  45819. source: "./media/characters/alyonia/back.svg",
  45820. extra: 1205/1138,
  45821. bottom: 10/1215
  45822. }
  45823. },
  45824. },
  45825. [
  45826. {
  45827. name: "Small",
  45828. height: math.unit(10, "feet")
  45829. },
  45830. {
  45831. name: "Macro",
  45832. height: math.unit(500, "feet")
  45833. },
  45834. {
  45835. name: "Mega Macro",
  45836. height: math.unit(5500, "feet"),
  45837. default: true
  45838. },
  45839. {
  45840. name: "Mega Macro+",
  45841. height: math.unit(500000, "feet")
  45842. },
  45843. {
  45844. name: "Giga Macro",
  45845. height: math.unit(3000, "miles")
  45846. },
  45847. {
  45848. name: "Tera Macro",
  45849. height: math.unit(2.8e6, "miles")
  45850. },
  45851. {
  45852. name: "Galactic",
  45853. height: math.unit(120000, "lightyears")
  45854. },
  45855. ]
  45856. ))
  45857. characterMakers.push(() => makeCharacter(
  45858. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  45859. {
  45860. werewolf: {
  45861. height: math.unit(8, "feet"),
  45862. weight: math.unit(425, "lb"),
  45863. name: "Werewolf",
  45864. image: {
  45865. source: "./media/characters/autumn/werewolf.svg",
  45866. extra: 2154/2031,
  45867. bottom: 160/2314
  45868. }
  45869. },
  45870. human: {
  45871. height: math.unit(5 + 8/12, "feet"),
  45872. weight: math.unit(150, "lb"),
  45873. name: "Human",
  45874. image: {
  45875. source: "./media/characters/autumn/human.svg",
  45876. extra: 1200/1149,
  45877. bottom: 30/1230
  45878. }
  45879. },
  45880. },
  45881. [
  45882. {
  45883. name: "Normal",
  45884. height: math.unit(8, "feet"),
  45885. default: true
  45886. },
  45887. ]
  45888. ))
  45889. characterMakers.push(() => makeCharacter(
  45890. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  45891. {
  45892. front: {
  45893. height: math.unit(8 + 5/12, "feet"),
  45894. weight: math.unit(825, "lb"),
  45895. name: "Front",
  45896. image: {
  45897. source: "./media/characters/cobalt-charizard/front.svg",
  45898. extra: 1268/1155,
  45899. bottom: 122/1390
  45900. }
  45901. },
  45902. side: {
  45903. height: math.unit(8 + 5/12, "feet"),
  45904. weight: math.unit(825, "lb"),
  45905. name: "Side",
  45906. image: {
  45907. source: "./media/characters/cobalt-charizard/side.svg",
  45908. extra: 1348/1257,
  45909. bottom: 58/1406
  45910. }
  45911. },
  45912. gMax: {
  45913. height: math.unit(134 + 11/12, "feet"),
  45914. name: "G-Max",
  45915. image: {
  45916. source: "./media/characters/cobalt-charizard/g-max.svg",
  45917. extra: 1835/1541,
  45918. bottom: 151/1986
  45919. }
  45920. },
  45921. },
  45922. [
  45923. {
  45924. name: "Normal",
  45925. height: math.unit(8 + 5/12, "feet"),
  45926. default: true
  45927. },
  45928. ]
  45929. ))
  45930. characterMakers.push(() => makeCharacter(
  45931. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  45932. {
  45933. front: {
  45934. height: math.unit(6 + 3/12, "feet"),
  45935. weight: math.unit(210, "lb"),
  45936. name: "Front",
  45937. image: {
  45938. source: "./media/characters/stella/front.svg",
  45939. extra: 3549/3335,
  45940. bottom: 51/3600
  45941. }
  45942. },
  45943. },
  45944. [
  45945. {
  45946. name: "Normal",
  45947. height: math.unit(6 + 3/12, "feet"),
  45948. default: true
  45949. },
  45950. ]
  45951. ))
  45952. characterMakers.push(() => makeCharacter(
  45953. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  45954. {
  45955. front: {
  45956. height: math.unit(5, "feet"),
  45957. weight: math.unit(90, "lb"),
  45958. name: "Front",
  45959. image: {
  45960. source: "./media/characters/riley-bishop/front.svg",
  45961. extra: 1450/1428,
  45962. bottom: 152/1602
  45963. }
  45964. },
  45965. },
  45966. [
  45967. {
  45968. name: "Normal",
  45969. height: math.unit(5, "feet"),
  45970. default: true
  45971. },
  45972. ]
  45973. ))
  45974. characterMakers.push(() => makeCharacter(
  45975. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45976. {
  45977. side: {
  45978. height: math.unit(8 + 2/12, "feet"),
  45979. weight: math.unit(500, "kg"),
  45980. name: "Side",
  45981. image: {
  45982. source: "./media/characters/theo-arcanine/side.svg",
  45983. extra: 1342/1074,
  45984. bottom: 111/1453
  45985. }
  45986. },
  45987. },
  45988. [
  45989. {
  45990. name: "Normal",
  45991. height: math.unit(8 + 2/12, "feet"),
  45992. default: true
  45993. },
  45994. ]
  45995. ))
  45996. characterMakers.push(() => makeCharacter(
  45997. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45998. {
  45999. front: {
  46000. height: math.unit(4, "feet"),
  46001. name: "Front",
  46002. image: {
  46003. source: "./media/characters/kali/front.svg",
  46004. extra: 1074/867,
  46005. bottom: 34/1108
  46006. }
  46007. },
  46008. back: {
  46009. height: math.unit(4, "feet"),
  46010. name: "Back",
  46011. image: {
  46012. source: "./media/characters/kali/back.svg",
  46013. extra: 1068/863,
  46014. bottom: 26/1094
  46015. }
  46016. },
  46017. frontAlt: {
  46018. height: math.unit(4, "feet"),
  46019. name: "Front (Alt)",
  46020. image: {
  46021. source: "./media/characters/kali/front-alt.svg",
  46022. extra: 1921/1357,
  46023. bottom: 70/1991
  46024. }
  46025. },
  46026. },
  46027. [
  46028. {
  46029. name: "Normal",
  46030. height: math.unit(4, "feet"),
  46031. default: true
  46032. },
  46033. {
  46034. name: "Big'vali",
  46035. height: math.unit(11, "feet")
  46036. },
  46037. {
  46038. name: "Macro",
  46039. height: math.unit(32, "meters")
  46040. },
  46041. {
  46042. name: "Macro+",
  46043. height: math.unit(150, "meters")
  46044. },
  46045. {
  46046. name: "Megamacro",
  46047. height: math.unit(7500, "meters")
  46048. },
  46049. {
  46050. name: "Megamacro+",
  46051. height: math.unit(80, "kilometers")
  46052. },
  46053. ]
  46054. ))
  46055. characterMakers.push(() => makeCharacter(
  46056. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  46057. {
  46058. side: {
  46059. height: math.unit(5 + 11/12, "feet"),
  46060. weight: math.unit(236, "lb"),
  46061. name: "Side",
  46062. image: {
  46063. source: "./media/characters/gapp/side.svg",
  46064. extra: 775/340,
  46065. bottom: 58/833
  46066. }
  46067. },
  46068. mouth: {
  46069. height: math.unit(2.98, "feet"),
  46070. name: "Mouth",
  46071. image: {
  46072. source: "./media/characters/gapp/mouth.svg"
  46073. }
  46074. },
  46075. },
  46076. [
  46077. {
  46078. name: "Normal",
  46079. height: math.unit(5 + 1/12, "feet"),
  46080. default: true
  46081. },
  46082. ]
  46083. ))
  46084. characterMakers.push(() => makeCharacter(
  46085. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  46086. {
  46087. front: {
  46088. height: math.unit(6, "feet"),
  46089. name: "Front",
  46090. image: {
  46091. source: "./media/characters/persephone/front.svg",
  46092. extra: 1895/1717,
  46093. bottom: 96/1991
  46094. }
  46095. },
  46096. back: {
  46097. height: math.unit(6, "feet"),
  46098. name: "Back",
  46099. image: {
  46100. source: "./media/characters/persephone/back.svg",
  46101. extra: 1868/1679,
  46102. bottom: 26/1894
  46103. }
  46104. },
  46105. casual: {
  46106. height: math.unit(6, "feet"),
  46107. name: "Casual",
  46108. image: {
  46109. source: "./media/characters/persephone/casual.svg",
  46110. extra: 1713/1541,
  46111. bottom: 76/1789
  46112. }
  46113. },
  46114. gaming: {
  46115. height: math.unit(3.55, "feet"),
  46116. name: "Gaming",
  46117. image: {
  46118. source: "./media/characters/persephone/gaming.svg",
  46119. extra: 1242/1038,
  46120. bottom: 66/1308
  46121. }
  46122. },
  46123. head: {
  46124. height: math.unit(2.15, "feet"),
  46125. name: "😐",
  46126. image: {
  46127. source: "./media/characters/persephone/head.svg"
  46128. }
  46129. },
  46130. talking: {
  46131. height: math.unit(2.5, "feet"),
  46132. name: "💬",
  46133. image: {
  46134. source: "./media/characters/persephone/talking.svg"
  46135. }
  46136. },
  46137. hmm: {
  46138. height: math.unit(2.28, "feet"),
  46139. name: "🤨",
  46140. image: {
  46141. source: "./media/characters/persephone/hmm.svg"
  46142. }
  46143. },
  46144. },
  46145. [
  46146. {
  46147. name: "Human Size",
  46148. height: math.unit(6, "feet")
  46149. },
  46150. {
  46151. name: "Big Steppy",
  46152. height: math.unit(600, "meters"),
  46153. default: true
  46154. },
  46155. {
  46156. name: "Galaxy Brain",
  46157. height: math.unit(1, "zettameter")
  46158. },
  46159. ]
  46160. ))
  46161. characterMakers.push(() => makeCharacter(
  46162. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  46163. {
  46164. front: {
  46165. height: math.unit(1.85, "meters"),
  46166. name: "Front",
  46167. image: {
  46168. source: "./media/characters/riley-foxthing/front.svg",
  46169. extra: 1495/1354,
  46170. bottom: 122/1617
  46171. }
  46172. },
  46173. frontAlt: {
  46174. height: math.unit(1.85, "meters"),
  46175. name: "Front (Alt)",
  46176. image: {
  46177. source: "./media/characters/riley-foxthing/front-alt.svg",
  46178. extra: 1572/1389,
  46179. bottom: 116/1688
  46180. }
  46181. },
  46182. },
  46183. [
  46184. {
  46185. name: "Normal Sized",
  46186. height: math.unit(1.85, "meters"),
  46187. default: true
  46188. },
  46189. {
  46190. name: "Quite Sizable",
  46191. height: math.unit(5, "meters")
  46192. },
  46193. {
  46194. name: "Rather Large",
  46195. height: math.unit(20, "meters")
  46196. },
  46197. {
  46198. name: "Macro",
  46199. height: math.unit(450, "meters")
  46200. },
  46201. {
  46202. name: "Giga",
  46203. height: math.unit(5, "km")
  46204. },
  46205. ]
  46206. ))
  46207. characterMakers.push(() => makeCharacter(
  46208. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  46209. {
  46210. front: {
  46211. height: math.unit(6, "feet"),
  46212. weight: math.unit(200, "lb"),
  46213. name: "Front",
  46214. image: {
  46215. source: "./media/characters/blizzard/front.svg",
  46216. extra: 1136/990,
  46217. bottom: 136/1272
  46218. }
  46219. },
  46220. back: {
  46221. height: math.unit(6, "feet"),
  46222. weight: math.unit(200, "lb"),
  46223. name: "Back",
  46224. image: {
  46225. source: "./media/characters/blizzard/back.svg",
  46226. extra: 1175/1034,
  46227. bottom: 97/1272
  46228. }
  46229. },
  46230. sitting: {
  46231. height: math.unit(3.725, "feet"),
  46232. weight: math.unit(200, "lb"),
  46233. name: "Sitting",
  46234. image: {
  46235. source: "./media/characters/blizzard/sitting.svg",
  46236. extra: 581/485,
  46237. bottom: 90/671
  46238. }
  46239. },
  46240. frontWizard: {
  46241. height: math.unit(7.9, "feet"),
  46242. weight: math.unit(200, "lb"),
  46243. name: "Front (Wizard)",
  46244. image: {
  46245. source: "./media/characters/blizzard/front-wizard.svg"
  46246. }
  46247. },
  46248. backWizard: {
  46249. height: math.unit(7.9, "feet"),
  46250. weight: math.unit(200, "lb"),
  46251. name: "Back (Wizard)",
  46252. image: {
  46253. source: "./media/characters/blizzard/back-wizard.svg"
  46254. }
  46255. },
  46256. frontNsfw: {
  46257. height: math.unit(6, "feet"),
  46258. weight: math.unit(200, "lb"),
  46259. name: "Front (NSFW)",
  46260. image: {
  46261. source: "./media/characters/blizzard/front-nsfw.svg",
  46262. extra: 1136/990,
  46263. bottom: 136/1272
  46264. }
  46265. },
  46266. backNsfw: {
  46267. height: math.unit(6, "feet"),
  46268. weight: math.unit(200, "lb"),
  46269. name: "Back (NSFW)",
  46270. image: {
  46271. source: "./media/characters/blizzard/back-nsfw.svg",
  46272. extra: 1175/1034,
  46273. bottom: 97/1272
  46274. }
  46275. },
  46276. sittingNsfw: {
  46277. height: math.unit(3.725, "feet"),
  46278. weight: math.unit(200, "lb"),
  46279. name: "Sitting (NSFW)",
  46280. image: {
  46281. source: "./media/characters/blizzard/sitting-nsfw.svg",
  46282. extra: 581/485,
  46283. bottom: 90/671
  46284. }
  46285. },
  46286. wizardFrontNsfw: {
  46287. height: math.unit(7.9, "feet"),
  46288. weight: math.unit(200, "lb"),
  46289. name: "Wizard (Front, NSFW)",
  46290. image: {
  46291. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  46292. }
  46293. },
  46294. },
  46295. [
  46296. {
  46297. name: "Normal",
  46298. height: math.unit(6, "feet"),
  46299. default: true
  46300. },
  46301. ]
  46302. ))
  46303. characterMakers.push(() => makeCharacter(
  46304. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  46305. {
  46306. front: {
  46307. height: math.unit(5 + 2/12, "feet"),
  46308. name: "Front",
  46309. image: {
  46310. source: "./media/characters/lumi/front.svg",
  46311. extra: 1328/1268,
  46312. bottom: 103/1431
  46313. }
  46314. },
  46315. back: {
  46316. height: math.unit(5 + 2/12, "feet"),
  46317. name: "Back",
  46318. image: {
  46319. source: "./media/characters/lumi/back.svg",
  46320. extra: 1381/1327,
  46321. bottom: 43/1424
  46322. }
  46323. },
  46324. },
  46325. [
  46326. {
  46327. name: "Normal",
  46328. height: math.unit(5 + 2/12, "feet"),
  46329. default: true
  46330. },
  46331. ]
  46332. ))
  46333. characterMakers.push(() => makeCharacter(
  46334. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  46335. {
  46336. front: {
  46337. height: math.unit(5 + 9/12, "feet"),
  46338. name: "Front",
  46339. image: {
  46340. source: "./media/characters/aliya-cotton/front.svg",
  46341. extra: 577/564,
  46342. bottom: 29/606
  46343. }
  46344. },
  46345. },
  46346. [
  46347. {
  46348. name: "Normal",
  46349. height: math.unit(5 + 9/12, "feet"),
  46350. default: true
  46351. },
  46352. ]
  46353. ))
  46354. characterMakers.push(() => makeCharacter(
  46355. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  46356. {
  46357. front: {
  46358. height: math.unit(2.7, "meters"),
  46359. weight: math.unit(25000, "lb"),
  46360. name: "Front",
  46361. image: {
  46362. source: "./media/characters/noah-luxray/front.svg",
  46363. extra: 1644/825,
  46364. bottom: 339/1983
  46365. }
  46366. },
  46367. side: {
  46368. height: math.unit(2.97, "meters"),
  46369. weight: math.unit(25000, "lb"),
  46370. name: "Side",
  46371. image: {
  46372. source: "./media/characters/noah-luxray/side.svg",
  46373. extra: 1319/650,
  46374. bottom: 163/1482
  46375. }
  46376. },
  46377. dick: {
  46378. height: math.unit(7.4, "feet"),
  46379. weight: math.unit(2500, "lb"),
  46380. name: "Dick",
  46381. image: {
  46382. source: "./media/characters/noah-luxray/dick.svg"
  46383. }
  46384. },
  46385. dickAlt: {
  46386. height: math.unit(10.83, "feet"),
  46387. weight: math.unit(2500, "lb"),
  46388. name: "Dick-alt",
  46389. image: {
  46390. source: "./media/characters/noah-luxray/dick-alt.svg"
  46391. }
  46392. },
  46393. },
  46394. [
  46395. {
  46396. name: "BIG",
  46397. height: math.unit(2.7, "meters"),
  46398. default: true
  46399. },
  46400. ]
  46401. ))
  46402. characterMakers.push(() => makeCharacter(
  46403. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  46404. {
  46405. standing: {
  46406. height: math.unit(183, "cm"),
  46407. weight: math.unit(68, "kg"),
  46408. name: "Standing",
  46409. image: {
  46410. source: "./media/characters/arion/standing.svg",
  46411. extra: 1869/1807,
  46412. bottom: 93/1962
  46413. }
  46414. },
  46415. reclining: {
  46416. height: math.unit(70.5, "cm"),
  46417. weight: math.unit(68, "lb"),
  46418. name: "Reclining",
  46419. image: {
  46420. source: "./media/characters/arion/reclining.svg",
  46421. extra: 937/870,
  46422. bottom: 63/1000
  46423. }
  46424. },
  46425. },
  46426. [
  46427. {
  46428. name: "Colossus Size, Low",
  46429. height: math.unit(33, "meters"),
  46430. default: true
  46431. },
  46432. {
  46433. name: "Colossus Size, Mid",
  46434. height: math.unit(52, "meters")
  46435. },
  46436. {
  46437. name: "Colossus Size, High",
  46438. height: math.unit(60, "meters")
  46439. },
  46440. {
  46441. name: "Titan Size, Low",
  46442. height: math.unit(91, "meters"),
  46443. },
  46444. {
  46445. name: "Titan Size, Mid",
  46446. height: math.unit(122, "meters")
  46447. },
  46448. {
  46449. name: "Titan Size, High",
  46450. height: math.unit(162, "meters")
  46451. },
  46452. ]
  46453. ))
  46454. characterMakers.push(() => makeCharacter(
  46455. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  46456. {
  46457. front: {
  46458. height: math.unit(53, "meters"),
  46459. name: "Front",
  46460. image: {
  46461. source: "./media/characters/stellar-marbey/front.svg",
  46462. extra: 1913/1805,
  46463. bottom: 92/2005
  46464. }
  46465. },
  46466. back: {
  46467. height: math.unit(53, "meters"),
  46468. name: "Back",
  46469. image: {
  46470. source: "./media/characters/stellar-marbey/back.svg",
  46471. extra: 1960/1851,
  46472. bottom: 28/1988
  46473. }
  46474. },
  46475. mouth: {
  46476. height: math.unit(3.5, "meters"),
  46477. name: "Mouth",
  46478. image: {
  46479. source: "./media/characters/stellar-marbey/mouth.svg"
  46480. }
  46481. },
  46482. },
  46483. [
  46484. {
  46485. name: "Macro",
  46486. height: math.unit(53, "meters"),
  46487. default: true
  46488. },
  46489. ]
  46490. ))
  46491. characterMakers.push(() => makeCharacter(
  46492. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  46493. {
  46494. front: {
  46495. height: math.unit(8 + 1/12, "feet"),
  46496. weight: math.unit(233, "lb"),
  46497. name: "Front",
  46498. image: {
  46499. source: "./media/characters/matsu/front.svg",
  46500. extra: 832/772,
  46501. bottom: 40/872
  46502. }
  46503. },
  46504. back: {
  46505. height: math.unit(8 + 1/12, "feet"),
  46506. weight: math.unit(233, "lb"),
  46507. name: "Back",
  46508. image: {
  46509. source: "./media/characters/matsu/back.svg",
  46510. extra: 839/780,
  46511. bottom: 47/886
  46512. }
  46513. },
  46514. },
  46515. [
  46516. {
  46517. name: "Normal",
  46518. height: math.unit(8 + 1/12, "feet"),
  46519. default: true
  46520. },
  46521. ]
  46522. ))
  46523. characterMakers.push(() => makeCharacter(
  46524. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  46525. {
  46526. front: {
  46527. height: math.unit(4, "feet"),
  46528. weight: math.unit(148, "lb"),
  46529. name: "Front",
  46530. image: {
  46531. source: "./media/characters/thiz/front.svg",
  46532. extra: 1913/1748,
  46533. bottom: 62/1975
  46534. }
  46535. },
  46536. },
  46537. [
  46538. {
  46539. name: "Normal",
  46540. height: math.unit(4, "feet"),
  46541. default: true
  46542. },
  46543. ]
  46544. ))
  46545. characterMakers.push(() => makeCharacter(
  46546. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  46547. {
  46548. front: {
  46549. height: math.unit(7 + 6/12, "feet"),
  46550. weight: math.unit(267, "lb"),
  46551. name: "Front",
  46552. image: {
  46553. source: "./media/characters/marcel/front.svg",
  46554. extra: 1221/1096,
  46555. bottom: 76/1297
  46556. }
  46557. },
  46558. },
  46559. [
  46560. {
  46561. name: "Normal",
  46562. height: math.unit(7 + 6/12, "feet"),
  46563. default: true
  46564. },
  46565. ]
  46566. ))
  46567. characterMakers.push(() => makeCharacter(
  46568. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  46569. {
  46570. side: {
  46571. height: math.unit(42, "meters"),
  46572. name: "Side",
  46573. image: {
  46574. source: "./media/characters/flake/side.svg",
  46575. extra: 1525/1306,
  46576. bottom: 209/1734
  46577. }
  46578. },
  46579. },
  46580. [
  46581. {
  46582. name: "Normal",
  46583. height: math.unit(42, "meters"),
  46584. default: true
  46585. },
  46586. ]
  46587. ))
  46588. characterMakers.push(() => makeCharacter(
  46589. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  46590. {
  46591. dressed: {
  46592. height: math.unit(6 + 4/12, "feet"),
  46593. weight: math.unit(520, "lb"),
  46594. name: "Dressed",
  46595. image: {
  46596. source: "./media/characters/someonne/dressed.svg",
  46597. extra: 1020/1010,
  46598. bottom: 178/1198
  46599. }
  46600. },
  46601. undressed: {
  46602. height: math.unit(6 + 4/12, "feet"),
  46603. weight: math.unit(520, "lb"),
  46604. name: "Undressed",
  46605. image: {
  46606. source: "./media/characters/someonne/undressed.svg",
  46607. extra: 1019/1014,
  46608. bottom: 169/1188
  46609. }
  46610. },
  46611. },
  46612. [
  46613. {
  46614. name: "Normal",
  46615. height: math.unit(6 + 4/12, "feet"),
  46616. default: true
  46617. },
  46618. ]
  46619. ))
  46620. characterMakers.push(() => makeCharacter(
  46621. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  46622. {
  46623. front: {
  46624. height: math.unit(3, "feet"),
  46625. weight: math.unit(30, "lb"),
  46626. name: "Front",
  46627. image: {
  46628. source: "./media/characters/till/front.svg",
  46629. extra: 892/823,
  46630. bottom: 55/947
  46631. }
  46632. },
  46633. },
  46634. [
  46635. {
  46636. name: "Normal",
  46637. height: math.unit(3, "feet"),
  46638. default: true
  46639. },
  46640. ]
  46641. ))
  46642. characterMakers.push(() => makeCharacter(
  46643. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  46644. {
  46645. front: {
  46646. height: math.unit(9 + 8/12, "feet"),
  46647. weight: math.unit(800, "lb"),
  46648. name: "Front",
  46649. image: {
  46650. source: "./media/characters/sydney-heki/front.svg",
  46651. extra: 1360/1300,
  46652. bottom: 22/1382
  46653. }
  46654. },
  46655. back: {
  46656. height: math.unit(9 + 8/12, "feet"),
  46657. weight: math.unit(800, "lb"),
  46658. name: "Back",
  46659. image: {
  46660. source: "./media/characters/sydney-heki/back.svg",
  46661. extra: 1356/1293,
  46662. bottom: 12/1368
  46663. }
  46664. },
  46665. frontDressed: {
  46666. height: math.unit(9 + 8/12, "feet"),
  46667. weight: math.unit(800, "lb"),
  46668. name: "Front-dressed",
  46669. image: {
  46670. source: "./media/characters/sydney-heki/front-dressed.svg",
  46671. extra: 1360/1300,
  46672. bottom: 22/1382
  46673. }
  46674. },
  46675. },
  46676. [
  46677. {
  46678. name: "Normal",
  46679. height: math.unit(9 + 8/12, "feet"),
  46680. default: true
  46681. },
  46682. {
  46683. name: "Macro",
  46684. height: math.unit(500, "feet")
  46685. },
  46686. {
  46687. name: "Megamacro",
  46688. height: math.unit(3.6, "miles")
  46689. },
  46690. ]
  46691. ))
  46692. characterMakers.push(() => makeCharacter(
  46693. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  46694. {
  46695. front: {
  46696. height: math.unit(200, "cm"),
  46697. weight: math.unit(250, "lb"),
  46698. name: "Front",
  46699. image: {
  46700. source: "./media/characters/fowler-karlsson/front.svg",
  46701. extra: 897/845,
  46702. bottom: 123/1020
  46703. }
  46704. },
  46705. back: {
  46706. height: math.unit(200, "cm"),
  46707. weight: math.unit(250, "lb"),
  46708. name: "Back",
  46709. image: {
  46710. source: "./media/characters/fowler-karlsson/back.svg",
  46711. extra: 999/944,
  46712. bottom: 26/1025
  46713. }
  46714. },
  46715. dick: {
  46716. height: math.unit(1.92, "feet"),
  46717. weight: math.unit(150, "lb"),
  46718. name: "Dick",
  46719. image: {
  46720. source: "./media/characters/fowler-karlsson/dick.svg"
  46721. }
  46722. },
  46723. },
  46724. [
  46725. {
  46726. name: "Normal",
  46727. height: math.unit(200, "cm"),
  46728. default: true
  46729. },
  46730. {
  46731. name: "Smaller Macro",
  46732. height: math.unit(90, "m")
  46733. },
  46734. {
  46735. name: "Macro",
  46736. height: math.unit(150, "m")
  46737. },
  46738. {
  46739. name: "Bigger Macro",
  46740. height: math.unit(300, "m")
  46741. },
  46742. ]
  46743. ))
  46744. characterMakers.push(() => makeCharacter(
  46745. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  46746. {
  46747. side: {
  46748. height: math.unit(8 + 2/12, "feet"),
  46749. weight: math.unit(1, "tonne"),
  46750. name: "Side",
  46751. image: {
  46752. source: "./media/characters/rylide/side.svg",
  46753. extra: 1318/1034,
  46754. bottom: 106/1424
  46755. }
  46756. },
  46757. sitting: {
  46758. height: math.unit(303, "cm"),
  46759. weight: math.unit(1, "tonne"),
  46760. name: "Sitting",
  46761. image: {
  46762. source: "./media/characters/rylide/sitting.svg",
  46763. extra: 1303/1103,
  46764. bottom: 36/1339
  46765. }
  46766. },
  46767. },
  46768. [
  46769. {
  46770. name: "Normal",
  46771. height: math.unit(8 + 2/12, "feet"),
  46772. default: true
  46773. },
  46774. ]
  46775. ))
  46776. characterMakers.push(() => makeCharacter(
  46777. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  46778. {
  46779. front: {
  46780. height: math.unit(5 + 10/12, "feet"),
  46781. weight: math.unit(160, "lb"),
  46782. name: "Front",
  46783. image: {
  46784. source: "./media/characters/pudask/front.svg",
  46785. extra: 1616/1590,
  46786. bottom: 161/1777
  46787. }
  46788. },
  46789. },
  46790. [
  46791. {
  46792. name: "Ferret Height",
  46793. height: math.unit(2 + 5/12, "feet")
  46794. },
  46795. {
  46796. name: "Canon Height",
  46797. height: math.unit(5 + 10/12, "feet"),
  46798. default: true
  46799. },
  46800. ]
  46801. ))
  46802. characterMakers.push(() => makeCharacter(
  46803. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  46804. {
  46805. front: {
  46806. height: math.unit(3 + 6/12, "feet"),
  46807. weight: math.unit(60, "lb"),
  46808. name: "Front",
  46809. image: {
  46810. source: "./media/characters/ramita/front.svg",
  46811. extra: 1402/1232,
  46812. bottom: 62/1464
  46813. }
  46814. },
  46815. dressed: {
  46816. height: math.unit(3 + 6/12, "feet"),
  46817. weight: math.unit(60, "lb"),
  46818. name: "Dressed",
  46819. image: {
  46820. source: "./media/characters/ramita/dressed.svg",
  46821. extra: 1534/1249,
  46822. bottom: 50/1584
  46823. }
  46824. },
  46825. },
  46826. [
  46827. {
  46828. name: "Normal",
  46829. height: math.unit(3 + 6/12, "feet"),
  46830. default: true
  46831. },
  46832. ]
  46833. ))
  46834. characterMakers.push(() => makeCharacter(
  46835. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  46836. {
  46837. front: {
  46838. height: math.unit(8, "feet"),
  46839. name: "Front",
  46840. image: {
  46841. source: "./media/characters/ark/front.svg",
  46842. extra: 772/693,
  46843. bottom: 45/817
  46844. }
  46845. },
  46846. },
  46847. [
  46848. {
  46849. name: "Normal",
  46850. height: math.unit(8, "feet"),
  46851. default: true
  46852. },
  46853. ]
  46854. ))
  46855. characterMakers.push(() => makeCharacter(
  46856. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  46857. {
  46858. front: {
  46859. height: math.unit(6, "feet"),
  46860. weight: math.unit(250, "lb"),
  46861. volume: math.unit(5/8, "gallons"),
  46862. name: "Front",
  46863. image: {
  46864. source: "./media/characters/ludwig-horn/front.svg",
  46865. extra: 1782/1635,
  46866. bottom: 96/1878
  46867. }
  46868. },
  46869. back: {
  46870. height: math.unit(6, "feet"),
  46871. weight: math.unit(250, "lb"),
  46872. volume: math.unit(5/8, "gallons"),
  46873. name: "Back",
  46874. image: {
  46875. source: "./media/characters/ludwig-horn/back.svg",
  46876. extra: 1874/1729,
  46877. bottom: 27/1901
  46878. }
  46879. },
  46880. dick: {
  46881. height: math.unit(1.05, "feet"),
  46882. weight: math.unit(15, "lb"),
  46883. volume: math.unit(5/8, "gallons"),
  46884. name: "Dick",
  46885. image: {
  46886. source: "./media/characters/ludwig-horn/dick.svg"
  46887. }
  46888. },
  46889. },
  46890. [
  46891. {
  46892. name: "Small",
  46893. height: math.unit(6, "feet")
  46894. },
  46895. {
  46896. name: "Typical",
  46897. height: math.unit(12, "feet"),
  46898. default: true
  46899. },
  46900. {
  46901. name: "Building",
  46902. height: math.unit(80, "feet")
  46903. },
  46904. {
  46905. name: "Town",
  46906. height: math.unit(800, "feet")
  46907. },
  46908. {
  46909. name: "Kingdom",
  46910. height: math.unit(80000, "feet")
  46911. },
  46912. {
  46913. name: "Planet",
  46914. height: math.unit(8000000, "feet")
  46915. },
  46916. {
  46917. name: "Universe",
  46918. height: math.unit(8000000000, "feet")
  46919. },
  46920. {
  46921. name: "Transcended",
  46922. height: math.unit(8e27, "feet")
  46923. },
  46924. ]
  46925. ))
  46926. characterMakers.push(() => makeCharacter(
  46927. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  46928. {
  46929. front: {
  46930. height: math.unit(5, "feet"),
  46931. weight: math.unit(50, "kg"),
  46932. name: "Front",
  46933. image: {
  46934. source: "./media/characters/biot-avery/front.svg",
  46935. extra: 1295/1232,
  46936. bottom: 86/1381
  46937. }
  46938. },
  46939. },
  46940. [
  46941. {
  46942. name: "Normal",
  46943. height: math.unit(5, "feet"),
  46944. default: true
  46945. },
  46946. ]
  46947. ))
  46948. characterMakers.push(() => makeCharacter(
  46949. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  46950. {
  46951. front: {
  46952. height: math.unit(6, "feet"),
  46953. name: "Front",
  46954. image: {
  46955. source: "./media/characters/kitsune-kiro/front.svg",
  46956. extra: 1270/1158,
  46957. bottom: 42/1312
  46958. }
  46959. },
  46960. frontAlt: {
  46961. height: math.unit(6, "feet"),
  46962. name: "Front-alt",
  46963. image: {
  46964. source: "./media/characters/kitsune-kiro/front-alt.svg",
  46965. extra: 1130/1081,
  46966. bottom: 36/1166
  46967. }
  46968. },
  46969. },
  46970. [
  46971. {
  46972. name: "Smol",
  46973. height: math.unit(3, "feet")
  46974. },
  46975. {
  46976. name: "Normal",
  46977. height: math.unit(6, "feet"),
  46978. default: true
  46979. },
  46980. ]
  46981. ))
  46982. characterMakers.push(() => makeCharacter(
  46983. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  46984. {
  46985. front: {
  46986. height: math.unit(6, "feet"),
  46987. weight: math.unit(125, "lb"),
  46988. name: "Front",
  46989. image: {
  46990. source: "./media/characters/jack-thatcher/front.svg",
  46991. extra: 1474/1370,
  46992. bottom: 26/1500
  46993. }
  46994. },
  46995. back: {
  46996. height: math.unit(6, "feet"),
  46997. weight: math.unit(125, "lb"),
  46998. name: "Back",
  46999. image: {
  47000. source: "./media/characters/jack-thatcher/back.svg",
  47001. extra: 1489/1384,
  47002. bottom: 18/1507
  47003. }
  47004. },
  47005. },
  47006. [
  47007. {
  47008. name: "Normal",
  47009. height: math.unit(6, "feet"),
  47010. default: true
  47011. },
  47012. {
  47013. name: "Macro",
  47014. height: math.unit(75, "feet")
  47015. },
  47016. {
  47017. name: "Macro-er",
  47018. height: math.unit(250, "feet")
  47019. },
  47020. ]
  47021. ))
  47022. characterMakers.push(() => makeCharacter(
  47023. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  47024. {
  47025. front: {
  47026. height: math.unit(7, "feet"),
  47027. weight: math.unit(110, "kg"),
  47028. name: "Front",
  47029. image: {
  47030. source: "./media/characters/max-hyper/front.svg",
  47031. extra: 1969/1881,
  47032. bottom: 49/2018
  47033. }
  47034. },
  47035. },
  47036. [
  47037. {
  47038. name: "Normal",
  47039. height: math.unit(7, "feet"),
  47040. default: true
  47041. },
  47042. ]
  47043. ))
  47044. characterMakers.push(() => makeCharacter(
  47045. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  47046. {
  47047. front: {
  47048. height: math.unit(5 + 5/12, "feet"),
  47049. weight: math.unit(160, "lb"),
  47050. name: "Front",
  47051. image: {
  47052. source: "./media/characters/spook/front.svg",
  47053. extra: 794/791,
  47054. bottom: 54/848
  47055. }
  47056. },
  47057. back: {
  47058. height: math.unit(5 + 5/12, "feet"),
  47059. weight: math.unit(160, "lb"),
  47060. name: "Back",
  47061. image: {
  47062. source: "./media/characters/spook/back.svg",
  47063. extra: 812/798,
  47064. bottom: 32/844
  47065. }
  47066. },
  47067. },
  47068. [
  47069. {
  47070. name: "Normal",
  47071. height: math.unit(5 + 5/12, "feet"),
  47072. default: true
  47073. },
  47074. ]
  47075. ))
  47076. characterMakers.push(() => makeCharacter(
  47077. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  47078. {
  47079. front: {
  47080. height: math.unit(18, "feet"),
  47081. name: "Front",
  47082. image: {
  47083. source: "./media/characters/xeaduulix/front.svg",
  47084. extra: 1380/1166,
  47085. bottom: 110/1490
  47086. }
  47087. },
  47088. back: {
  47089. height: math.unit(18, "feet"),
  47090. name: "Back",
  47091. image: {
  47092. source: "./media/characters/xeaduulix/back.svg",
  47093. extra: 1592/1170,
  47094. bottom: 128/1720
  47095. }
  47096. },
  47097. frontNsfw: {
  47098. height: math.unit(18, "feet"),
  47099. name: "Front (NSFW)",
  47100. image: {
  47101. source: "./media/characters/xeaduulix/front-nsfw.svg",
  47102. extra: 1380/1166,
  47103. bottom: 110/1490
  47104. }
  47105. },
  47106. backNsfw: {
  47107. height: math.unit(18, "feet"),
  47108. name: "Back (NSFW)",
  47109. image: {
  47110. source: "./media/characters/xeaduulix/back-nsfw.svg",
  47111. extra: 1592/1170,
  47112. bottom: 128/1720
  47113. }
  47114. },
  47115. },
  47116. [
  47117. {
  47118. name: "Normal",
  47119. height: math.unit(18, "feet"),
  47120. default: true
  47121. },
  47122. ]
  47123. ))
  47124. characterMakers.push(() => makeCharacter(
  47125. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  47126. {
  47127. spreadWings: {
  47128. height: math.unit(20, "feet"),
  47129. name: "Spread Wings",
  47130. image: {
  47131. source: "./media/characters/fledge/spread-wings.svg",
  47132. extra: 693/635,
  47133. bottom: 26/719
  47134. }
  47135. },
  47136. front: {
  47137. height: math.unit(20, "feet"),
  47138. name: "Front",
  47139. image: {
  47140. source: "./media/characters/fledge/front.svg",
  47141. extra: 684/637,
  47142. bottom: 18/702
  47143. }
  47144. },
  47145. frontAlt: {
  47146. height: math.unit(20, "feet"),
  47147. name: "Front (Alt)",
  47148. image: {
  47149. source: "./media/characters/fledge/front-alt.svg",
  47150. extra: 708/664,
  47151. bottom: 13/721
  47152. }
  47153. },
  47154. back: {
  47155. height: math.unit(20, "feet"),
  47156. name: "Back",
  47157. image: {
  47158. source: "./media/characters/fledge/back.svg",
  47159. extra: 718/634,
  47160. bottom: 22/740
  47161. }
  47162. },
  47163. head: {
  47164. height: math.unit(5.55, "feet"),
  47165. name: "Head",
  47166. image: {
  47167. source: "./media/characters/fledge/head.svg"
  47168. }
  47169. },
  47170. headAlt: {
  47171. height: math.unit(5.1, "feet"),
  47172. name: "Head (Alt)",
  47173. image: {
  47174. source: "./media/characters/fledge/head-alt.svg"
  47175. }
  47176. },
  47177. },
  47178. [
  47179. {
  47180. name: "Small",
  47181. height: math.unit(6 + 2/12, "feet")
  47182. },
  47183. {
  47184. name: "Big",
  47185. height: math.unit(20, "feet"),
  47186. default: true
  47187. },
  47188. {
  47189. name: "Giant",
  47190. height: math.unit(100, "feet")
  47191. },
  47192. {
  47193. name: "Macro",
  47194. height: math.unit(200, "feet")
  47195. },
  47196. ]
  47197. ))
  47198. characterMakers.push(() => makeCharacter(
  47199. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  47200. {
  47201. front: {
  47202. height: math.unit(1, "meter"),
  47203. name: "Front",
  47204. image: {
  47205. source: "./media/characters/atlas-morenai/front.svg",
  47206. extra: 1275/1043,
  47207. bottom: 19/1294
  47208. }
  47209. },
  47210. back: {
  47211. height: math.unit(1, "meter"),
  47212. name: "Back",
  47213. image: {
  47214. source: "./media/characters/atlas-morenai/back.svg",
  47215. extra: 1141/1001,
  47216. bottom: 25/1166
  47217. }
  47218. },
  47219. },
  47220. [
  47221. {
  47222. name: "Normal",
  47223. height: math.unit(1, "meter"),
  47224. default: true
  47225. },
  47226. {
  47227. name: "Magic-Infused",
  47228. height: math.unit(5, "meters")
  47229. },
  47230. ]
  47231. ))
  47232. characterMakers.push(() => makeCharacter(
  47233. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  47234. {
  47235. front: {
  47236. height: math.unit(5, "meters"),
  47237. name: "Front",
  47238. image: {
  47239. source: "./media/characters/cintia/front.svg",
  47240. extra: 1312/1228,
  47241. bottom: 38/1350
  47242. }
  47243. },
  47244. back: {
  47245. height: math.unit(5, "meters"),
  47246. name: "Back",
  47247. image: {
  47248. source: "./media/characters/cintia/back.svg",
  47249. extra: 1260/1166,
  47250. bottom: 98/1358
  47251. }
  47252. },
  47253. frontDick: {
  47254. height: math.unit(5, "meters"),
  47255. name: "Front (Dick)",
  47256. image: {
  47257. source: "./media/characters/cintia/front-dick.svg",
  47258. extra: 1312/1228,
  47259. bottom: 38/1350
  47260. }
  47261. },
  47262. backDick: {
  47263. height: math.unit(5, "meters"),
  47264. name: "Back (Dick)",
  47265. image: {
  47266. source: "./media/characters/cintia/back-dick.svg",
  47267. extra: 1260/1166,
  47268. bottom: 98/1358
  47269. }
  47270. },
  47271. bust: {
  47272. height: math.unit(1.97, "meters"),
  47273. name: "Bust",
  47274. image: {
  47275. source: "./media/characters/cintia/bust.svg",
  47276. extra: 617/565,
  47277. bottom: 0/617
  47278. }
  47279. },
  47280. },
  47281. [
  47282. {
  47283. name: "Normal",
  47284. height: math.unit(5, "meters"),
  47285. default: true
  47286. },
  47287. ]
  47288. ))
  47289. characterMakers.push(() => makeCharacter(
  47290. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  47291. {
  47292. side: {
  47293. height: math.unit(100, "feet"),
  47294. name: "Side",
  47295. image: {
  47296. source: "./media/characters/denora/side.svg",
  47297. extra: 875/803,
  47298. bottom: 9/884
  47299. }
  47300. },
  47301. },
  47302. [
  47303. {
  47304. name: "Standard",
  47305. height: math.unit(100, "feet"),
  47306. default: true
  47307. },
  47308. {
  47309. name: "Grand",
  47310. height: math.unit(1000, "feet")
  47311. },
  47312. {
  47313. name: "Conquering",
  47314. height: math.unit(10000, "feet")
  47315. },
  47316. ]
  47317. ))
  47318. characterMakers.push(() => makeCharacter(
  47319. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  47320. {
  47321. dressed: {
  47322. height: math.unit(8 + 5/12, "feet"),
  47323. weight: math.unit(700, "lb"),
  47324. name: "Dressed",
  47325. image: {
  47326. source: "./media/characters/kiva/dressed.svg",
  47327. extra: 1102/1055,
  47328. bottom: 60/1162
  47329. }
  47330. },
  47331. nude: {
  47332. height: math.unit(8 + 5/12, "feet"),
  47333. weight: math.unit(700, "lb"),
  47334. name: "Nude",
  47335. image: {
  47336. source: "./media/characters/kiva/nude.svg",
  47337. extra: 1102/1055,
  47338. bottom: 60/1162
  47339. }
  47340. },
  47341. },
  47342. [
  47343. {
  47344. name: "Base Height",
  47345. height: math.unit(8 + 5/12, "feet"),
  47346. default: true
  47347. },
  47348. {
  47349. name: "Macro",
  47350. height: math.unit(100, "feet")
  47351. },
  47352. {
  47353. name: "Max",
  47354. height: math.unit(3280, "feet")
  47355. },
  47356. ]
  47357. ))
  47358. characterMakers.push(() => makeCharacter(
  47359. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  47360. {
  47361. front: {
  47362. height: math.unit(6 + 8/12, "feet"),
  47363. weight: math.unit(250, "lb"),
  47364. name: "Front",
  47365. image: {
  47366. source: "./media/characters/ztragon/front.svg",
  47367. extra: 1825/1684,
  47368. bottom: 98/1923
  47369. }
  47370. },
  47371. },
  47372. [
  47373. {
  47374. name: "Normal",
  47375. height: math.unit(6 + 8/12, "feet"),
  47376. default: true
  47377. },
  47378. {
  47379. name: "Macro",
  47380. height: math.unit(80, "feet")
  47381. },
  47382. ]
  47383. ))
  47384. characterMakers.push(() => makeCharacter(
  47385. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  47386. {
  47387. front: {
  47388. height: math.unit(10.4, "feet"),
  47389. weight: math.unit(2, "tons"),
  47390. name: "Front",
  47391. image: {
  47392. source: "./media/characters/yesenia/front.svg",
  47393. extra: 1479/1474,
  47394. bottom: 233/1712
  47395. }
  47396. },
  47397. },
  47398. [
  47399. {
  47400. name: "Normal",
  47401. height: math.unit(10.4, "feet"),
  47402. default: true
  47403. },
  47404. ]
  47405. ))
  47406. characterMakers.push(() => makeCharacter(
  47407. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  47408. {
  47409. normal: {
  47410. height: math.unit(6 + 1/12, "feet"),
  47411. weight: math.unit(180, "lb"),
  47412. name: "Normal",
  47413. image: {
  47414. source: "./media/characters/leanne-lycheborne/normal.svg",
  47415. extra: 1748/1660,
  47416. bottom: 98/1846
  47417. }
  47418. },
  47419. were: {
  47420. height: math.unit(12, "feet"),
  47421. weight: math.unit(1600, "lb"),
  47422. name: "Were",
  47423. image: {
  47424. source: "./media/characters/leanne-lycheborne/were.svg",
  47425. extra: 1485/1432,
  47426. bottom: 66/1551
  47427. }
  47428. },
  47429. },
  47430. [
  47431. {
  47432. name: "Normal",
  47433. height: math.unit(6 + 1/12, "feet"),
  47434. default: true
  47435. },
  47436. ]
  47437. ))
  47438. characterMakers.push(() => makeCharacter(
  47439. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  47440. {
  47441. side: {
  47442. height: math.unit(13, "feet"),
  47443. name: "Side",
  47444. image: {
  47445. source: "./media/characters/kira-tyler/side.svg",
  47446. extra: 693/393,
  47447. bottom: 58/751
  47448. }
  47449. },
  47450. },
  47451. [
  47452. {
  47453. name: "Normal",
  47454. height: math.unit(13, "feet"),
  47455. default: true
  47456. },
  47457. ]
  47458. ))
  47459. characterMakers.push(() => makeCharacter(
  47460. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  47461. {
  47462. front: {
  47463. height: math.unit(10.3, "feet"),
  47464. weight: math.unit(150, "lb"),
  47465. name: "Front",
  47466. image: {
  47467. source: "./media/characters/blaze/front.svg",
  47468. extra: 1378/1286,
  47469. bottom: 172/1550
  47470. }
  47471. },
  47472. },
  47473. [
  47474. {
  47475. name: "Normal",
  47476. height: math.unit(10.3, "feet"),
  47477. default: true
  47478. },
  47479. ]
  47480. ))
  47481. characterMakers.push(() => makeCharacter(
  47482. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  47483. {
  47484. side: {
  47485. height: math.unit(2, "meters"),
  47486. weight: math.unit(400, "kg"),
  47487. name: "Side",
  47488. image: {
  47489. source: "./media/characters/anu/side.svg",
  47490. extra: 506/394,
  47491. bottom: 18/524
  47492. }
  47493. },
  47494. },
  47495. [
  47496. {
  47497. name: "Humanoid",
  47498. height: math.unit(2, "meters")
  47499. },
  47500. {
  47501. name: "Normal",
  47502. height: math.unit(5, "meters"),
  47503. default: true
  47504. },
  47505. ]
  47506. ))
  47507. characterMakers.push(() => makeCharacter(
  47508. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  47509. {
  47510. front: {
  47511. height: math.unit(5 + 5/12, "feet"),
  47512. weight: math.unit(170, "lb"),
  47513. name: "Front",
  47514. image: {
  47515. source: "./media/characters/synx-the-lynx/front.svg",
  47516. extra: 1893/1745,
  47517. bottom: 17/1910
  47518. }
  47519. },
  47520. side: {
  47521. height: math.unit(5 + 5/12, "feet"),
  47522. weight: math.unit(170, "lb"),
  47523. name: "Side",
  47524. image: {
  47525. source: "./media/characters/synx-the-lynx/side.svg",
  47526. extra: 1884/1740,
  47527. bottom: 39/1923
  47528. }
  47529. },
  47530. back: {
  47531. height: math.unit(5 + 5/12, "feet"),
  47532. weight: math.unit(170, "lb"),
  47533. name: "Back",
  47534. image: {
  47535. source: "./media/characters/synx-the-lynx/back.svg",
  47536. extra: 1903/1755,
  47537. bottom: 14/1917
  47538. }
  47539. },
  47540. },
  47541. [
  47542. {
  47543. name: "Normal",
  47544. height: math.unit(5 + 5/12, "feet"),
  47545. default: true
  47546. },
  47547. ]
  47548. ))
  47549. characterMakers.push(() => makeCharacter(
  47550. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  47551. {
  47552. back: {
  47553. height: math.unit(15, "feet"),
  47554. name: "Back",
  47555. image: {
  47556. source: "./media/characters/nadezda-fex/back.svg",
  47557. extra: 1695/1481,
  47558. bottom: 25/1720
  47559. }
  47560. },
  47561. },
  47562. [
  47563. {
  47564. name: "Normal",
  47565. height: math.unit(15, "feet"),
  47566. default: true
  47567. },
  47568. {
  47569. name: "Macro",
  47570. height: math.unit(2.5, "miles")
  47571. },
  47572. {
  47573. name: "Goddess",
  47574. height: math.unit(2, "multiverses")
  47575. },
  47576. ]
  47577. ))
  47578. characterMakers.push(() => makeCharacter(
  47579. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  47580. {
  47581. front: {
  47582. height: math.unit(216, "cm"),
  47583. name: "Front",
  47584. image: {
  47585. source: "./media/characters/lev/front.svg",
  47586. extra: 1728/1670,
  47587. bottom: 82/1810
  47588. }
  47589. },
  47590. back: {
  47591. height: math.unit(216, "cm"),
  47592. name: "Back",
  47593. image: {
  47594. source: "./media/characters/lev/back.svg",
  47595. extra: 1738/1675,
  47596. bottom: 24/1762
  47597. }
  47598. },
  47599. dressed: {
  47600. height: math.unit(216, "cm"),
  47601. name: "Dressed",
  47602. image: {
  47603. source: "./media/characters/lev/dressed.svg",
  47604. extra: 1397/1351,
  47605. bottom: 73/1470
  47606. }
  47607. },
  47608. head: {
  47609. height: math.unit(0.51, "meter"),
  47610. name: "Head",
  47611. image: {
  47612. source: "./media/characters/lev/head.svg"
  47613. }
  47614. },
  47615. },
  47616. [
  47617. {
  47618. name: "Normal",
  47619. height: math.unit(216, "cm"),
  47620. default: true
  47621. },
  47622. {
  47623. name: "Relatively Macro",
  47624. height: math.unit(80, "meters")
  47625. },
  47626. {
  47627. name: "Megamacro",
  47628. height: math.unit(21600, "meters")
  47629. },
  47630. {
  47631. name: "Megamacro+",
  47632. height: math.unit(64800, "meters")
  47633. },
  47634. ]
  47635. ))
  47636. characterMakers.push(() => makeCharacter(
  47637. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  47638. {
  47639. front: {
  47640. height: math.unit(2, "meters"),
  47641. weight: math.unit(80, "kg"),
  47642. name: "Front",
  47643. image: {
  47644. source: "./media/characters/moka/front.svg",
  47645. extra: 1337/1255,
  47646. bottom: 58/1395
  47647. }
  47648. },
  47649. },
  47650. [
  47651. {
  47652. name: "Micro",
  47653. height: math.unit(15, "cm")
  47654. },
  47655. {
  47656. name: "Normal",
  47657. height: math.unit(2, "meters"),
  47658. default: true
  47659. },
  47660. {
  47661. name: "Macro",
  47662. height: math.unit(20, "meters"),
  47663. },
  47664. ]
  47665. ))
  47666. characterMakers.push(() => makeCharacter(
  47667. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  47668. {
  47669. front: {
  47670. height: math.unit(9, "feet"),
  47671. weight: math.unit(240, "lb"),
  47672. name: "Front",
  47673. image: {
  47674. source: "./media/characters/kuzco/front.svg",
  47675. extra: 1593/1487,
  47676. bottom: 32/1625
  47677. }
  47678. },
  47679. side: {
  47680. height: math.unit(9, "feet"),
  47681. weight: math.unit(240, "lb"),
  47682. name: "Side",
  47683. image: {
  47684. source: "./media/characters/kuzco/side.svg",
  47685. extra: 1575/1485,
  47686. bottom: 30/1605
  47687. }
  47688. },
  47689. back: {
  47690. height: math.unit(9, "feet"),
  47691. weight: math.unit(240, "lb"),
  47692. name: "Back",
  47693. image: {
  47694. source: "./media/characters/kuzco/back.svg",
  47695. extra: 1603/1514,
  47696. bottom: 14/1617
  47697. }
  47698. },
  47699. },
  47700. [
  47701. {
  47702. name: "Normal",
  47703. height: math.unit(9, "feet"),
  47704. default: true
  47705. },
  47706. ]
  47707. ))
  47708. characterMakers.push(() => makeCharacter(
  47709. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  47710. {
  47711. side: {
  47712. height: math.unit(2, "meters"),
  47713. weight: math.unit(300, "kg"),
  47714. name: "Side",
  47715. image: {
  47716. source: "./media/characters/ceruleus/side.svg",
  47717. extra: 1068/974,
  47718. bottom: 126/1194
  47719. }
  47720. },
  47721. maw: {
  47722. height: math.unit(0.8125, "meter"),
  47723. name: "Maw",
  47724. image: {
  47725. source: "./media/characters/ceruleus/maw.svg"
  47726. }
  47727. },
  47728. },
  47729. [
  47730. {
  47731. name: "Normal",
  47732. height: math.unit(16, "meters"),
  47733. default: true
  47734. },
  47735. ]
  47736. ))
  47737. characterMakers.push(() => makeCharacter(
  47738. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  47739. {
  47740. front: {
  47741. height: math.unit(9, "feet"),
  47742. weight: math.unit(500, "kg"),
  47743. name: "Front",
  47744. image: {
  47745. source: "./media/characters/acouya/front.svg",
  47746. extra: 1660/1473,
  47747. bottom: 28/1688
  47748. }
  47749. },
  47750. },
  47751. [
  47752. {
  47753. name: "Normal",
  47754. height: math.unit(9, "feet"),
  47755. default: true
  47756. },
  47757. ]
  47758. ))
  47759. characterMakers.push(() => makeCharacter(
  47760. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  47761. {
  47762. front: {
  47763. height: math.unit(5 + 6/12, "feet"),
  47764. weight: math.unit(195, "lb"),
  47765. name: "Front",
  47766. image: {
  47767. source: "./media/characters/vant/front.svg",
  47768. extra: 1396/1320,
  47769. bottom: 20/1416
  47770. }
  47771. },
  47772. back: {
  47773. height: math.unit(5 + 6/12, "feet"),
  47774. weight: math.unit(195, "lb"),
  47775. name: "Back",
  47776. image: {
  47777. source: "./media/characters/vant/back.svg",
  47778. extra: 1396/1320,
  47779. bottom: 20/1416
  47780. }
  47781. },
  47782. maw: {
  47783. height: math.unit(0.75, "feet"),
  47784. name: "Maw",
  47785. image: {
  47786. source: "./media/characters/vant/maw.svg"
  47787. }
  47788. },
  47789. paw: {
  47790. height: math.unit(1.07, "feet"),
  47791. name: "Paw",
  47792. image: {
  47793. source: "./media/characters/vant/paw.svg"
  47794. }
  47795. },
  47796. },
  47797. [
  47798. {
  47799. name: "Micro",
  47800. height: math.unit(0.25, "inches")
  47801. },
  47802. {
  47803. name: "Normal",
  47804. height: math.unit(5 + 6/12, "feet"),
  47805. default: true
  47806. },
  47807. {
  47808. name: "Macro",
  47809. height: math.unit(75, "feet")
  47810. },
  47811. ]
  47812. ))
  47813. characterMakers.push(() => makeCharacter(
  47814. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  47815. {
  47816. front: {
  47817. height: math.unit(30, "meters"),
  47818. weight: math.unit(363, "tons"),
  47819. name: "Front",
  47820. image: {
  47821. source: "./media/characters/ahra/front.svg",
  47822. extra: 1914/1814,
  47823. bottom: 46/1960
  47824. }
  47825. },
  47826. },
  47827. [
  47828. {
  47829. name: "Macro",
  47830. height: math.unit(30, "meters"),
  47831. default: true
  47832. },
  47833. ]
  47834. ))
  47835. characterMakers.push(() => makeCharacter(
  47836. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  47837. {
  47838. undressed: {
  47839. height: math.unit(2, "m"),
  47840. weight: math.unit(250, "kg"),
  47841. name: "Undressed",
  47842. image: {
  47843. source: "./media/characters/coriander/undressed.svg",
  47844. extra: 1757/1606,
  47845. bottom: 107/1864
  47846. }
  47847. },
  47848. dressed: {
  47849. height: math.unit(2, "m"),
  47850. weight: math.unit(250, "kg"),
  47851. name: "Dressed",
  47852. image: {
  47853. source: "./media/characters/coriander/dressed.svg",
  47854. extra: 1757/1606,
  47855. bottom: 107/1864
  47856. }
  47857. },
  47858. },
  47859. [
  47860. {
  47861. name: "Normal",
  47862. height: math.unit(4, "meters"),
  47863. default: true
  47864. },
  47865. {
  47866. name: "XL",
  47867. height: math.unit(6, "meters")
  47868. },
  47869. {
  47870. name: "XXL",
  47871. height: math.unit(8, "meters")
  47872. },
  47873. ]
  47874. ))
  47875. characterMakers.push(() => makeCharacter(
  47876. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  47877. {
  47878. front: {
  47879. height: math.unit(6, "feet"),
  47880. name: "Front",
  47881. image: {
  47882. source: "./media/characters/syrinx/front.svg",
  47883. extra: 1557/1259,
  47884. bottom: 171/1728
  47885. }
  47886. },
  47887. },
  47888. [
  47889. {
  47890. name: "Normal",
  47891. height: math.unit(6 + 3/12, "feet"),
  47892. default: true
  47893. },
  47894. ]
  47895. ))
  47896. characterMakers.push(() => makeCharacter(
  47897. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  47898. {
  47899. front: {
  47900. height: math.unit(11 + 6/12, "feet"),
  47901. weight: math.unit(1.5, "tons"),
  47902. name: "Front",
  47903. image: {
  47904. source: "./media/characters/bor/front.svg",
  47905. extra: 1189/1109,
  47906. bottom: 170/1359
  47907. }
  47908. },
  47909. },
  47910. [
  47911. {
  47912. name: "Normal",
  47913. height: math.unit(11 + 6/12, "feet"),
  47914. default: true
  47915. },
  47916. {
  47917. name: "Macro",
  47918. height: math.unit(32 + 9/12, "feet")
  47919. },
  47920. ]
  47921. ))
  47922. characterMakers.push(() => makeCharacter(
  47923. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  47924. {
  47925. anthro: {
  47926. height: math.unit(9, "feet"),
  47927. weight: math.unit(2076, "lb"),
  47928. name: "Anthro",
  47929. image: {
  47930. source: "./media/characters/abacus/anthro.svg",
  47931. extra: 1540/1494,
  47932. bottom: 233/1773
  47933. }
  47934. },
  47935. pigeon: {
  47936. height: math.unit(1, "feet"),
  47937. name: "Pigeon",
  47938. image: {
  47939. source: "./media/characters/abacus/pigeon.svg",
  47940. extra: 528/525,
  47941. bottom: 46/574
  47942. }
  47943. },
  47944. },
  47945. [
  47946. {
  47947. name: "Normal",
  47948. height: math.unit(9, "feet"),
  47949. default: true
  47950. },
  47951. ]
  47952. ))
  47953. characterMakers.push(() => makeCharacter(
  47954. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  47955. {
  47956. side: {
  47957. height: math.unit(6, "feet"),
  47958. name: "Side",
  47959. image: {
  47960. source: "./media/characters/delkhan/side.svg",
  47961. extra: 1884/1786,
  47962. bottom: 308/2192
  47963. }
  47964. },
  47965. head: {
  47966. height: math.unit(3.38, "feet"),
  47967. name: "Head",
  47968. image: {
  47969. source: "./media/characters/delkhan/head.svg"
  47970. }
  47971. },
  47972. },
  47973. [
  47974. {
  47975. name: "Normal",
  47976. height: math.unit(72, "feet"),
  47977. default: true
  47978. },
  47979. {
  47980. name: "Giant",
  47981. height: math.unit(172, "feet")
  47982. },
  47983. ]
  47984. ))
  47985. characterMakers.push(() => makeCharacter(
  47986. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  47987. {
  47988. standing: {
  47989. height: math.unit(6, "feet"),
  47990. name: "Standing",
  47991. image: {
  47992. source: "./media/characters/euchidat/standing.svg",
  47993. extra: 1612/1553,
  47994. bottom: 116/1728
  47995. }
  47996. },
  47997. leaning: {
  47998. height: math.unit(6, "feet"),
  47999. name: "Leaning",
  48000. image: {
  48001. source: "./media/characters/euchidat/leaning.svg",
  48002. extra: 1719/1674,
  48003. bottom: 27/1746
  48004. }
  48005. },
  48006. },
  48007. [
  48008. {
  48009. name: "Normal",
  48010. height: math.unit(175, "feet"),
  48011. default: true
  48012. },
  48013. {
  48014. name: "Megamacro",
  48015. height: math.unit(190, "miles")
  48016. },
  48017. {
  48018. name: "Gigamacro",
  48019. height: math.unit(190000, "miles")
  48020. },
  48021. ]
  48022. ))
  48023. characterMakers.push(() => makeCharacter(
  48024. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  48025. {
  48026. front: {
  48027. height: math.unit(6, "feet"),
  48028. weight: math.unit(150, "lb"),
  48029. name: "Front",
  48030. image: {
  48031. source: "./media/characters/rebecca-stack/front.svg",
  48032. extra: 1256/1201,
  48033. bottom: 18/1274
  48034. }
  48035. },
  48036. },
  48037. [
  48038. {
  48039. name: "Normal",
  48040. height: math.unit(5 + 8/12, "feet"),
  48041. default: true
  48042. },
  48043. {
  48044. name: "Demolitionist",
  48045. height: math.unit(200, "feet")
  48046. },
  48047. {
  48048. name: "Out of Control",
  48049. height: math.unit(2, "miles")
  48050. },
  48051. {
  48052. name: "Giga",
  48053. height: math.unit(7200, "miles")
  48054. },
  48055. ]
  48056. ))
  48057. characterMakers.push(() => makeCharacter(
  48058. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  48059. {
  48060. front: {
  48061. height: math.unit(6, "feet"),
  48062. weight: math.unit(150, "lb"),
  48063. name: "Front",
  48064. image: {
  48065. source: "./media/characters/jenny-cartwright/front.svg",
  48066. extra: 1384/1376,
  48067. bottom: 58/1442
  48068. }
  48069. },
  48070. },
  48071. [
  48072. {
  48073. name: "Normal",
  48074. height: math.unit(6 + 7/12, "feet"),
  48075. default: true
  48076. },
  48077. {
  48078. name: "Librarian",
  48079. height: math.unit(55, "feet")
  48080. },
  48081. {
  48082. name: "Sightseer",
  48083. height: math.unit(50, "miles")
  48084. },
  48085. {
  48086. name: "Giga",
  48087. height: math.unit(30000, "miles")
  48088. },
  48089. ]
  48090. ))
  48091. characterMakers.push(() => makeCharacter(
  48092. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  48093. {
  48094. nude: {
  48095. height: math.unit(8, "feet"),
  48096. weight: math.unit(225, "lb"),
  48097. name: "Nude",
  48098. image: {
  48099. source: "./media/characters/marvy/nude.svg",
  48100. extra: 1900/1683,
  48101. bottom: 89/1989
  48102. }
  48103. },
  48104. dressed: {
  48105. height: math.unit(8, "feet"),
  48106. weight: math.unit(225, "lb"),
  48107. name: "Dressed",
  48108. image: {
  48109. source: "./media/characters/marvy/dressed.svg",
  48110. extra: 1900/1683,
  48111. bottom: 89/1989
  48112. }
  48113. },
  48114. head: {
  48115. height: math.unit(2.85, "feet"),
  48116. name: "Head",
  48117. image: {
  48118. source: "./media/characters/marvy/head.svg"
  48119. }
  48120. },
  48121. },
  48122. [
  48123. {
  48124. name: "Normal",
  48125. height: math.unit(8, "feet"),
  48126. default: true
  48127. },
  48128. ]
  48129. ))
  48130. characterMakers.push(() => makeCharacter(
  48131. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  48132. {
  48133. front: {
  48134. height: math.unit(8, "feet"),
  48135. weight: math.unit(250, "lb"),
  48136. name: "Front",
  48137. image: {
  48138. source: "./media/characters/leah/front.svg",
  48139. extra: 1257/1149,
  48140. bottom: 109/1366
  48141. }
  48142. },
  48143. },
  48144. [
  48145. {
  48146. name: "Normal",
  48147. height: math.unit(8, "feet"),
  48148. default: true
  48149. },
  48150. {
  48151. name: "Minimacro",
  48152. height: math.unit(40, "feet")
  48153. },
  48154. {
  48155. name: "Macro",
  48156. height: math.unit(124, "feet")
  48157. },
  48158. {
  48159. name: "Megamacro",
  48160. height: math.unit(850, "feet")
  48161. },
  48162. ]
  48163. ))
  48164. characterMakers.push(() => makeCharacter(
  48165. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  48166. {
  48167. side: {
  48168. height: math.unit(13 + 6/12, "feet"),
  48169. weight: math.unit(3200, "lb"),
  48170. name: "Side",
  48171. image: {
  48172. source: "./media/characters/alvir/side.svg",
  48173. extra: 896/589,
  48174. bottom: 26/922
  48175. }
  48176. },
  48177. },
  48178. [
  48179. {
  48180. name: "Normal",
  48181. height: math.unit(13 + 6/12, "feet"),
  48182. default: true
  48183. },
  48184. ]
  48185. ))
  48186. characterMakers.push(() => makeCharacter(
  48187. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  48188. {
  48189. front: {
  48190. height: math.unit(5 + 4/12, "feet"),
  48191. weight: math.unit(236, "lb"),
  48192. name: "Front",
  48193. image: {
  48194. source: "./media/characters/zaina-khalil/front.svg",
  48195. extra: 1533/1485,
  48196. bottom: 94/1627
  48197. }
  48198. },
  48199. side: {
  48200. height: math.unit(5 + 4/12, "feet"),
  48201. weight: math.unit(236, "lb"),
  48202. name: "Side",
  48203. image: {
  48204. source: "./media/characters/zaina-khalil/side.svg",
  48205. extra: 1537/1498,
  48206. bottom: 66/1603
  48207. }
  48208. },
  48209. back: {
  48210. height: math.unit(5 + 4/12, "feet"),
  48211. weight: math.unit(236, "lb"),
  48212. name: "Back",
  48213. image: {
  48214. source: "./media/characters/zaina-khalil/back.svg",
  48215. extra: 1546/1494,
  48216. bottom: 89/1635
  48217. }
  48218. },
  48219. },
  48220. [
  48221. {
  48222. name: "Normal",
  48223. height: math.unit(5 + 4/12, "feet"),
  48224. default: true
  48225. },
  48226. ]
  48227. ))
  48228. characterMakers.push(() => makeCharacter(
  48229. { name: "Terry", species: ["husky"], tags: ["taur"] },
  48230. {
  48231. side: {
  48232. height: math.unit(12, "feet"),
  48233. weight: math.unit(4000, "lb"),
  48234. name: "Side",
  48235. image: {
  48236. source: "./media/characters/terry/side.svg",
  48237. extra: 1518/1439,
  48238. bottom: 149/1667
  48239. }
  48240. },
  48241. },
  48242. [
  48243. {
  48244. name: "Normal",
  48245. height: math.unit(12, "feet"),
  48246. default: true
  48247. },
  48248. ]
  48249. ))
  48250. characterMakers.push(() => makeCharacter(
  48251. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  48252. {
  48253. front: {
  48254. height: math.unit(12, "feet"),
  48255. weight: math.unit(1500, "lb"),
  48256. name: "Front",
  48257. image: {
  48258. source: "./media/characters/kahea/front.svg",
  48259. extra: 1722/1617,
  48260. bottom: 179/1901
  48261. }
  48262. },
  48263. },
  48264. [
  48265. {
  48266. name: "Normal",
  48267. height: math.unit(12, "feet"),
  48268. default: true
  48269. },
  48270. ]
  48271. ))
  48272. characterMakers.push(() => makeCharacter(
  48273. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  48274. {
  48275. demonFront: {
  48276. height: math.unit(36, "feet"),
  48277. name: "Front",
  48278. image: {
  48279. source: "./media/characters/alex-xuria/demon-front.svg",
  48280. extra: 1705/1673,
  48281. bottom: 198/1903
  48282. },
  48283. form: "demon",
  48284. default: true
  48285. },
  48286. demonBack: {
  48287. height: math.unit(36, "feet"),
  48288. name: "Back",
  48289. image: {
  48290. source: "./media/characters/alex-xuria/demon-back.svg",
  48291. extra: 1725/1693,
  48292. bottom: 70/1795
  48293. },
  48294. form: "demon"
  48295. },
  48296. demonHead: {
  48297. height: math.unit(2.14, "meters"),
  48298. name: "Head",
  48299. image: {
  48300. source: "./media/characters/alex-xuria/demon-head.svg"
  48301. },
  48302. form: "demon"
  48303. },
  48304. demonHand: {
  48305. height: math.unit(1.61, "meters"),
  48306. name: "Hand",
  48307. image: {
  48308. source: "./media/characters/alex-xuria/demon-hand.svg"
  48309. },
  48310. form: "demon"
  48311. },
  48312. demonPaw: {
  48313. height: math.unit(1.35, "meters"),
  48314. name: "Paw",
  48315. image: {
  48316. source: "./media/characters/alex-xuria/demon-paw.svg"
  48317. },
  48318. form: "demon"
  48319. },
  48320. demonFoot: {
  48321. height: math.unit(2.2, "meters"),
  48322. name: "Foot",
  48323. image: {
  48324. source: "./media/characters/alex-xuria/demon-foot.svg"
  48325. },
  48326. form: "demon"
  48327. },
  48328. demonCock: {
  48329. height: math.unit(1.74, "meters"),
  48330. name: "Cock",
  48331. image: {
  48332. source: "./media/characters/alex-xuria/demon-cock.svg"
  48333. },
  48334. form: "demon"
  48335. },
  48336. demonTailClosed: {
  48337. height: math.unit(1.47, "meters"),
  48338. name: "Tail (Closed)",
  48339. image: {
  48340. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  48341. },
  48342. form: "demon"
  48343. },
  48344. demonTailOpen: {
  48345. height: math.unit(2.85, "meters"),
  48346. name: "Tail (Open)",
  48347. image: {
  48348. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  48349. },
  48350. form: "demon"
  48351. },
  48352. incubusFront: {
  48353. height: math.unit(12, "feet"),
  48354. name: "Front",
  48355. image: {
  48356. source: "./media/characters/alex-xuria/incubus-front.svg",
  48357. extra: 1754/1677,
  48358. bottom: 125/1879
  48359. },
  48360. form: "incubus",
  48361. default: true
  48362. },
  48363. incubusBack: {
  48364. height: math.unit(12, "feet"),
  48365. name: "Back",
  48366. image: {
  48367. source: "./media/characters/alex-xuria/incubus-back.svg",
  48368. extra: 1702/1647,
  48369. bottom: 30/1732
  48370. },
  48371. form: "incubus"
  48372. },
  48373. incubusHead: {
  48374. height: math.unit(3.45, "feet"),
  48375. name: "Head",
  48376. image: {
  48377. source: "./media/characters/alex-xuria/incubus-head.svg"
  48378. },
  48379. form: "incubus"
  48380. },
  48381. rabbitFront: {
  48382. height: math.unit(6, "feet"),
  48383. name: "Front",
  48384. image: {
  48385. source: "./media/characters/alex-xuria/rabbit-front.svg",
  48386. extra: 1369/1349,
  48387. bottom: 45/1414
  48388. },
  48389. form: "rabbit",
  48390. default: true
  48391. },
  48392. rabbitSide: {
  48393. height: math.unit(6, "feet"),
  48394. name: "Side",
  48395. image: {
  48396. source: "./media/characters/alex-xuria/rabbit-side.svg",
  48397. extra: 1370/1356,
  48398. bottom: 37/1407
  48399. },
  48400. form: "rabbit"
  48401. },
  48402. rabbitBack: {
  48403. height: math.unit(6, "feet"),
  48404. name: "Back",
  48405. image: {
  48406. source: "./media/characters/alex-xuria/rabbit-back.svg",
  48407. extra: 1375/1358,
  48408. bottom: 43/1418
  48409. },
  48410. form: "rabbit"
  48411. },
  48412. },
  48413. [
  48414. {
  48415. name: "Normal",
  48416. height: math.unit(6, "feet"),
  48417. default: true,
  48418. form: "rabbit"
  48419. },
  48420. {
  48421. name: "Incubus",
  48422. height: math.unit(12, "feet"),
  48423. default: true,
  48424. form: "incubus"
  48425. },
  48426. {
  48427. name: "Demon",
  48428. height: math.unit(36, "feet"),
  48429. default: true,
  48430. form: "demon"
  48431. }
  48432. ],
  48433. {
  48434. "demon": {
  48435. name: "Demon",
  48436. default: true
  48437. },
  48438. "incubus": {
  48439. name: "Incubus",
  48440. },
  48441. "rabbit": {
  48442. name: "Rabbit"
  48443. }
  48444. }
  48445. ))
  48446. characterMakers.push(() => makeCharacter(
  48447. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  48448. {
  48449. front: {
  48450. height: math.unit(7 + 5/12, "feet"),
  48451. weight: math.unit(510, "lb"),
  48452. name: "Front",
  48453. image: {
  48454. source: "./media/characters/syrup/front.svg",
  48455. extra: 932/916,
  48456. bottom: 26/958
  48457. }
  48458. },
  48459. },
  48460. [
  48461. {
  48462. name: "Normal",
  48463. height: math.unit(7 + 5/12, "feet"),
  48464. default: true
  48465. },
  48466. {
  48467. name: "Big",
  48468. height: math.unit(50, "feet")
  48469. },
  48470. {
  48471. name: "Macro",
  48472. height: math.unit(300, "feet")
  48473. },
  48474. {
  48475. name: "Megamacro",
  48476. height: math.unit(1, "mile")
  48477. },
  48478. ]
  48479. ))
  48480. characterMakers.push(() => makeCharacter(
  48481. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  48482. {
  48483. front: {
  48484. height: math.unit(6 + 9/12, "feet"),
  48485. name: "Front",
  48486. image: {
  48487. source: "./media/characters/zeimne/front.svg",
  48488. extra: 1969/1806,
  48489. bottom: 53/2022
  48490. }
  48491. },
  48492. },
  48493. [
  48494. {
  48495. name: "Normal",
  48496. height: math.unit(6 + 9/12, "feet"),
  48497. default: true
  48498. },
  48499. {
  48500. name: "Giant",
  48501. height: math.unit(550, "feet")
  48502. },
  48503. {
  48504. name: "Mega",
  48505. height: math.unit(3, "miles")
  48506. },
  48507. {
  48508. name: "Giga",
  48509. height: math.unit(250, "miles")
  48510. },
  48511. {
  48512. name: "Tera",
  48513. height: math.unit(1, "AU")
  48514. },
  48515. ]
  48516. ))
  48517. characterMakers.push(() => makeCharacter(
  48518. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  48519. {
  48520. front: {
  48521. height: math.unit(5 + 2/12, "feet"),
  48522. name: "Front",
  48523. image: {
  48524. source: "./media/characters/grar/front.svg",
  48525. extra: 1331/1119,
  48526. bottom: 60/1391
  48527. }
  48528. },
  48529. back: {
  48530. height: math.unit(5 + 2/12, "feet"),
  48531. name: "Back",
  48532. image: {
  48533. source: "./media/characters/grar/back.svg",
  48534. extra: 1385/1169,
  48535. bottom: 23/1408
  48536. }
  48537. },
  48538. },
  48539. [
  48540. {
  48541. name: "Normal",
  48542. height: math.unit(5 + 2/12, "feet"),
  48543. default: true
  48544. },
  48545. ]
  48546. ))
  48547. characterMakers.push(() => makeCharacter(
  48548. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  48549. {
  48550. front: {
  48551. height: math.unit(13 + 7/12, "feet"),
  48552. weight: math.unit(2200, "lb"),
  48553. name: "Front",
  48554. image: {
  48555. source: "./media/characters/endraya/front.svg",
  48556. extra: 1289/1215,
  48557. bottom: 50/1339
  48558. }
  48559. },
  48560. nude: {
  48561. height: math.unit(13 + 7/12, "feet"),
  48562. weight: math.unit(2200, "lb"),
  48563. name: "Nude",
  48564. image: {
  48565. source: "./media/characters/endraya/nude.svg",
  48566. extra: 1247/1171,
  48567. bottom: 40/1287
  48568. }
  48569. },
  48570. head: {
  48571. height: math.unit(2.6, "feet"),
  48572. name: "Head",
  48573. image: {
  48574. source: "./media/characters/endraya/head.svg"
  48575. }
  48576. },
  48577. slit: {
  48578. height: math.unit(3.4, "feet"),
  48579. name: "Slit",
  48580. image: {
  48581. source: "./media/characters/endraya/slit.svg"
  48582. }
  48583. },
  48584. },
  48585. [
  48586. {
  48587. name: "Normal",
  48588. height: math.unit(13 + 7/12, "feet"),
  48589. default: true
  48590. },
  48591. {
  48592. name: "Macro",
  48593. height: math.unit(200, "feet")
  48594. },
  48595. ]
  48596. ))
  48597. characterMakers.push(() => makeCharacter(
  48598. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  48599. {
  48600. front: {
  48601. height: math.unit(1.81, "meters"),
  48602. weight: math.unit(69, "kg"),
  48603. name: "Front",
  48604. image: {
  48605. source: "./media/characters/rodryana/front.svg",
  48606. extra: 2002/1921,
  48607. bottom: 53/2055
  48608. }
  48609. },
  48610. back: {
  48611. height: math.unit(1.81, "meters"),
  48612. weight: math.unit(69, "kg"),
  48613. name: "Back",
  48614. image: {
  48615. source: "./media/characters/rodryana/back.svg",
  48616. extra: 1993/1926,
  48617. bottom: 48/2041
  48618. }
  48619. },
  48620. maw: {
  48621. height: math.unit(0.19769417475, "meters"),
  48622. name: "Maw",
  48623. image: {
  48624. source: "./media/characters/rodryana/maw.svg"
  48625. }
  48626. },
  48627. slit: {
  48628. height: math.unit(0.31631067961, "meters"),
  48629. name: "Slit",
  48630. image: {
  48631. source: "./media/characters/rodryana/slit.svg"
  48632. }
  48633. },
  48634. },
  48635. [
  48636. {
  48637. name: "Normal",
  48638. height: math.unit(1.81, "meters")
  48639. },
  48640. {
  48641. name: "Mini Macro",
  48642. height: math.unit(181, "meters")
  48643. },
  48644. {
  48645. name: "Macro",
  48646. height: math.unit(452, "meters"),
  48647. default: true
  48648. },
  48649. {
  48650. name: "Mega Macro",
  48651. height: math.unit(1.375, "km")
  48652. },
  48653. {
  48654. name: "Giga Macro",
  48655. height: math.unit(13.575, "km")
  48656. },
  48657. ]
  48658. ))
  48659. characterMakers.push(() => makeCharacter(
  48660. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  48661. {
  48662. front: {
  48663. height: math.unit(6, "feet"),
  48664. weight: math.unit(1000, "lb"),
  48665. name: "Front",
  48666. image: {
  48667. source: "./media/characters/asaya/front.svg",
  48668. extra: 1460/1200,
  48669. bottom: 71/1531
  48670. }
  48671. },
  48672. },
  48673. [
  48674. {
  48675. name: "Normal",
  48676. height: math.unit(8, "km"),
  48677. default: true
  48678. },
  48679. ]
  48680. ))
  48681. characterMakers.push(() => makeCharacter(
  48682. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  48683. {
  48684. front: {
  48685. height: math.unit(3.5, "meters"),
  48686. name: "Front",
  48687. image: {
  48688. source: "./media/characters/sarzu-and-israz/front.svg",
  48689. extra: 1570/1558,
  48690. bottom: 150/1720
  48691. },
  48692. },
  48693. back: {
  48694. height: math.unit(3.5, "meters"),
  48695. name: "Back",
  48696. image: {
  48697. source: "./media/characters/sarzu-and-israz/back.svg",
  48698. extra: 1523/1509,
  48699. bottom: 132/1655
  48700. },
  48701. },
  48702. frontFemale: {
  48703. height: math.unit(3.5, "meters"),
  48704. name: "Front (Female)",
  48705. image: {
  48706. source: "./media/characters/sarzu-and-israz/front-female.svg",
  48707. extra: 1570/1558,
  48708. bottom: 150/1720
  48709. },
  48710. },
  48711. frontHerm: {
  48712. height: math.unit(3.5, "meters"),
  48713. name: "Front (Herm)",
  48714. image: {
  48715. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  48716. extra: 1570/1558,
  48717. bottom: 150/1720
  48718. },
  48719. },
  48720. },
  48721. [
  48722. {
  48723. name: "Normal",
  48724. height: math.unit(3.5, "meters"),
  48725. default: true,
  48726. },
  48727. {
  48728. name: "Macro",
  48729. height: math.unit(65.5, "meters"),
  48730. },
  48731. ],
  48732. ))
  48733. characterMakers.push(() => makeCharacter(
  48734. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  48735. {
  48736. front: {
  48737. height: math.unit(6, "feet"),
  48738. weight: math.unit(250, "lb"),
  48739. name: "Front",
  48740. image: {
  48741. source: "./media/characters/zenimma/front.svg",
  48742. extra: 1346/1320,
  48743. bottom: 58/1404
  48744. }
  48745. },
  48746. back: {
  48747. height: math.unit(6, "feet"),
  48748. weight: math.unit(250, "lb"),
  48749. name: "Back",
  48750. image: {
  48751. source: "./media/characters/zenimma/back.svg",
  48752. extra: 1324/1308,
  48753. bottom: 44/1368
  48754. }
  48755. },
  48756. dick: {
  48757. height: math.unit(1.44, "feet"),
  48758. name: "Dick",
  48759. image: {
  48760. source: "./media/characters/zenimma/dick.svg"
  48761. }
  48762. },
  48763. },
  48764. [
  48765. {
  48766. name: "Canon Height",
  48767. height: math.unit(66, "miles"),
  48768. default: true
  48769. },
  48770. ]
  48771. ))
  48772. characterMakers.push(() => makeCharacter(
  48773. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  48774. {
  48775. nude: {
  48776. height: math.unit(6, "feet"),
  48777. weight: math.unit(150, "lb"),
  48778. name: "Nude",
  48779. image: {
  48780. source: "./media/characters/shavon/nude.svg",
  48781. extra: 1242/1096,
  48782. bottom: 98/1340
  48783. }
  48784. },
  48785. dressed: {
  48786. height: math.unit(6, "feet"),
  48787. weight: math.unit(150, "lb"),
  48788. name: "Dressed",
  48789. image: {
  48790. source: "./media/characters/shavon/dressed.svg",
  48791. extra: 1242/1096,
  48792. bottom: 98/1340
  48793. }
  48794. },
  48795. },
  48796. [
  48797. {
  48798. name: "Macro",
  48799. height: math.unit(255, "feet"),
  48800. default: true
  48801. },
  48802. ]
  48803. ))
  48804. characterMakers.push(() => makeCharacter(
  48805. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  48806. {
  48807. front: {
  48808. height: math.unit(6, "feet"),
  48809. name: "Front",
  48810. image: {
  48811. source: "./media/characters/steph/front.svg",
  48812. extra: 1430/1330,
  48813. bottom: 54/1484
  48814. }
  48815. },
  48816. },
  48817. [
  48818. {
  48819. name: "Normal",
  48820. height: math.unit(6, "feet"),
  48821. default: true
  48822. },
  48823. ]
  48824. ))
  48825. characterMakers.push(() => makeCharacter(
  48826. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  48827. {
  48828. front: {
  48829. height: math.unit(9, "feet"),
  48830. weight: math.unit(400, "lb"),
  48831. name: "Front",
  48832. image: {
  48833. source: "./media/characters/kil'aman/front.svg",
  48834. extra: 1210/1159,
  48835. bottom: 109/1319
  48836. }
  48837. },
  48838. head: {
  48839. height: math.unit(2.14, "feet"),
  48840. name: "Head",
  48841. image: {
  48842. source: "./media/characters/kil'aman/head.svg"
  48843. }
  48844. },
  48845. maw: {
  48846. height: math.unit(1.21, "feet"),
  48847. name: "Maw",
  48848. image: {
  48849. source: "./media/characters/kil'aman/maw.svg"
  48850. }
  48851. },
  48852. foot: {
  48853. height: math.unit(1.7, "feet"),
  48854. name: "Foot",
  48855. image: {
  48856. source: "./media/characters/kil'aman/foot.svg"
  48857. }
  48858. },
  48859. dick: {
  48860. height: math.unit(2.1, "feet"),
  48861. name: "Dick",
  48862. image: {
  48863. source: "./media/characters/kil'aman/dick.svg"
  48864. }
  48865. },
  48866. },
  48867. [
  48868. {
  48869. name: "Normal",
  48870. height: math.unit(9, "feet")
  48871. },
  48872. {
  48873. name: "Canon Height",
  48874. height: math.unit(10, "miles"),
  48875. default: true
  48876. },
  48877. {
  48878. name: "Maximum",
  48879. height: math.unit(6e9, "miles")
  48880. },
  48881. ]
  48882. ))
  48883. characterMakers.push(() => makeCharacter(
  48884. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  48885. {
  48886. front: {
  48887. height: math.unit(90, "feet"),
  48888. weight: math.unit(675000, "lb"),
  48889. name: "Front",
  48890. image: {
  48891. source: "./media/characters/qadan/front.svg",
  48892. extra: 1012/1004,
  48893. bottom: 78/1090
  48894. }
  48895. },
  48896. back: {
  48897. height: math.unit(90, "feet"),
  48898. weight: math.unit(675000, "lb"),
  48899. name: "Back",
  48900. image: {
  48901. source: "./media/characters/qadan/back.svg",
  48902. extra: 1042/1031,
  48903. bottom: 55/1097
  48904. }
  48905. },
  48906. armored: {
  48907. height: math.unit(90, "feet"),
  48908. weight: math.unit(675000, "lb"),
  48909. name: "Armored",
  48910. image: {
  48911. source: "./media/characters/qadan/armored.svg",
  48912. extra: 1047/1037,
  48913. bottom: 48/1095
  48914. }
  48915. },
  48916. },
  48917. [
  48918. {
  48919. name: "Normal",
  48920. height: math.unit(90, "feet"),
  48921. default: true
  48922. },
  48923. ]
  48924. ))
  48925. characterMakers.push(() => makeCharacter(
  48926. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  48927. {
  48928. front: {
  48929. height: math.unit(6, "feet"),
  48930. weight: math.unit(225, "lb"),
  48931. name: "Front",
  48932. image: {
  48933. source: "./media/characters/brooke/front.svg",
  48934. extra: 1050/1010,
  48935. bottom: 66/1116
  48936. }
  48937. },
  48938. back: {
  48939. height: math.unit(6, "feet"),
  48940. weight: math.unit(225, "lb"),
  48941. name: "Back",
  48942. image: {
  48943. source: "./media/characters/brooke/back.svg",
  48944. extra: 1053/1013,
  48945. bottom: 41/1094
  48946. }
  48947. },
  48948. dressed: {
  48949. height: math.unit(6, "feet"),
  48950. weight: math.unit(225, "lb"),
  48951. name: "Dressed",
  48952. image: {
  48953. source: "./media/characters/brooke/dressed.svg",
  48954. extra: 1050/1010,
  48955. bottom: 66/1116
  48956. }
  48957. },
  48958. },
  48959. [
  48960. {
  48961. name: "Canon Height",
  48962. height: math.unit(500, "miles"),
  48963. default: true
  48964. },
  48965. ]
  48966. ))
  48967. characterMakers.push(() => makeCharacter(
  48968. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  48969. {
  48970. front: {
  48971. height: math.unit(6 + 2/12, "feet"),
  48972. weight: math.unit(210, "lb"),
  48973. name: "Front",
  48974. image: {
  48975. source: "./media/characters/wubs/front.svg",
  48976. extra: 1345/1325,
  48977. bottom: 70/1415
  48978. }
  48979. },
  48980. back: {
  48981. height: math.unit(6 + 2/12, "feet"),
  48982. weight: math.unit(210, "lb"),
  48983. name: "Back",
  48984. image: {
  48985. source: "./media/characters/wubs/back.svg",
  48986. extra: 1296/1275,
  48987. bottom: 58/1354
  48988. }
  48989. },
  48990. },
  48991. [
  48992. {
  48993. name: "Normal",
  48994. height: math.unit(6 + 2/12, "feet"),
  48995. default: true
  48996. },
  48997. {
  48998. name: "Macro",
  48999. height: math.unit(1000, "feet")
  49000. },
  49001. {
  49002. name: "Megamacro",
  49003. height: math.unit(1, "mile")
  49004. },
  49005. ]
  49006. ))
  49007. characterMakers.push(() => makeCharacter(
  49008. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  49009. {
  49010. front: {
  49011. height: math.unit(4, "feet"),
  49012. weight: math.unit(120, "lb"),
  49013. name: "Front",
  49014. image: {
  49015. source: "./media/characters/blue/front.svg",
  49016. extra: 1636/1525,
  49017. bottom: 43/1679
  49018. }
  49019. },
  49020. back: {
  49021. height: math.unit(4, "feet"),
  49022. weight: math.unit(120, "lb"),
  49023. name: "Back",
  49024. image: {
  49025. source: "./media/characters/blue/back.svg",
  49026. extra: 1660/1560,
  49027. bottom: 57/1717
  49028. }
  49029. },
  49030. paws: {
  49031. height: math.unit(0.826, "feet"),
  49032. name: "Paws",
  49033. image: {
  49034. source: "./media/characters/blue/paws.svg"
  49035. }
  49036. },
  49037. },
  49038. [
  49039. {
  49040. name: "Micro",
  49041. height: math.unit(3, "inches")
  49042. },
  49043. {
  49044. name: "Normal",
  49045. height: math.unit(4, "feet"),
  49046. default: true
  49047. },
  49048. {
  49049. name: "Femenine Form",
  49050. height: math.unit(14, "feet")
  49051. },
  49052. {
  49053. name: "Werebat Form",
  49054. height: math.unit(18, "feet")
  49055. },
  49056. ]
  49057. ))
  49058. characterMakers.push(() => makeCharacter(
  49059. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  49060. {
  49061. female: {
  49062. height: math.unit(7 + 4/12, "feet"),
  49063. weight: math.unit(243, "lb"),
  49064. name: "Female",
  49065. image: {
  49066. source: "./media/characters/kaya/female.svg",
  49067. extra: 975/898,
  49068. bottom: 34/1009
  49069. }
  49070. },
  49071. herm: {
  49072. height: math.unit(7 + 4/12, "feet"),
  49073. weight: math.unit(243, "lb"),
  49074. name: "Herm",
  49075. image: {
  49076. source: "./media/characters/kaya/herm.svg",
  49077. extra: 975/898,
  49078. bottom: 34/1009
  49079. }
  49080. },
  49081. },
  49082. [
  49083. {
  49084. name: "Normal",
  49085. height: math.unit(7 + 4/12, "feet"),
  49086. default: true
  49087. },
  49088. ]
  49089. ))
  49090. characterMakers.push(() => makeCharacter(
  49091. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  49092. {
  49093. female: {
  49094. height: math.unit(9 + 4/12, "feet"),
  49095. weight: math.unit(398, "lb"),
  49096. name: "Female",
  49097. image: {
  49098. source: "./media/characters/kassandra/female.svg",
  49099. extra: 908/839,
  49100. bottom: 61/969
  49101. }
  49102. },
  49103. intersex: {
  49104. height: math.unit(9 + 4/12, "feet"),
  49105. weight: math.unit(398, "lb"),
  49106. name: "Intersex",
  49107. image: {
  49108. source: "./media/characters/kassandra/intersex.svg",
  49109. extra: 908/839,
  49110. bottom: 61/969
  49111. }
  49112. },
  49113. },
  49114. [
  49115. {
  49116. name: "Normal",
  49117. height: math.unit(9 + 4/12, "feet"),
  49118. default: true
  49119. },
  49120. ]
  49121. ))
  49122. characterMakers.push(() => makeCharacter(
  49123. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  49124. {
  49125. front: {
  49126. height: math.unit(3, "meters"),
  49127. name: "Front",
  49128. image: {
  49129. source: "./media/characters/amy/front.svg",
  49130. extra: 1380/1343,
  49131. bottom: 70/1450
  49132. }
  49133. },
  49134. back: {
  49135. height: math.unit(3, "meters"),
  49136. name: "Back",
  49137. image: {
  49138. source: "./media/characters/amy/back.svg",
  49139. extra: 1380/1347,
  49140. bottom: 66/1446
  49141. }
  49142. },
  49143. },
  49144. [
  49145. {
  49146. name: "Normal",
  49147. height: math.unit(3, "meters"),
  49148. default: true
  49149. },
  49150. ]
  49151. ))
  49152. characterMakers.push(() => makeCharacter(
  49153. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  49154. {
  49155. side: {
  49156. height: math.unit(47, "cm"),
  49157. weight: math.unit(10.8, "kg"),
  49158. name: "Side",
  49159. image: {
  49160. source: "./media/characters/alphaschakal/side.svg",
  49161. extra: 1058/568,
  49162. bottom: 62/1120
  49163. }
  49164. },
  49165. back: {
  49166. height: math.unit(78, "cm"),
  49167. weight: math.unit(10.8, "kg"),
  49168. name: "Back",
  49169. image: {
  49170. source: "./media/characters/alphaschakal/back.svg",
  49171. extra: 1102/942,
  49172. bottom: 185/1287
  49173. }
  49174. },
  49175. head: {
  49176. height: math.unit(28, "cm"),
  49177. name: "Head",
  49178. image: {
  49179. source: "./media/characters/alphaschakal/head.svg",
  49180. extra: 696/508,
  49181. bottom: 0/696
  49182. }
  49183. },
  49184. paw: {
  49185. height: math.unit(16, "cm"),
  49186. name: "Paw",
  49187. image: {
  49188. source: "./media/characters/alphaschakal/paw.svg"
  49189. }
  49190. },
  49191. },
  49192. [
  49193. {
  49194. name: "Normal",
  49195. height: math.unit(47, "cm"),
  49196. default: true
  49197. },
  49198. {
  49199. name: "Macro",
  49200. height: math.unit(340, "cm")
  49201. },
  49202. ]
  49203. ))
  49204. characterMakers.push(() => makeCharacter(
  49205. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  49206. {
  49207. front: {
  49208. height: math.unit(36, "earths"),
  49209. name: "Front",
  49210. image: {
  49211. source: "./media/characters/ecobyss/front.svg",
  49212. extra: 1282/1215,
  49213. bottom: 11/1293
  49214. }
  49215. },
  49216. back: {
  49217. height: math.unit(36, "earths"),
  49218. name: "Back",
  49219. image: {
  49220. source: "./media/characters/ecobyss/back.svg",
  49221. extra: 1291/1222,
  49222. bottom: 8/1299
  49223. }
  49224. },
  49225. },
  49226. [
  49227. {
  49228. name: "Normal",
  49229. height: math.unit(36, "earths"),
  49230. default: true
  49231. },
  49232. ]
  49233. ))
  49234. characterMakers.push(() => makeCharacter(
  49235. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  49236. {
  49237. front: {
  49238. height: math.unit(12, "feet"),
  49239. name: "Front",
  49240. image: {
  49241. source: "./media/characters/vasuk/front.svg",
  49242. extra: 1326/1207,
  49243. bottom: 64/1390
  49244. }
  49245. },
  49246. },
  49247. [
  49248. {
  49249. name: "Normal",
  49250. height: math.unit(12, "feet"),
  49251. default: true
  49252. },
  49253. ]
  49254. ))
  49255. characterMakers.push(() => makeCharacter(
  49256. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  49257. {
  49258. side: {
  49259. height: math.unit(100, "feet"),
  49260. name: "Side",
  49261. image: {
  49262. source: "./media/characters/linneaus/side.svg",
  49263. extra: 987/807,
  49264. bottom: 47/1034
  49265. }
  49266. },
  49267. },
  49268. [
  49269. {
  49270. name: "Macro",
  49271. height: math.unit(100, "feet"),
  49272. default: true
  49273. },
  49274. ]
  49275. ))
  49276. characterMakers.push(() => makeCharacter(
  49277. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  49278. {
  49279. front: {
  49280. height: math.unit(8, "feet"),
  49281. weight: math.unit(1200, "lb"),
  49282. name: "Front",
  49283. image: {
  49284. source: "./media/characters/nyterious-daligdig/front.svg",
  49285. extra: 1284/1094,
  49286. bottom: 84/1368
  49287. }
  49288. },
  49289. back: {
  49290. height: math.unit(8, "feet"),
  49291. weight: math.unit(1200, "lb"),
  49292. name: "Back",
  49293. image: {
  49294. source: "./media/characters/nyterious-daligdig/back.svg",
  49295. extra: 1301/1121,
  49296. bottom: 129/1430
  49297. }
  49298. },
  49299. mouth: {
  49300. height: math.unit(1.464, "feet"),
  49301. name: "Mouth",
  49302. image: {
  49303. source: "./media/characters/nyterious-daligdig/mouth.svg"
  49304. }
  49305. },
  49306. },
  49307. [
  49308. {
  49309. name: "Small",
  49310. height: math.unit(8, "feet"),
  49311. default: true
  49312. },
  49313. {
  49314. name: "Normal",
  49315. height: math.unit(15, "feet")
  49316. },
  49317. {
  49318. name: "Macro",
  49319. height: math.unit(90, "feet")
  49320. },
  49321. ]
  49322. ))
  49323. characterMakers.push(() => makeCharacter(
  49324. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  49325. {
  49326. front: {
  49327. height: math.unit(7 + 4/12, "feet"),
  49328. weight: math.unit(252, "lb"),
  49329. name: "Front",
  49330. image: {
  49331. source: "./media/characters/bandel/front.svg",
  49332. extra: 1946/1775,
  49333. bottom: 26/1972
  49334. }
  49335. },
  49336. back: {
  49337. height: math.unit(7 + 4/12, "feet"),
  49338. weight: math.unit(252, "lb"),
  49339. name: "Back",
  49340. image: {
  49341. source: "./media/characters/bandel/back.svg",
  49342. extra: 1940/1770,
  49343. bottom: 25/1965
  49344. }
  49345. },
  49346. maw: {
  49347. height: math.unit(2.15, "feet"),
  49348. name: "Maw",
  49349. image: {
  49350. source: "./media/characters/bandel/maw.svg"
  49351. }
  49352. },
  49353. stomach: {
  49354. height: math.unit(1.95, "feet"),
  49355. name: "Stomach",
  49356. image: {
  49357. source: "./media/characters/bandel/stomach.svg"
  49358. }
  49359. },
  49360. },
  49361. [
  49362. {
  49363. name: "Normal",
  49364. height: math.unit(7 + 4/12, "feet"),
  49365. default: true
  49366. },
  49367. ]
  49368. ))
  49369. characterMakers.push(() => makeCharacter(
  49370. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  49371. {
  49372. front: {
  49373. height: math.unit(10 + 5/12, "feet"),
  49374. weight: math.unit(773.5, "kg"),
  49375. name: "Front",
  49376. image: {
  49377. source: "./media/characters/zed/front.svg",
  49378. extra: 987/941,
  49379. bottom: 52/1039
  49380. }
  49381. },
  49382. },
  49383. [
  49384. {
  49385. name: "Short",
  49386. height: math.unit(5 + 4/12, "feet")
  49387. },
  49388. {
  49389. name: "Average",
  49390. height: math.unit(10 + 5/12, "feet"),
  49391. default: true
  49392. },
  49393. {
  49394. name: "Mini-Macro",
  49395. height: math.unit(24 + 9/12, "feet")
  49396. },
  49397. {
  49398. name: "Macro",
  49399. height: math.unit(249, "feet")
  49400. },
  49401. {
  49402. name: "Mega-Macro",
  49403. height: math.unit(12490, "feet")
  49404. },
  49405. {
  49406. name: "Giga-Macro",
  49407. height: math.unit(24.9, "miles")
  49408. },
  49409. {
  49410. name: "Tera-Macro",
  49411. height: math.unit(24900, "miles")
  49412. },
  49413. {
  49414. name: "Cosmic Scale",
  49415. height: math.unit(38.9, "lightyears")
  49416. },
  49417. {
  49418. name: "Universal Scale",
  49419. height: math.unit(138e12, "lightyears")
  49420. },
  49421. ]
  49422. ))
  49423. characterMakers.push(() => makeCharacter(
  49424. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  49425. {
  49426. front: {
  49427. height: math.unit(1561, "inches"),
  49428. name: "Front",
  49429. image: {
  49430. source: "./media/characters/ivan/front.svg",
  49431. extra: 1126/1071,
  49432. bottom: 26/1152
  49433. }
  49434. },
  49435. back: {
  49436. height: math.unit(1561, "inches"),
  49437. name: "Back",
  49438. image: {
  49439. source: "./media/characters/ivan/back.svg",
  49440. extra: 1134/1079,
  49441. bottom: 30/1164
  49442. }
  49443. },
  49444. },
  49445. [
  49446. {
  49447. name: "Normal",
  49448. height: math.unit(1561, "inches"),
  49449. default: true
  49450. },
  49451. ]
  49452. ))
  49453. characterMakers.push(() => makeCharacter(
  49454. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  49455. {
  49456. front: {
  49457. height: math.unit(5 + 7/12, "feet"),
  49458. weight: math.unit(150, "lb"),
  49459. name: "Front",
  49460. image: {
  49461. source: "./media/characters/robin-arctic-hare/front.svg",
  49462. extra: 1148/974,
  49463. bottom: 20/1168
  49464. }
  49465. },
  49466. },
  49467. [
  49468. {
  49469. name: "Normal",
  49470. height: math.unit(5 + 7/12, "feet"),
  49471. default: true
  49472. },
  49473. ]
  49474. ))
  49475. characterMakers.push(() => makeCharacter(
  49476. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  49477. {
  49478. side: {
  49479. height: math.unit(5, "feet"),
  49480. name: "Side",
  49481. image: {
  49482. source: "./media/characters/birch/side.svg",
  49483. extra: 985/796,
  49484. bottom: 111/1096
  49485. }
  49486. },
  49487. },
  49488. [
  49489. {
  49490. name: "Normal",
  49491. height: math.unit(5, "feet"),
  49492. default: true
  49493. },
  49494. ]
  49495. ))
  49496. characterMakers.push(() => makeCharacter(
  49497. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  49498. {
  49499. front: {
  49500. height: math.unit(4, "feet"),
  49501. name: "Front",
  49502. image: {
  49503. source: "./media/characters/rasp/front.svg",
  49504. extra: 561/478,
  49505. bottom: 74/635
  49506. }
  49507. },
  49508. },
  49509. [
  49510. {
  49511. name: "Normal",
  49512. height: math.unit(4, "feet"),
  49513. default: true
  49514. },
  49515. ]
  49516. ))
  49517. characterMakers.push(() => makeCharacter(
  49518. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  49519. {
  49520. front: {
  49521. height: math.unit(4 + 6/12, "feet"),
  49522. name: "Front",
  49523. image: {
  49524. source: "./media/characters/agatha/front.svg",
  49525. extra: 947/933,
  49526. bottom: 42/989
  49527. }
  49528. },
  49529. back: {
  49530. height: math.unit(4 + 6/12, "feet"),
  49531. name: "Back",
  49532. image: {
  49533. source: "./media/characters/agatha/back.svg",
  49534. extra: 935/922,
  49535. bottom: 48/983
  49536. }
  49537. },
  49538. },
  49539. [
  49540. {
  49541. name: "Normal",
  49542. height: math.unit(4 + 6 /12, "feet"),
  49543. default: true
  49544. },
  49545. {
  49546. name: "Max Size",
  49547. height: math.unit(500, "feet")
  49548. },
  49549. ]
  49550. ))
  49551. characterMakers.push(() => makeCharacter(
  49552. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  49553. {
  49554. side: {
  49555. height: math.unit(30, "feet"),
  49556. name: "Side",
  49557. image: {
  49558. source: "./media/characters/roggy/side.svg",
  49559. extra: 909/643,
  49560. bottom: 63/972
  49561. }
  49562. },
  49563. lounging: {
  49564. height: math.unit(20, "feet"),
  49565. name: "Lounging",
  49566. image: {
  49567. source: "./media/characters/roggy/lounging.svg",
  49568. extra: 643/479,
  49569. bottom: 145/788
  49570. }
  49571. },
  49572. handpaw: {
  49573. height: math.unit(13.1, "feet"),
  49574. name: "Handpaw",
  49575. image: {
  49576. source: "./media/characters/roggy/handpaw.svg"
  49577. }
  49578. },
  49579. footpaw: {
  49580. height: math.unit(15.8, "feet"),
  49581. name: "Footpaw",
  49582. image: {
  49583. source: "./media/characters/roggy/footpaw.svg"
  49584. }
  49585. },
  49586. },
  49587. [
  49588. {
  49589. name: "Menacing",
  49590. height: math.unit(30, "feet"),
  49591. default: true
  49592. },
  49593. ]
  49594. ))
  49595. characterMakers.push(() => makeCharacter(
  49596. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  49597. {
  49598. front: {
  49599. height: math.unit(5 + 7/12, "feet"),
  49600. weight: math.unit(135, "lb"),
  49601. name: "Front",
  49602. image: {
  49603. source: "./media/characters/naomi/front.svg",
  49604. extra: 1209/1154,
  49605. bottom: 129/1338
  49606. }
  49607. },
  49608. back: {
  49609. height: math.unit(5 + 7/12, "feet"),
  49610. weight: math.unit(135, "lb"),
  49611. name: "Back",
  49612. image: {
  49613. source: "./media/characters/naomi/back.svg",
  49614. extra: 1252/1190,
  49615. bottom: 23/1275
  49616. }
  49617. },
  49618. },
  49619. [
  49620. {
  49621. name: "Normal",
  49622. height: math.unit(5 + 7 /12, "feet"),
  49623. default: true
  49624. },
  49625. ]
  49626. ))
  49627. characterMakers.push(() => makeCharacter(
  49628. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  49629. {
  49630. side: {
  49631. height: math.unit(35, "meters"),
  49632. name: "Side",
  49633. image: {
  49634. source: "./media/characters/kimpi/side.svg",
  49635. extra: 419/382,
  49636. bottom: 63/482
  49637. }
  49638. },
  49639. hand: {
  49640. height: math.unit(8.96, "meters"),
  49641. name: "Hand",
  49642. image: {
  49643. source: "./media/characters/kimpi/hand.svg"
  49644. }
  49645. },
  49646. },
  49647. [
  49648. {
  49649. name: "Normal",
  49650. height: math.unit(35, "meters"),
  49651. default: true
  49652. },
  49653. ]
  49654. ))
  49655. characterMakers.push(() => makeCharacter(
  49656. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  49657. {
  49658. front: {
  49659. height: math.unit(4 + 4/12, "feet"),
  49660. name: "Front",
  49661. image: {
  49662. source: "./media/characters/pepper-purrloin/front.svg",
  49663. extra: 1141/1024,
  49664. bottom: 21/1162
  49665. }
  49666. },
  49667. },
  49668. [
  49669. {
  49670. name: "Normal",
  49671. height: math.unit(4 + 4/12, "feet"),
  49672. default: true
  49673. },
  49674. ]
  49675. ))
  49676. characterMakers.push(() => makeCharacter(
  49677. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  49678. {
  49679. front: {
  49680. height: math.unit(6 + 2/12, "feet"),
  49681. name: "Front",
  49682. image: {
  49683. source: "./media/characters/raphael/front.svg",
  49684. extra: 1101/962,
  49685. bottom: 59/1160
  49686. }
  49687. },
  49688. },
  49689. [
  49690. {
  49691. name: "Normal",
  49692. height: math.unit(6 + 2/12, "feet"),
  49693. default: true
  49694. },
  49695. ]
  49696. ))
  49697. characterMakers.push(() => makeCharacter(
  49698. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  49699. {
  49700. front: {
  49701. height: math.unit(6, "feet"),
  49702. weight: math.unit(150, "lb"),
  49703. name: "Front",
  49704. image: {
  49705. source: "./media/characters/victor-williams/front.svg",
  49706. extra: 1894/1825,
  49707. bottom: 67/1961
  49708. }
  49709. },
  49710. },
  49711. [
  49712. {
  49713. name: "Normal",
  49714. height: math.unit(6, "feet"),
  49715. default: true
  49716. },
  49717. ]
  49718. ))
  49719. characterMakers.push(() => makeCharacter(
  49720. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  49721. {
  49722. front: {
  49723. height: math.unit(5 + 8/12, "feet"),
  49724. weight: math.unit(150, "lb"),
  49725. name: "Front",
  49726. image: {
  49727. source: "./media/characters/rachel/front.svg",
  49728. extra: 1902/1787,
  49729. bottom: 46/1948
  49730. }
  49731. },
  49732. },
  49733. [
  49734. {
  49735. name: "Base Height",
  49736. height: math.unit(5 + 8/12, "feet"),
  49737. default: true
  49738. },
  49739. {
  49740. name: "Macro",
  49741. height: math.unit(200, "feet")
  49742. },
  49743. {
  49744. name: "Mega Macro",
  49745. height: math.unit(1, "mile")
  49746. },
  49747. {
  49748. name: "Giga Macro",
  49749. height: math.unit(1500, "miles")
  49750. },
  49751. {
  49752. name: "Tera Macro",
  49753. height: math.unit(8000, "miles")
  49754. },
  49755. {
  49756. name: "Tera Macro+",
  49757. height: math.unit(2e5, "miles")
  49758. },
  49759. ]
  49760. ))
  49761. characterMakers.push(() => makeCharacter(
  49762. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  49763. {
  49764. front: {
  49765. height: math.unit(6.5, "feet"),
  49766. name: "Front",
  49767. image: {
  49768. source: "./media/characters/svetlana-rozovskaya/front.svg",
  49769. extra: 860/819,
  49770. bottom: 307/1167
  49771. }
  49772. },
  49773. back: {
  49774. height: math.unit(6.5, "feet"),
  49775. name: "Back",
  49776. image: {
  49777. source: "./media/characters/svetlana-rozovskaya/back.svg",
  49778. extra: 880/837,
  49779. bottom: 395/1275
  49780. }
  49781. },
  49782. sleeping: {
  49783. height: math.unit(2.79, "feet"),
  49784. name: "Sleeping",
  49785. image: {
  49786. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  49787. extra: 465/383,
  49788. bottom: 263/728
  49789. }
  49790. },
  49791. maw: {
  49792. height: math.unit(2.52, "feet"),
  49793. name: "Maw",
  49794. image: {
  49795. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  49796. }
  49797. },
  49798. },
  49799. [
  49800. {
  49801. name: "Normal",
  49802. height: math.unit(6.5, "feet"),
  49803. default: true
  49804. },
  49805. ]
  49806. ))
  49807. characterMakers.push(() => makeCharacter(
  49808. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  49809. {
  49810. front: {
  49811. height: math.unit(5, "feet"),
  49812. name: "Front",
  49813. image: {
  49814. source: "./media/characters/nova-nerium/front.svg",
  49815. extra: 1548/1392,
  49816. bottom: 374/1922
  49817. }
  49818. },
  49819. back: {
  49820. height: math.unit(5, "feet"),
  49821. name: "Back",
  49822. image: {
  49823. source: "./media/characters/nova-nerium/back.svg",
  49824. extra: 1658/1468,
  49825. bottom: 257/1915
  49826. }
  49827. },
  49828. },
  49829. [
  49830. {
  49831. name: "Normal",
  49832. height: math.unit(5, "feet"),
  49833. default: true
  49834. },
  49835. ]
  49836. ))
  49837. characterMakers.push(() => makeCharacter(
  49838. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  49839. {
  49840. front: {
  49841. height: math.unit(5 + 4/12, "feet"),
  49842. name: "Front",
  49843. image: {
  49844. source: "./media/characters/ashe-pyriph/front.svg",
  49845. extra: 1935/1747,
  49846. bottom: 60/1995
  49847. }
  49848. },
  49849. },
  49850. [
  49851. {
  49852. name: "Normal",
  49853. height: math.unit(5 + 4/12, "feet"),
  49854. default: true
  49855. },
  49856. ]
  49857. ))
  49858. characterMakers.push(() => makeCharacter(
  49859. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  49860. {
  49861. front: {
  49862. height: math.unit(8.7, "feet"),
  49863. name: "Front",
  49864. image: {
  49865. source: "./media/characters/flicker-wisp/front.svg",
  49866. extra: 1835/1613,
  49867. bottom: 449/2284
  49868. }
  49869. },
  49870. side: {
  49871. height: math.unit(8.7, "feet"),
  49872. name: "Side",
  49873. image: {
  49874. source: "./media/characters/flicker-wisp/side.svg",
  49875. extra: 1841/1642,
  49876. bottom: 336/2177
  49877. },
  49878. default: true
  49879. },
  49880. maw: {
  49881. height: math.unit(3.35, "feet"),
  49882. name: "Maw",
  49883. image: {
  49884. source: "./media/characters/flicker-wisp/maw.svg",
  49885. extra: 2338/1506,
  49886. bottom: 0/2338
  49887. }
  49888. },
  49889. ovipositor: {
  49890. height: math.unit(4.95, "feet"),
  49891. name: "Ovipositor",
  49892. image: {
  49893. source: "./media/characters/flicker-wisp/ovipositor.svg"
  49894. }
  49895. },
  49896. egg: {
  49897. height: math.unit(0.385, "feet"),
  49898. weight: math.unit(2, "lb"),
  49899. name: "Egg",
  49900. image: {
  49901. source: "./media/characters/flicker-wisp/egg.svg"
  49902. }
  49903. },
  49904. },
  49905. [
  49906. {
  49907. name: "Normal",
  49908. height: math.unit(8.7, "feet"),
  49909. default: true
  49910. },
  49911. ]
  49912. ))
  49913. characterMakers.push(() => makeCharacter(
  49914. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  49915. {
  49916. side: {
  49917. height: math.unit(11, "feet"),
  49918. name: "Side",
  49919. image: {
  49920. source: "./media/characters/faefnul/side.svg",
  49921. extra: 1100/1007,
  49922. bottom: 0/1100
  49923. }
  49924. },
  49925. },
  49926. [
  49927. {
  49928. name: "Normal",
  49929. height: math.unit(11, "feet"),
  49930. default: true
  49931. },
  49932. ]
  49933. ))
  49934. characterMakers.push(() => makeCharacter(
  49935. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  49936. {
  49937. front: {
  49938. height: math.unit(6 + 2/12, "feet"),
  49939. name: "Front",
  49940. image: {
  49941. source: "./media/characters/shady/front.svg",
  49942. extra: 502/461,
  49943. bottom: 9/511
  49944. }
  49945. },
  49946. kneeling: {
  49947. height: math.unit(4.6, "feet"),
  49948. name: "Kneeling",
  49949. image: {
  49950. source: "./media/characters/shady/kneeling.svg",
  49951. extra: 1328/1219,
  49952. bottom: 117/1445
  49953. }
  49954. },
  49955. maw: {
  49956. height: math.unit(2, "feet"),
  49957. name: "Maw",
  49958. image: {
  49959. source: "./media/characters/shady/maw.svg"
  49960. }
  49961. },
  49962. },
  49963. [
  49964. {
  49965. name: "Nano",
  49966. height: math.unit(1, "mm")
  49967. },
  49968. {
  49969. name: "Micro",
  49970. height: math.unit(12, "mm")
  49971. },
  49972. {
  49973. name: "Tiny",
  49974. height: math.unit(3, "inches")
  49975. },
  49976. {
  49977. name: "Normal",
  49978. height: math.unit(6 + 2/12, "feet"),
  49979. default: true
  49980. },
  49981. {
  49982. name: "Big",
  49983. height: math.unit(15, "feet")
  49984. },
  49985. {
  49986. name: "Macro",
  49987. height: math.unit(150, "feet")
  49988. },
  49989. {
  49990. name: "Titanic",
  49991. height: math.unit(500, "feet")
  49992. },
  49993. ]
  49994. ))
  49995. characterMakers.push(() => makeCharacter(
  49996. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  49997. {
  49998. front: {
  49999. height: math.unit(12, "feet"),
  50000. name: "Front",
  50001. image: {
  50002. source: "./media/characters/fenrir/front.svg",
  50003. extra: 968/875,
  50004. bottom: 22/990
  50005. }
  50006. },
  50007. },
  50008. [
  50009. {
  50010. name: "Big",
  50011. height: math.unit(12, "feet"),
  50012. default: true
  50013. },
  50014. ]
  50015. ))
  50016. characterMakers.push(() => makeCharacter(
  50017. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  50018. {
  50019. front: {
  50020. height: math.unit(5 + 4/12, "feet"),
  50021. name: "Front",
  50022. image: {
  50023. source: "./media/characters/makar/front.svg",
  50024. extra: 1181/1112,
  50025. bottom: 78/1259
  50026. }
  50027. },
  50028. },
  50029. [
  50030. {
  50031. name: "Normal",
  50032. height: math.unit(5 + 4/12, "feet"),
  50033. default: true
  50034. },
  50035. ]
  50036. ))
  50037. characterMakers.push(() => makeCharacter(
  50038. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  50039. {
  50040. front: {
  50041. height: math.unit(5 + 7/12, "feet"),
  50042. name: "Front",
  50043. image: {
  50044. source: "./media/characters/callow/front.svg",
  50045. extra: 1482/1304,
  50046. bottom: 23/1505
  50047. }
  50048. },
  50049. back: {
  50050. height: math.unit(5 + 7/12, "feet"),
  50051. name: "Back",
  50052. image: {
  50053. source: "./media/characters/callow/back.svg",
  50054. extra: 1484/1296,
  50055. bottom: 25/1509
  50056. }
  50057. },
  50058. },
  50059. [
  50060. {
  50061. name: "Micro",
  50062. height: math.unit(3, "inches"),
  50063. default: true
  50064. },
  50065. {
  50066. name: "Normal",
  50067. height: math.unit(5 + 7/12, "feet")
  50068. },
  50069. ]
  50070. ))
  50071. characterMakers.push(() => makeCharacter(
  50072. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  50073. {
  50074. front: {
  50075. height: math.unit(6 + 2/12, "feet"),
  50076. name: "Front",
  50077. image: {
  50078. source: "./media/characters/natel/front.svg",
  50079. extra: 1833/1692,
  50080. bottom: 166/1999
  50081. }
  50082. },
  50083. },
  50084. [
  50085. {
  50086. name: "Normal",
  50087. height: math.unit(6 + 2/12, "feet"),
  50088. default: true
  50089. },
  50090. ]
  50091. ))
  50092. characterMakers.push(() => makeCharacter(
  50093. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  50094. {
  50095. front: {
  50096. height: math.unit(1.75, "meters"),
  50097. name: "Front",
  50098. image: {
  50099. source: "./media/characters/misu/front.svg",
  50100. extra: 1690/1558,
  50101. bottom: 234/1924
  50102. }
  50103. },
  50104. back: {
  50105. height: math.unit(1.75, "meters"),
  50106. name: "Back",
  50107. image: {
  50108. source: "./media/characters/misu/back.svg",
  50109. extra: 1762/1618,
  50110. bottom: 146/1908
  50111. }
  50112. },
  50113. frontNude: {
  50114. height: math.unit(1.75, "meters"),
  50115. name: "Front (Nude)",
  50116. image: {
  50117. source: "./media/characters/misu/front-nude.svg",
  50118. extra: 1690/1558,
  50119. bottom: 234/1924
  50120. }
  50121. },
  50122. backNude: {
  50123. height: math.unit(1.75, "meters"),
  50124. name: "Back (Nude)",
  50125. image: {
  50126. source: "./media/characters/misu/back-nude.svg",
  50127. extra: 1762/1618,
  50128. bottom: 146/1908
  50129. }
  50130. },
  50131. frontErect: {
  50132. height: math.unit(1.75, "meters"),
  50133. name: "Front (Erect)",
  50134. image: {
  50135. source: "./media/characters/misu/front-erect.svg",
  50136. extra: 1690/1558,
  50137. bottom: 234/1924
  50138. }
  50139. },
  50140. maw: {
  50141. height: math.unit(0.47, "meters"),
  50142. name: "Maw",
  50143. image: {
  50144. source: "./media/characters/misu/maw.svg"
  50145. }
  50146. },
  50147. head: {
  50148. height: math.unit(0.35, "meters"),
  50149. name: "Head",
  50150. image: {
  50151. source: "./media/characters/misu/head.svg"
  50152. }
  50153. },
  50154. rear: {
  50155. height: math.unit(0.47, "meters"),
  50156. name: "Rear",
  50157. image: {
  50158. source: "./media/characters/misu/rear.svg"
  50159. }
  50160. },
  50161. },
  50162. [
  50163. {
  50164. name: "Normal",
  50165. height: math.unit(1.75, "meters")
  50166. },
  50167. {
  50168. name: "Not good for the people",
  50169. height: math.unit(42, "meters")
  50170. },
  50171. {
  50172. name: "Not good for the neighborhood",
  50173. height: math.unit(135, "meters")
  50174. },
  50175. {
  50176. name: "Bit bigger problem",
  50177. height: math.unit(380, "meters"),
  50178. default: true
  50179. },
  50180. {
  50181. name: "Not good for the city",
  50182. height: math.unit(1.5, "km")
  50183. },
  50184. {
  50185. name: "Not good for the county",
  50186. height: math.unit(5.5, "km")
  50187. },
  50188. {
  50189. name: "Not good for the state",
  50190. height: math.unit(25, "km")
  50191. },
  50192. {
  50193. name: "Not good for the country",
  50194. height: math.unit(125, "km")
  50195. },
  50196. {
  50197. name: "Not good for the continent",
  50198. height: math.unit(2100, "km")
  50199. },
  50200. {
  50201. name: "Not good for the planet",
  50202. height: math.unit(35000, "km")
  50203. },
  50204. {
  50205. name: "Just no",
  50206. height: math.unit(8.5e18, "km")
  50207. },
  50208. ]
  50209. ))
  50210. characterMakers.push(() => makeCharacter(
  50211. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  50212. {
  50213. front: {
  50214. height: math.unit(6.5, "feet"),
  50215. name: "Front",
  50216. image: {
  50217. source: "./media/characters/poppy/front.svg",
  50218. extra: 1878/1812,
  50219. bottom: 43/1921
  50220. }
  50221. },
  50222. feet: {
  50223. height: math.unit(1.06, "feet"),
  50224. name: "Feet",
  50225. image: {
  50226. source: "./media/characters/poppy/feet.svg",
  50227. extra: 1083/1083,
  50228. bottom: 87/1170
  50229. }
  50230. },
  50231. },
  50232. [
  50233. {
  50234. name: "Human",
  50235. height: math.unit(6.5, "feet")
  50236. },
  50237. {
  50238. name: "Default",
  50239. height: math.unit(300, "feet"),
  50240. default: true
  50241. },
  50242. {
  50243. name: "Huge",
  50244. height: math.unit(850, "feet")
  50245. },
  50246. {
  50247. name: "Mega",
  50248. height: math.unit(8000, "feet")
  50249. },
  50250. {
  50251. name: "Giga",
  50252. height: math.unit(300, "miles")
  50253. },
  50254. ]
  50255. ))
  50256. characterMakers.push(() => makeCharacter(
  50257. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  50258. {
  50259. bipedal: {
  50260. height: math.unit(7, "feet"),
  50261. name: "Bipedal",
  50262. image: {
  50263. source: "./media/characters/zener/bipedal.svg",
  50264. extra: 874/805,
  50265. bottom: 109/983
  50266. }
  50267. },
  50268. quadrupedal: {
  50269. height: math.unit(4.64, "feet"),
  50270. name: "Quadrupedal",
  50271. image: {
  50272. source: "./media/characters/zener/quadrupedal.svg",
  50273. extra: 638/507,
  50274. bottom: 190/828
  50275. }
  50276. },
  50277. cock: {
  50278. height: math.unit(18, "inches"),
  50279. name: "Cock",
  50280. image: {
  50281. source: "./media/characters/zener/cock.svg"
  50282. }
  50283. },
  50284. },
  50285. [
  50286. {
  50287. name: "Normal",
  50288. height: math.unit(7, "feet"),
  50289. default: true
  50290. },
  50291. ]
  50292. ))
  50293. characterMakers.push(() => makeCharacter(
  50294. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  50295. {
  50296. nude: {
  50297. height: math.unit(5 + 6/12, "feet"),
  50298. name: "Nude",
  50299. image: {
  50300. source: "./media/characters/charlie-dog/nude.svg",
  50301. extra: 768/734,
  50302. bottom: 26/794
  50303. }
  50304. },
  50305. dressed: {
  50306. height: math.unit(5 + 6/12, "feet"),
  50307. name: "Dressed",
  50308. image: {
  50309. source: "./media/characters/charlie-dog/dressed.svg",
  50310. extra: 768/734,
  50311. bottom: 26/794
  50312. }
  50313. },
  50314. },
  50315. [
  50316. {
  50317. name: "Normal",
  50318. height: math.unit(5 + 6/12, "feet"),
  50319. default: true
  50320. },
  50321. ]
  50322. ))
  50323. characterMakers.push(() => makeCharacter(
  50324. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  50325. {
  50326. front: {
  50327. height: math.unit(6 + 4/12, "feet"),
  50328. name: "Front",
  50329. image: {
  50330. source: "./media/characters/ir'istrasz/front.svg",
  50331. extra: 1014/977,
  50332. bottom: 65/1079
  50333. }
  50334. },
  50335. back: {
  50336. height: math.unit(6 + 4/12, "feet"),
  50337. name: "Back",
  50338. image: {
  50339. source: "./media/characters/ir'istrasz/back.svg",
  50340. extra: 1024/992,
  50341. bottom: 34/1058
  50342. }
  50343. },
  50344. },
  50345. [
  50346. {
  50347. name: "Normal",
  50348. height: math.unit(6 + 4/12, "feet"),
  50349. default: true
  50350. },
  50351. ]
  50352. ))
  50353. characterMakers.push(() => makeCharacter(
  50354. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  50355. {
  50356. front: {
  50357. height: math.unit(5 + 8/12, "feet"),
  50358. name: "Front",
  50359. image: {
  50360. source: "./media/characters/dee-ditto/front.svg",
  50361. extra: 1874/1785,
  50362. bottom: 68/1942
  50363. }
  50364. },
  50365. back: {
  50366. height: math.unit(5 + 8/12, "feet"),
  50367. name: "Back",
  50368. image: {
  50369. source: "./media/characters/dee-ditto/back.svg",
  50370. extra: 1870/1783,
  50371. bottom: 77/1947
  50372. }
  50373. },
  50374. },
  50375. [
  50376. {
  50377. name: "Normal",
  50378. height: math.unit(5 + 8/12, "feet"),
  50379. default: true
  50380. },
  50381. ]
  50382. ))
  50383. characterMakers.push(() => makeCharacter(
  50384. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  50385. {
  50386. front: {
  50387. height: math.unit(7 + 6/12, "feet"),
  50388. name: "Front",
  50389. image: {
  50390. source: "./media/characters/fey/front.svg",
  50391. extra: 995/979,
  50392. bottom: 30/1025
  50393. }
  50394. },
  50395. back: {
  50396. height: math.unit(7 + 6/12, "feet"),
  50397. name: "Back",
  50398. image: {
  50399. source: "./media/characters/fey/back.svg",
  50400. extra: 1079/1008,
  50401. bottom: 5/1084
  50402. }
  50403. },
  50404. dressed: {
  50405. height: math.unit(7 + 6/12, "feet"),
  50406. name: "Dressed",
  50407. image: {
  50408. source: "./media/characters/fey/dressed.svg",
  50409. extra: 995/979,
  50410. bottom: 30/1025
  50411. }
  50412. },
  50413. },
  50414. [
  50415. {
  50416. name: "Normal",
  50417. height: math.unit(7 + 6/12, "feet"),
  50418. default: true
  50419. },
  50420. ]
  50421. ))
  50422. characterMakers.push(() => makeCharacter(
  50423. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  50424. {
  50425. standing: {
  50426. height: math.unit(17, "feet"),
  50427. name: "Standing",
  50428. image: {
  50429. source: "./media/characters/aster/standing.svg",
  50430. extra: 1798/1598,
  50431. bottom: 117/1915
  50432. }
  50433. },
  50434. },
  50435. [
  50436. {
  50437. name: "Normal",
  50438. height: math.unit(17, "feet"),
  50439. default: true
  50440. },
  50441. {
  50442. name: "Homewrecker",
  50443. height: math.unit(95, "feet")
  50444. },
  50445. {
  50446. name: "Planet Devourer",
  50447. height: math.unit(1008000, "miles")
  50448. },
  50449. ]
  50450. ))
  50451. characterMakers.push(() => makeCharacter(
  50452. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  50453. {
  50454. front: {
  50455. height: math.unit(6 + 5/12, "feet"),
  50456. weight: math.unit(265, "lb"),
  50457. name: "Front",
  50458. image: {
  50459. source: "./media/characters/devon-childs/front.svg",
  50460. extra: 1795/1721,
  50461. bottom: 41/1836
  50462. }
  50463. },
  50464. side: {
  50465. height: math.unit(6 + 5/12, "feet"),
  50466. weight: math.unit(265, "lb"),
  50467. name: "Side",
  50468. image: {
  50469. source: "./media/characters/devon-childs/side.svg",
  50470. extra: 1812/1738,
  50471. bottom: 30/1842
  50472. }
  50473. },
  50474. back: {
  50475. height: math.unit(6 + 5/12, "feet"),
  50476. weight: math.unit(265, "lb"),
  50477. name: "Back",
  50478. image: {
  50479. source: "./media/characters/devon-childs/back.svg",
  50480. extra: 1808/1735,
  50481. bottom: 23/1831
  50482. }
  50483. },
  50484. hand: {
  50485. height: math.unit(1.464, "feet"),
  50486. name: "Hand",
  50487. image: {
  50488. source: "./media/characters/devon-childs/hand.svg"
  50489. }
  50490. },
  50491. foot: {
  50492. height: math.unit(1.6, "feet"),
  50493. name: "Foot",
  50494. image: {
  50495. source: "./media/characters/devon-childs/foot.svg"
  50496. }
  50497. },
  50498. },
  50499. [
  50500. {
  50501. name: "Micro",
  50502. height: math.unit(7, "cm")
  50503. },
  50504. {
  50505. name: "Normal",
  50506. height: math.unit(6 + 5/12, "feet"),
  50507. default: true
  50508. },
  50509. {
  50510. name: "Macro",
  50511. height: math.unit(154, "feet")
  50512. },
  50513. ]
  50514. ))
  50515. characterMakers.push(() => makeCharacter(
  50516. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  50517. {
  50518. front: {
  50519. height: math.unit(6, "feet"),
  50520. weight: math.unit(180, "lb"),
  50521. name: "Front",
  50522. image: {
  50523. source: "./media/characters/lydemox-vir/front.svg",
  50524. extra: 1632/1435,
  50525. bottom: 58/1690
  50526. }
  50527. },
  50528. frontSFW: {
  50529. height: math.unit(6, "feet"),
  50530. weight: math.unit(180, "lb"),
  50531. name: "Front (SFW)",
  50532. image: {
  50533. source: "./media/characters/lydemox-vir/front-sfw.svg",
  50534. extra: 1632/1435,
  50535. bottom: 58/1690
  50536. }
  50537. },
  50538. back: {
  50539. height: math.unit(6, "feet"),
  50540. weight: math.unit(180, "lb"),
  50541. name: "Back",
  50542. image: {
  50543. source: "./media/characters/lydemox-vir/back.svg",
  50544. extra: 1593/1408,
  50545. bottom: 31/1624
  50546. }
  50547. },
  50548. paw: {
  50549. height: math.unit(1.85, "feet"),
  50550. name: "Paw",
  50551. image: {
  50552. source: "./media/characters/lydemox-vir/paw.svg"
  50553. }
  50554. },
  50555. dick: {
  50556. height: math.unit(1.8, "feet"),
  50557. name: "Dick",
  50558. image: {
  50559. source: "./media/characters/lydemox-vir/dick.svg"
  50560. }
  50561. },
  50562. },
  50563. [
  50564. {
  50565. name: "Macro",
  50566. height: math.unit(100, "feet"),
  50567. default: true
  50568. },
  50569. {
  50570. name: "Teramacro",
  50571. height: math.unit(1, "earth")
  50572. },
  50573. {
  50574. name: "Planetary",
  50575. height: math.unit(20, "earths")
  50576. },
  50577. ]
  50578. ))
  50579. characterMakers.push(() => makeCharacter(
  50580. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  50581. {
  50582. front: {
  50583. height: math.unit(15 + 8/12, "feet"),
  50584. weight: math.unit(1237, "kg"),
  50585. name: "Front",
  50586. image: {
  50587. source: "./media/characters/mia/front.svg",
  50588. extra: 1573/1446,
  50589. bottom: 58/1631
  50590. }
  50591. },
  50592. },
  50593. [
  50594. {
  50595. name: "Small",
  50596. height: math.unit(9 + 5/12, "feet")
  50597. },
  50598. {
  50599. name: "Normal",
  50600. height: math.unit(15 + 8/12, "feet"),
  50601. default: true
  50602. },
  50603. ]
  50604. ))
  50605. characterMakers.push(() => makeCharacter(
  50606. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  50607. {
  50608. front: {
  50609. height: math.unit(10 + 6/12, "feet"),
  50610. weight: math.unit(1.3, "tons"),
  50611. name: "Front",
  50612. image: {
  50613. source: "./media/characters/mr-graves/front.svg",
  50614. extra: 1779/1695,
  50615. bottom: 198/1977
  50616. }
  50617. },
  50618. },
  50619. [
  50620. {
  50621. name: "Normal",
  50622. height: math.unit(10 + 6 /12, "feet"),
  50623. default: true
  50624. },
  50625. ]
  50626. ))
  50627. characterMakers.push(() => makeCharacter(
  50628. { name: "Jess", species: ["human"], tags: ["anthro"] },
  50629. {
  50630. dressedFront: {
  50631. height: math.unit(5 + 8/12, "feet"),
  50632. weight: math.unit(125, "lb"),
  50633. name: "Dressed (Front)",
  50634. image: {
  50635. source: "./media/characters/jess/dressed-front.svg",
  50636. extra: 1176/1152,
  50637. bottom: 42/1218
  50638. }
  50639. },
  50640. dressedSide: {
  50641. height: math.unit(5 + 8/12, "feet"),
  50642. weight: math.unit(125, "lb"),
  50643. name: "Dressed (Side)",
  50644. image: {
  50645. source: "./media/characters/jess/dressed-side.svg",
  50646. extra: 1204/1190,
  50647. bottom: 6/1210
  50648. }
  50649. },
  50650. nudeFront: {
  50651. height: math.unit(5 + 8/12, "feet"),
  50652. weight: math.unit(125, "lb"),
  50653. name: "Nude (Front)",
  50654. image: {
  50655. source: "./media/characters/jess/nude-front.svg",
  50656. extra: 1176/1152,
  50657. bottom: 42/1218
  50658. }
  50659. },
  50660. nudeSide: {
  50661. height: math.unit(5 + 8/12, "feet"),
  50662. weight: math.unit(125, "lb"),
  50663. name: "Nude (Side)",
  50664. image: {
  50665. source: "./media/characters/jess/nude-side.svg",
  50666. extra: 1204/1190,
  50667. bottom: 6/1210
  50668. }
  50669. },
  50670. organsFront: {
  50671. height: math.unit(2.83799342105, "feet"),
  50672. name: "Organs (Front)",
  50673. image: {
  50674. source: "./media/characters/jess/organs-front.svg"
  50675. }
  50676. },
  50677. organsSide: {
  50678. height: math.unit(2.64225290474, "feet"),
  50679. name: "Organs (Side)",
  50680. image: {
  50681. source: "./media/characters/jess/organs-side.svg"
  50682. }
  50683. },
  50684. digestiveTractFront: {
  50685. height: math.unit(2.8106580871, "feet"),
  50686. name: "Digestive Tract (Front)",
  50687. image: {
  50688. source: "./media/characters/jess/digestive-tract-front.svg"
  50689. }
  50690. },
  50691. digestiveTractSide: {
  50692. height: math.unit(2.54365045014, "feet"),
  50693. name: "Digestive Tract (Side)",
  50694. image: {
  50695. source: "./media/characters/jess/digestive-tract-side.svg"
  50696. }
  50697. },
  50698. respiratorySystemFront: {
  50699. height: math.unit(1.11196233456, "feet"),
  50700. name: "Respiratory System (Front)",
  50701. image: {
  50702. source: "./media/characters/jess/respiratory-system-front.svg"
  50703. }
  50704. },
  50705. respiratorySystemSide: {
  50706. height: math.unit(0.89327966297, "feet"),
  50707. name: "Respiratory System (Side)",
  50708. image: {
  50709. source: "./media/characters/jess/respiratory-system-side.svg"
  50710. }
  50711. },
  50712. urinaryTractFront: {
  50713. height: math.unit(1.16126356186, "feet"),
  50714. name: "Urinary Tract (Front)",
  50715. image: {
  50716. source: "./media/characters/jess/urinary-tract-front.svg"
  50717. }
  50718. },
  50719. urinaryTractSide: {
  50720. height: math.unit(1.20910039627, "feet"),
  50721. name: "Urinary Tract (Side)",
  50722. image: {
  50723. source: "./media/characters/jess/urinary-tract-side.svg"
  50724. }
  50725. },
  50726. reproductiveOrgansFront: {
  50727. height: math.unit(0.48422591566, "feet"),
  50728. name: "Reproductive Organs (Front)",
  50729. image: {
  50730. source: "./media/characters/jess/reproductive-organs-front.svg"
  50731. }
  50732. },
  50733. reproductiveOrgansSide: {
  50734. height: math.unit(0.61553314481, "feet"),
  50735. name: "Reproductive Organs (Side)",
  50736. image: {
  50737. source: "./media/characters/jess/reproductive-organs-side.svg"
  50738. }
  50739. },
  50740. breastsFront: {
  50741. height: math.unit(0.47690395121, "feet"),
  50742. name: "Breasts (Front)",
  50743. image: {
  50744. source: "./media/characters/jess/breasts-front.svg"
  50745. }
  50746. },
  50747. breastsSide: {
  50748. height: math.unit(0.30556998307, "feet"),
  50749. name: "Breasts (Side)",
  50750. image: {
  50751. source: "./media/characters/jess/breasts-side.svg"
  50752. }
  50753. },
  50754. heartFront: {
  50755. height: math.unit(0.53011022622, "feet"),
  50756. name: "Heart (Front)",
  50757. image: {
  50758. source: "./media/characters/jess/heart-front.svg"
  50759. }
  50760. },
  50761. heartSide: {
  50762. height: math.unit(0.51790695213, "feet"),
  50763. name: "Heart (Side)",
  50764. image: {
  50765. source: "./media/characters/jess/heart-side.svg"
  50766. }
  50767. },
  50768. earsAndNoseFront: {
  50769. height: math.unit(0.29385483995, "feet"),
  50770. name: "Ears and Nose (Front)",
  50771. image: {
  50772. source: "./media/characters/jess/ears-and-nose-front.svg"
  50773. }
  50774. },
  50775. earsAndNoseSide: {
  50776. height: math.unit(0.18109658741, "feet"),
  50777. name: "Ears and Nose (Side)",
  50778. image: {
  50779. source: "./media/characters/jess/ears-and-nose-side.svg"
  50780. }
  50781. },
  50782. },
  50783. [
  50784. {
  50785. name: "Normal",
  50786. height: math.unit(5 + 8/12, "feet"),
  50787. default: true
  50788. },
  50789. ]
  50790. ))
  50791. characterMakers.push(() => makeCharacter(
  50792. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  50793. {
  50794. front: {
  50795. height: math.unit(6, "feet"),
  50796. weight: math.unit(6.64467e-7, "grams"),
  50797. name: "Front",
  50798. image: {
  50799. source: "./media/characters/wimpering/front.svg",
  50800. extra: 597/587,
  50801. bottom: 34/631
  50802. }
  50803. },
  50804. },
  50805. [
  50806. {
  50807. name: "Micro",
  50808. height: math.unit(0.4, "mm"),
  50809. default: true
  50810. },
  50811. ]
  50812. ))
  50813. characterMakers.push(() => makeCharacter(
  50814. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  50815. {
  50816. front: {
  50817. height: math.unit(5 + 2/12, "feet"),
  50818. weight: math.unit(110, "lb"),
  50819. name: "Front",
  50820. image: {
  50821. source: "./media/characters/keltre/front.svg",
  50822. extra: 1099/1057,
  50823. bottom: 22/1121
  50824. }
  50825. },
  50826. back: {
  50827. height: math.unit(5 + 2/12, "feet"),
  50828. weight: math.unit(110, "lb"),
  50829. name: "Back",
  50830. image: {
  50831. source: "./media/characters/keltre/back.svg",
  50832. extra: 1095/1053,
  50833. bottom: 17/1112
  50834. }
  50835. },
  50836. dressed: {
  50837. height: math.unit(5 + 2/12, "feet"),
  50838. weight: math.unit(110, "lb"),
  50839. name: "Dressed",
  50840. image: {
  50841. source: "./media/characters/keltre/dressed.svg",
  50842. extra: 1099/1057,
  50843. bottom: 22/1121
  50844. }
  50845. },
  50846. winter: {
  50847. height: math.unit(5 + 2/12, "feet"),
  50848. weight: math.unit(110, "lb"),
  50849. name: "Winter",
  50850. image: {
  50851. source: "./media/characters/keltre/winter.svg",
  50852. extra: 1099/1057,
  50853. bottom: 22/1121
  50854. }
  50855. },
  50856. head: {
  50857. height: math.unit(1.61 * 0.86, "feet"),
  50858. name: "Head",
  50859. image: {
  50860. source: "./media/characters/keltre/head.svg",
  50861. extra: 534/421,
  50862. bottom: 0/534
  50863. }
  50864. },
  50865. hand: {
  50866. height: math.unit(1.3 * 0.86, "feet"),
  50867. name: "Hand",
  50868. image: {
  50869. source: "./media/characters/keltre/hand.svg"
  50870. }
  50871. },
  50872. foot: {
  50873. height: math.unit(1.8 * 0.86, "feet"),
  50874. name: "Foot",
  50875. image: {
  50876. source: "./media/characters/keltre/foot.svg"
  50877. }
  50878. },
  50879. },
  50880. [
  50881. {
  50882. name: "Fine",
  50883. height: math.unit(1, "inch")
  50884. },
  50885. {
  50886. name: "Dimnutive",
  50887. height: math.unit(4, "inches")
  50888. },
  50889. {
  50890. name: "Tiny",
  50891. height: math.unit(1, "foot")
  50892. },
  50893. {
  50894. name: "Small",
  50895. height: math.unit(3, "feet")
  50896. },
  50897. {
  50898. name: "Normal",
  50899. height: math.unit(5 + 2/12, "feet"),
  50900. default: true
  50901. },
  50902. ]
  50903. ))
  50904. characterMakers.push(() => makeCharacter(
  50905. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  50906. {
  50907. front: {
  50908. height: math.unit(6 + 2/12, "feet"),
  50909. name: "Front",
  50910. image: {
  50911. source: "./media/characters/nox/front.svg",
  50912. extra: 1917/1830,
  50913. bottom: 74/1991
  50914. }
  50915. },
  50916. back: {
  50917. height: math.unit(6 + 2/12, "feet"),
  50918. name: "Back",
  50919. image: {
  50920. source: "./media/characters/nox/back.svg",
  50921. extra: 1896/1815,
  50922. bottom: 21/1917
  50923. }
  50924. },
  50925. head: {
  50926. height: math.unit(1.1, "feet"),
  50927. name: "Head",
  50928. image: {
  50929. source: "./media/characters/nox/head.svg",
  50930. extra: 874/704,
  50931. bottom: 0/874
  50932. }
  50933. },
  50934. tattoo: {
  50935. height: math.unit(0.729, "feet"),
  50936. name: "Tattoo",
  50937. image: {
  50938. source: "./media/characters/nox/tattoo.svg"
  50939. }
  50940. },
  50941. },
  50942. [
  50943. {
  50944. name: "Normal",
  50945. height: math.unit(6 + 2/12, "feet")
  50946. },
  50947. {
  50948. name: "Gigamacro",
  50949. height: math.unit(2, "earths"),
  50950. default: true
  50951. },
  50952. {
  50953. name: "Cosmic",
  50954. height: math.unit(867, "yottameters")
  50955. },
  50956. ]
  50957. ))
  50958. characterMakers.push(() => makeCharacter(
  50959. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  50960. {
  50961. front: {
  50962. height: math.unit(6, "feet"),
  50963. weight: math.unit(150, "lb"),
  50964. name: "Front",
  50965. image: {
  50966. source: "./media/characters/caspian/front.svg",
  50967. extra: 1443/1359,
  50968. bottom: 0/1443
  50969. }
  50970. },
  50971. back: {
  50972. height: math.unit(6, "feet"),
  50973. weight: math.unit(150, "lb"),
  50974. name: "Back",
  50975. image: {
  50976. source: "./media/characters/caspian/back.svg",
  50977. extra: 1379/1309,
  50978. bottom: 0/1379
  50979. }
  50980. },
  50981. head: {
  50982. height: math.unit(0.9, "feet"),
  50983. name: "Head",
  50984. image: {
  50985. source: "./media/characters/caspian/head.svg",
  50986. extra: 692/492,
  50987. bottom: 0/692
  50988. }
  50989. },
  50990. headAlt: {
  50991. height: math.unit(0.95, "feet"),
  50992. name: "Head (Alt)",
  50993. image: {
  50994. source: "./media/characters/caspian/head-alt.svg",
  50995. extra: 668/508,
  50996. bottom: 0/668
  50997. }
  50998. },
  50999. hand: {
  51000. height: math.unit(0.8, "feet"),
  51001. name: "Hand",
  51002. image: {
  51003. source: "./media/characters/caspian/hand.svg"
  51004. }
  51005. },
  51006. paw: {
  51007. height: math.unit(0.95, "feet"),
  51008. name: "Paw",
  51009. image: {
  51010. source: "./media/characters/caspian/paw.svg"
  51011. }
  51012. },
  51013. },
  51014. [
  51015. {
  51016. name: "Normal",
  51017. height: math.unit(162, "feet"),
  51018. default: true
  51019. },
  51020. ]
  51021. ))
  51022. characterMakers.push(() => makeCharacter(
  51023. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  51024. {
  51025. front: {
  51026. height: math.unit(6, "feet"),
  51027. name: "Front",
  51028. image: {
  51029. source: "./media/characters/myra-aisling/front.svg",
  51030. extra: 1268/1166,
  51031. bottom: 73/1341
  51032. }
  51033. },
  51034. back: {
  51035. height: math.unit(6, "feet"),
  51036. name: "Back",
  51037. image: {
  51038. source: "./media/characters/myra-aisling/back.svg",
  51039. extra: 1249/1149,
  51040. bottom: 79/1328
  51041. }
  51042. },
  51043. dressed: {
  51044. height: math.unit(6, "feet"),
  51045. name: "Dressed",
  51046. image: {
  51047. source: "./media/characters/myra-aisling/dressed.svg",
  51048. extra: 1290/1189,
  51049. bottom: 47/1337
  51050. }
  51051. },
  51052. hand: {
  51053. height: math.unit(1.1, "feet"),
  51054. name: "Hand",
  51055. image: {
  51056. source: "./media/characters/myra-aisling/hand.svg"
  51057. }
  51058. },
  51059. paw: {
  51060. height: math.unit(1.23, "feet"),
  51061. name: "Paw",
  51062. image: {
  51063. source: "./media/characters/myra-aisling/paw.svg"
  51064. }
  51065. },
  51066. },
  51067. [
  51068. {
  51069. name: "Normal",
  51070. height: math.unit(160, "feet"),
  51071. default: true
  51072. },
  51073. ]
  51074. ))
  51075. characterMakers.push(() => makeCharacter(
  51076. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  51077. {
  51078. front: {
  51079. height: math.unit(6, "feet"),
  51080. name: "Front",
  51081. image: {
  51082. source: "./media/characters/tenley-sidero/front.svg",
  51083. extra: 1365/1276,
  51084. bottom: 47/1412
  51085. }
  51086. },
  51087. back: {
  51088. height: math.unit(6, "feet"),
  51089. name: "Back",
  51090. image: {
  51091. source: "./media/characters/tenley-sidero/back.svg",
  51092. extra: 1383/1283,
  51093. bottom: 35/1418
  51094. }
  51095. },
  51096. dressed: {
  51097. height: math.unit(6, "feet"),
  51098. name: "Dressed",
  51099. image: {
  51100. source: "./media/characters/tenley-sidero/dressed.svg",
  51101. extra: 1364/1275,
  51102. bottom: 42/1406
  51103. }
  51104. },
  51105. head: {
  51106. height: math.unit(1.47, "feet"),
  51107. name: "Head",
  51108. image: {
  51109. source: "./media/characters/tenley-sidero/head.svg",
  51110. extra: 610/490,
  51111. bottom: 0/610
  51112. }
  51113. },
  51114. },
  51115. [
  51116. {
  51117. name: "Normal",
  51118. height: math.unit(154, "feet"),
  51119. default: true
  51120. },
  51121. ]
  51122. ))
  51123. characterMakers.push(() => makeCharacter(
  51124. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  51125. {
  51126. front: {
  51127. height: math.unit(5, "inches"),
  51128. name: "Front",
  51129. image: {
  51130. source: "./media/characters/mallory/front.svg",
  51131. extra: 1919/1678,
  51132. bottom: 29/1948
  51133. }
  51134. },
  51135. hand: {
  51136. height: math.unit(0.73, "inches"),
  51137. name: "Hand",
  51138. image: {
  51139. source: "./media/characters/mallory/hand.svg"
  51140. }
  51141. },
  51142. paw: {
  51143. height: math.unit(0.68, "inches"),
  51144. name: "Paw",
  51145. image: {
  51146. source: "./media/characters/mallory/paw.svg"
  51147. }
  51148. },
  51149. },
  51150. [
  51151. {
  51152. name: "Small",
  51153. height: math.unit(5, "inches"),
  51154. default: true
  51155. },
  51156. ]
  51157. ))
  51158. characterMakers.push(() => makeCharacter(
  51159. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  51160. {
  51161. naked: {
  51162. height: math.unit(6, "feet"),
  51163. name: "Naked",
  51164. image: {
  51165. source: "./media/characters/mab/naked.svg",
  51166. extra: 1855/1757,
  51167. bottom: 208/2063
  51168. }
  51169. },
  51170. outside: {
  51171. height: math.unit(6, "feet"),
  51172. name: "Outside",
  51173. image: {
  51174. source: "./media/characters/mab/outside.svg",
  51175. extra: 1855/1757,
  51176. bottom: 208/2063
  51177. }
  51178. },
  51179. party: {
  51180. height: math.unit(6, "feet"),
  51181. name: "Party",
  51182. image: {
  51183. source: "./media/characters/mab/party.svg",
  51184. extra: 1855/1757,
  51185. bottom: 208/2063
  51186. }
  51187. },
  51188. },
  51189. [
  51190. {
  51191. name: "Normal",
  51192. height: math.unit(165, "feet"),
  51193. default: true
  51194. },
  51195. ]
  51196. ))
  51197. characterMakers.push(() => makeCharacter(
  51198. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  51199. {
  51200. feral: {
  51201. height: math.unit(12, "feet"),
  51202. weight: math.unit(20000, "lb"),
  51203. name: "Side",
  51204. image: {
  51205. source: "./media/characters/winter/feral.svg",
  51206. extra: 1286/943,
  51207. bottom: 112/1398
  51208. },
  51209. form: "feral",
  51210. default: true
  51211. },
  51212. feralNsfw: {
  51213. height: math.unit(12, "feet"),
  51214. weight: math.unit(20000, "lb"),
  51215. name: "Side (NSFW)",
  51216. image: {
  51217. source: "./media/characters/winter/feral-nsfw.svg",
  51218. extra: 1286/943,
  51219. bottom: 112/1398
  51220. },
  51221. form: "feral"
  51222. },
  51223. dick: {
  51224. height: math.unit(3.79, "feet"),
  51225. name: "Dick",
  51226. image: {
  51227. source: "./media/characters/winter/dick.svg"
  51228. },
  51229. form: "feral"
  51230. },
  51231. anthro: {
  51232. height: math.unit(12, "feet"),
  51233. weight: math.unit(10, "tons"),
  51234. name: "Anthro",
  51235. image: {
  51236. source: "./media/characters/winter/anthro.svg",
  51237. extra: 1701/1553,
  51238. bottom: 64/1765
  51239. },
  51240. form: "anthro",
  51241. default: true
  51242. },
  51243. },
  51244. [
  51245. {
  51246. name: "Big",
  51247. height: math.unit(12, "feet"),
  51248. default: true,
  51249. form: "feral"
  51250. },
  51251. {
  51252. name: "Big",
  51253. height: math.unit(12, "feet"),
  51254. default: true,
  51255. form: "anthro"
  51256. },
  51257. ],
  51258. {
  51259. "feral": {
  51260. name: "Feral",
  51261. default: true
  51262. },
  51263. "anthro": {
  51264. name: "Anthro"
  51265. }
  51266. }
  51267. ))
  51268. characterMakers.push(() => makeCharacter(
  51269. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  51270. {
  51271. front: {
  51272. height: math.unit(4.1, "inches"),
  51273. name: "Front",
  51274. image: {
  51275. source: "./media/characters/alto/front.svg",
  51276. extra: 736/627,
  51277. bottom: 90/826
  51278. }
  51279. },
  51280. },
  51281. [
  51282. {
  51283. name: "Normal",
  51284. height: math.unit(4.1, "inches"),
  51285. default: true
  51286. },
  51287. ]
  51288. ))
  51289. characterMakers.push(() => makeCharacter(
  51290. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  51291. {
  51292. sitting: {
  51293. height: math.unit(3, "feet"),
  51294. name: "Sitting",
  51295. image: {
  51296. source: "./media/characters/ratstrid-v/sitting.svg",
  51297. extra: 355/310,
  51298. bottom: 136/491
  51299. }
  51300. },
  51301. },
  51302. [
  51303. {
  51304. name: "Normal",
  51305. height: math.unit(3, "feet"),
  51306. default: true
  51307. },
  51308. ]
  51309. ))
  51310. characterMakers.push(() => makeCharacter(
  51311. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  51312. {
  51313. back: {
  51314. height: math.unit(6, "feet"),
  51315. weight: math.unit(450, "lb"),
  51316. name: "Back",
  51317. image: {
  51318. source: "./media/characters/siz/back.svg",
  51319. extra: 1449/1274,
  51320. bottom: 13/1462
  51321. }
  51322. },
  51323. },
  51324. [
  51325. {
  51326. name: "Smallest",
  51327. height: math.unit(18 + 3/12, "feet")
  51328. },
  51329. {
  51330. name: "Modest",
  51331. height: math.unit(56 + 8/12, "feet"),
  51332. default: true
  51333. },
  51334. {
  51335. name: "Largest",
  51336. height: math.unit(3590, "feet")
  51337. },
  51338. ]
  51339. ))
  51340. characterMakers.push(() => makeCharacter(
  51341. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  51342. {
  51343. front: {
  51344. height: math.unit(5 + 9/12, "feet"),
  51345. weight: math.unit(150, "lb"),
  51346. name: "Front",
  51347. image: {
  51348. source: "./media/characters/ven/front.svg",
  51349. extra: 1372/1320,
  51350. bottom: 73/1445
  51351. }
  51352. },
  51353. side: {
  51354. height: math.unit(5 + 9/12, "feet"),
  51355. weight: math.unit(1150, "lb"),
  51356. name: "Side",
  51357. image: {
  51358. source: "./media/characters/ven/side.svg",
  51359. extra: 1119/1070,
  51360. bottom: 42/1161
  51361. },
  51362. default: true
  51363. },
  51364. },
  51365. [
  51366. {
  51367. name: "Normal",
  51368. height: math.unit(5 + 9/12, "feet"),
  51369. default: true
  51370. },
  51371. ]
  51372. ))
  51373. characterMakers.push(() => makeCharacter(
  51374. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  51375. {
  51376. front: {
  51377. height: math.unit(12, "feet"),
  51378. weight: math.unit(1000, "kg"),
  51379. name: "Front",
  51380. image: {
  51381. source: "./media/characters/maple/front.svg",
  51382. extra: 1193/1081,
  51383. bottom: 22/1215
  51384. }
  51385. },
  51386. },
  51387. [
  51388. {
  51389. name: "Compressed",
  51390. height: math.unit(7, "feet")
  51391. },
  51392. {
  51393. name: "Normal",
  51394. height: math.unit(12, "feet"),
  51395. default: true
  51396. },
  51397. ]
  51398. ))
  51399. characterMakers.push(() => makeCharacter(
  51400. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  51401. {
  51402. front: {
  51403. height: math.unit(9, "feet"),
  51404. weight: math.unit(1500, "lb"),
  51405. name: "Front",
  51406. image: {
  51407. source: "./media/characters/nora/front.svg",
  51408. extra: 1348/1286,
  51409. bottom: 218/1566
  51410. }
  51411. },
  51412. erect: {
  51413. height: math.unit(9, "feet"),
  51414. weight: math.unit(11500, "lb"),
  51415. name: "Erect",
  51416. image: {
  51417. source: "./media/characters/nora/erect.svg",
  51418. extra: 1488/1433,
  51419. bottom: 133/1621
  51420. }
  51421. },
  51422. },
  51423. [
  51424. {
  51425. name: "Normal",
  51426. height: math.unit(9, "feet"),
  51427. default: true
  51428. },
  51429. ]
  51430. ))
  51431. characterMakers.push(() => makeCharacter(
  51432. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  51433. {
  51434. front: {
  51435. height: math.unit(25, "feet"),
  51436. weight: math.unit(27500, "lb"),
  51437. name: "Front",
  51438. image: {
  51439. source: "./media/characters/north-caudin/front.svg",
  51440. extra: 1184/1082,
  51441. bottom: 23/1207
  51442. }
  51443. },
  51444. },
  51445. [
  51446. {
  51447. name: "Compressed",
  51448. height: math.unit(10, "feet")
  51449. },
  51450. {
  51451. name: "Normal",
  51452. height: math.unit(25, "feet"),
  51453. default: true
  51454. },
  51455. ]
  51456. ))
  51457. characterMakers.push(() => makeCharacter(
  51458. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  51459. {
  51460. front: {
  51461. height: math.unit(9, "feet"),
  51462. weight: math.unit(1250, "lb"),
  51463. name: "Front",
  51464. image: {
  51465. source: "./media/characters/merrian/front.svg",
  51466. extra: 2393/2304,
  51467. bottom: 40/2433
  51468. }
  51469. },
  51470. },
  51471. [
  51472. {
  51473. name: "Normal",
  51474. height: math.unit(9, "feet"),
  51475. default: true
  51476. },
  51477. ]
  51478. ))
  51479. characterMakers.push(() => makeCharacter(
  51480. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  51481. {
  51482. front: {
  51483. height: math.unit(9, "feet"),
  51484. weight: math.unit(1000, "lb"),
  51485. name: "Front",
  51486. image: {
  51487. source: "./media/characters/hazel/front.svg",
  51488. extra: 2351/2298,
  51489. bottom: 38/2389
  51490. }
  51491. },
  51492. },
  51493. [
  51494. {
  51495. name: "Normal",
  51496. height: math.unit(9, "feet"),
  51497. default: true
  51498. },
  51499. ]
  51500. ))
  51501. characterMakers.push(() => makeCharacter(
  51502. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  51503. {
  51504. front: {
  51505. height: math.unit(13, "feet"),
  51506. weight: math.unit(3200, "lb"),
  51507. name: "Front",
  51508. image: {
  51509. source: "./media/characters/emma/front.svg",
  51510. extra: 2263/2029,
  51511. bottom: 68/2331
  51512. }
  51513. },
  51514. },
  51515. [
  51516. {
  51517. name: "Normal",
  51518. height: math.unit(13, "feet"),
  51519. default: true
  51520. },
  51521. ]
  51522. ))
  51523. characterMakers.push(() => makeCharacter(
  51524. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  51525. {
  51526. front: {
  51527. height: math.unit(11 + 9/12, "feet"),
  51528. weight: math.unit(2500, "lb"),
  51529. name: "Front",
  51530. image: {
  51531. source: "./media/characters/ilumina/front.svg",
  51532. extra: 2248/2209,
  51533. bottom: 164/2412
  51534. }
  51535. },
  51536. },
  51537. [
  51538. {
  51539. name: "Normal",
  51540. height: math.unit(11 + 9/12, "feet"),
  51541. default: true
  51542. },
  51543. ]
  51544. ))
  51545. characterMakers.push(() => makeCharacter(
  51546. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  51547. {
  51548. front: {
  51549. height: math.unit(8 + 10/12, "feet"),
  51550. weight: math.unit(1350, "lb"),
  51551. name: "Front",
  51552. image: {
  51553. source: "./media/characters/moonshine/front.svg",
  51554. extra: 2395/2288,
  51555. bottom: 40/2435
  51556. }
  51557. },
  51558. },
  51559. [
  51560. {
  51561. name: "Normal",
  51562. height: math.unit(8 + 10/12, "feet"),
  51563. default: true
  51564. },
  51565. ]
  51566. ))
  51567. characterMakers.push(() => makeCharacter(
  51568. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  51569. {
  51570. front: {
  51571. height: math.unit(14, "feet"),
  51572. weight: math.unit(3400, "lb"),
  51573. name: "Front",
  51574. image: {
  51575. source: "./media/characters/aletia/front.svg",
  51576. extra: 1185/1052,
  51577. bottom: 21/1206
  51578. }
  51579. },
  51580. },
  51581. [
  51582. {
  51583. name: "Compressed",
  51584. height: math.unit(8, "feet")
  51585. },
  51586. {
  51587. name: "Normal",
  51588. height: math.unit(14, "feet"),
  51589. default: true
  51590. },
  51591. ]
  51592. ))
  51593. characterMakers.push(() => makeCharacter(
  51594. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  51595. {
  51596. front: {
  51597. height: math.unit(17, "feet"),
  51598. weight: math.unit(6500, "lb"),
  51599. name: "Front",
  51600. image: {
  51601. source: "./media/characters/deidra/front.svg",
  51602. extra: 1201/1081,
  51603. bottom: 16/1217
  51604. }
  51605. },
  51606. },
  51607. [
  51608. {
  51609. name: "Compressed",
  51610. height: math.unit(9 + 6/12, "feet")
  51611. },
  51612. {
  51613. name: "Normal",
  51614. height: math.unit(17, "feet"),
  51615. default: true
  51616. },
  51617. ]
  51618. ))
  51619. characterMakers.push(() => makeCharacter(
  51620. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  51621. {
  51622. front: {
  51623. height: math.unit(7 + 4/12, "feet"),
  51624. weight: math.unit(280, "lb"),
  51625. name: "Front",
  51626. image: {
  51627. source: "./media/characters/freki-yrmori/front.svg",
  51628. extra: 1286/1182,
  51629. bottom: 29/1315
  51630. }
  51631. },
  51632. maw: {
  51633. height: math.unit(0.9, "feet"),
  51634. name: "Maw",
  51635. image: {
  51636. source: "./media/characters/freki-yrmori/maw.svg"
  51637. }
  51638. },
  51639. },
  51640. [
  51641. {
  51642. name: "Normal",
  51643. height: math.unit(7 + 4/12, "feet"),
  51644. default: true
  51645. },
  51646. {
  51647. name: "Macro",
  51648. height: math.unit(38.5, "meters")
  51649. },
  51650. ]
  51651. ))
  51652. characterMakers.push(() => makeCharacter(
  51653. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  51654. {
  51655. side: {
  51656. height: math.unit(47.2, "meters"),
  51657. weight: math.unit(10000, "tons"),
  51658. name: "Side",
  51659. image: {
  51660. source: "./media/characters/aetherios/side.svg",
  51661. extra: 2363/642,
  51662. bottom: 221/2584
  51663. }
  51664. },
  51665. top: {
  51666. height: math.unit(240, "meters"),
  51667. weight: math.unit(10000, "tons"),
  51668. name: "Top",
  51669. image: {
  51670. source: "./media/characters/aetherios/top.svg"
  51671. }
  51672. },
  51673. bottom: {
  51674. height: math.unit(240, "meters"),
  51675. weight: math.unit(10000, "tons"),
  51676. name: "Bottom",
  51677. image: {
  51678. source: "./media/characters/aetherios/bottom.svg"
  51679. }
  51680. },
  51681. head: {
  51682. height: math.unit(38.6, "meters"),
  51683. name: "Head",
  51684. image: {
  51685. source: "./media/characters/aetherios/head.svg",
  51686. extra: 1335/1112,
  51687. bottom: 0/1335
  51688. }
  51689. },
  51690. front: {
  51691. height: math.unit(29, "meters"),
  51692. name: "Front",
  51693. image: {
  51694. source: "./media/characters/aetherios/front.svg",
  51695. extra: 1266/953,
  51696. bottom: 158/1424
  51697. }
  51698. },
  51699. maw: {
  51700. height: math.unit(16.37, "meters"),
  51701. name: "Maw",
  51702. image: {
  51703. source: "./media/characters/aetherios/maw.svg",
  51704. extra: 748/637,
  51705. bottom: 0/748
  51706. },
  51707. extraAttributes: {
  51708. preyCapacity: {
  51709. name: "Capacity",
  51710. power: 3,
  51711. type: "volume",
  51712. base: math.unit(1000, "people")
  51713. },
  51714. tongueSize: {
  51715. name: "Tongue Size",
  51716. power: 2,
  51717. type: "area",
  51718. base: math.unit(21, "m^2")
  51719. }
  51720. }
  51721. },
  51722. forepaw: {
  51723. height: math.unit(18, "meters"),
  51724. name: "Forepaw",
  51725. image: {
  51726. source: "./media/characters/aetherios/forepaw.svg"
  51727. }
  51728. },
  51729. hindpaw: {
  51730. height: math.unit(23, "meters"),
  51731. name: "Hindpaw",
  51732. image: {
  51733. source: "./media/characters/aetherios/hindpaw.svg"
  51734. }
  51735. },
  51736. genitals: {
  51737. height: math.unit(42, "meters"),
  51738. name: "Genitals",
  51739. image: {
  51740. source: "./media/characters/aetherios/genitals.svg"
  51741. }
  51742. },
  51743. },
  51744. [
  51745. {
  51746. name: "Normal",
  51747. height: math.unit(47.2, "meters"),
  51748. default: true
  51749. },
  51750. {
  51751. name: "Macro",
  51752. height: math.unit(160, "meters")
  51753. },
  51754. {
  51755. name: "Mega",
  51756. height: math.unit(1.87, "km")
  51757. },
  51758. {
  51759. name: "Giga",
  51760. height: math.unit(40000, "km")
  51761. },
  51762. {
  51763. name: "Stellar",
  51764. height: math.unit(158000000, "km")
  51765. },
  51766. {
  51767. name: "Cosmic",
  51768. height: math.unit(9.46e12, "km")
  51769. },
  51770. ]
  51771. ))
  51772. characterMakers.push(() => makeCharacter(
  51773. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  51774. {
  51775. front: {
  51776. height: math.unit(5 + 4/12, "feet"),
  51777. weight: math.unit(80, "lb"),
  51778. name: "Front",
  51779. image: {
  51780. source: "./media/characters/mizu-gieeg/front.svg",
  51781. extra: 850/709,
  51782. bottom: 52/902
  51783. }
  51784. },
  51785. back: {
  51786. height: math.unit(5 + 4/12, "feet"),
  51787. weight: math.unit(80, "lb"),
  51788. name: "Back",
  51789. image: {
  51790. source: "./media/characters/mizu-gieeg/back.svg",
  51791. extra: 882/745,
  51792. bottom: 25/907
  51793. }
  51794. },
  51795. },
  51796. [
  51797. {
  51798. name: "Normal",
  51799. height: math.unit(5 + 4/12, "feet"),
  51800. default: true
  51801. },
  51802. ]
  51803. ))
  51804. characterMakers.push(() => makeCharacter(
  51805. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  51806. {
  51807. front: {
  51808. height: math.unit(6, "feet"),
  51809. name: "Front",
  51810. image: {
  51811. source: "./media/characters/roselle-st-papier/front.svg",
  51812. extra: 1430/1280,
  51813. bottom: 37/1467
  51814. }
  51815. },
  51816. back: {
  51817. height: math.unit(6, "feet"),
  51818. name: "Back",
  51819. image: {
  51820. source: "./media/characters/roselle-st-papier/back.svg",
  51821. extra: 1491/1296,
  51822. bottom: 23/1514
  51823. }
  51824. },
  51825. ear: {
  51826. height: math.unit(1.26, "feet"),
  51827. name: "Ear",
  51828. image: {
  51829. source: "./media/characters/roselle-st-papier/ear.svg"
  51830. }
  51831. },
  51832. },
  51833. [
  51834. {
  51835. name: "Normal",
  51836. height: math.unit(150, "feet"),
  51837. default: true
  51838. },
  51839. ]
  51840. ))
  51841. characterMakers.push(() => makeCharacter(
  51842. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  51843. {
  51844. front: {
  51845. height: math.unit(1, "inches"),
  51846. name: "Front",
  51847. image: {
  51848. source: "./media/characters/valargent/front.svg",
  51849. extra: 1825/1694,
  51850. bottom: 62/1887
  51851. }
  51852. },
  51853. back: {
  51854. height: math.unit(1, "inches"),
  51855. name: "Back",
  51856. image: {
  51857. source: "./media/characters/valargent/back.svg",
  51858. extra: 1775/1682,
  51859. bottom: 88/1863
  51860. }
  51861. },
  51862. },
  51863. [
  51864. {
  51865. name: "Micro",
  51866. height: math.unit(1, "inch"),
  51867. default: true
  51868. },
  51869. ]
  51870. ))
  51871. characterMakers.push(() => makeCharacter(
  51872. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  51873. {
  51874. front: {
  51875. height: math.unit(3.4, "meters"),
  51876. name: "Front",
  51877. image: {
  51878. source: "./media/characters/zarina/front.svg",
  51879. extra: 1733/1425,
  51880. bottom: 93/1826
  51881. }
  51882. },
  51883. squatting: {
  51884. height: math.unit(2.14, "meters"),
  51885. name: "Squatting",
  51886. image: {
  51887. source: "./media/characters/zarina/squatting.svg",
  51888. extra: 1073/788,
  51889. bottom: 63/1136
  51890. }
  51891. },
  51892. back: {
  51893. height: math.unit(2.14, "meters"),
  51894. name: "Back",
  51895. image: {
  51896. source: "./media/characters/zarina/back.svg",
  51897. extra: 1128/885,
  51898. bottom: 0/1128
  51899. }
  51900. },
  51901. },
  51902. [
  51903. {
  51904. name: "Normal",
  51905. height: math.unit(3.4, "meters"),
  51906. default: true
  51907. },
  51908. {
  51909. name: "Big",
  51910. height: math.unit(5, "meters")
  51911. },
  51912. {
  51913. name: "Macro",
  51914. height: math.unit(110, "meters")
  51915. },
  51916. ]
  51917. ))
  51918. characterMakers.push(() => makeCharacter(
  51919. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  51920. {
  51921. front: {
  51922. height: math.unit(7, "feet"),
  51923. name: "Front",
  51924. image: {
  51925. source: "./media/characters/ventus-astro-fox/front.svg",
  51926. extra: 1792/1623,
  51927. bottom: 28/1820
  51928. }
  51929. },
  51930. back: {
  51931. height: math.unit(7, "feet"),
  51932. name: "Back",
  51933. image: {
  51934. source: "./media/characters/ventus-astro-fox/back.svg",
  51935. extra: 1789/1620,
  51936. bottom: 31/1820
  51937. }
  51938. },
  51939. outfit: {
  51940. height: math.unit(7, "feet"),
  51941. name: "Outfit",
  51942. image: {
  51943. source: "./media/characters/ventus-astro-fox/outfit.svg",
  51944. extra: 1054/925,
  51945. bottom: 15/1069
  51946. }
  51947. },
  51948. head: {
  51949. height: math.unit(1.12, "feet"),
  51950. name: "Head",
  51951. image: {
  51952. source: "./media/characters/ventus-astro-fox/head.svg",
  51953. extra: 866/504,
  51954. bottom: 0/866
  51955. }
  51956. },
  51957. hand: {
  51958. height: math.unit(1, "feet"),
  51959. name: "Hand",
  51960. image: {
  51961. source: "./media/characters/ventus-astro-fox/hand.svg"
  51962. }
  51963. },
  51964. paw: {
  51965. height: math.unit(1.5, "feet"),
  51966. name: "Paw",
  51967. image: {
  51968. source: "./media/characters/ventus-astro-fox/paw.svg"
  51969. }
  51970. },
  51971. },
  51972. [
  51973. {
  51974. name: "Normal",
  51975. height: math.unit(7, "feet"),
  51976. default: true
  51977. },
  51978. {
  51979. name: "Macro",
  51980. height: math.unit(200, "feet")
  51981. },
  51982. {
  51983. name: "Cosmic",
  51984. height: math.unit(3, "universes")
  51985. },
  51986. ]
  51987. ))
  51988. characterMakers.push(() => makeCharacter(
  51989. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  51990. {
  51991. front: {
  51992. height: math.unit(3, "meters"),
  51993. weight: math.unit(7000, "lb"),
  51994. name: "Front",
  51995. image: {
  51996. source: "./media/characters/core-t/front.svg",
  51997. extra: 5729/4941,
  51998. bottom: 1129/6858
  51999. }
  52000. },
  52001. },
  52002. [
  52003. {
  52004. name: "Big",
  52005. height: math.unit(3, "meters"),
  52006. default: true
  52007. },
  52008. ]
  52009. ))
  52010. characterMakers.push(() => makeCharacter(
  52011. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  52012. {
  52013. normal: {
  52014. height: math.unit(6 + 6/12, "feet"),
  52015. weight: math.unit(275, "lb"),
  52016. name: "Front",
  52017. image: {
  52018. source: "./media/characters/cadbunny/normal.svg",
  52019. extra: 1129/947,
  52020. bottom: 93/1222
  52021. },
  52022. default: true,
  52023. form: "normal"
  52024. },
  52025. gigantamax: {
  52026. height: math.unit(26, "feet"),
  52027. weight: math.unit(16000, "lb"),
  52028. name: "Front",
  52029. image: {
  52030. source: "./media/characters/cadbunny/gigantamax.svg",
  52031. extra: 1133/944,
  52032. bottom: 90/1223
  52033. },
  52034. default: true,
  52035. form: "gigantamax"
  52036. },
  52037. },
  52038. [
  52039. {
  52040. name: "Normal",
  52041. height: math.unit(6 + 6/12, "feet"),
  52042. default: true,
  52043. form: "normal"
  52044. },
  52045. {
  52046. name: "Small",
  52047. height: math.unit(26, "feet"),
  52048. default: true,
  52049. form: "gigantamax"
  52050. },
  52051. {
  52052. name: "Large",
  52053. height: math.unit(78, "feet"),
  52054. form: "gigantamax"
  52055. },
  52056. ],
  52057. {
  52058. "normal": {
  52059. name: "Normal",
  52060. default: true
  52061. },
  52062. "gigantamax": {
  52063. name: "Gigantamax"
  52064. }
  52065. }
  52066. ))
  52067. characterMakers.push(() => makeCharacter(
  52068. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  52069. {
  52070. anthroFront: {
  52071. height: math.unit(8, "feet"),
  52072. weight: math.unit(300, "lb"),
  52073. name: "Front",
  52074. image: {
  52075. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  52076. extra: 1272/1176,
  52077. bottom: 53/1325
  52078. },
  52079. form: "anthro",
  52080. default: true
  52081. },
  52082. feralSide: {
  52083. height: math.unit(4, "feet"),
  52084. weight: math.unit(250, "lb"),
  52085. name: "Side",
  52086. image: {
  52087. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  52088. extra: 731/621,
  52089. bottom: 0/731
  52090. },
  52091. form: "feral",
  52092. default: true
  52093. },
  52094. },
  52095. [
  52096. {
  52097. name: "Regular",
  52098. height: math.unit(8, "feet"),
  52099. form: "anthro"
  52100. },
  52101. {
  52102. name: "Macro",
  52103. height: math.unit(250, "feet"),
  52104. form: "anthro",
  52105. default: true
  52106. },
  52107. {
  52108. name: "Regular",
  52109. height: math.unit(4, "feet"),
  52110. form: "feral"
  52111. },
  52112. {
  52113. name: "Macro",
  52114. height: math.unit(125, "feet"),
  52115. form: "feral",
  52116. default: true
  52117. },
  52118. ],
  52119. {
  52120. "anthro": {
  52121. name: "Anthro",
  52122. default: true
  52123. },
  52124. "feral": {
  52125. name: "Feral",
  52126. },
  52127. }
  52128. ))
  52129. characterMakers.push(() => makeCharacter(
  52130. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  52131. {
  52132. front: {
  52133. height: math.unit(11 + 10/12, "feet"),
  52134. weight: math.unit(1587, "kg"),
  52135. name: "Front",
  52136. image: {
  52137. source: "./media/characters/maple-javira-dragon/front.svg",
  52138. extra: 1136/744,
  52139. bottom: 73/1209
  52140. }
  52141. },
  52142. side: {
  52143. height: math.unit(11 + 10/12, "feet"),
  52144. weight: math.unit(1587, "kg"),
  52145. name: "Side",
  52146. image: {
  52147. source: "./media/characters/maple-javira-dragon/side.svg",
  52148. extra: 712/505,
  52149. bottom: 17/729
  52150. }
  52151. },
  52152. head: {
  52153. height: math.unit(8.05, "feet"),
  52154. name: "Head",
  52155. image: {
  52156. source: "./media/characters/maple-javira-dragon/head.svg",
  52157. extra: 1420/1344,
  52158. bottom: 0/1420
  52159. }
  52160. },
  52161. },
  52162. [
  52163. {
  52164. name: "Normal",
  52165. height: math.unit(11 + 10/12, "feet"),
  52166. default: true
  52167. },
  52168. ]
  52169. ))
  52170. characterMakers.push(() => makeCharacter(
  52171. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  52172. {
  52173. front: {
  52174. height: math.unit(117, "cm"),
  52175. weight: math.unit(50, "kg"),
  52176. name: "Front",
  52177. image: {
  52178. source: "./media/characters/sonia-wyverntail/front.svg",
  52179. extra: 708/592,
  52180. bottom: 25/733
  52181. }
  52182. },
  52183. },
  52184. [
  52185. {
  52186. name: "Normal",
  52187. height: math.unit(117, "cm"),
  52188. default: true
  52189. },
  52190. ]
  52191. ))
  52192. characterMakers.push(() => makeCharacter(
  52193. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  52194. {
  52195. front: {
  52196. height: math.unit(6 + 5/12, "feet"),
  52197. name: "Front",
  52198. image: {
  52199. source: "./media/characters/micah/front.svg",
  52200. extra: 1758/1546,
  52201. bottom: 214/1972
  52202. }
  52203. },
  52204. },
  52205. [
  52206. {
  52207. name: "Normal",
  52208. height: math.unit(6 + 5/12, "feet"),
  52209. default: true
  52210. },
  52211. ]
  52212. ))
  52213. characterMakers.push(() => makeCharacter(
  52214. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  52215. {
  52216. front: {
  52217. height: math.unit(1.75, "meters"),
  52218. weight: math.unit(100, "kg"),
  52219. name: "Front",
  52220. image: {
  52221. source: "./media/characters/zarya/front.svg",
  52222. extra: 741/735,
  52223. bottom: 44/785
  52224. },
  52225. extraAttributes: {
  52226. "tailLength": {
  52227. name: "Tail Length",
  52228. power: 1,
  52229. type: "length",
  52230. base: math.unit(180, "cm")
  52231. },
  52232. "pawLength": {
  52233. name: "Paw Length",
  52234. power: 1,
  52235. type: "length",
  52236. base: math.unit(31, "cm")
  52237. },
  52238. }
  52239. },
  52240. side: {
  52241. height: math.unit(1.75, "meters"),
  52242. weight: math.unit(100, "kg"),
  52243. name: "Side",
  52244. image: {
  52245. source: "./media/characters/zarya/side.svg",
  52246. extra: 776/770,
  52247. bottom: 17/793
  52248. },
  52249. extraAttributes: {
  52250. "tailLength": {
  52251. name: "Tail Length",
  52252. power: 1,
  52253. type: "length",
  52254. base: math.unit(180, "cm")
  52255. },
  52256. "pawLength": {
  52257. name: "Paw Length",
  52258. power: 1,
  52259. type: "length",
  52260. base: math.unit(31, "cm")
  52261. },
  52262. }
  52263. },
  52264. back: {
  52265. height: math.unit(1.75, "meters"),
  52266. weight: math.unit(100, "kg"),
  52267. name: "Back",
  52268. image: {
  52269. source: "./media/characters/zarya/back.svg",
  52270. extra: 741/735,
  52271. bottom: 44/785
  52272. },
  52273. extraAttributes: {
  52274. "tailLength": {
  52275. name: "Tail Length",
  52276. power: 1,
  52277. type: "length",
  52278. base: math.unit(180, "cm")
  52279. },
  52280. "pawLength": {
  52281. name: "Paw Length",
  52282. power: 1,
  52283. type: "length",
  52284. base: math.unit(31, "cm")
  52285. },
  52286. }
  52287. },
  52288. frontNoTail: {
  52289. height: math.unit(1.75, "meters"),
  52290. weight: math.unit(100, "kg"),
  52291. name: "Front (No Tail)",
  52292. image: {
  52293. source: "./media/characters/zarya/front-no-tail.svg",
  52294. extra: 741/735,
  52295. bottom: 44/785
  52296. },
  52297. extraAttributes: {
  52298. "tailLength": {
  52299. name: "Tail Length",
  52300. power: 1,
  52301. type: "length",
  52302. base: math.unit(180, "cm")
  52303. },
  52304. "pawLength": {
  52305. name: "Paw Length",
  52306. power: 1,
  52307. type: "length",
  52308. base: math.unit(31, "cm")
  52309. },
  52310. }
  52311. },
  52312. dressed: {
  52313. height: math.unit(1.75, "meters"),
  52314. weight: math.unit(100, "kg"),
  52315. name: "Dressed",
  52316. image: {
  52317. source: "./media/characters/zarya/dressed.svg",
  52318. extra: 683/672,
  52319. bottom: 79/762
  52320. },
  52321. extraAttributes: {
  52322. "tailLength": {
  52323. name: "Tail Length",
  52324. power: 1,
  52325. type: "length",
  52326. base: math.unit(180, "cm")
  52327. },
  52328. "pawLength": {
  52329. name: "Paw Length",
  52330. power: 1,
  52331. type: "length",
  52332. base: math.unit(31, "cm")
  52333. },
  52334. }
  52335. },
  52336. },
  52337. [
  52338. {
  52339. name: "Micro",
  52340. height: math.unit(5, "cm")
  52341. },
  52342. {
  52343. name: "Normal",
  52344. height: math.unit(1.75, "meters"),
  52345. default: true
  52346. },
  52347. {
  52348. name: "Macro",
  52349. height: math.unit(122, "meters")
  52350. },
  52351. ]
  52352. ))
  52353. characterMakers.push(() => makeCharacter(
  52354. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  52355. {
  52356. front: {
  52357. height: math.unit(7.5, "feet"),
  52358. name: "Front",
  52359. image: {
  52360. source: "./media/characters/sven-hatisson/front.svg",
  52361. extra: 917/857,
  52362. bottom: 42/959
  52363. }
  52364. },
  52365. back: {
  52366. height: math.unit(7.5, "feet"),
  52367. name: "Back",
  52368. image: {
  52369. source: "./media/characters/sven-hatisson/back.svg",
  52370. extra: 903/856,
  52371. bottom: 15/918
  52372. }
  52373. },
  52374. },
  52375. [
  52376. {
  52377. name: "Base Height",
  52378. height: math.unit(7.5, "feet")
  52379. },
  52380. {
  52381. name: "Usual Height",
  52382. height: math.unit(13.5, "feet"),
  52383. default: true
  52384. },
  52385. {
  52386. name: "Smaller Macro",
  52387. height: math.unit(85, "feet")
  52388. },
  52389. {
  52390. name: "Moderate Macro",
  52391. height: math.unit(320, "feet")
  52392. },
  52393. {
  52394. name: "Large Macro",
  52395. height: math.unit(1000, "feet")
  52396. },
  52397. {
  52398. name: "Largest Size",
  52399. height: math.unit(2, "miles")
  52400. },
  52401. ]
  52402. ))
  52403. characterMakers.push(() => makeCharacter(
  52404. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  52405. {
  52406. side: {
  52407. height: math.unit(1.8, "meters"),
  52408. weight: math.unit(275, "kg"),
  52409. name: "Side",
  52410. image: {
  52411. source: "./media/characters/terra/side.svg",
  52412. extra: 1273/1147,
  52413. bottom: 0/1273
  52414. }
  52415. },
  52416. },
  52417. [
  52418. {
  52419. name: "Normal",
  52420. height: math.unit(16.2, "meters"),
  52421. default: true
  52422. },
  52423. ]
  52424. ))
  52425. characterMakers.push(() => makeCharacter(
  52426. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  52427. {
  52428. borzoiFront: {
  52429. height: math.unit(6 + 9/12, "feet"),
  52430. name: "Front",
  52431. image: {
  52432. source: "./media/characters/rae/borzoi-front.svg",
  52433. extra: 1161/1098,
  52434. bottom: 31/1192
  52435. },
  52436. form: "borzoi",
  52437. default: true
  52438. },
  52439. werewolfFront: {
  52440. height: math.unit(8 + 7/12, "feet"),
  52441. name: "Front",
  52442. image: {
  52443. source: "./media/characters/rae/werewolf-front.svg",
  52444. extra: 1411/1334,
  52445. bottom: 127/1538
  52446. },
  52447. form: "werewolf",
  52448. default: true
  52449. },
  52450. },
  52451. [
  52452. {
  52453. name: "Normal",
  52454. height: math.unit(6 + 9/12, "feet"),
  52455. default: true,
  52456. form: "borzoi"
  52457. },
  52458. {
  52459. name: "Normal",
  52460. height: math.unit(8 + 7/12, "feet"),
  52461. default: true,
  52462. form: "werewolf"
  52463. },
  52464. ],
  52465. {
  52466. "borzoi": {
  52467. name: "Borzoi",
  52468. default: true
  52469. },
  52470. "werewolf": {
  52471. name: "Werewolf",
  52472. },
  52473. }
  52474. ))
  52475. characterMakers.push(() => makeCharacter(
  52476. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  52477. {
  52478. front: {
  52479. height: math.unit(8 + 7/12, "feet"),
  52480. weight: math.unit(482, "lb"),
  52481. name: "Front",
  52482. image: {
  52483. source: "./media/characters/kit/front.svg",
  52484. extra: 1247/1103,
  52485. bottom: 41/1288
  52486. }
  52487. },
  52488. back: {
  52489. height: math.unit(8 + 7/12, "feet"),
  52490. weight: math.unit(482, "lb"),
  52491. name: "Back",
  52492. image: {
  52493. source: "./media/characters/kit/back.svg",
  52494. extra: 1252/1123,
  52495. bottom: 21/1273
  52496. }
  52497. },
  52498. paw: {
  52499. height: math.unit(1.46, "feet"),
  52500. name: "Paw",
  52501. image: {
  52502. source: "./media/characters/kit/paw.svg"
  52503. }
  52504. },
  52505. },
  52506. [
  52507. {
  52508. name: "Normal",
  52509. height: math.unit(2.61, "meters"),
  52510. default: true
  52511. },
  52512. {
  52513. name: "\"Tall\"",
  52514. height: math.unit(8.21, "meters")
  52515. },
  52516. {
  52517. name: "Tall",
  52518. height: math.unit(19.6, "meters")
  52519. },
  52520. {
  52521. name: "Very Tall",
  52522. height: math.unit(57.91, "meters")
  52523. },
  52524. {
  52525. name: "Semi-Macro",
  52526. height: math.unit(138.64, "meters")
  52527. },
  52528. {
  52529. name: "Macro",
  52530. height: math.unit(831.99, "meters")
  52531. },
  52532. {
  52533. name: "EX-Macro",
  52534. height: math.unit(96451121, "meters")
  52535. },
  52536. {
  52537. name: "S1-Omnipotent",
  52538. height: math.unit(4.42074e+9, "meters")
  52539. },
  52540. {
  52541. name: "S2-Omnipotent",
  52542. height: math.unit(9.42074e+17, "meters")
  52543. },
  52544. {
  52545. name: "Omnipotent",
  52546. height: math.unit(4.23112e+24, "meters")
  52547. },
  52548. {
  52549. name: "Hypergod",
  52550. height: math.unit(5.05176e+27, "meters")
  52551. },
  52552. {
  52553. name: "Hypergod-EX",
  52554. height: math.unit(9.45532e+49, "meters")
  52555. },
  52556. {
  52557. name: "Hypergod-SP",
  52558. height: math.unit(9.45532e+195, "meters")
  52559. },
  52560. ]
  52561. ))
  52562. characterMakers.push(() => makeCharacter(
  52563. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  52564. {
  52565. side: {
  52566. height: math.unit(0.6, "meters"),
  52567. weight: math.unit(24, "kg"),
  52568. name: "Side",
  52569. image: {
  52570. source: "./media/characters/celeste/side.svg",
  52571. extra: 810/517,
  52572. bottom: 53/863
  52573. }
  52574. },
  52575. },
  52576. [
  52577. {
  52578. name: "Velociraptor",
  52579. height: math.unit(0.6, "meters"),
  52580. default: true
  52581. },
  52582. {
  52583. name: "Utahraptor",
  52584. height: math.unit(1.8, "meters")
  52585. },
  52586. {
  52587. name: "Gallimimus",
  52588. height: math.unit(4.0, "meters")
  52589. },
  52590. {
  52591. name: "Large",
  52592. height: math.unit(20, "meters")
  52593. },
  52594. {
  52595. name: "Planetary",
  52596. height: math.unit(50, "megameters")
  52597. },
  52598. {
  52599. name: "Stellar",
  52600. height: math.unit(1.5, "gigameters")
  52601. },
  52602. {
  52603. name: "Galactic",
  52604. height: math.unit(100, "exameters")
  52605. },
  52606. ]
  52607. ))
  52608. characterMakers.push(() => makeCharacter(
  52609. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  52610. {
  52611. front: {
  52612. height: math.unit(6, "feet"),
  52613. weight: math.unit(210, "lb"),
  52614. name: "Front",
  52615. image: {
  52616. source: "./media/characters/glacia/front.svg",
  52617. extra: 958/901,
  52618. bottom: 45/1003
  52619. }
  52620. },
  52621. },
  52622. [
  52623. {
  52624. name: "Macro",
  52625. height: math.unit(1000, "meters"),
  52626. default: true
  52627. },
  52628. ]
  52629. ))
  52630. characterMakers.push(() => makeCharacter(
  52631. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  52632. {
  52633. front: {
  52634. height: math.unit(4, "meters"),
  52635. name: "Front",
  52636. image: {
  52637. source: "./media/characters/giri/front.svg",
  52638. extra: 966/894,
  52639. bottom: 21/987
  52640. }
  52641. },
  52642. },
  52643. [
  52644. {
  52645. name: "Normal",
  52646. height: math.unit(4, "meters"),
  52647. default: true
  52648. },
  52649. ]
  52650. ))
  52651. characterMakers.push(() => makeCharacter(
  52652. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  52653. {
  52654. back: {
  52655. height: math.unit(4, "feet"),
  52656. weight: math.unit(37, "lb"),
  52657. name: "Back",
  52658. image: {
  52659. source: "./media/characters/tin/back.svg",
  52660. extra: 845/780,
  52661. bottom: 28/873
  52662. }
  52663. },
  52664. },
  52665. [
  52666. {
  52667. name: "Normal",
  52668. height: math.unit(4, "feet"),
  52669. default: true
  52670. },
  52671. ]
  52672. ))
  52673. characterMakers.push(() => makeCharacter(
  52674. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  52675. {
  52676. front: {
  52677. height: math.unit(25, "feet"),
  52678. name: "Front",
  52679. image: {
  52680. source: "./media/characters/cadenza-vivace/front.svg",
  52681. extra: 1842/1578,
  52682. bottom: 30/1872
  52683. }
  52684. },
  52685. },
  52686. [
  52687. {
  52688. name: "Macro",
  52689. height: math.unit(25, "feet"),
  52690. default: true
  52691. },
  52692. ]
  52693. ))
  52694. characterMakers.push(() => makeCharacter(
  52695. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  52696. {
  52697. front: {
  52698. height: math.unit(10, "feet"),
  52699. weight: math.unit(625, "kg"),
  52700. name: "Front",
  52701. image: {
  52702. source: "./media/characters/zain/front.svg",
  52703. extra: 1682/1498,
  52704. bottom: 223/1905
  52705. }
  52706. },
  52707. back: {
  52708. height: math.unit(10, "feet"),
  52709. weight: math.unit(625, "kg"),
  52710. name: "Back",
  52711. image: {
  52712. source: "./media/characters/zain/back.svg",
  52713. extra: 1814/1657,
  52714. bottom: 152/1966
  52715. }
  52716. },
  52717. head: {
  52718. height: math.unit(10, "feet"),
  52719. weight: math.unit(625, "kg"),
  52720. name: "Head",
  52721. image: {
  52722. source: "./media/characters/zain/head.svg",
  52723. extra: 1059/762,
  52724. bottom: 0/1059
  52725. }
  52726. },
  52727. },
  52728. [
  52729. {
  52730. name: "Normal",
  52731. height: math.unit(10, "feet"),
  52732. default: true
  52733. },
  52734. ]
  52735. ))
  52736. characterMakers.push(() => makeCharacter(
  52737. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  52738. {
  52739. front: {
  52740. height: math.unit(6 + 5/12, "feet"),
  52741. weight: math.unit(750, "lb"),
  52742. name: "Front",
  52743. image: {
  52744. source: "./media/characters/ruchex/front.svg",
  52745. extra: 877/820,
  52746. bottom: 17/894
  52747. },
  52748. extraAttributes: {
  52749. "width": {
  52750. name: "Width",
  52751. power: 1,
  52752. type: "length",
  52753. base: math.unit(4.757, "feet")
  52754. },
  52755. }
  52756. },
  52757. },
  52758. [
  52759. {
  52760. name: "Normal",
  52761. height: math.unit(6 + 5/12, "feet"),
  52762. default: true
  52763. },
  52764. ]
  52765. ))
  52766. characterMakers.push(() => makeCharacter(
  52767. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  52768. {
  52769. dressedFront: {
  52770. height: math.unit(191, "cm"),
  52771. weight: math.unit(80, "kg"),
  52772. name: "Front",
  52773. image: {
  52774. source: "./media/characters/buster/dressed-front.svg",
  52775. extra: 1022/973,
  52776. bottom: 69/1091
  52777. }
  52778. },
  52779. dressedBack: {
  52780. height: math.unit(191, "cm"),
  52781. weight: math.unit(80, "kg"),
  52782. name: "Back",
  52783. image: {
  52784. source: "./media/characters/buster/dressed-back.svg",
  52785. extra: 1018/970,
  52786. bottom: 55/1073
  52787. }
  52788. },
  52789. nudeFront: {
  52790. height: math.unit(191, "cm"),
  52791. weight: math.unit(80, "kg"),
  52792. name: "Front (Nude)",
  52793. image: {
  52794. source: "./media/characters/buster/nude-front.svg",
  52795. extra: 1022/973,
  52796. bottom: 69/1091
  52797. }
  52798. },
  52799. nudeBack: {
  52800. height: math.unit(191, "cm"),
  52801. weight: math.unit(80, "kg"),
  52802. name: "Back (Nude)",
  52803. image: {
  52804. source: "./media/characters/buster/nude-back.svg",
  52805. extra: 1018/970,
  52806. bottom: 55/1073
  52807. }
  52808. },
  52809. dick: {
  52810. height: math.unit(2.59, "feet"),
  52811. name: "Dick",
  52812. image: {
  52813. source: "./media/characters/buster/dick.svg"
  52814. }
  52815. },
  52816. ass: {
  52817. height: math.unit(1.2, "feet"),
  52818. name: "Ass",
  52819. image: {
  52820. source: "./media/characters/buster/ass.svg"
  52821. }
  52822. },
  52823. },
  52824. [
  52825. {
  52826. name: "Normal",
  52827. height: math.unit(191, "cm"),
  52828. default: true
  52829. },
  52830. ]
  52831. ))
  52832. characterMakers.push(() => makeCharacter(
  52833. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  52834. {
  52835. side: {
  52836. height: math.unit(8.1, "feet"),
  52837. weight: math.unit(3500, "lb"),
  52838. name: "Side",
  52839. image: {
  52840. source: "./media/characters/sonya/side.svg",
  52841. extra: 1730/1317,
  52842. bottom: 86/1816
  52843. }
  52844. },
  52845. },
  52846. [
  52847. {
  52848. name: "Normal",
  52849. height: math.unit(8.1, "feet"),
  52850. default: true
  52851. },
  52852. ]
  52853. ))
  52854. characterMakers.push(() => makeCharacter(
  52855. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  52856. {
  52857. front: {
  52858. height: math.unit(6, "feet"),
  52859. weight: math.unit(150, "lb"),
  52860. name: "Front",
  52861. image: {
  52862. source: "./media/characters/cadence-andrysiak/front.svg",
  52863. extra: 1164/1121,
  52864. bottom: 60/1224
  52865. }
  52866. },
  52867. back: {
  52868. height: math.unit(6, "feet"),
  52869. weight: math.unit(150, "lb"),
  52870. name: "Back",
  52871. image: {
  52872. source: "./media/characters/cadence-andrysiak/back.svg",
  52873. extra: 1200/1165,
  52874. bottom: 9/1209
  52875. }
  52876. },
  52877. dressed: {
  52878. height: math.unit(6, "feet"),
  52879. weight: math.unit(150, "lb"),
  52880. name: "Dressed",
  52881. image: {
  52882. source: "./media/characters/cadence-andrysiak/dressed.svg",
  52883. extra: 1164/1121,
  52884. bottom: 60/1224
  52885. }
  52886. },
  52887. },
  52888. [
  52889. {
  52890. name: "Micro",
  52891. height: math.unit(1, "mm")
  52892. },
  52893. {
  52894. name: "Normal",
  52895. height: math.unit(6, "feet"),
  52896. default: true
  52897. },
  52898. ]
  52899. ))
  52900. characterMakers.push(() => makeCharacter(
  52901. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  52902. {
  52903. front: {
  52904. height: math.unit(60, "inches"),
  52905. weight: math.unit(16, "lb"),
  52906. preyCapacity: math.unit(80, "liters"),
  52907. name: "Front",
  52908. image: {
  52909. source: "./media/characters/penny-lynx/front.svg",
  52910. extra: 1959/1769,
  52911. bottom: 49/2008
  52912. }
  52913. },
  52914. },
  52915. [
  52916. {
  52917. name: "Nokia",
  52918. height: math.unit(2, "inches")
  52919. },
  52920. {
  52921. name: "Desktop",
  52922. height: math.unit(24, "inches")
  52923. },
  52924. {
  52925. name: "TV",
  52926. height: math.unit(60, "inches")
  52927. },
  52928. {
  52929. name: "Jumbotron",
  52930. height: math.unit(12, "feet")
  52931. },
  52932. {
  52933. name: "Billboard",
  52934. height: math.unit(48, "feet"),
  52935. default: true
  52936. },
  52937. {
  52938. name: "IMAX",
  52939. height: math.unit(96, "feet")
  52940. },
  52941. {
  52942. name: "SINGULARITY",
  52943. height: math.unit(864938, "miles")
  52944. },
  52945. ]
  52946. ))
  52947. characterMakers.push(() => makeCharacter(
  52948. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  52949. {
  52950. front: {
  52951. height: math.unit(5 + 4/12, "feet"),
  52952. weight: math.unit(230, "lb"),
  52953. name: "Front",
  52954. image: {
  52955. source: "./media/characters/sukebe/front.svg",
  52956. extra: 2130/2038,
  52957. bottom: 90/2220
  52958. }
  52959. },
  52960. back: {
  52961. height: math.unit(3.48, "feet"),
  52962. weight: math.unit(230, "lb"),
  52963. name: "Back",
  52964. image: {
  52965. source: "./media/characters/sukebe/back.svg",
  52966. extra: 1670/1604,
  52967. bottom: 0/1670
  52968. }
  52969. },
  52970. },
  52971. [
  52972. {
  52973. name: "Normal",
  52974. height: math.unit(5 + 4/12, "feet"),
  52975. default: true
  52976. },
  52977. ]
  52978. ))
  52979. characterMakers.push(() => makeCharacter(
  52980. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  52981. {
  52982. front: {
  52983. height: math.unit(6, "feet"),
  52984. name: "Front",
  52985. image: {
  52986. source: "./media/characters/nylla/front.svg",
  52987. extra: 1868/1699,
  52988. bottom: 97/1965
  52989. }
  52990. },
  52991. back: {
  52992. height: math.unit(6, "feet"),
  52993. name: "Back",
  52994. image: {
  52995. source: "./media/characters/nylla/back.svg",
  52996. extra: 1889/1712,
  52997. bottom: 93/1982
  52998. }
  52999. },
  53000. frontNsfw: {
  53001. height: math.unit(6, "feet"),
  53002. name: "Front (NSFW)",
  53003. image: {
  53004. source: "./media/characters/nylla/front-nsfw.svg",
  53005. extra: 1868/1699,
  53006. bottom: 97/1965
  53007. },
  53008. extraAttributes: {
  53009. "dickLength": {
  53010. name: "Dick Length",
  53011. power: 1,
  53012. type: "length",
  53013. base: math.unit(1.4, "feet")
  53014. },
  53015. "cumVolume": {
  53016. name: "Cum Volume",
  53017. power: 3,
  53018. type: "volume",
  53019. base: math.unit(100, "mL")
  53020. },
  53021. }
  53022. },
  53023. backNsfw: {
  53024. height: math.unit(6, "feet"),
  53025. name: "Back (NSFW)",
  53026. image: {
  53027. source: "./media/characters/nylla/back-nsfw.svg",
  53028. extra: 1889/1712,
  53029. bottom: 93/1982
  53030. }
  53031. },
  53032. maw: {
  53033. height: math.unit(2.10, "feet"),
  53034. name: "Maw",
  53035. image: {
  53036. source: "./media/characters/nylla/maw.svg"
  53037. }
  53038. },
  53039. paws: {
  53040. height: math.unit(2.06, "feet"),
  53041. name: "Paws",
  53042. image: {
  53043. source: "./media/characters/nylla/paws.svg"
  53044. }
  53045. },
  53046. muzzle: {
  53047. height: math.unit(0.61, "feet"),
  53048. name: "Muzzle",
  53049. image: {
  53050. source: "./media/characters/nylla/muzzle.svg"
  53051. }
  53052. },
  53053. sheath: {
  53054. height: math.unit(1.305, "feet"),
  53055. name: "Sheath",
  53056. image: {
  53057. source: "./media/characters/nylla/sheath.svg"
  53058. }
  53059. },
  53060. },
  53061. [
  53062. {
  53063. name: "Micro",
  53064. height: math.unit(7.5, "inches")
  53065. },
  53066. {
  53067. name: "Normal",
  53068. height: math.unit(7, "feet"),
  53069. default: true
  53070. },
  53071. {
  53072. name: "Macro",
  53073. height: math.unit(60, "feet")
  53074. },
  53075. {
  53076. name: "Mega",
  53077. height: math.unit(200, "feet")
  53078. },
  53079. ]
  53080. ))
  53081. characterMakers.push(() => makeCharacter(
  53082. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  53083. {
  53084. front: {
  53085. height: math.unit(10, "feet"),
  53086. weight: math.unit(2300, "lb"),
  53087. name: "Front",
  53088. image: {
  53089. source: "./media/characters/hunt3r/front.svg",
  53090. extra: 1909/1742,
  53091. bottom: 46/1955
  53092. }
  53093. },
  53094. },
  53095. [
  53096. {
  53097. name: "Normal",
  53098. height: math.unit(10, "feet"),
  53099. default: true
  53100. },
  53101. ]
  53102. ))
  53103. characterMakers.push(() => makeCharacter(
  53104. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  53105. {
  53106. dressed: {
  53107. height: math.unit(11, "feet"),
  53108. weight: math.unit(18500, "lb"),
  53109. preyCapacity: math.unit(9, "people"),
  53110. name: "Dressed",
  53111. image: {
  53112. source: "./media/characters/cylphis/dressed.svg",
  53113. extra: 1028/1003,
  53114. bottom: 75/1103
  53115. },
  53116. },
  53117. undressed: {
  53118. height: math.unit(11, "feet"),
  53119. weight: math.unit(18500, "lb"),
  53120. preyCapacity: math.unit(9, "people"),
  53121. name: "Undressed",
  53122. image: {
  53123. source: "./media/characters/cylphis/undressed.svg",
  53124. extra: 1028/1003,
  53125. bottom: 75/1103
  53126. }
  53127. },
  53128. full: {
  53129. height: math.unit(11, "feet"),
  53130. weight: math.unit(18500 + 150*9, "lb"),
  53131. preyCapacity: math.unit(9, "people"),
  53132. name: "Full",
  53133. image: {
  53134. source: "./media/characters/cylphis/full.svg",
  53135. extra: 1028/1003,
  53136. bottom: 75/1103
  53137. }
  53138. },
  53139. },
  53140. [
  53141. {
  53142. name: "Small",
  53143. height: math.unit(8, "feet")
  53144. },
  53145. {
  53146. name: "Normal",
  53147. height: math.unit(11, "feet"),
  53148. default: true
  53149. },
  53150. ]
  53151. ))
  53152. characterMakers.push(() => makeCharacter(
  53153. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  53154. {
  53155. front: {
  53156. height: math.unit(2 + 7/12, "feet"),
  53157. name: "Front",
  53158. image: {
  53159. source: "./media/characters/orishan/front.svg",
  53160. extra: 1058/1023,
  53161. bottom: 23/1081
  53162. }
  53163. },
  53164. back: {
  53165. height: math.unit(2 + 7/12, "feet"),
  53166. name: "Back",
  53167. image: {
  53168. source: "./media/characters/orishan/back.svg",
  53169. extra: 1058/1023,
  53170. bottom: 23/1081
  53171. }
  53172. },
  53173. },
  53174. [
  53175. {
  53176. name: "Micro",
  53177. height: math.unit(2, "cm")
  53178. },
  53179. {
  53180. name: "Normal",
  53181. height: math.unit(2 + 7/12, "feet"),
  53182. default: true
  53183. },
  53184. ]
  53185. ))
  53186. characterMakers.push(() => makeCharacter(
  53187. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  53188. {
  53189. front: {
  53190. height: math.unit(3, "meters"),
  53191. weight: math.unit(508, "kg"),
  53192. name: "Front",
  53193. image: {
  53194. source: "./media/characters/seranis/front.svg",
  53195. extra: 1478/1454,
  53196. bottom: 41/1519
  53197. }
  53198. },
  53199. },
  53200. [
  53201. {
  53202. name: "Normal",
  53203. height: math.unit(3, "meters"),
  53204. default: true
  53205. },
  53206. {
  53207. name: "Macro",
  53208. height: math.unit(108, "meters")
  53209. },
  53210. {
  53211. name: "Megamacro",
  53212. height: math.unit(1250, "meters")
  53213. },
  53214. ]
  53215. ))
  53216. characterMakers.push(() => makeCharacter(
  53217. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  53218. {
  53219. undressed: {
  53220. height: math.unit(5 + 3/12, "feet"),
  53221. name: "Undressed",
  53222. image: {
  53223. source: "./media/characters/ankou/undressed.svg",
  53224. extra: 1301/1213,
  53225. bottom: 87/1388
  53226. }
  53227. },
  53228. dressed: {
  53229. height: math.unit(5 + 3/12, "feet"),
  53230. name: "Dressed",
  53231. image: {
  53232. source: "./media/characters/ankou/dressed.svg",
  53233. extra: 1301/1213,
  53234. bottom: 87/1388
  53235. }
  53236. },
  53237. head: {
  53238. height: math.unit(1.61, "feet"),
  53239. name: "Head",
  53240. image: {
  53241. source: "./media/characters/ankou/head.svg"
  53242. }
  53243. },
  53244. },
  53245. [
  53246. {
  53247. name: "Normal",
  53248. height: math.unit(5 + 3/12, "feet"),
  53249. default: true
  53250. },
  53251. ]
  53252. ))
  53253. characterMakers.push(() => makeCharacter(
  53254. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  53255. {
  53256. side: {
  53257. height: math.unit(6 + 3/12, "feet"),
  53258. weight: math.unit(200, "kg"),
  53259. name: "Side",
  53260. image: {
  53261. source: "./media/characters/juniper-skunktaur/side.svg",
  53262. extra: 1574/1229,
  53263. bottom: 38/1612
  53264. }
  53265. },
  53266. front: {
  53267. height: math.unit(6 + 3/12, "feet"),
  53268. weight: math.unit(200, "kg"),
  53269. name: "Front",
  53270. image: {
  53271. source: "./media/characters/juniper-skunktaur/front.svg",
  53272. extra: 1337/1278,
  53273. bottom: 22/1359
  53274. }
  53275. },
  53276. back: {
  53277. height: math.unit(6 + 3/12, "feet"),
  53278. weight: math.unit(200, "kg"),
  53279. name: "Back",
  53280. image: {
  53281. source: "./media/characters/juniper-skunktaur/back.svg",
  53282. extra: 1618/1273,
  53283. bottom: 13/1631
  53284. }
  53285. },
  53286. top: {
  53287. height: math.unit(2.62, "feet"),
  53288. weight: math.unit(200, "kg"),
  53289. name: "Top",
  53290. image: {
  53291. source: "./media/characters/juniper-skunktaur/top.svg"
  53292. }
  53293. },
  53294. },
  53295. [
  53296. {
  53297. name: "Normal",
  53298. height: math.unit(6 + 3/12, "feet"),
  53299. default: true
  53300. },
  53301. ]
  53302. ))
  53303. characterMakers.push(() => makeCharacter(
  53304. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  53305. {
  53306. front: {
  53307. height: math.unit(20.5, "feet"),
  53308. name: "Front",
  53309. image: {
  53310. source: "./media/characters/rei/front.svg",
  53311. extra: 1349/1195,
  53312. bottom: 31/1380
  53313. }
  53314. },
  53315. back: {
  53316. height: math.unit(20.5, "feet"),
  53317. name: "Back",
  53318. image: {
  53319. source: "./media/characters/rei/back.svg",
  53320. extra: 1358/1204,
  53321. bottom: 22/1380
  53322. }
  53323. },
  53324. pawsDigi: {
  53325. height: math.unit(3.45, "feet"),
  53326. name: "Paws (Digi)",
  53327. image: {
  53328. source: "./media/characters/rei/paws-digi.svg"
  53329. }
  53330. },
  53331. pawsPlanti: {
  53332. height: math.unit(3.45, "feet"),
  53333. name: "Paws (Planti)",
  53334. image: {
  53335. source: "./media/characters/rei/paws-planti.svg"
  53336. }
  53337. },
  53338. },
  53339. [
  53340. {
  53341. name: "Normal",
  53342. height: math.unit(20.5, "feet"),
  53343. default: true
  53344. },
  53345. ]
  53346. ))
  53347. characterMakers.push(() => makeCharacter(
  53348. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  53349. {
  53350. front: {
  53351. height: math.unit(5 + 11/12, "feet"),
  53352. name: "Front",
  53353. image: {
  53354. source: "./media/characters/carina/front.svg",
  53355. extra: 1720/1449,
  53356. bottom: 14/1734
  53357. }
  53358. },
  53359. back: {
  53360. height: math.unit(5 + 11/12, "feet"),
  53361. name: "Back",
  53362. image: {
  53363. source: "./media/characters/carina/back.svg",
  53364. extra: 1493/1445,
  53365. bottom: 17/1510
  53366. }
  53367. },
  53368. paw: {
  53369. height: math.unit(0.92, "feet"),
  53370. name: "Paw",
  53371. image: {
  53372. source: "./media/characters/carina/paw.svg"
  53373. }
  53374. },
  53375. },
  53376. [
  53377. {
  53378. name: "Normal",
  53379. height: math.unit(5 + 11/12, "feet"),
  53380. default: true
  53381. },
  53382. ]
  53383. ))
  53384. characterMakers.push(() => makeCharacter(
  53385. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  53386. {
  53387. normal_front: {
  53388. height: math.unit(4.88, "meters"),
  53389. name: "Front",
  53390. image: {
  53391. source: "./media/characters/maya/normal-front.svg",
  53392. extra: 1222/1145,
  53393. bottom: 57/1279
  53394. },
  53395. form: "normal",
  53396. default: true
  53397. },
  53398. monstrous_front: {
  53399. height: math.unit(10, "meters"),
  53400. name: "Front",
  53401. image: {
  53402. source: "./media/characters/maya/monstrous-front.svg",
  53403. extra: 1523/1109,
  53404. bottom: 113/1636
  53405. },
  53406. form: "monstrous",
  53407. extraAttributes: {
  53408. "swallowSize": {
  53409. name: "Tailmaw Bite Size",
  53410. power: 3,
  53411. type: "volume",
  53412. base: math.unit(43000, "liters")
  53413. },
  53414. }
  53415. },
  53416. taur_front: {
  53417. height: math.unit(10, "meters"),
  53418. name: "Front",
  53419. image: {
  53420. source: "./media/characters/maya/taur-front.svg",
  53421. extra: 743/506,
  53422. bottom: 101/844
  53423. },
  53424. form: "taur",
  53425. },
  53426. },
  53427. [
  53428. {
  53429. name: "Normal",
  53430. height: math.unit(4.88, "meters"),
  53431. default: true,
  53432. form: "normal"
  53433. },
  53434. {
  53435. name: "Macro",
  53436. height: math.unit(38.1, "meters"),
  53437. form: "normal"
  53438. },
  53439. {
  53440. name: "Macro+",
  53441. height: math.unit(152.4, "meters"),
  53442. form: "normal"
  53443. },
  53444. {
  53445. name: "Macro++",
  53446. height: math.unit(16.09, "km"),
  53447. form: "normal"
  53448. },
  53449. {
  53450. name: "Mega-macro",
  53451. height: math.unit(700, "megameters"),
  53452. form: "normal"
  53453. },
  53454. {
  53455. name: "Satiated",
  53456. height: math.unit(10, "meters"),
  53457. default: true,
  53458. form: "monstrous"
  53459. },
  53460. {
  53461. name: "Hungry",
  53462. height: math.unit(75, "meters"),
  53463. form: "monstrous"
  53464. },
  53465. {
  53466. name: "Ravenous",
  53467. height: math.unit(500, "meters"),
  53468. form: "monstrous"
  53469. },
  53470. {
  53471. name: "\"Normal\"",
  53472. height: math.unit(10, "meters"),
  53473. form: "taur"
  53474. },
  53475. {
  53476. name: "Macro",
  53477. height: math.unit(50, "meters"),
  53478. form: "taur"
  53479. },
  53480. ],
  53481. {
  53482. "normal": {
  53483. name: "Normal",
  53484. default: true
  53485. },
  53486. "monstrous": {
  53487. name: "Monstrous",
  53488. },
  53489. "taur": {
  53490. name: "Taur",
  53491. },
  53492. }
  53493. ))
  53494. characterMakers.push(() => makeCharacter(
  53495. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  53496. {
  53497. front: {
  53498. height: math.unit(6 + 2/12, "feet"),
  53499. weight: math.unit(500, "lb"),
  53500. preyCapacity: math.unit(4, "people"),
  53501. name: "Front",
  53502. image: {
  53503. source: "./media/characters/yepir/front.svg"
  53504. }
  53505. },
  53506. side: {
  53507. height: math.unit(6 + 2/12, "feet"),
  53508. weight: math.unit(500, "lb"),
  53509. preyCapacity: math.unit(4, "people"),
  53510. name: "Side",
  53511. image: {
  53512. source: "./media/characters/yepir/side.svg"
  53513. }
  53514. },
  53515. paw: {
  53516. height: math.unit(1.05, "feet"),
  53517. name: "Paw",
  53518. image: {
  53519. source: "./media/characters/yepir/paw.svg"
  53520. }
  53521. },
  53522. },
  53523. [
  53524. {
  53525. name: "Normal",
  53526. height: math.unit(6 + 2/12, "feet"),
  53527. default: true
  53528. },
  53529. ]
  53530. ))
  53531. characterMakers.push(() => makeCharacter(
  53532. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  53533. {
  53534. front: {
  53535. height: math.unit(5 + 4/12, "feet"),
  53536. name: "Front",
  53537. image: {
  53538. source: "./media/characters/russec/front.svg",
  53539. extra: 1926/1626,
  53540. bottom: 72/1998
  53541. }
  53542. },
  53543. back: {
  53544. height: math.unit(5 + 4/12, "feet"),
  53545. name: "Back",
  53546. image: {
  53547. source: "./media/characters/russec/back.svg",
  53548. extra: 1910/1591,
  53549. bottom: 48/1958
  53550. }
  53551. },
  53552. },
  53553. [
  53554. {
  53555. name: "Small",
  53556. height: math.unit(5 + 4/12, "feet")
  53557. },
  53558. {
  53559. name: "Normal",
  53560. height: math.unit(72, "feet"),
  53561. default: true
  53562. },
  53563. ]
  53564. ))
  53565. characterMakers.push(() => makeCharacter(
  53566. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  53567. {
  53568. side: {
  53569. height: math.unit(12, "feet"),
  53570. name: "Side",
  53571. image: {
  53572. source: "./media/characters/cianus/side.svg",
  53573. extra: 808/526,
  53574. bottom: 61/869
  53575. }
  53576. },
  53577. },
  53578. [
  53579. {
  53580. name: "Normal",
  53581. height: math.unit(12, "feet"),
  53582. default: true
  53583. },
  53584. ]
  53585. ))
  53586. characterMakers.push(() => makeCharacter(
  53587. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  53588. {
  53589. front: {
  53590. height: math.unit(9 + 6/12, "feet"),
  53591. weight: math.unit(300, "lb"),
  53592. name: "Front",
  53593. image: {
  53594. source: "./media/characters/ahab/front.svg",
  53595. extra: 1897/1868,
  53596. bottom: 121/2018
  53597. }
  53598. },
  53599. frontNsfw: {
  53600. height: math.unit(9 + 6/12, "feet"),
  53601. weight: math.unit(300, "lb"),
  53602. name: "Front-nsfw",
  53603. image: {
  53604. source: "./media/characters/ahab/front-nsfw.svg",
  53605. extra: 1897/1868,
  53606. bottom: 121/2018
  53607. }
  53608. },
  53609. },
  53610. [
  53611. {
  53612. name: "Normal",
  53613. height: math.unit(9 + 6/12, "feet")
  53614. },
  53615. {
  53616. name: "Macro",
  53617. height: math.unit(657, "feet"),
  53618. default: true
  53619. },
  53620. ]
  53621. ))
  53622. characterMakers.push(() => makeCharacter(
  53623. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  53624. {
  53625. front: {
  53626. height: math.unit(2.69, "meters"),
  53627. weight: math.unit(132, "kg"),
  53628. name: "Front",
  53629. image: {
  53630. source: "./media/characters/aarkus/front.svg",
  53631. extra: 1400/1231,
  53632. bottom: 34/1434
  53633. }
  53634. },
  53635. back: {
  53636. height: math.unit(2.69, "meters"),
  53637. weight: math.unit(132, "kg"),
  53638. name: "Back",
  53639. image: {
  53640. source: "./media/characters/aarkus/back.svg",
  53641. extra: 1381/1218,
  53642. bottom: 30/1411
  53643. }
  53644. },
  53645. frontNsfw: {
  53646. height: math.unit(2.69, "meters"),
  53647. weight: math.unit(132, "kg"),
  53648. name: "Front (NSFW)",
  53649. image: {
  53650. source: "./media/characters/aarkus/front-nsfw.svg",
  53651. extra: 1400/1231,
  53652. bottom: 34/1434
  53653. }
  53654. },
  53655. foot: {
  53656. height: math.unit(1.45, "feet"),
  53657. name: "Foot",
  53658. image: {
  53659. source: "./media/characters/aarkus/foot.svg"
  53660. }
  53661. },
  53662. head: {
  53663. height: math.unit(2.85, "feet"),
  53664. name: "Head",
  53665. image: {
  53666. source: "./media/characters/aarkus/head.svg"
  53667. }
  53668. },
  53669. headAlt: {
  53670. height: math.unit(3.07, "feet"),
  53671. name: "Head (Alt)",
  53672. image: {
  53673. source: "./media/characters/aarkus/head-alt.svg"
  53674. }
  53675. },
  53676. mouth: {
  53677. height: math.unit(1.25, "feet"),
  53678. name: "Mouth",
  53679. image: {
  53680. source: "./media/characters/aarkus/mouth.svg"
  53681. }
  53682. },
  53683. dick: {
  53684. height: math.unit(1.77, "feet"),
  53685. name: "Dick",
  53686. image: {
  53687. source: "./media/characters/aarkus/dick.svg"
  53688. }
  53689. },
  53690. },
  53691. [
  53692. {
  53693. name: "Normal",
  53694. height: math.unit(2.69, "meters"),
  53695. default: true
  53696. },
  53697. {
  53698. name: "Macro",
  53699. height: math.unit(269, "meters")
  53700. },
  53701. {
  53702. name: "Macro+",
  53703. height: math.unit(672.5, "meters")
  53704. },
  53705. {
  53706. name: "Megamacro",
  53707. height: math.unit(2.017, "km")
  53708. },
  53709. ]
  53710. ))
  53711. characterMakers.push(() => makeCharacter(
  53712. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  53713. {
  53714. front: {
  53715. height: math.unit(23.47, "cm"),
  53716. weight: math.unit(600, "grams"),
  53717. name: "Front",
  53718. image: {
  53719. source: "./media/characters/diode/front.svg",
  53720. extra: 1778/1396,
  53721. bottom: 95/1873
  53722. }
  53723. },
  53724. side: {
  53725. height: math.unit(23.47, "cm"),
  53726. weight: math.unit(600, "grams"),
  53727. name: "Side",
  53728. image: {
  53729. source: "./media/characters/diode/side.svg",
  53730. extra: 1831/1404,
  53731. bottom: 86/1917
  53732. }
  53733. },
  53734. wings: {
  53735. height: math.unit(0.683, "feet"),
  53736. name: "Wings",
  53737. image: {
  53738. source: "./media/characters/diode/wings.svg"
  53739. }
  53740. },
  53741. },
  53742. [
  53743. {
  53744. name: "Normal",
  53745. height: math.unit(23.47, "cm"),
  53746. default: true
  53747. },
  53748. ]
  53749. ))
  53750. characterMakers.push(() => makeCharacter(
  53751. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  53752. {
  53753. front: {
  53754. height: math.unit(6 + 3/12, "feet"),
  53755. weight: math.unit(250, "lb"),
  53756. name: "Front",
  53757. image: {
  53758. source: "./media/characters/reika/front.svg",
  53759. extra: 1120/1078,
  53760. bottom: 86/1206
  53761. }
  53762. },
  53763. },
  53764. [
  53765. {
  53766. name: "Normal",
  53767. height: math.unit(6 + 3/12, "feet"),
  53768. default: true
  53769. },
  53770. ]
  53771. ))
  53772. characterMakers.push(() => makeCharacter(
  53773. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  53774. {
  53775. front: {
  53776. height: math.unit(16 + 8/12, "feet"),
  53777. weight: math.unit(9000, "lb"),
  53778. name: "Front",
  53779. image: {
  53780. source: "./media/characters/lokuto-takama/front.svg",
  53781. extra: 1774/1632,
  53782. bottom: 147/1921
  53783. },
  53784. extraAttributes: {
  53785. "bustWidth": {
  53786. name: "Bust Width",
  53787. power: 1,
  53788. type: "length",
  53789. base: math.unit(2.4, "meters")
  53790. },
  53791. "breastWeight": {
  53792. name: "Breast Weight",
  53793. power: 3,
  53794. type: "mass",
  53795. base: math.unit(1000, "kg")
  53796. },
  53797. }
  53798. },
  53799. },
  53800. [
  53801. {
  53802. name: "Normal",
  53803. height: math.unit(16 + 8/12, "feet"),
  53804. default: true
  53805. },
  53806. ]
  53807. ))
  53808. characterMakers.push(() => makeCharacter(
  53809. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  53810. {
  53811. front: {
  53812. height: math.unit(10, "cm"),
  53813. weight: math.unit(850, "grams"),
  53814. name: "Front",
  53815. image: {
  53816. source: "./media/characters/owak-bone/front.svg",
  53817. extra: 1965/1801,
  53818. bottom: 31/1996
  53819. }
  53820. },
  53821. },
  53822. [
  53823. {
  53824. name: "Normal",
  53825. height: math.unit(10, "cm"),
  53826. default: true
  53827. },
  53828. ]
  53829. ))
  53830. characterMakers.push(() => makeCharacter(
  53831. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  53832. {
  53833. front: {
  53834. height: math.unit(2 + 6/12, "feet"),
  53835. weight: math.unit(9, "lb"),
  53836. name: "Front",
  53837. image: {
  53838. source: "./media/characters/muffin/front.svg",
  53839. extra: 1220/1195,
  53840. bottom: 84/1304
  53841. }
  53842. },
  53843. },
  53844. [
  53845. {
  53846. name: "Normal",
  53847. height: math.unit(2 + 6/12, "feet"),
  53848. default: true
  53849. },
  53850. ]
  53851. ))
  53852. characterMakers.push(() => makeCharacter(
  53853. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  53854. {
  53855. front: {
  53856. height: math.unit(7, "feet"),
  53857. name: "Front",
  53858. image: {
  53859. source: "./media/characters/chimera/front.svg",
  53860. extra: 1752/1614,
  53861. bottom: 68/1820
  53862. }
  53863. },
  53864. },
  53865. [
  53866. {
  53867. name: "Normal",
  53868. height: math.unit(7, "feet")
  53869. },
  53870. {
  53871. name: "Gigamacro",
  53872. height: math.unit(2.9, "gigameters"),
  53873. default: true
  53874. },
  53875. {
  53876. name: "Universal",
  53877. height: math.unit(1.56e26, "yottameters")
  53878. },
  53879. ]
  53880. ))
  53881. characterMakers.push(() => makeCharacter(
  53882. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  53883. {
  53884. front: {
  53885. height: math.unit(3, "feet"),
  53886. weight: math.unit(20, "lb"),
  53887. name: "Front",
  53888. image: {
  53889. source: "./media/characters/kit-fennec-fox/front.svg",
  53890. extra: 1027/932,
  53891. bottom: 16/1043
  53892. }
  53893. },
  53894. back: {
  53895. height: math.unit(3, "feet"),
  53896. weight: math.unit(20, "lb"),
  53897. name: "Back",
  53898. image: {
  53899. source: "./media/characters/kit-fennec-fox/back.svg",
  53900. extra: 1027/932,
  53901. bottom: 16/1043
  53902. }
  53903. },
  53904. },
  53905. [
  53906. {
  53907. name: "Normal",
  53908. height: math.unit(3, "feet"),
  53909. default: true
  53910. },
  53911. ]
  53912. ))
  53913. characterMakers.push(() => makeCharacter(
  53914. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  53915. {
  53916. front: {
  53917. height: math.unit(167, "cm"),
  53918. name: "Front",
  53919. image: {
  53920. source: "./media/characters/blue-otter/front.svg",
  53921. extra: 1951/1920,
  53922. bottom: 31/1982
  53923. }
  53924. },
  53925. },
  53926. [
  53927. {
  53928. name: "Otter-Sized",
  53929. height: math.unit(100, "cm")
  53930. },
  53931. {
  53932. name: "Normal",
  53933. height: math.unit(167, "cm"),
  53934. default: true
  53935. },
  53936. ]
  53937. ))
  53938. characterMakers.push(() => makeCharacter(
  53939. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  53940. {
  53941. front: {
  53942. height: math.unit(4 + 4/12, "feet"),
  53943. name: "Front",
  53944. image: {
  53945. source: "./media/characters/maverick-leopard-gecko/front.svg",
  53946. extra: 1072/1067,
  53947. bottom: 117/1189
  53948. }
  53949. },
  53950. back: {
  53951. height: math.unit(4 + 4/12, "feet"),
  53952. name: "Back",
  53953. image: {
  53954. source: "./media/characters/maverick-leopard-gecko/back.svg",
  53955. extra: 1135/1129,
  53956. bottom: 57/1192
  53957. }
  53958. },
  53959. head: {
  53960. height: math.unit(1.77, "feet"),
  53961. name: "Head",
  53962. image: {
  53963. source: "./media/characters/maverick-leopard-gecko/head.svg"
  53964. }
  53965. },
  53966. },
  53967. [
  53968. {
  53969. name: "Normal",
  53970. height: math.unit(4 + 4/12, "feet"),
  53971. default: true
  53972. },
  53973. ]
  53974. ))
  53975. characterMakers.push(() => makeCharacter(
  53976. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  53977. {
  53978. front: {
  53979. height: math.unit(2, "inches"),
  53980. name: "Front",
  53981. image: {
  53982. source: "./media/characters/carley-hartford/front.svg",
  53983. extra: 1035/988,
  53984. bottom: 23/1058
  53985. }
  53986. },
  53987. back: {
  53988. height: math.unit(2, "inches"),
  53989. name: "Back",
  53990. image: {
  53991. source: "./media/characters/carley-hartford/back.svg",
  53992. extra: 1035/988,
  53993. bottom: 23/1058
  53994. }
  53995. },
  53996. dressed: {
  53997. height: math.unit(2, "inches"),
  53998. name: "Dressed",
  53999. image: {
  54000. source: "./media/characters/carley-hartford/dressed.svg",
  54001. extra: 651/620,
  54002. bottom: 0/651
  54003. }
  54004. },
  54005. },
  54006. [
  54007. {
  54008. name: "Micro",
  54009. height: math.unit(2, "inches"),
  54010. default: true
  54011. },
  54012. {
  54013. name: "Macro",
  54014. height: math.unit(6 + 3/12, "feet")
  54015. },
  54016. ]
  54017. ))
  54018. characterMakers.push(() => makeCharacter(
  54019. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  54020. {
  54021. front: {
  54022. height: math.unit(2 + 3/12, "feet"),
  54023. weight: math.unit(15 + 7/16, "lb"),
  54024. name: "Front",
  54025. image: {
  54026. source: "./media/characters/duke/front.svg",
  54027. extra: 910/815,
  54028. bottom: 30/940
  54029. }
  54030. },
  54031. },
  54032. [
  54033. {
  54034. name: "Normal",
  54035. height: math.unit(2 + 3/12, "feet"),
  54036. default: true
  54037. },
  54038. ]
  54039. ))
  54040. characterMakers.push(() => makeCharacter(
  54041. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  54042. {
  54043. front: {
  54044. height: math.unit(5 + 4/12, "feet"),
  54045. weight: math.unit(156, "lb"),
  54046. name: "Front",
  54047. image: {
  54048. source: "./media/characters/dein/front.svg",
  54049. extra: 855/815,
  54050. bottom: 48/903
  54051. }
  54052. },
  54053. side: {
  54054. height: math.unit(5 + 4/12, "feet"),
  54055. weight: math.unit(156, "lb"),
  54056. name: "side",
  54057. image: {
  54058. source: "./media/characters/dein/side.svg",
  54059. extra: 846/803,
  54060. bottom: 25/871
  54061. }
  54062. },
  54063. maw: {
  54064. height: math.unit(1.45, "feet"),
  54065. name: "Maw",
  54066. image: {
  54067. source: "./media/characters/dein/maw.svg"
  54068. }
  54069. },
  54070. },
  54071. [
  54072. {
  54073. name: "Ferret Sized",
  54074. height: math.unit(2 + 5/12, "feet")
  54075. },
  54076. {
  54077. name: "Normal",
  54078. height: math.unit(5 + 4/12, "feet"),
  54079. default: true
  54080. },
  54081. ]
  54082. ))
  54083. characterMakers.push(() => makeCharacter(
  54084. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  54085. {
  54086. front: {
  54087. height: math.unit(84 + 8/12, "feet"),
  54088. weight: math.unit(942180, "lb"),
  54089. name: "Front",
  54090. image: {
  54091. source: "./media/characters/daurine-arima/front.svg",
  54092. extra: 1989/1782,
  54093. bottom: 37/2026
  54094. }
  54095. },
  54096. side: {
  54097. height: math.unit(84 + 8/12, "feet"),
  54098. weight: math.unit(942180, "lb"),
  54099. name: "Side",
  54100. image: {
  54101. source: "./media/characters/daurine-arima/side.svg",
  54102. extra: 1997/1790,
  54103. bottom: 21/2018
  54104. }
  54105. },
  54106. back: {
  54107. height: math.unit(84 + 8/12, "feet"),
  54108. weight: math.unit(942180, "lb"),
  54109. name: "Back",
  54110. image: {
  54111. source: "./media/characters/daurine-arima/back.svg",
  54112. extra: 1992/1800,
  54113. bottom: 12/2004
  54114. }
  54115. },
  54116. head: {
  54117. height: math.unit(15.5, "feet"),
  54118. name: "Head",
  54119. image: {
  54120. source: "./media/characters/daurine-arima/head.svg"
  54121. }
  54122. },
  54123. headAlt: {
  54124. height: math.unit(19.19, "feet"),
  54125. name: "Head (Alt)",
  54126. image: {
  54127. source: "./media/characters/daurine-arima/head-alt.svg"
  54128. }
  54129. },
  54130. },
  54131. [
  54132. {
  54133. name: "Minimum height",
  54134. height: math.unit(8 + 10/12, "feet")
  54135. },
  54136. {
  54137. name: "Comfort height",
  54138. height: math.unit(19 + 6 /12, "feet")
  54139. },
  54140. {
  54141. name: "\"Normal\" height",
  54142. height: math.unit(28 + 10/12, "feet")
  54143. },
  54144. {
  54145. name: "Base height",
  54146. height: math.unit(84 + 8/12, "feet"),
  54147. default: true
  54148. },
  54149. {
  54150. name: "Mini-macro",
  54151. height: math.unit(2360, "feet")
  54152. },
  54153. {
  54154. name: "Macro",
  54155. height: math.unit(10, "miles")
  54156. },
  54157. {
  54158. name: "Goddess",
  54159. height: math.unit(9.99e40, "yottameters")
  54160. },
  54161. ]
  54162. ))
  54163. characterMakers.push(() => makeCharacter(
  54164. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  54165. {
  54166. front: {
  54167. height: math.unit(2.3, "meters"),
  54168. name: "Front",
  54169. image: {
  54170. source: "./media/characters/cilenomon/front.svg",
  54171. extra: 1963/1778,
  54172. bottom: 54/2017
  54173. }
  54174. },
  54175. },
  54176. [
  54177. {
  54178. name: "Normal",
  54179. height: math.unit(2.3, "meters"),
  54180. default: true
  54181. },
  54182. {
  54183. name: "Big",
  54184. height: math.unit(5, "meters")
  54185. },
  54186. {
  54187. name: "Macro",
  54188. height: math.unit(30, "meters")
  54189. },
  54190. {
  54191. name: "True",
  54192. height: math.unit(1, "universe")
  54193. },
  54194. ]
  54195. ))
  54196. characterMakers.push(() => makeCharacter(
  54197. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  54198. {
  54199. front: {
  54200. height: math.unit(5, "feet"),
  54201. name: "Front",
  54202. image: {
  54203. source: "./media/characters/sen-mink/front.svg",
  54204. extra: 1727/1675,
  54205. bottom: 35/1762
  54206. }
  54207. },
  54208. },
  54209. [
  54210. {
  54211. name: "Normal",
  54212. height: math.unit(5, "feet"),
  54213. default: true
  54214. },
  54215. ]
  54216. ))
  54217. characterMakers.push(() => makeCharacter(
  54218. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  54219. {
  54220. front: {
  54221. height: math.unit(5.42999, "feet"),
  54222. weight: math.unit(100, "lb"),
  54223. name: "Front",
  54224. image: {
  54225. source: "./media/characters/ophois/front.svg",
  54226. extra: 1429/1286,
  54227. bottom: 60/1489
  54228. }
  54229. },
  54230. },
  54231. [
  54232. {
  54233. name: "Normal",
  54234. height: math.unit(5.42999, "feet"),
  54235. default: true
  54236. },
  54237. ]
  54238. ))
  54239. characterMakers.push(() => makeCharacter(
  54240. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  54241. {
  54242. front: {
  54243. height: math.unit(2, "meters"),
  54244. name: "Front",
  54245. image: {
  54246. source: "./media/characters/riley/front.svg",
  54247. extra: 1779/1754,
  54248. bottom: 139/1918
  54249. }
  54250. },
  54251. },
  54252. [
  54253. {
  54254. name: "Normal",
  54255. height: math.unit(2, "meters"),
  54256. default: true
  54257. },
  54258. ]
  54259. ))
  54260. characterMakers.push(() => makeCharacter(
  54261. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  54262. {
  54263. front: {
  54264. height: math.unit(6 + 2/12, "feet"),
  54265. weight: math.unit(195, "lb"),
  54266. preyCapacity: math.unit(6, "people"),
  54267. name: "Front",
  54268. image: {
  54269. source: "./media/characters/shuken-flash/front.svg",
  54270. extra: 1905/1739,
  54271. bottom: 65/1970
  54272. }
  54273. },
  54274. back: {
  54275. height: math.unit(6 + 2/12, "feet"),
  54276. weight: math.unit(195, "lb"),
  54277. preyCapacity: math.unit(6, "people"),
  54278. name: "Back",
  54279. image: {
  54280. source: "./media/characters/shuken-flash/back.svg",
  54281. extra: 1912/1751,
  54282. bottom: 13/1925
  54283. }
  54284. },
  54285. },
  54286. [
  54287. {
  54288. name: "Normal",
  54289. height: math.unit(6 + 2/12, "feet"),
  54290. default: true
  54291. },
  54292. ]
  54293. ))
  54294. characterMakers.push(() => makeCharacter(
  54295. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  54296. {
  54297. front: {
  54298. height: math.unit(5 + 9/12, "feet"),
  54299. weight: math.unit(150, "lb"),
  54300. name: "Front",
  54301. image: {
  54302. source: "./media/characters/plat/front.svg",
  54303. extra: 1816/1703,
  54304. bottom: 43/1859
  54305. }
  54306. },
  54307. side: {
  54308. height: math.unit(5 + 9/12, "feet"),
  54309. weight: math.unit(300, "lb"),
  54310. name: "Side",
  54311. image: {
  54312. source: "./media/characters/plat/side.svg",
  54313. extra: 1824/1699,
  54314. bottom: 18/1842
  54315. }
  54316. },
  54317. },
  54318. [
  54319. {
  54320. name: "Normal",
  54321. height: math.unit(5 + 9/12, "feet"),
  54322. default: true
  54323. },
  54324. ]
  54325. ))
  54326. characterMakers.push(() => makeCharacter(
  54327. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  54328. {
  54329. front: {
  54330. height: math.unit(9, "feet"),
  54331. weight: math.unit(1800, "lb"),
  54332. name: "Front",
  54333. image: {
  54334. source: "./media/characters/elaine/front.svg",
  54335. extra: 1833/1354,
  54336. bottom: 25/1858
  54337. }
  54338. },
  54339. back: {
  54340. height: math.unit(8.8, "feet"),
  54341. weight: math.unit(1800, "lb"),
  54342. name: "Back",
  54343. image: {
  54344. source: "./media/characters/elaine/back.svg",
  54345. extra: 1641/1233,
  54346. bottom: 53/1694
  54347. }
  54348. },
  54349. },
  54350. [
  54351. {
  54352. name: "Normal",
  54353. height: math.unit(9, "feet"),
  54354. default: true
  54355. },
  54356. ]
  54357. ))
  54358. characterMakers.push(() => makeCharacter(
  54359. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  54360. {
  54361. front: {
  54362. height: math.unit(17 + 9/12, "feet"),
  54363. weight: math.unit(8000, "lb"),
  54364. name: "Front",
  54365. image: {
  54366. source: "./media/characters/vera-raven/front.svg",
  54367. extra: 1457/1412,
  54368. bottom: 121/1578
  54369. }
  54370. },
  54371. side: {
  54372. height: math.unit(17 + 9/12, "feet"),
  54373. weight: math.unit(8000, "lb"),
  54374. name: "Side",
  54375. image: {
  54376. source: "./media/characters/vera-raven/side.svg",
  54377. extra: 1510/1464,
  54378. bottom: 54/1564
  54379. }
  54380. },
  54381. },
  54382. [
  54383. {
  54384. name: "Normal",
  54385. height: math.unit(17 + 9/12, "feet"),
  54386. default: true
  54387. },
  54388. ]
  54389. ))
  54390. characterMakers.push(() => makeCharacter(
  54391. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  54392. {
  54393. dressed: {
  54394. height: math.unit(6 + 9/12, "feet"),
  54395. name: "Dressed",
  54396. image: {
  54397. source: "./media/characters/nakisha/dressed.svg",
  54398. extra: 1909/1757,
  54399. bottom: 48/1957
  54400. }
  54401. },
  54402. nude: {
  54403. height: math.unit(6 + 9/12, "feet"),
  54404. name: "Nude",
  54405. image: {
  54406. source: "./media/characters/nakisha/nude.svg",
  54407. extra: 1917/1765,
  54408. bottom: 34/1951
  54409. }
  54410. },
  54411. },
  54412. [
  54413. {
  54414. name: "Normal",
  54415. height: math.unit(6 + 9/12, "feet"),
  54416. default: true
  54417. },
  54418. ]
  54419. ))
  54420. characterMakers.push(() => makeCharacter(
  54421. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  54422. {
  54423. front: {
  54424. height: math.unit(87, "meters"),
  54425. name: "Front",
  54426. image: {
  54427. source: "./media/characters/serafin/front.svg",
  54428. extra: 1919/1776,
  54429. bottom: 65/1984
  54430. }
  54431. },
  54432. },
  54433. [
  54434. {
  54435. name: "Normal",
  54436. height: math.unit(87, "meters"),
  54437. default: true
  54438. },
  54439. ]
  54440. ))
  54441. characterMakers.push(() => makeCharacter(
  54442. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  54443. {
  54444. front: {
  54445. height: math.unit(6, "feet"),
  54446. weight: math.unit(200, "lb"),
  54447. name: "Front",
  54448. image: {
  54449. source: "./media/characters/poptart/front.svg",
  54450. extra: 615/583,
  54451. bottom: 23/638
  54452. }
  54453. },
  54454. back: {
  54455. height: math.unit(6, "feet"),
  54456. weight: math.unit(200, "lb"),
  54457. name: "Back",
  54458. image: {
  54459. source: "./media/characters/poptart/back.svg",
  54460. extra: 617/584,
  54461. bottom: 22/639
  54462. }
  54463. },
  54464. frontNsfw: {
  54465. height: math.unit(6, "feet"),
  54466. weight: math.unit(200, "lb"),
  54467. name: "Front (NSFW)",
  54468. image: {
  54469. source: "./media/characters/poptart/front-nsfw.svg",
  54470. extra: 615/583,
  54471. bottom: 23/638
  54472. }
  54473. },
  54474. backNsfw: {
  54475. height: math.unit(6, "feet"),
  54476. weight: math.unit(200, "lb"),
  54477. name: "Back (NSFW)",
  54478. image: {
  54479. source: "./media/characters/poptart/back-nsfw.svg",
  54480. extra: 617/584,
  54481. bottom: 22/639
  54482. }
  54483. },
  54484. hand: {
  54485. height: math.unit(1.14, "feet"),
  54486. name: "Hand",
  54487. image: {
  54488. source: "./media/characters/poptart/hand.svg"
  54489. }
  54490. },
  54491. foot: {
  54492. height: math.unit(1.5, "feet"),
  54493. name: "Foot",
  54494. image: {
  54495. source: "./media/characters/poptart/foot.svg"
  54496. }
  54497. },
  54498. },
  54499. [
  54500. {
  54501. name: "Normal",
  54502. height: math.unit(6, "feet"),
  54503. default: true
  54504. },
  54505. {
  54506. name: "Grande",
  54507. height: math.unit(350, "feet")
  54508. },
  54509. {
  54510. name: "Massif",
  54511. height: math.unit(967, "feet")
  54512. },
  54513. ]
  54514. ))
  54515. characterMakers.push(() => makeCharacter(
  54516. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  54517. {
  54518. hyenaSide: {
  54519. height: math.unit(120, "cm"),
  54520. weight: math.unit(120, "lb"),
  54521. name: "Side",
  54522. image: {
  54523. source: "./media/characters/trance/hyena-side.svg",
  54524. extra: 998/904,
  54525. bottom: 76/1074
  54526. }
  54527. },
  54528. },
  54529. [
  54530. {
  54531. name: "Normal",
  54532. height: math.unit(120, "cm"),
  54533. default: true
  54534. },
  54535. {
  54536. name: "Dire",
  54537. height: math.unit(230, "cm")
  54538. },
  54539. {
  54540. name: "Macro",
  54541. height: math.unit(37, "feet")
  54542. },
  54543. ]
  54544. ))
  54545. characterMakers.push(() => makeCharacter(
  54546. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  54547. {
  54548. front: {
  54549. height: math.unit(6 + 3/12, "feet"),
  54550. name: "Front",
  54551. image: {
  54552. source: "./media/characters/michael-berretta/front.svg",
  54553. extra: 515/494,
  54554. bottom: 20/535
  54555. }
  54556. },
  54557. back: {
  54558. height: math.unit(6 + 3/12, "feet"),
  54559. name: "Back",
  54560. image: {
  54561. source: "./media/characters/michael-berretta/back.svg",
  54562. extra: 520/497,
  54563. bottom: 21/541
  54564. }
  54565. },
  54566. frontNsfw: {
  54567. height: math.unit(6 + 3/12, "feet"),
  54568. name: "Front (NSFW)",
  54569. image: {
  54570. source: "./media/characters/michael-berretta/front-nsfw.svg",
  54571. extra: 515/494,
  54572. bottom: 20/535
  54573. }
  54574. },
  54575. dick: {
  54576. height: math.unit(1, "feet"),
  54577. name: "Dick",
  54578. image: {
  54579. source: "./media/characters/michael-berretta/dick.svg"
  54580. }
  54581. },
  54582. },
  54583. [
  54584. {
  54585. name: "Normal",
  54586. height: math.unit(6 + 3/12, "feet"),
  54587. default: true
  54588. },
  54589. {
  54590. name: "Big",
  54591. height: math.unit(12, "feet")
  54592. },
  54593. {
  54594. name: "Macro",
  54595. height: math.unit(187.5, "feet")
  54596. },
  54597. ]
  54598. ))
  54599. characterMakers.push(() => makeCharacter(
  54600. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  54601. {
  54602. front: {
  54603. height: math.unit(9 + 9/12, "feet"),
  54604. weight: math.unit(1244, "lb"),
  54605. name: "Front",
  54606. image: {
  54607. source: "./media/characters/stella-edgecomb/front.svg",
  54608. extra: 1835/1706,
  54609. bottom: 49/1884
  54610. }
  54611. },
  54612. pen: {
  54613. height: math.unit(0.95, "feet"),
  54614. name: "Pen",
  54615. image: {
  54616. source: "./media/characters/stella-edgecomb/pen.svg"
  54617. }
  54618. },
  54619. },
  54620. [
  54621. {
  54622. name: "Cozy Bear",
  54623. height: math.unit(0.5, "inches")
  54624. },
  54625. {
  54626. name: "Normal",
  54627. height: math.unit(9 + 9/12, "feet"),
  54628. default: true
  54629. },
  54630. {
  54631. name: "Giga Bear",
  54632. height: math.unit(1, "mile")
  54633. },
  54634. {
  54635. name: "Great Bear",
  54636. height: math.unit(53, "miles")
  54637. },
  54638. {
  54639. name: "Goddess Bear",
  54640. height: math.unit(40000, "miles")
  54641. },
  54642. {
  54643. name: "Sun Bear",
  54644. height: math.unit(900000, "miles")
  54645. },
  54646. ]
  54647. ))
  54648. characterMakers.push(() => makeCharacter(
  54649. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  54650. {
  54651. anthroFront: {
  54652. height: math.unit(556, "cm"),
  54653. weight: math.unit(2650, "kg"),
  54654. preyCapacity: math.unit(3, "people"),
  54655. name: "Front",
  54656. image: {
  54657. source: "./media/characters/ash´iika/front.svg",
  54658. extra: 710/673,
  54659. bottom: 15/725
  54660. },
  54661. form: "anthro",
  54662. default: true
  54663. },
  54664. anthroSide: {
  54665. height: math.unit(556, "cm"),
  54666. weight: math.unit(2650, "kg"),
  54667. preyCapacity: math.unit(3, "people"),
  54668. name: "Side",
  54669. image: {
  54670. source: "./media/characters/ash´iika/side.svg",
  54671. extra: 696/676,
  54672. bottom: 13/709
  54673. },
  54674. form: "anthro"
  54675. },
  54676. anthroDressed: {
  54677. height: math.unit(556, "cm"),
  54678. weight: math.unit(2650, "kg"),
  54679. preyCapacity: math.unit(3, "people"),
  54680. name: "Dressed",
  54681. image: {
  54682. source: "./media/characters/ash´iika/dressed.svg",
  54683. extra: 710/673,
  54684. bottom: 15/725
  54685. },
  54686. form: "anthro"
  54687. },
  54688. anthroHead: {
  54689. height: math.unit(3.5, "feet"),
  54690. name: "Head",
  54691. image: {
  54692. source: "./media/characters/ash´iika/head.svg",
  54693. extra: 348/291,
  54694. bottom: 45/393
  54695. },
  54696. form: "anthro"
  54697. },
  54698. feralSide: {
  54699. height: math.unit(870, "cm"),
  54700. weight: math.unit(17500, "kg"),
  54701. preyCapacity: math.unit(15, "people"),
  54702. name: "Side",
  54703. image: {
  54704. source: "./media/characters/ash´iika/feral.svg",
  54705. extra: 595/199,
  54706. bottom: 7/602
  54707. },
  54708. form: "feral",
  54709. default: true,
  54710. },
  54711. },
  54712. [
  54713. {
  54714. name: "Normal",
  54715. height: math.unit(556, "cm"),
  54716. default: true,
  54717. form: "anthro"
  54718. },
  54719. {
  54720. name: "Macro",
  54721. height: math.unit(88, "meters"),
  54722. form: "anthro"
  54723. },
  54724. {
  54725. name: "Normal",
  54726. height: math.unit(870, "cm"),
  54727. default: true,
  54728. form: "feral"
  54729. },
  54730. {
  54731. name: "Large",
  54732. height: math.unit(25, "meters"),
  54733. form: "feral"
  54734. },
  54735. ],
  54736. {
  54737. "anthro": {
  54738. name: "Anthro",
  54739. default: true
  54740. },
  54741. "feral": {
  54742. name: "Feral",
  54743. },
  54744. }
  54745. ))
  54746. characterMakers.push(() => makeCharacter(
  54747. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  54748. {
  54749. front: {
  54750. height: math.unit(10, "feet"),
  54751. weight: math.unit(800, "lb"),
  54752. name: "Front",
  54753. image: {
  54754. source: "./media/characters/yen/front.svg",
  54755. extra: 443/411,
  54756. bottom: 6/449
  54757. }
  54758. },
  54759. sleeping: {
  54760. height: math.unit(10, "feet"),
  54761. weight: math.unit(800, "lb"),
  54762. name: "Sleeping",
  54763. image: {
  54764. source: "./media/characters/yen/sleeping.svg",
  54765. extra: 470/422,
  54766. bottom: 0/470
  54767. }
  54768. },
  54769. head: {
  54770. height: math.unit(2.2, "feet"),
  54771. name: "Head",
  54772. image: {
  54773. source: "./media/characters/yen/head.svg"
  54774. }
  54775. },
  54776. headAlt: {
  54777. height: math.unit(2.1, "feet"),
  54778. name: "Head (Alt)",
  54779. image: {
  54780. source: "./media/characters/yen/head-alt.svg"
  54781. }
  54782. },
  54783. },
  54784. [
  54785. {
  54786. name: "Normal",
  54787. height: math.unit(10, "feet"),
  54788. default: true
  54789. },
  54790. ]
  54791. ))
  54792. characterMakers.push(() => makeCharacter(
  54793. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  54794. {
  54795. front: {
  54796. height: math.unit(12, "feet"),
  54797. name: "Front",
  54798. image: {
  54799. source: "./media/characters/citra/front.svg",
  54800. extra: 1950/1710,
  54801. bottom: 47/1997
  54802. }
  54803. },
  54804. },
  54805. [
  54806. {
  54807. name: "Normal",
  54808. height: math.unit(12, "feet"),
  54809. default: true
  54810. },
  54811. ]
  54812. ))
  54813. characterMakers.push(() => makeCharacter(
  54814. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  54815. {
  54816. side: {
  54817. height: math.unit(7 + 10/12, "feet"),
  54818. name: "Side",
  54819. image: {
  54820. source: "./media/characters/sholstim/side.svg",
  54821. extra: 786/682,
  54822. bottom: 40/826
  54823. }
  54824. },
  54825. },
  54826. [
  54827. {
  54828. name: "Normal",
  54829. height: math.unit(7 + 10/12, "feet"),
  54830. default: true
  54831. },
  54832. ]
  54833. ))
  54834. characterMakers.push(() => makeCharacter(
  54835. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  54836. {
  54837. front: {
  54838. height: math.unit(3.10, "meters"),
  54839. name: "Front",
  54840. image: {
  54841. source: "./media/characters/aggyn/front.svg",
  54842. extra: 1188/963,
  54843. bottom: 24/1212
  54844. }
  54845. },
  54846. },
  54847. [
  54848. {
  54849. name: "Normal",
  54850. height: math.unit(3.10, "meters"),
  54851. default: true
  54852. },
  54853. ]
  54854. ))
  54855. characterMakers.push(() => makeCharacter(
  54856. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  54857. {
  54858. front: {
  54859. height: math.unit(7 + 5/12, "feet"),
  54860. weight: math.unit(687, "lb"),
  54861. name: "Front",
  54862. image: {
  54863. source: "./media/characters/alsandair-hergenroether/front.svg",
  54864. extra: 1251/1186,
  54865. bottom: 75/1326
  54866. }
  54867. },
  54868. back: {
  54869. height: math.unit(7 + 5/12, "feet"),
  54870. weight: math.unit(687, "lb"),
  54871. name: "Back",
  54872. image: {
  54873. source: "./media/characters/alsandair-hergenroether/back.svg",
  54874. extra: 1290/1229,
  54875. bottom: 17/1307
  54876. }
  54877. },
  54878. },
  54879. [
  54880. {
  54881. name: "Max Compression",
  54882. height: math.unit(7 + 5/12, "feet"),
  54883. default: true
  54884. },
  54885. {
  54886. name: "\"Normal\"",
  54887. height: math.unit(2, "universes")
  54888. },
  54889. ]
  54890. ))
  54891. characterMakers.push(() => makeCharacter(
  54892. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  54893. {
  54894. front: {
  54895. height: math.unit(4 + 1/12, "feet"),
  54896. weight: math.unit(92, "lb"),
  54897. name: "Front",
  54898. image: {
  54899. source: "./media/characters/ie/front.svg",
  54900. extra: 1585/1352,
  54901. bottom: 91/1676
  54902. }
  54903. },
  54904. },
  54905. [
  54906. {
  54907. name: "Normal",
  54908. height: math.unit(4 + 1/12, "feet"),
  54909. default: true
  54910. },
  54911. ]
  54912. ))
  54913. characterMakers.push(() => makeCharacter(
  54914. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  54915. {
  54916. anthro: {
  54917. height: math.unit(6, "feet"),
  54918. weight: math.unit(150, "lb"),
  54919. name: "Front",
  54920. image: {
  54921. source: "./media/characters/willow/anthro.svg",
  54922. extra: 1073/986,
  54923. bottom: 34/1107
  54924. },
  54925. form: "anthro",
  54926. default: true
  54927. },
  54928. taur: {
  54929. height: math.unit(6, "feet"),
  54930. weight: math.unit(150, "lb"),
  54931. name: "Side",
  54932. image: {
  54933. source: "./media/characters/willow/taur.svg",
  54934. extra: 647/512,
  54935. bottom: 136/783
  54936. },
  54937. form: "taur",
  54938. default: true
  54939. },
  54940. },
  54941. [
  54942. {
  54943. name: "Humanoid",
  54944. height: math.unit(2.7, "meters"),
  54945. form: "anthro"
  54946. },
  54947. {
  54948. name: "Normal",
  54949. height: math.unit(9, "meters"),
  54950. form: "anthro",
  54951. default: true
  54952. },
  54953. {
  54954. name: "Humanoid",
  54955. height: math.unit(2.1, "meters"),
  54956. form: "taur"
  54957. },
  54958. {
  54959. name: "Normal",
  54960. height: math.unit(7, "meters"),
  54961. form: "taur",
  54962. default: true
  54963. },
  54964. ],
  54965. {
  54966. "anthro": {
  54967. name: "Anthro",
  54968. default: true
  54969. },
  54970. "taur": {
  54971. name: "Taur",
  54972. },
  54973. }
  54974. ))
  54975. characterMakers.push(() => makeCharacter(
  54976. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  54977. {
  54978. front: {
  54979. height: math.unit(2 + 5/12, "feet"),
  54980. name: "Front",
  54981. image: {
  54982. source: "./media/characters/kyan/front.svg",
  54983. extra: 460/334,
  54984. bottom: 23/483
  54985. },
  54986. extraAttributes: {
  54987. "toeLength": {
  54988. name: "Toe Length",
  54989. power: 1,
  54990. type: "length",
  54991. base: math.unit(7, "cm")
  54992. },
  54993. "toeclawLength": {
  54994. name: "Toeclaw Length",
  54995. power: 1,
  54996. type: "length",
  54997. base: math.unit(4.7, "cm")
  54998. },
  54999. "earHeight": {
  55000. name: "Ear Height",
  55001. power: 1,
  55002. type: "length",
  55003. base: math.unit(14.1, "cm")
  55004. },
  55005. }
  55006. },
  55007. paws: {
  55008. height: math.unit(0.45, "feet"),
  55009. name: "Paws",
  55010. image: {
  55011. source: "./media/characters/kyan/paws.svg",
  55012. extra: 581/581,
  55013. bottom: 114/695
  55014. }
  55015. },
  55016. },
  55017. [
  55018. {
  55019. name: "Normal",
  55020. height: math.unit(2 + 5/12, "feet"),
  55021. default: true
  55022. },
  55023. ]
  55024. ))
  55025. characterMakers.push(() => makeCharacter(
  55026. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  55027. {
  55028. front: {
  55029. height: math.unit(2 + 2/3, "feet"),
  55030. name: "Front",
  55031. image: {
  55032. source: "./media/characters/xazzon/front.svg",
  55033. extra: 1109/984,
  55034. bottom: 42/1151
  55035. }
  55036. },
  55037. back: {
  55038. height: math.unit(2 + 2/3, "feet"),
  55039. name: "Back",
  55040. image: {
  55041. source: "./media/characters/xazzon/back.svg",
  55042. extra: 1095/971,
  55043. bottom: 23/1118
  55044. }
  55045. },
  55046. },
  55047. [
  55048. {
  55049. name: "Normal",
  55050. height: math.unit(2 + 2/3, "feet"),
  55051. default: true
  55052. },
  55053. ]
  55054. ))
  55055. characterMakers.push(() => makeCharacter(
  55056. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  55057. {
  55058. front: {
  55059. height: math.unit(8, "feet"),
  55060. weight: math.unit(300, "lb"),
  55061. name: "Front",
  55062. image: {
  55063. source: "./media/characters/khyla-shadowsong/front.svg",
  55064. extra: 861/798,
  55065. bottom: 32/893
  55066. }
  55067. },
  55068. side: {
  55069. height: math.unit(8, "feet"),
  55070. weight: math.unit(300, "lb"),
  55071. name: "Side",
  55072. image: {
  55073. source: "./media/characters/khyla-shadowsong/side.svg",
  55074. extra: 790/750,
  55075. bottom: 87/877
  55076. }
  55077. },
  55078. back: {
  55079. height: math.unit(8, "feet"),
  55080. weight: math.unit(300, "lb"),
  55081. name: "Back",
  55082. image: {
  55083. source: "./media/characters/khyla-shadowsong/back.svg",
  55084. extra: 855/808,
  55085. bottom: 14/869
  55086. }
  55087. },
  55088. head: {
  55089. height: math.unit(2.7, "feet"),
  55090. name: "Head",
  55091. image: {
  55092. source: "./media/characters/khyla-shadowsong/head.svg"
  55093. }
  55094. },
  55095. },
  55096. [
  55097. {
  55098. name: "Micro",
  55099. height: math.unit(6, "inches")
  55100. },
  55101. {
  55102. name: "Normal",
  55103. height: math.unit(8, "feet"),
  55104. default: true
  55105. },
  55106. ]
  55107. ))
  55108. characterMakers.push(() => makeCharacter(
  55109. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  55110. {
  55111. hyperFront: {
  55112. height: math.unit(9 + 4/12, "feet"),
  55113. weight: math.unit(2000, "lb"),
  55114. name: "Front",
  55115. image: {
  55116. source: "./media/characters/tiden/hyper-front.svg",
  55117. extra: 400/382,
  55118. bottom: 6/406
  55119. },
  55120. form: "hyper",
  55121. },
  55122. regularFront: {
  55123. height: math.unit(7 + 10/12, "feet"),
  55124. weight: math.unit(470, "lb"),
  55125. name: "Front",
  55126. image: {
  55127. source: "./media/characters/tiden/regular-front.svg",
  55128. extra: 468/442,
  55129. bottom: 6/474
  55130. },
  55131. form: "regular",
  55132. },
  55133. },
  55134. [
  55135. {
  55136. name: "Normal",
  55137. height: math.unit(9 + 4/12, "feet"),
  55138. default: true,
  55139. form: "hyper"
  55140. },
  55141. {
  55142. name: "Normal",
  55143. height: math.unit(7 + 10/12, "feet"),
  55144. default: true,
  55145. form: "regular"
  55146. },
  55147. ],
  55148. {
  55149. "hyper": {
  55150. name: "Hyper",
  55151. default: true
  55152. },
  55153. "regular": {
  55154. name: "Regular",
  55155. },
  55156. }
  55157. ))
  55158. characterMakers.push(() => makeCharacter(
  55159. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  55160. {
  55161. side: {
  55162. height: math.unit(6, "feet"),
  55163. weight: math.unit(150, "lb"),
  55164. name: "Side",
  55165. image: {
  55166. source: "./media/characters/jason-crowe/side.svg",
  55167. extra: 1771/766,
  55168. bottom: 219/1990
  55169. }
  55170. },
  55171. },
  55172. [
  55173. {
  55174. name: "Pocket Gryphon",
  55175. height: math.unit(6, "cm")
  55176. },
  55177. {
  55178. name: "Raven",
  55179. height: math.unit(60, "cm")
  55180. },
  55181. {
  55182. name: "Normal",
  55183. height: math.unit(1, "meter"),
  55184. default: true
  55185. },
  55186. ]
  55187. ))
  55188. characterMakers.push(() => makeCharacter(
  55189. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  55190. {
  55191. front: {
  55192. height: math.unit(9 + 6/12, "feet"),
  55193. weight: math.unit(1100, "lb"),
  55194. name: "Front",
  55195. image: {
  55196. source: "./media/characters/django/front.svg",
  55197. extra: 1231/1136,
  55198. bottom: 34/1265
  55199. }
  55200. },
  55201. side: {
  55202. height: math.unit(9 + 6/12, "feet"),
  55203. weight: math.unit(1100, "lb"),
  55204. name: "Side",
  55205. image: {
  55206. source: "./media/characters/django/side.svg",
  55207. extra: 1267/1174,
  55208. bottom: 9/1276
  55209. }
  55210. },
  55211. },
  55212. [
  55213. {
  55214. name: "Normal",
  55215. height: math.unit(9 + 6/12, "feet"),
  55216. default: true
  55217. },
  55218. {
  55219. name: "Macro 1",
  55220. height: math.unit(50, "feet")
  55221. },
  55222. {
  55223. name: "Macro 2",
  55224. height: math.unit(500, "feet")
  55225. },
  55226. {
  55227. name: "Mega Macro",
  55228. height: math.unit(5300, "feet")
  55229. },
  55230. ]
  55231. ))
  55232. characterMakers.push(() => makeCharacter(
  55233. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  55234. {
  55235. frontSfw: {
  55236. height: math.unit(120, "cm"),
  55237. weight: math.unit(15, "kg"),
  55238. name: "Front (SFW)",
  55239. image: {
  55240. source: "./media/characters/eri/front-sfw.svg",
  55241. extra: 1014/939,
  55242. bottom: 37/1051
  55243. },
  55244. form: "moth",
  55245. },
  55246. frontNsfw: {
  55247. height: math.unit(120, "cm"),
  55248. weight: math.unit(15, "kg"),
  55249. name: "Front (NSFW)",
  55250. image: {
  55251. source: "./media/characters/eri/front-nsfw.svg",
  55252. extra: 1014/939,
  55253. bottom: 37/1051
  55254. },
  55255. form: "moth",
  55256. default: true
  55257. },
  55258. egg: {
  55259. height: math.unit(10, "cm"),
  55260. name: "Egg",
  55261. image: {
  55262. source: "./media/characters/eri/egg.svg"
  55263. },
  55264. form: "egg",
  55265. default: true
  55266. },
  55267. },
  55268. [
  55269. {
  55270. name: "Normal",
  55271. height: math.unit(120, "cm"),
  55272. default: true,
  55273. form: "moth"
  55274. },
  55275. {
  55276. name: "Normal",
  55277. height: math.unit(10, "cm"),
  55278. default: true,
  55279. form: "egg"
  55280. },
  55281. ],
  55282. {
  55283. "moth": {
  55284. name: "Moth",
  55285. default: true
  55286. },
  55287. "egg": {
  55288. name: "Egg",
  55289. },
  55290. }
  55291. ))
  55292. characterMakers.push(() => makeCharacter(
  55293. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  55294. {
  55295. front: {
  55296. height: math.unit(200, "feet"),
  55297. name: "Front",
  55298. image: {
  55299. source: "./media/characters/bishop-dowser/front.svg",
  55300. extra: 933/868,
  55301. bottom: 106/1039
  55302. }
  55303. },
  55304. },
  55305. [
  55306. {
  55307. name: "Giant",
  55308. height: math.unit(200, "feet"),
  55309. default: true
  55310. },
  55311. ]
  55312. ))
  55313. characterMakers.push(() => makeCharacter(
  55314. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  55315. {
  55316. front: {
  55317. height: math.unit(2, "meters"),
  55318. preyCapacity: math.unit(3, "people"),
  55319. name: "Front",
  55320. image: {
  55321. source: "./media/characters/fryra/front.svg",
  55322. extra: 1025/948,
  55323. bottom: 30/1055
  55324. },
  55325. extraAttributes: {
  55326. "breastVolume": {
  55327. name: "Breast Volume",
  55328. power: 3,
  55329. type: "volume",
  55330. base: math.unit(8, "liters")
  55331. },
  55332. }
  55333. },
  55334. back: {
  55335. height: math.unit(2, "meters"),
  55336. preyCapacity: math.unit(3, "people"),
  55337. name: "Back",
  55338. image: {
  55339. source: "./media/characters/fryra/back.svg",
  55340. extra: 993/938,
  55341. bottom: 38/1031
  55342. },
  55343. extraAttributes: {
  55344. "breastVolume": {
  55345. name: "Breast Volume",
  55346. power: 3,
  55347. type: "volume",
  55348. base: math.unit(8, "liters")
  55349. },
  55350. }
  55351. },
  55352. head: {
  55353. height: math.unit(1.33, "feet"),
  55354. name: "Head",
  55355. image: {
  55356. source: "./media/characters/fryra/head.svg"
  55357. }
  55358. },
  55359. maw: {
  55360. height: math.unit(0.56, "feet"),
  55361. name: "Maw",
  55362. image: {
  55363. source: "./media/characters/fryra/maw.svg"
  55364. }
  55365. },
  55366. },
  55367. [
  55368. {
  55369. name: "Micro",
  55370. height: math.unit(5, "cm")
  55371. },
  55372. {
  55373. name: "Normal",
  55374. height: math.unit(2, "meters"),
  55375. default: true
  55376. },
  55377. {
  55378. name: "Small Macro",
  55379. height: math.unit(8, "meters")
  55380. },
  55381. {
  55382. name: "Macro",
  55383. height: math.unit(50, "meters")
  55384. },
  55385. {
  55386. name: "Megamacro",
  55387. height: math.unit(1, "km")
  55388. },
  55389. {
  55390. name: "Planetary",
  55391. height: math.unit(300000, "km")
  55392. },
  55393. {
  55394. name: "Universal",
  55395. height: math.unit(250, "lightyears")
  55396. },
  55397. {
  55398. name: "Fabric of Reality",
  55399. height: math.unit(1000, "multiverses")
  55400. },
  55401. ]
  55402. ))
  55403. characterMakers.push(() => makeCharacter(
  55404. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  55405. {
  55406. frontDressed: {
  55407. height: math.unit(6 + 2/12, "feet"),
  55408. name: "Front (Dressed)",
  55409. image: {
  55410. source: "./media/characters/fiera/front-dressed.svg",
  55411. extra: 1883/1793,
  55412. bottom: 70/1953
  55413. }
  55414. },
  55415. backDressed: {
  55416. height: math.unit(6 + 2/12, "feet"),
  55417. name: "Back (Dressed)",
  55418. image: {
  55419. source: "./media/characters/fiera/back-dressed.svg",
  55420. extra: 1847/1780,
  55421. bottom: 70/1917
  55422. }
  55423. },
  55424. frontNude: {
  55425. height: math.unit(6 + 2/12, "feet"),
  55426. name: "Front (Nude)",
  55427. image: {
  55428. source: "./media/characters/fiera/front-nude.svg",
  55429. extra: 1875/1785,
  55430. bottom: 66/1941
  55431. }
  55432. },
  55433. backNude: {
  55434. height: math.unit(6 + 2/12, "feet"),
  55435. name: "Back (Nude)",
  55436. image: {
  55437. source: "./media/characters/fiera/back-nude.svg",
  55438. extra: 1855/1788,
  55439. bottom: 44/1899
  55440. }
  55441. },
  55442. maw: {
  55443. height: math.unit(1.3, "feet"),
  55444. name: "Maw",
  55445. image: {
  55446. source: "./media/characters/fiera/maw.svg"
  55447. }
  55448. },
  55449. paw: {
  55450. height: math.unit(1, "feet"),
  55451. name: "Paw",
  55452. image: {
  55453. source: "./media/characters/fiera/paw.svg"
  55454. }
  55455. },
  55456. shoe: {
  55457. height: math.unit(1.05, "feet"),
  55458. name: "Shoe",
  55459. image: {
  55460. source: "./media/characters/fiera/shoe.svg"
  55461. }
  55462. },
  55463. },
  55464. [
  55465. {
  55466. name: "Normal",
  55467. height: math.unit(6 + 2/12, "feet"),
  55468. default: true
  55469. },
  55470. {
  55471. name: "Size Difference",
  55472. height: math.unit(13, "feet")
  55473. },
  55474. {
  55475. name: "Macro",
  55476. height: math.unit(60, "feet")
  55477. },
  55478. {
  55479. name: "Mega Macro",
  55480. height: math.unit(200, "feet")
  55481. },
  55482. ]
  55483. ))
  55484. characterMakers.push(() => makeCharacter(
  55485. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  55486. {
  55487. back: {
  55488. height: math.unit(6, "feet"),
  55489. name: "Back",
  55490. image: {
  55491. source: "./media/characters/flare/back.svg",
  55492. extra: 1883/1765,
  55493. bottom: 32/1915
  55494. }
  55495. },
  55496. },
  55497. [
  55498. {
  55499. name: "Normal",
  55500. height: math.unit(6 + 2/12, "feet"),
  55501. default: true
  55502. },
  55503. {
  55504. name: "Size Difference",
  55505. height: math.unit(13, "feet")
  55506. },
  55507. {
  55508. name: "Macro",
  55509. height: math.unit(60, "feet")
  55510. },
  55511. {
  55512. name: "Macro 2",
  55513. height: math.unit(100, "feet")
  55514. },
  55515. {
  55516. name: "Mega Macro",
  55517. height: math.unit(200, "feet")
  55518. },
  55519. ]
  55520. ))
  55521. characterMakers.push(() => makeCharacter(
  55522. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  55523. {
  55524. front: {
  55525. height: math.unit(2.2, "m"),
  55526. weight: math.unit(300, "kg"),
  55527. name: "Front",
  55528. image: {
  55529. source: "./media/characters/hanna/front.svg",
  55530. extra: 1696/1502,
  55531. bottom: 206/1902
  55532. }
  55533. },
  55534. },
  55535. [
  55536. {
  55537. name: "Humanoid",
  55538. height: math.unit(2.2, "meters")
  55539. },
  55540. {
  55541. name: "Normal",
  55542. height: math.unit(4.8, "meters"),
  55543. default: true
  55544. },
  55545. ]
  55546. ))
  55547. characterMakers.push(() => makeCharacter(
  55548. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  55549. {
  55550. front: {
  55551. height: math.unit(2.8, "meters"),
  55552. name: "Front",
  55553. image: {
  55554. source: "./media/characters/argo/front.svg",
  55555. extra: 731/518,
  55556. bottom: 84/815
  55557. }
  55558. },
  55559. },
  55560. [
  55561. {
  55562. name: "Normal",
  55563. height: math.unit(3, "meters"),
  55564. default: true
  55565. },
  55566. ]
  55567. ))
  55568. characterMakers.push(() => makeCharacter(
  55569. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  55570. {
  55571. side: {
  55572. height: math.unit(3.8, "meters"),
  55573. name: "Side",
  55574. image: {
  55575. source: "./media/characters/sybil/side.svg",
  55576. extra: 382/361,
  55577. bottom: 25/407
  55578. }
  55579. },
  55580. },
  55581. [
  55582. {
  55583. name: "Normal",
  55584. height: math.unit(3.8, "meters"),
  55585. default: true
  55586. },
  55587. ]
  55588. ))
  55589. characterMakers.push(() => makeCharacter(
  55590. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  55591. {
  55592. side: {
  55593. height: math.unit(6, "meters"),
  55594. name: "Side",
  55595. image: {
  55596. source: "./media/characters/plum/side.svg",
  55597. extra: 858/755,
  55598. bottom: 45/903
  55599. },
  55600. form: "taur",
  55601. default: true
  55602. },
  55603. back: {
  55604. height: math.unit(6.3, "meters"),
  55605. name: "Back",
  55606. image: {
  55607. source: "./media/characters/plum/back.svg",
  55608. extra: 887/813,
  55609. bottom: 32/919
  55610. },
  55611. form: "taur",
  55612. },
  55613. feral: {
  55614. height: math.unit(5.5, "meter"),
  55615. name: "Front",
  55616. image: {
  55617. source: "./media/characters/plum/feral.svg",
  55618. extra: 568/403,
  55619. bottom: 51/619
  55620. },
  55621. form: "feral",
  55622. default: true
  55623. },
  55624. head: {
  55625. height: math.unit(1.46, "meter"),
  55626. name: "Head",
  55627. image: {
  55628. source: "./media/characters/plum/head.svg"
  55629. },
  55630. form: "taur"
  55631. },
  55632. tailTop: {
  55633. height: math.unit(5.6, "meter"),
  55634. name: "Tail (Top)",
  55635. image: {
  55636. source: "./media/characters/plum/tail-top.svg"
  55637. },
  55638. form: "taur",
  55639. },
  55640. tailBottom: {
  55641. height: math.unit(5.6, "meter"),
  55642. name: "Tail (Bottom)",
  55643. image: {
  55644. source: "./media/characters/plum/tail-bottom.svg"
  55645. },
  55646. form: "taur",
  55647. },
  55648. feralHead: {
  55649. height: math.unit(2.56549521, "meter"),
  55650. name: "Head",
  55651. image: {
  55652. source: "./media/characters/plum/head.svg"
  55653. },
  55654. form: "feral"
  55655. },
  55656. feralTailTop: {
  55657. height: math.unit(5.44728435, "meter"),
  55658. name: "Tail (Top)",
  55659. image: {
  55660. source: "./media/characters/plum/tail-top.svg"
  55661. },
  55662. form: "feral",
  55663. },
  55664. feralTailBottom: {
  55665. height: math.unit(5.44728435, "meter"),
  55666. name: "Tail (Bottom)",
  55667. image: {
  55668. source: "./media/characters/plum/tail-bottom.svg"
  55669. },
  55670. form: "feral",
  55671. },
  55672. },
  55673. [
  55674. {
  55675. name: "Normal",
  55676. height: math.unit(6, "meters"),
  55677. default: true,
  55678. form: "taur"
  55679. },
  55680. {
  55681. name: "Normal",
  55682. height: math.unit(5.5, "meters"),
  55683. default: true,
  55684. form: "feral"
  55685. },
  55686. ],
  55687. {
  55688. "taur": {
  55689. name: "Taur",
  55690. default: true
  55691. },
  55692. "feral": {
  55693. name: "Feral",
  55694. },
  55695. }
  55696. ))
  55697. characterMakers.push(() => makeCharacter(
  55698. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  55699. {
  55700. front: {
  55701. height: math.unit(6, "feet"),
  55702. weight: math.unit(115, "lb"),
  55703. name: "Front",
  55704. image: {
  55705. source: "./media/characters/celeste-kitsune/front.svg",
  55706. extra: 393/366,
  55707. bottom: 7/400
  55708. }
  55709. },
  55710. side: {
  55711. height: math.unit(6, "feet"),
  55712. weight: math.unit(115, "lb"),
  55713. name: "Side",
  55714. image: {
  55715. source: "./media/characters/celeste-kitsune/side.svg",
  55716. extra: 818/765,
  55717. bottom: 40/858
  55718. }
  55719. },
  55720. },
  55721. [
  55722. {
  55723. name: "Megamacro",
  55724. height: math.unit(1500, "miles"),
  55725. default: true
  55726. },
  55727. ]
  55728. ))
  55729. characterMakers.push(() => makeCharacter(
  55730. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  55731. {
  55732. front: {
  55733. height: math.unit(8, "meters"),
  55734. name: "Front",
  55735. image: {
  55736. source: "./media/characters/io/front.svg",
  55737. extra: 865/722,
  55738. bottom: 58/923
  55739. }
  55740. },
  55741. back: {
  55742. height: math.unit(8, "meters"),
  55743. name: "Back",
  55744. image: {
  55745. source: "./media/characters/io/back.svg",
  55746. extra: 920/776,
  55747. bottom: 42/962
  55748. }
  55749. },
  55750. head: {
  55751. height: math.unit(5.09, "meters"),
  55752. name: "Head",
  55753. image: {
  55754. source: "./media/characters/io/head.svg"
  55755. }
  55756. },
  55757. hand: {
  55758. height: math.unit(1.6, "meters"),
  55759. name: "Hand",
  55760. image: {
  55761. source: "./media/characters/io/hand.svg"
  55762. }
  55763. },
  55764. foot: {
  55765. height: math.unit(2.4, "meters"),
  55766. name: "Foot",
  55767. image: {
  55768. source: "./media/characters/io/foot.svg"
  55769. }
  55770. },
  55771. },
  55772. [
  55773. {
  55774. name: "Normal",
  55775. height: math.unit(8, "meters"),
  55776. default: true
  55777. },
  55778. ]
  55779. ))
  55780. characterMakers.push(() => makeCharacter(
  55781. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  55782. {
  55783. side: {
  55784. height: math.unit(6 + 3/12, "feet"),
  55785. weight: math.unit(225, "lb"),
  55786. name: "Side",
  55787. image: {
  55788. source: "./media/characters/silas/side.svg",
  55789. extra: 703/653,
  55790. bottom: 23/726
  55791. },
  55792. extraAttributes: {
  55793. "pawLength": {
  55794. name: "Paw Length",
  55795. power: 1,
  55796. type: "length",
  55797. base: math.unit(12, "inches")
  55798. },
  55799. "pawWidth": {
  55800. name: "Paw Width",
  55801. power: 1,
  55802. type: "length",
  55803. base: math.unit(4.5, "inches")
  55804. },
  55805. "pawArea": {
  55806. name: "Paw Area",
  55807. power: 2,
  55808. type: "area",
  55809. base: math.unit(12 * 4.5, "inches^2")
  55810. },
  55811. }
  55812. },
  55813. },
  55814. [
  55815. {
  55816. name: "Normal",
  55817. height: math.unit(6 + 3/12, "feet"),
  55818. default: true
  55819. },
  55820. ]
  55821. ))
  55822. characterMakers.push(() => makeCharacter(
  55823. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  55824. {
  55825. back: {
  55826. height: math.unit(1.6, "meters"),
  55827. weight: math.unit(150, "lb"),
  55828. name: "Back",
  55829. image: {
  55830. source: "./media/characters/zari/back.svg",
  55831. extra: 424/411,
  55832. bottom: 32/456
  55833. },
  55834. extraAttributes: {
  55835. "bladderCapacity": {
  55836. name: "Bladder Size",
  55837. power: 3,
  55838. type: "volume",
  55839. base: math.unit(500, "mL")
  55840. },
  55841. "bladderFlow": {
  55842. name: "Flow Rate",
  55843. power: 3,
  55844. type: "volume",
  55845. base: math.unit(25, "mL")
  55846. },
  55847. }
  55848. },
  55849. },
  55850. [
  55851. {
  55852. name: "Normal",
  55853. height: math.unit(1.6, "meters"),
  55854. default: true
  55855. },
  55856. ]
  55857. ))
  55858. characterMakers.push(() => makeCharacter(
  55859. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  55860. {
  55861. front: {
  55862. height: math.unit(25, "feet"),
  55863. weight: math.unit(5, "tons"),
  55864. name: "Front",
  55865. image: {
  55866. source: "./media/characters/charlie-human/front.svg",
  55867. extra: 1870/1740,
  55868. bottom: 102/1972
  55869. },
  55870. extraAttributes: {
  55871. "dickLength": {
  55872. name: "Dick Length",
  55873. power: 1,
  55874. type: "length",
  55875. base: math.unit(9, "feet")
  55876. },
  55877. }
  55878. },
  55879. back: {
  55880. height: math.unit(25, "feet"),
  55881. weight: math.unit(5, "tons"),
  55882. name: "Back",
  55883. image: {
  55884. source: "./media/characters/charlie-human/back.svg",
  55885. extra: 1858/1733,
  55886. bottom: 105/1963
  55887. },
  55888. extraAttributes: {
  55889. "dickLength": {
  55890. name: "Dick Length",
  55891. power: 1,
  55892. type: "length",
  55893. base: math.unit(9, "feet")
  55894. },
  55895. }
  55896. },
  55897. },
  55898. [
  55899. {
  55900. name: "\"Normal\"",
  55901. height: math.unit(6 + 4/12, "feet")
  55902. },
  55903. {
  55904. name: "Big",
  55905. height: math.unit(25, "feet"),
  55906. default: true
  55907. },
  55908. ]
  55909. ))
  55910. characterMakers.push(() => makeCharacter(
  55911. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  55912. {
  55913. front: {
  55914. height: math.unit(6 + 4/12, "feet"),
  55915. weight: math.unit(320, "lb"),
  55916. name: "Front",
  55917. image: {
  55918. source: "./media/characters/ookitsu/front.svg",
  55919. extra: 1160/976,
  55920. bottom: 38/1198
  55921. }
  55922. },
  55923. frontNsfw: {
  55924. height: math.unit(6 + 4/12, "feet"),
  55925. weight: math.unit(320, "lb"),
  55926. name: "Front (NSFW)",
  55927. image: {
  55928. source: "./media/characters/ookitsu/front-nsfw.svg",
  55929. extra: 1160/976,
  55930. bottom: 38/1198
  55931. }
  55932. },
  55933. back: {
  55934. height: math.unit(6 + 4/12, "feet"),
  55935. weight: math.unit(320, "lb"),
  55936. name: "Back",
  55937. image: {
  55938. source: "./media/characters/ookitsu/back.svg",
  55939. extra: 1030/975,
  55940. bottom: 70/1100
  55941. }
  55942. },
  55943. head: {
  55944. height: math.unit(1.79, "feet"),
  55945. name: "Head",
  55946. image: {
  55947. source: "./media/characters/ookitsu/head.svg"
  55948. }
  55949. },
  55950. hand: {
  55951. height: math.unit(0.92, "feet"),
  55952. name: "Hand",
  55953. image: {
  55954. source: "./media/characters/ookitsu/hand.svg"
  55955. }
  55956. },
  55957. tails: {
  55958. height: math.unit(3.3, "feet"),
  55959. name: "Tails",
  55960. image: {
  55961. source: "./media/characters/ookitsu/tails.svg"
  55962. }
  55963. },
  55964. dick: {
  55965. height: math.unit(1.10833, "feet"),
  55966. name: "Dick",
  55967. image: {
  55968. source: "./media/characters/ookitsu/dick.svg"
  55969. }
  55970. },
  55971. },
  55972. [
  55973. {
  55974. name: "Normal",
  55975. height: math.unit(6 + 4/12, "feet"),
  55976. default: true
  55977. },
  55978. {
  55979. name: "Macro",
  55980. height: math.unit(30, "feet")
  55981. },
  55982. ]
  55983. ))
  55984. characterMakers.push(() => makeCharacter(
  55985. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  55986. {
  55987. anthroFront: {
  55988. height: math.unit(6, "feet"),
  55989. weight: math.unit(250, "lb"),
  55990. name: "Front",
  55991. image: {
  55992. source: "./media/characters/jhusky/anthro-front.svg",
  55993. extra: 474/439,
  55994. bottom: 7/481
  55995. },
  55996. form: "anthro",
  55997. default: true
  55998. },
  55999. taurSideSfw: {
  56000. height: math.unit(6 + 4/12, "feet"),
  56001. weight: math.unit(500, "lb"),
  56002. name: "Side (SFW)",
  56003. image: {
  56004. source: "./media/characters/jhusky/taur-side-sfw.svg",
  56005. extra: 1741/1629,
  56006. bottom: 196/1937
  56007. },
  56008. form: "taur",
  56009. default: true
  56010. },
  56011. taurSideNsfw: {
  56012. height: math.unit(6 + 4/12, "feet"),
  56013. weight: math.unit(500, "lb"),
  56014. name: "Taur (NSFW)",
  56015. image: {
  56016. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  56017. extra: 1741/1629,
  56018. bottom: 196/1937
  56019. },
  56020. form: "taur",
  56021. },
  56022. },
  56023. [
  56024. {
  56025. name: "Huge",
  56026. height: math.unit(500, "feet"),
  56027. form: "anthro"
  56028. },
  56029. {
  56030. name: "Macro",
  56031. height: math.unit(1000, "feet"),
  56032. default: true,
  56033. form: "anthro"
  56034. },
  56035. {
  56036. name: "Megamacro",
  56037. height: math.unit(10000, "feet"),
  56038. form: "anthro"
  56039. },
  56040. {
  56041. name: "Huge",
  56042. height: math.unit(528, "feet"),
  56043. form: "taur"
  56044. },
  56045. {
  56046. name: "Macro",
  56047. height: math.unit(1056, "feet"),
  56048. default: true,
  56049. form: "taur"
  56050. },
  56051. {
  56052. name: "Megamacro",
  56053. height: math.unit(10556, "feet"),
  56054. form: "taur"
  56055. },
  56056. ],
  56057. {
  56058. "anthro": {
  56059. name: "Anthro",
  56060. default: true
  56061. },
  56062. "taur": {
  56063. name: "Taur",
  56064. },
  56065. }
  56066. ))
  56067. characterMakers.push(() => makeCharacter(
  56068. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  56069. {
  56070. front: {
  56071. height: math.unit(8, "feet"),
  56072. weight: math.unit(500, "lb"),
  56073. name: "Front",
  56074. image: {
  56075. source: "./media/characters/armail/front.svg",
  56076. extra: 1753/1669,
  56077. bottom: 155/1908
  56078. }
  56079. },
  56080. back: {
  56081. height: math.unit(8, "feet"),
  56082. weight: math.unit(500, "lb"),
  56083. name: "Back",
  56084. image: {
  56085. source: "./media/characters/armail/back.svg",
  56086. extra: 1872/1803,
  56087. bottom: 63/1935
  56088. }
  56089. },
  56090. },
  56091. [
  56092. {
  56093. name: "Micro",
  56094. height: math.unit(0.25, "feet")
  56095. },
  56096. {
  56097. name: "Normal",
  56098. height: math.unit(8, "feet"),
  56099. default: true
  56100. },
  56101. {
  56102. name: "Mini-macro",
  56103. height: math.unit(30, "feet")
  56104. },
  56105. {
  56106. name: "Macro",
  56107. height: math.unit(400, "feet")
  56108. },
  56109. {
  56110. name: "Mega-macro",
  56111. height: math.unit(6000, "feet")
  56112. },
  56113. ]
  56114. ))
  56115. characterMakers.push(() => makeCharacter(
  56116. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  56117. {
  56118. front: {
  56119. height: math.unit(6 + 7/12, "feet"),
  56120. weight: math.unit(210, "lb"),
  56121. name: "Front",
  56122. image: {
  56123. source: "./media/characters/wilfred-t-buxton/front.svg",
  56124. extra: 1068/882,
  56125. bottom: 28/1096
  56126. }
  56127. },
  56128. },
  56129. [
  56130. {
  56131. name: "Normal",
  56132. height: math.unit(6 + 7/12, "feet"),
  56133. default: true
  56134. },
  56135. ]
  56136. ))
  56137. characterMakers.push(() => makeCharacter(
  56138. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  56139. {
  56140. front: {
  56141. height: math.unit(5 + 2/12, "feet"),
  56142. weight: math.unit(120, "lb"),
  56143. name: "Front",
  56144. image: {
  56145. source: "./media/characters/leighton-marrow/front.svg",
  56146. extra: 441/409,
  56147. bottom: 37/478
  56148. }
  56149. },
  56150. },
  56151. [
  56152. {
  56153. name: "Normal",
  56154. height: math.unit(5 + 2/12, "feet"),
  56155. default: true
  56156. },
  56157. ]
  56158. ))
  56159. characterMakers.push(() => makeCharacter(
  56160. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  56161. {
  56162. front: {
  56163. height: math.unit(4, "meters"),
  56164. weight: math.unit(1200, "kg"),
  56165. name: "Front",
  56166. image: {
  56167. source: "./media/characters/licos/front.svg",
  56168. extra: 1727/1604,
  56169. bottom: 101/1828
  56170. },
  56171. form: "anthro",
  56172. default: true
  56173. },
  56174. taur_side: {
  56175. height: math.unit(20, "meters"),
  56176. weight: math.unit(1100000, "kg"),
  56177. name: "Side",
  56178. image: {
  56179. source: "./media/characters/licos/taur.svg",
  56180. extra: 1158/1091,
  56181. bottom: 80/1238
  56182. },
  56183. form: "taur",
  56184. default: true
  56185. },
  56186. },
  56187. [
  56188. {
  56189. name: "Normal",
  56190. height: math.unit(4, "meters"),
  56191. default: true,
  56192. form: "anthro"
  56193. },
  56194. {
  56195. name: "Normal",
  56196. height: math.unit(20, "meters"),
  56197. default: true,
  56198. form: "taur"
  56199. },
  56200. ],
  56201. {
  56202. "anthro": {
  56203. name: "Anthro",
  56204. default: true
  56205. },
  56206. "taur": {
  56207. name: "Taur",
  56208. },
  56209. }
  56210. ))
  56211. characterMakers.push(() => makeCharacter(
  56212. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  56213. {
  56214. front: {
  56215. height: math.unit(10 + 3/12, "feet"),
  56216. name: "Front",
  56217. image: {
  56218. source: "./media/characters/theo-monkey/front.svg",
  56219. extra: 1735/1658,
  56220. bottom: 73/1808
  56221. }
  56222. },
  56223. back: {
  56224. height: math.unit(10 + 3/12, "feet"),
  56225. name: "Back",
  56226. image: {
  56227. source: "./media/characters/theo-monkey/back.svg",
  56228. extra: 1742/1664,
  56229. bottom: 33/1775
  56230. }
  56231. },
  56232. head: {
  56233. height: math.unit(2.29, "feet"),
  56234. name: "Head",
  56235. image: {
  56236. source: "./media/characters/theo-monkey/head.svg"
  56237. }
  56238. },
  56239. handPalm: {
  56240. height: math.unit(1.73, "feet"),
  56241. name: "Hand (Palm)",
  56242. image: {
  56243. source: "./media/characters/theo-monkey/hand-palm.svg"
  56244. }
  56245. },
  56246. handBack: {
  56247. height: math.unit(1.63, "feet"),
  56248. name: "Hand (Back)",
  56249. image: {
  56250. source: "./media/characters/theo-monkey/hand-back.svg"
  56251. }
  56252. },
  56253. footSole: {
  56254. height: math.unit(2.15, "feet"),
  56255. name: "Foot (Sole)",
  56256. image: {
  56257. source: "./media/characters/theo-monkey/foot-sole.svg"
  56258. }
  56259. },
  56260. footSide: {
  56261. height: math.unit(1.6, "feet"),
  56262. name: "Foot (Side)",
  56263. image: {
  56264. source: "./media/characters/theo-monkey/foot-side.svg"
  56265. }
  56266. },
  56267. },
  56268. [
  56269. {
  56270. name: "Normal",
  56271. height: math.unit(10 + 3/12, "feet"),
  56272. default: true
  56273. },
  56274. ]
  56275. ))
  56276. characterMakers.push(() => makeCharacter(
  56277. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  56278. {
  56279. front: {
  56280. height: math.unit(11, "feet"),
  56281. weight: math.unit(3000, "lb"),
  56282. preyCapacity: math.unit(10, "people"),
  56283. name: "Front",
  56284. image: {
  56285. source: "./media/characters/brook/front.svg",
  56286. extra: 909/835,
  56287. bottom: 108/1017
  56288. }
  56289. },
  56290. back: {
  56291. height: math.unit(11, "feet"),
  56292. weight: math.unit(3000, "lb"),
  56293. preyCapacity: math.unit(10, "people"),
  56294. name: "Back",
  56295. image: {
  56296. source: "./media/characters/brook/back.svg",
  56297. extra: 976/916,
  56298. bottom: 34/1010
  56299. }
  56300. },
  56301. backAlt: {
  56302. height: math.unit(11, "feet"),
  56303. weight: math.unit(3000, "lb"),
  56304. preyCapacity: math.unit(10, "people"),
  56305. name: "Back (Alt)",
  56306. image: {
  56307. source: "./media/characters/brook/back-alt.svg",
  56308. extra: 1283/1213,
  56309. bottom: 35/1318
  56310. }
  56311. },
  56312. bust: {
  56313. height: math.unit(9.0859030837, "feet"),
  56314. weight: math.unit(3000, "lb"),
  56315. preyCapacity: math.unit(10, "people"),
  56316. name: "Bust",
  56317. image: {
  56318. source: "./media/characters/brook/bust.svg",
  56319. extra: 2043/1923,
  56320. bottom: 0/2043
  56321. }
  56322. },
  56323. },
  56324. [
  56325. {
  56326. name: "Small",
  56327. height: math.unit(11, "feet"),
  56328. default: true
  56329. },
  56330. {
  56331. name: "Towering",
  56332. height: math.unit(5, "km")
  56333. },
  56334. {
  56335. name: "Enormous",
  56336. height: math.unit(25, "earths")
  56337. },
  56338. ]
  56339. ))
  56340. characterMakers.push(() => makeCharacter(
  56341. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  56342. {
  56343. front: {
  56344. height: math.unit(4, "feet"),
  56345. weight: math.unit(150, "lb"),
  56346. name: "Front",
  56347. image: {
  56348. source: "./media/characters/squishi/front.svg",
  56349. extra: 1428/1271,
  56350. bottom: 30/1458
  56351. },
  56352. extraAttributes: {
  56353. "pawSize": {
  56354. name: "Paw Size",
  56355. power: 1,
  56356. type: "length",
  56357. base: math.unit(14, "ShoeSizeMensUS"),
  56358. defaultUnit: "ShoeSizeMensUS"
  56359. },
  56360. }
  56361. },
  56362. side: {
  56363. height: math.unit(4, "feet"),
  56364. weight: math.unit(150, "lb"),
  56365. name: "Side",
  56366. image: {
  56367. source: "./media/characters/squishi/side.svg",
  56368. extra: 1428/1271,
  56369. bottom: 30/1458
  56370. },
  56371. extraAttributes: {
  56372. "pawSize": {
  56373. name: "Paw Size",
  56374. power: 1,
  56375. type: "length",
  56376. base: math.unit(14, "ShoeSizeMensUS"),
  56377. defaultUnit: "ShoeSizeMensUS"
  56378. },
  56379. }
  56380. },
  56381. back: {
  56382. height: math.unit(4, "feet"),
  56383. weight: math.unit(150, "lb"),
  56384. name: "Back",
  56385. image: {
  56386. source: "./media/characters/squishi/back.svg",
  56387. extra: 1428/1271,
  56388. bottom: 30/1458
  56389. },
  56390. extraAttributes: {
  56391. "pawSize": {
  56392. name: "Paw Size",
  56393. power: 1,
  56394. type: "length",
  56395. base: math.unit(14, "ShoeSizeMensUS"),
  56396. defaultUnit: "ShoeSizeMensUS"
  56397. },
  56398. }
  56399. },
  56400. },
  56401. [
  56402. {
  56403. name: "Normal",
  56404. height: math.unit(4, "feet"),
  56405. default: true
  56406. },
  56407. ]
  56408. ))
  56409. characterMakers.push(() => makeCharacter(
  56410. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  56411. {
  56412. front: {
  56413. height: math.unit(7 + 8/12, "feet"),
  56414. weight: math.unit(333, "lb"),
  56415. name: "Front",
  56416. image: {
  56417. source: "./media/characters/vincent-vasroc/front.svg",
  56418. extra: 1962/1860,
  56419. bottom: 41/2003
  56420. }
  56421. },
  56422. back: {
  56423. height: math.unit(7 + 8/12, "feet"),
  56424. weight: math.unit(333, "lb"),
  56425. name: "Back",
  56426. image: {
  56427. source: "./media/characters/vincent-vasroc/back.svg",
  56428. extra: 1952/1815,
  56429. bottom: 33/1985
  56430. }
  56431. },
  56432. paw: {
  56433. height: math.unit(1.24, "feet"),
  56434. name: "Paw",
  56435. image: {
  56436. source: "./media/characters/vincent-vasroc/paw.svg"
  56437. }
  56438. },
  56439. ear: {
  56440. height: math.unit(0.75, "feet"),
  56441. name: "Ear",
  56442. image: {
  56443. source: "./media/characters/vincent-vasroc/ear.svg"
  56444. }
  56445. },
  56446. },
  56447. [
  56448. {
  56449. name: "Nano",
  56450. height: math.unit(92, "micrometers")
  56451. },
  56452. {
  56453. name: "Normal",
  56454. height: math.unit(7 + 8/12, "feet"),
  56455. default: true
  56456. },
  56457. ]
  56458. ))
  56459. characterMakers.push(() => makeCharacter(
  56460. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  56461. {
  56462. frontNsfw: {
  56463. height: math.unit(40, "feet"),
  56464. weight: math.unit(58, "tons"),
  56465. name: "Front (NSFW)",
  56466. image: {
  56467. source: "./media/characters/ru-kahn/front-nsfw.svg",
  56468. extra: 1265/965,
  56469. bottom: 155/1420
  56470. }
  56471. },
  56472. frontSfw: {
  56473. height: math.unit(40, "feet"),
  56474. weight: math.unit(58, "tons"),
  56475. name: "Front (SFW)",
  56476. image: {
  56477. source: "./media/characters/ru-kahn/front-sfw.svg",
  56478. extra: 1265/965,
  56479. bottom: 80/1345
  56480. }
  56481. },
  56482. },
  56483. [
  56484. {
  56485. name: "Small",
  56486. height: math.unit(4, "feet")
  56487. },
  56488. {
  56489. name: "Normal",
  56490. height: math.unit(40, "feet"),
  56491. default: true
  56492. },
  56493. {
  56494. name: "Macro",
  56495. height: math.unit(400, "feet")
  56496. },
  56497. ]
  56498. ))
  56499. characterMakers.push(() => makeCharacter(
  56500. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  56501. {
  56502. frontNude: {
  56503. height: math.unit(6 + 5/12, "feet"),
  56504. name: "Front (Nude)",
  56505. image: {
  56506. source: "./media/characters/sylvie-laforge/front-nude.svg",
  56507. extra: 1369/1366,
  56508. bottom: 68/1437
  56509. }
  56510. },
  56511. frontDressed: {
  56512. height: math.unit(6 + 5/12, "feet"),
  56513. name: "Front (Dressed)",
  56514. image: {
  56515. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  56516. extra: 1369/1366,
  56517. bottom: 68/1437
  56518. }
  56519. },
  56520. },
  56521. [
  56522. {
  56523. name: "Normal",
  56524. height: math.unit(6 + 5/12, "feet"),
  56525. default: true
  56526. },
  56527. {
  56528. name: "Maximum",
  56529. height: math.unit(1930, "feet")
  56530. },
  56531. ]
  56532. ))
  56533. characterMakers.push(() => makeCharacter(
  56534. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  56535. {
  56536. front: {
  56537. height: math.unit(5 + 6/12, "feet"),
  56538. name: "Front",
  56539. image: {
  56540. source: "./media/characters/kaja/front.svg",
  56541. extra: 1874/1514,
  56542. bottom: 117/1991
  56543. }
  56544. },
  56545. },
  56546. [
  56547. {
  56548. name: "Normal",
  56549. height: math.unit(5 + 6/12, "feet"),
  56550. default: true
  56551. },
  56552. ]
  56553. ))
  56554. characterMakers.push(() => makeCharacter(
  56555. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  56556. {
  56557. front: {
  56558. height: math.unit(5 + 9/12, "feet"),
  56559. weight: math.unit(200, "lb"),
  56560. name: "Front",
  56561. image: {
  56562. source: "./media/characters/mark-smith/front.svg",
  56563. extra: 1004/943,
  56564. bottom: 58/1062
  56565. }
  56566. },
  56567. back: {
  56568. height: math.unit(5 + 9/12, "feet"),
  56569. weight: math.unit(200, "lb"),
  56570. name: "Back",
  56571. image: {
  56572. source: "./media/characters/mark-smith/back.svg",
  56573. extra: 1023/953,
  56574. bottom: 24/1047
  56575. }
  56576. },
  56577. head: {
  56578. height: math.unit(1.82, "feet"),
  56579. name: "Head",
  56580. image: {
  56581. source: "./media/characters/mark-smith/head.svg"
  56582. }
  56583. },
  56584. hand: {
  56585. height: math.unit(1.4, "feet"),
  56586. name: "Hand",
  56587. image: {
  56588. source: "./media/characters/mark-smith/hand.svg"
  56589. }
  56590. },
  56591. paw: {
  56592. height: math.unit(1.69, "feet"),
  56593. name: "Paw",
  56594. image: {
  56595. source: "./media/characters/mark-smith/paw.svg"
  56596. }
  56597. },
  56598. },
  56599. [
  56600. {
  56601. name: "Micro",
  56602. height: math.unit(0.25, "inches")
  56603. },
  56604. {
  56605. name: "Normal",
  56606. height: math.unit(5 + 9/12, "feet"),
  56607. default: true
  56608. },
  56609. {
  56610. name: "Macro",
  56611. height: math.unit(500, "feet")
  56612. },
  56613. ]
  56614. ))
  56615. characterMakers.push(() => makeCharacter(
  56616. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  56617. {
  56618. frontNude: {
  56619. height: math.unit(6, "feet"),
  56620. name: "Front (Nude)",
  56621. image: {
  56622. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  56623. extra: 1384/1321,
  56624. bottom: 57/1441
  56625. }
  56626. },
  56627. frontDressed: {
  56628. height: math.unit(6, "feet"),
  56629. name: "Front (Dressed)",
  56630. image: {
  56631. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  56632. extra: 1384/1321,
  56633. bottom: 57/1441
  56634. }
  56635. },
  56636. },
  56637. [
  56638. {
  56639. name: "Normal",
  56640. height: math.unit(6, "feet"),
  56641. default: true
  56642. },
  56643. {
  56644. name: "Maximum",
  56645. height: math.unit(1776, "feet")
  56646. },
  56647. ]
  56648. ))
  56649. characterMakers.push(() => makeCharacter(
  56650. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  56651. {
  56652. front: {
  56653. height: math.unit(2 + 4/12, "feet"),
  56654. weight: math.unit(350, "lb"),
  56655. name: "Front",
  56656. image: {
  56657. source: "./media/characters/devos/front.svg",
  56658. extra: 958/852,
  56659. bottom: 143/1101
  56660. }
  56661. },
  56662. },
  56663. [
  56664. {
  56665. name: "Base",
  56666. height: math.unit(2 + 4/12, "feet"),
  56667. default: true
  56668. },
  56669. ]
  56670. ))
  56671. characterMakers.push(() => makeCharacter(
  56672. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  56673. {
  56674. front: {
  56675. height: math.unit(9 + 2/12, "feet"),
  56676. name: "Front",
  56677. image: {
  56678. source: "./media/characters/hiveheart/front.svg",
  56679. extra: 394/364,
  56680. bottom: 65/459
  56681. }
  56682. },
  56683. back: {
  56684. height: math.unit(9 + 2/12, "feet"),
  56685. name: "Back",
  56686. image: {
  56687. source: "./media/characters/hiveheart/back.svg",
  56688. extra: 374/357,
  56689. bottom: 63/437
  56690. }
  56691. },
  56692. },
  56693. [
  56694. {
  56695. name: "Base",
  56696. height: math.unit(9 + 2/12, "feet"),
  56697. default: true
  56698. },
  56699. ]
  56700. ))
  56701. characterMakers.push(() => makeCharacter(
  56702. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  56703. {
  56704. front: {
  56705. height: math.unit(2.5, "inches"),
  56706. weight: math.unit(0.6, "oz"),
  56707. name: "Front",
  56708. image: {
  56709. source: "./media/characters/bryn/front.svg",
  56710. extra: 1480/1205,
  56711. bottom: 27/1507
  56712. }
  56713. },
  56714. back: {
  56715. height: math.unit(2.5, "inches"),
  56716. weight: math.unit(0.6, "oz"),
  56717. name: "Back",
  56718. image: {
  56719. source: "./media/characters/bryn/back.svg",
  56720. extra: 1475/1201,
  56721. bottom: 39/1514
  56722. }
  56723. },
  56724. foot: {
  56725. height: math.unit(0.4, "inches"),
  56726. name: "Foot",
  56727. image: {
  56728. source: "./media/characters/bryn/foot.svg"
  56729. }
  56730. },
  56731. },
  56732. [
  56733. {
  56734. name: "Normal",
  56735. height: math.unit(2.5, "inches"),
  56736. default: true
  56737. },
  56738. ]
  56739. ))
  56740. characterMakers.push(() => makeCharacter(
  56741. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  56742. {
  56743. side: {
  56744. height: math.unit(7, "feet"),
  56745. weight: math.unit(657, "kg"),
  56746. name: "Side",
  56747. image: {
  56748. source: "./media/characters/delta/side.svg",
  56749. extra: 781/212,
  56750. bottom: 7/788
  56751. },
  56752. extraAttributes: {
  56753. "wingspan": {
  56754. name: "Wingspan",
  56755. power: 1,
  56756. type: "length",
  56757. base: math.unit(48, "feet")
  56758. },
  56759. "length": {
  56760. name: "Length",
  56761. power: 1,
  56762. type: "length",
  56763. base: math.unit(21, "feet")
  56764. },
  56765. "pawSize": {
  56766. name: "Paw Size",
  56767. power: 2,
  56768. type: "area",
  56769. base: math.unit(1.5*1.4, "feet^2")
  56770. },
  56771. }
  56772. },
  56773. },
  56774. [
  56775. {
  56776. name: "Normal",
  56777. height: math.unit(6, "feet"),
  56778. default: true
  56779. },
  56780. ]
  56781. ))
  56782. characterMakers.push(() => makeCharacter(
  56783. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  56784. {
  56785. front: {
  56786. height: math.unit(6, "feet"),
  56787. name: "Front",
  56788. image: {
  56789. source: "./media/characters/pyrow/front.svg",
  56790. extra: 513/486,
  56791. bottom: 14/527
  56792. }
  56793. },
  56794. frontWing: {
  56795. height: math.unit(6, "feet"),
  56796. name: "Front (Wing)",
  56797. image: {
  56798. source: "./media/characters/pyrow/front-wing.svg",
  56799. extra: 539/383,
  56800. bottom: 20/559
  56801. }
  56802. },
  56803. back: {
  56804. height: math.unit(6, "feet"),
  56805. name: "Back",
  56806. image: {
  56807. source: "./media/characters/pyrow/back.svg",
  56808. extra: 500/473,
  56809. bottom: 9/509
  56810. }
  56811. },
  56812. },
  56813. [
  56814. {
  56815. name: "Normal",
  56816. height: math.unit(6, "feet"),
  56817. default: true
  56818. },
  56819. ]
  56820. ))
  56821. characterMakers.push(() => makeCharacter(
  56822. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  56823. {
  56824. front: {
  56825. height: math.unit(5, "meters"),
  56826. weight: math.unit(3, "tonnes"),
  56827. name: "Front",
  56828. image: {
  56829. source: "./media/characters/velikan/front.svg",
  56830. extra: 867/744,
  56831. bottom: 71/938
  56832. },
  56833. extraAttributes: {
  56834. "shoeSize": {
  56835. name: "Shoe Size",
  56836. power: 1,
  56837. type: "length",
  56838. base: math.unit(135, "ShoeSizeUK"),
  56839. defaultUnit: "ShoeSizeUK"
  56840. },
  56841. }
  56842. },
  56843. },
  56844. [
  56845. {
  56846. name: "Normal",
  56847. height: math.unit(5, "meters"),
  56848. default: true
  56849. },
  56850. {
  56851. name: "Macro",
  56852. height: math.unit(1, "km")
  56853. },
  56854. {
  56855. name: "Mega Macro",
  56856. height: math.unit(100, "km")
  56857. },
  56858. {
  56859. name: "Giga Macro",
  56860. height: math.unit(2, "megameters")
  56861. },
  56862. {
  56863. name: "Planetary",
  56864. height: math.unit(22, "megameters")
  56865. },
  56866. {
  56867. name: "Solar",
  56868. height: math.unit(8, "gigameters")
  56869. },
  56870. {
  56871. name: "Cosmic",
  56872. height: math.unit(10, "zettameters")
  56873. },
  56874. {
  56875. name: "Omni",
  56876. height: math.unit(9e260, "multiverses")
  56877. },
  56878. ]
  56879. ))
  56880. characterMakers.push(() => makeCharacter(
  56881. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  56882. {
  56883. front: {
  56884. height: math.unit(4 + 3/12, "feet"),
  56885. weight: math.unit(90, "lb"),
  56886. name: "Front",
  56887. image: {
  56888. source: "./media/characters/sabiki/front.svg",
  56889. extra: 1662/1423,
  56890. bottom: 65/1727
  56891. }
  56892. },
  56893. },
  56894. [
  56895. {
  56896. name: "Normal",
  56897. height: math.unit(4 + 3/12, "feet"),
  56898. default: true
  56899. },
  56900. ]
  56901. ))
  56902. characterMakers.push(() => makeCharacter(
  56903. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  56904. {
  56905. frontSfw: {
  56906. height: math.unit(2, "mm"),
  56907. name: "Front (SFW)",
  56908. image: {
  56909. source: "./media/characters/carmel/front-sfw.svg",
  56910. extra: 1131/1006,
  56911. bottom: 66/1197
  56912. }
  56913. },
  56914. frontNsfw: {
  56915. height: math.unit(2, "mm"),
  56916. name: "Front (NSFW)",
  56917. image: {
  56918. source: "./media/characters/carmel/front-nsfw.svg",
  56919. extra: 1131/1006,
  56920. bottom: 66/1197
  56921. }
  56922. },
  56923. foot: {
  56924. height: math.unit(0.3, "mm"),
  56925. name: "Foot",
  56926. image: {
  56927. source: "./media/characters/carmel/foot.svg"
  56928. }
  56929. },
  56930. tongue: {
  56931. height: math.unit(0.71, "mm"),
  56932. name: "Tongue",
  56933. image: {
  56934. source: "./media/characters/carmel/tongue.svg"
  56935. }
  56936. },
  56937. dick: {
  56938. height: math.unit(0.085, "mm"),
  56939. name: "Dick",
  56940. image: {
  56941. source: "./media/characters/carmel/dick.svg"
  56942. }
  56943. },
  56944. },
  56945. [
  56946. {
  56947. name: "Micro",
  56948. height: math.unit(2, "mm"),
  56949. default: true
  56950. },
  56951. {
  56952. name: "Normal",
  56953. height: math.unit(4 + 8/12, "feet")
  56954. },
  56955. {
  56956. name: "Mega Macro",
  56957. height: math.unit(250, "feet")
  56958. },
  56959. {
  56960. name: "BIGGER",
  56961. height: math.unit(1000, "feet")
  56962. },
  56963. {
  56964. name: "BIGGEST",
  56965. height: math.unit(2, "miles")
  56966. },
  56967. ]
  56968. ))
  56969. characterMakers.push(() => makeCharacter(
  56970. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  56971. {
  56972. front: {
  56973. height: math.unit(6.5, "feet"),
  56974. weight: math.unit(198, "lb"),
  56975. name: "Front",
  56976. image: {
  56977. source: "./media/characters/tamani/anthro.svg",
  56978. extra: 930/890,
  56979. bottom: 34/964
  56980. },
  56981. form: "anthro",
  56982. default: true
  56983. },
  56984. side: {
  56985. height: math.unit(6, "feet"),
  56986. weight: math.unit(198*2, "lb"),
  56987. name: "Side",
  56988. image: {
  56989. source: "./media/characters/tamani/feral.svg",
  56990. extra: 559/519,
  56991. bottom: 43/602
  56992. },
  56993. form: "feral"
  56994. },
  56995. },
  56996. [
  56997. {
  56998. name: "Normal",
  56999. height: math.unit(6.5, "feet"),
  57000. default: true,
  57001. form: "anthro"
  57002. },
  57003. {
  57004. name: "Normal",
  57005. height: math.unit(6, "feet"),
  57006. default: true,
  57007. form: "feral"
  57008. },
  57009. ],
  57010. {
  57011. "anthro": {
  57012. name: "Anthro",
  57013. default: true
  57014. },
  57015. "feral": {
  57016. name: "Feral",
  57017. },
  57018. }
  57019. ))
  57020. characterMakers.push(() => makeCharacter(
  57021. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  57022. {
  57023. front: {
  57024. height: math.unit(4 + 1/12, "feet"),
  57025. weight: math.unit(114, "lb"),
  57026. name: "Front",
  57027. image: {
  57028. source: "./media/characters/dex/front.svg",
  57029. extra: 787/680,
  57030. bottom: 18/805
  57031. }
  57032. },
  57033. side: {
  57034. height: math.unit(4 + 1/12, "feet"),
  57035. weight: math.unit(114, "lb"),
  57036. name: "Side",
  57037. image: {
  57038. source: "./media/characters/dex/side.svg",
  57039. extra: 785/680,
  57040. bottom: 12/797
  57041. }
  57042. },
  57043. back: {
  57044. height: math.unit(4 + 1/12, "feet"),
  57045. weight: math.unit(114, "lb"),
  57046. name: "Back",
  57047. image: {
  57048. source: "./media/characters/dex/back.svg",
  57049. extra: 785/681,
  57050. bottom: 17/802
  57051. }
  57052. },
  57053. loungewear: {
  57054. height: math.unit(4 + 1/12, "feet"),
  57055. weight: math.unit(114, "lb"),
  57056. name: "Loungewear",
  57057. image: {
  57058. source: "./media/characters/dex/loungewear.svg",
  57059. extra: 787/680,
  57060. bottom: 18/805
  57061. }
  57062. },
  57063. workout: {
  57064. height: math.unit(4 + 1/12, "feet"),
  57065. weight: math.unit(114, "lb"),
  57066. name: "Workout",
  57067. image: {
  57068. source: "./media/characters/dex/workout.svg",
  57069. extra: 787/680,
  57070. bottom: 18/805
  57071. }
  57072. },
  57073. schoolUniform: {
  57074. height: math.unit(4 + 1/12, "feet"),
  57075. weight: math.unit(114, "lb"),
  57076. name: "School-uniform",
  57077. image: {
  57078. source: "./media/characters/dex/school-uniform.svg",
  57079. extra: 787/680,
  57080. bottom: 18/805
  57081. }
  57082. },
  57083. maw: {
  57084. height: math.unit(0.55, "feet"),
  57085. name: "Maw",
  57086. image: {
  57087. source: "./media/characters/dex/maw.svg"
  57088. }
  57089. },
  57090. paw: {
  57091. height: math.unit(0.87, "feet"),
  57092. name: "Paw",
  57093. image: {
  57094. source: "./media/characters/dex/paw.svg"
  57095. }
  57096. },
  57097. bust: {
  57098. height: math.unit(1.67, "feet"),
  57099. name: "Bust",
  57100. image: {
  57101. source: "./media/characters/dex/bust.svg"
  57102. }
  57103. },
  57104. },
  57105. [
  57106. {
  57107. name: "Normal",
  57108. height: math.unit(4 + 1/12, "feet"),
  57109. default: true
  57110. },
  57111. ]
  57112. ))
  57113. characterMakers.push(() => makeCharacter(
  57114. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  57115. {
  57116. front: {
  57117. height: math.unit(4 + 3/12, "feet"),
  57118. weight: math.unit(60, "lb"),
  57119. name: "Front",
  57120. image: {
  57121. source: "./media/characters/silke/front.svg",
  57122. extra: 1334/1122,
  57123. bottom: 21/1355
  57124. }
  57125. },
  57126. back: {
  57127. height: math.unit(4 + 3/12, "feet"),
  57128. weight: math.unit(60, "lb"),
  57129. name: "Back",
  57130. image: {
  57131. source: "./media/characters/silke/back.svg",
  57132. extra: 1328/1092,
  57133. bottom: 16/1344
  57134. }
  57135. },
  57136. dressed: {
  57137. height: math.unit(4 + 3/12, "feet"),
  57138. weight: math.unit(60, "lb"),
  57139. name: "Dressed",
  57140. image: {
  57141. source: "./media/characters/silke/dressed.svg",
  57142. extra: 1334/1122,
  57143. bottom: 43/1377
  57144. }
  57145. },
  57146. },
  57147. [
  57148. {
  57149. name: "Normal",
  57150. height: math.unit(4 + 3/12, "feet"),
  57151. default: true
  57152. },
  57153. ]
  57154. ))
  57155. characterMakers.push(() => makeCharacter(
  57156. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  57157. {
  57158. front: {
  57159. height: math.unit(1.58, "meters"),
  57160. weight: math.unit(47, "kg"),
  57161. name: "Front",
  57162. image: {
  57163. source: "./media/characters/wireshark/front.svg",
  57164. extra: 883/838,
  57165. bottom: 66/949
  57166. }
  57167. },
  57168. },
  57169. [
  57170. {
  57171. name: "Normal",
  57172. height: math.unit(1.58, "meters"),
  57173. default: true
  57174. },
  57175. ]
  57176. ))
  57177. characterMakers.push(() => makeCharacter(
  57178. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  57179. {
  57180. front: {
  57181. height: math.unit(6, "meters"),
  57182. weight: math.unit(15000, "kg"),
  57183. name: "Front",
  57184. image: {
  57185. source: "./media/characters/gallagher/front.svg",
  57186. extra: 532/493,
  57187. bottom: 0/532
  57188. }
  57189. },
  57190. },
  57191. [
  57192. {
  57193. name: "Normal",
  57194. height: math.unit(6, "meters"),
  57195. default: true
  57196. },
  57197. ]
  57198. ))
  57199. characterMakers.push(() => makeCharacter(
  57200. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  57201. {
  57202. front: {
  57203. height: math.unit(2.4, "meters"),
  57204. weight: math.unit(270, "kg"),
  57205. name: "Front",
  57206. image: {
  57207. source: "./media/characters/alice/front.svg",
  57208. extra: 950/900,
  57209. bottom: 36/986
  57210. }
  57211. },
  57212. side: {
  57213. height: math.unit(2.4, "meters"),
  57214. weight: math.unit(270, "kg"),
  57215. name: "Side",
  57216. image: {
  57217. source: "./media/characters/alice/side.svg",
  57218. extra: 921/876,
  57219. bottom: 19/940
  57220. }
  57221. },
  57222. dressed: {
  57223. height: math.unit(2.4, "meters"),
  57224. weight: math.unit(270, "kg"),
  57225. name: "Dressed",
  57226. image: {
  57227. source: "./media/characters/alice/dressed.svg",
  57228. extra: 905/850,
  57229. bottom: 81/986
  57230. }
  57231. },
  57232. fishnet: {
  57233. height: math.unit(2.4, "meters"),
  57234. weight: math.unit(270, "kg"),
  57235. name: "Fishnet",
  57236. image: {
  57237. source: "./media/characters/alice/fishnet.svg",
  57238. extra: 905/850,
  57239. bottom: 81/986
  57240. }
  57241. },
  57242. },
  57243. [
  57244. {
  57245. name: "Normal",
  57246. height: math.unit(2.4, "meters"),
  57247. default: true
  57248. },
  57249. ]
  57250. ))
  57251. characterMakers.push(() => makeCharacter(
  57252. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  57253. {
  57254. front: {
  57255. height: math.unit(175.25, "feet"),
  57256. name: "Front",
  57257. image: {
  57258. source: "./media/characters/fio/front.svg",
  57259. extra: 1883/1591,
  57260. bottom: 34/1917
  57261. }
  57262. },
  57263. },
  57264. [
  57265. {
  57266. name: "Normal",
  57267. height: math.unit(175.25, "cm"),
  57268. default: true
  57269. },
  57270. ]
  57271. ))
  57272. characterMakers.push(() => makeCharacter(
  57273. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  57274. {
  57275. side: {
  57276. height: math.unit(6, "meters"),
  57277. weight: math.unit(3400, "kg"),
  57278. preyCapacity: math.unit(1700, "liters"),
  57279. name: "Side",
  57280. image: {
  57281. source: "./media/characters/hass/side.svg",
  57282. extra: 1058/997,
  57283. bottom: 177/1235
  57284. }
  57285. },
  57286. feeding: {
  57287. height: math.unit(6*0.63, "meters"),
  57288. weight: math.unit(3400, "kg"),
  57289. preyCapacity: math.unit(1700, "liters"),
  57290. name: "Feeding",
  57291. image: {
  57292. source: "./media/characters/hass/feeding.svg",
  57293. extra: 689/579,
  57294. bottom: 146/835
  57295. }
  57296. },
  57297. guts: {
  57298. height: math.unit(6, "meters"),
  57299. weight: math.unit(3400, "kg"),
  57300. name: "Guts",
  57301. image: {
  57302. source: "./media/characters/hass/guts.svg",
  57303. extra: 1223/1198,
  57304. bottom: 182/1405
  57305. }
  57306. },
  57307. dickFront: {
  57308. height: math.unit(1.4, "meters"),
  57309. name: "Dick (Front)",
  57310. image: {
  57311. source: "./media/characters/hass/dick-front.svg"
  57312. }
  57313. },
  57314. dickSide: {
  57315. height: math.unit(1.3, "meters"),
  57316. name: "Dick (Side)",
  57317. image: {
  57318. source: "./media/characters/hass/dick-side.svg"
  57319. }
  57320. },
  57321. dickBack: {
  57322. height: math.unit(1.4, "meters"),
  57323. name: "Dick (Back)",
  57324. image: {
  57325. source: "./media/characters/hass/dick-back.svg"
  57326. }
  57327. },
  57328. },
  57329. [
  57330. {
  57331. name: "Normal",
  57332. height: math.unit(6, "meters"),
  57333. default: true
  57334. },
  57335. ]
  57336. ))
  57337. characterMakers.push(() => makeCharacter(
  57338. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  57339. {
  57340. front: {
  57341. height: math.unit(4, "feet"),
  57342. weight: math.unit(60, "lb"),
  57343. name: "Front",
  57344. image: {
  57345. source: "./media/characters/hickory-finnegan/front.svg",
  57346. extra: 444/411,
  57347. bottom: 10/454
  57348. }
  57349. },
  57350. side: {
  57351. height: math.unit(4, "feet"),
  57352. weight: math.unit(60, "lb"),
  57353. name: "Side",
  57354. image: {
  57355. source: "./media/characters/hickory-finnegan/side.svg",
  57356. extra: 444/411,
  57357. bottom: 10/454
  57358. }
  57359. },
  57360. back: {
  57361. height: math.unit(4, "feet"),
  57362. weight: math.unit(60, "lb"),
  57363. name: "Back",
  57364. image: {
  57365. source: "./media/characters/hickory-finnegan/back.svg",
  57366. extra: 444/411,
  57367. bottom: 10/454
  57368. }
  57369. },
  57370. },
  57371. [
  57372. {
  57373. name: "Normal",
  57374. height: math.unit(4, "feet"),
  57375. default: true
  57376. },
  57377. ]
  57378. ))
  57379. characterMakers.push(() => makeCharacter(
  57380. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  57381. {
  57382. snivy_front: {
  57383. height: math.unit(2, "feet"),
  57384. weight: math.unit(17.9, "lb"),
  57385. name: "Front",
  57386. image: {
  57387. source: "./media/characters/robin-phox/snivy-front.svg",
  57388. extra: 569/504,
  57389. bottom: 33/602
  57390. },
  57391. form: "snivy",
  57392. default: true
  57393. },
  57394. snivy_frontNsfw: {
  57395. height: math.unit(2, "feet"),
  57396. weight: math.unit(17.9, "lb"),
  57397. name: "Front (NSFW)",
  57398. image: {
  57399. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  57400. extra: 569/504,
  57401. bottom: 33/602
  57402. },
  57403. form: "snivy",
  57404. },
  57405. snivy_back: {
  57406. height: math.unit(2, "feet"),
  57407. weight: math.unit(17.9, "lb"),
  57408. name: "Back",
  57409. image: {
  57410. source: "./media/characters/robin-phox/snivy-back.svg",
  57411. extra: 577/508,
  57412. bottom: 21/598
  57413. },
  57414. form: "snivy",
  57415. },
  57416. snivy_foot: {
  57417. height: math.unit(0.68, "feet"),
  57418. name: "Foot",
  57419. image: {
  57420. source: "./media/characters/robin-phox/snivy-foot.svg"
  57421. },
  57422. form: "snivy",
  57423. },
  57424. snivy_sole: {
  57425. height: math.unit(0.68, "feet"),
  57426. name: "Sole",
  57427. image: {
  57428. source: "./media/characters/robin-phox/snivy-sole.svg"
  57429. },
  57430. form: "snivy",
  57431. },
  57432. yoshi_front: {
  57433. height: math.unit(6, "feet"),
  57434. weight: math.unit(150, "lb"),
  57435. name: "Front",
  57436. image: {
  57437. source: "./media/characters/robin-phox/yoshi-front.svg",
  57438. extra: 890/792,
  57439. bottom: 29/919
  57440. },
  57441. form: "yoshi",
  57442. default: true
  57443. },
  57444. yoshi_frontNsfw: {
  57445. height: math.unit(6, "feet"),
  57446. weight: math.unit(150, "lb"),
  57447. name: "Front (NSFW)",
  57448. image: {
  57449. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  57450. extra: 890/792,
  57451. bottom: 29/919
  57452. },
  57453. form: "yoshi",
  57454. },
  57455. yoshi_back: {
  57456. height: math.unit(6, "feet"),
  57457. weight: math.unit(150, "lb"),
  57458. name: "Back",
  57459. image: {
  57460. source: "./media/characters/robin-phox/yoshi-back.svg",
  57461. extra: 890/792,
  57462. bottom: 29/919
  57463. },
  57464. form: "yoshi",
  57465. },
  57466. yoshi_foot: {
  57467. height: math.unit(1.5, "feet"),
  57468. name: "Foot",
  57469. image: {
  57470. source: "./media/characters/robin-phox/yoshi-foot.svg"
  57471. },
  57472. form: "yoshi",
  57473. },
  57474. delphox_front: {
  57475. height: math.unit(4 + 11/12, "feet"),
  57476. weight: math.unit(86, "lb"),
  57477. name: "Front",
  57478. image: {
  57479. source: "./media/characters/robin-phox/delphox-front.svg",
  57480. extra: 1266/1069,
  57481. bottom: 32/1298
  57482. },
  57483. form: "delphox",
  57484. default: true
  57485. },
  57486. delphox_frontNsfw: {
  57487. height: math.unit(4 + 11/12, "feet"),
  57488. weight: math.unit(86, "lb"),
  57489. name: "Front (NSFW)",
  57490. image: {
  57491. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  57492. extra: 1266/1069,
  57493. bottom: 32/1298
  57494. },
  57495. form: "delphox",
  57496. },
  57497. delphox_back: {
  57498. height: math.unit(4 + 11/12, "feet"),
  57499. weight: math.unit(86, "lb"),
  57500. name: "Back",
  57501. image: {
  57502. source: "./media/characters/robin-phox/delphox-back.svg",
  57503. extra: 1269/1083,
  57504. bottom: 15/1284
  57505. },
  57506. form: "delphox",
  57507. },
  57508. mienshao_front: {
  57509. height: math.unit(4 + 7/12, "feet"),
  57510. weight: math.unit(78.3, "lb"),
  57511. name: "Front",
  57512. image: {
  57513. source: "./media/characters/robin-phox/mienshao-front.svg",
  57514. extra: 1052/970,
  57515. bottom: 108/1160
  57516. },
  57517. form: "mienshao",
  57518. default: true
  57519. },
  57520. mienshao_frontNsfw: {
  57521. height: math.unit(4 + 7/12, "feet"),
  57522. weight: math.unit(78.3, "lb"),
  57523. name: "Front (NSFW)",
  57524. image: {
  57525. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  57526. extra: 1052/970,
  57527. bottom: 108/1160
  57528. },
  57529. form: "mienshao",
  57530. },
  57531. mienshao_back: {
  57532. height: math.unit(4 + 7/12, "feet"),
  57533. weight: math.unit(78.3, "lb"),
  57534. name: "Back",
  57535. image: {
  57536. source: "./media/characters/robin-phox/mienshao-back.svg",
  57537. extra: 1102/982,
  57538. bottom: 32/1134
  57539. },
  57540. form: "mienshao",
  57541. },
  57542. inteleon_front: {
  57543. height: math.unit(6 + 3/12, "feet"),
  57544. weight: math.unit(99.6, "lb"),
  57545. name: "Front",
  57546. image: {
  57547. source: "./media/characters/robin-phox/inteleon-front.svg",
  57548. extra: 910/799,
  57549. bottom: 76/986
  57550. },
  57551. form: "inteleon",
  57552. default: true
  57553. },
  57554. inteleon_frontNsfw: {
  57555. height: math.unit(6 + 3/12, "feet"),
  57556. weight: math.unit(99.6, "lb"),
  57557. name: "Front (NSFW)",
  57558. image: {
  57559. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  57560. extra: 910/799,
  57561. bottom: 76/986
  57562. },
  57563. form: "inteleon",
  57564. },
  57565. inteleon_back: {
  57566. height: math.unit(6 + 3/12, "feet"),
  57567. weight: math.unit(99.6, "lb"),
  57568. name: "Back",
  57569. image: {
  57570. source: "./media/characters/robin-phox/inteleon-back.svg",
  57571. extra: 907/796,
  57572. bottom: 25/932
  57573. },
  57574. form: "inteleon",
  57575. },
  57576. reshiram_front: {
  57577. height: math.unit(10 + 6/12, "feet"),
  57578. weight: math.unit(727.5, "lb"),
  57579. name: "Front",
  57580. image: {
  57581. source: "./media/characters/robin-phox/reshiram-front.svg",
  57582. extra: 1198/940,
  57583. bottom: 123/1321
  57584. },
  57585. form: "reshiram",
  57586. },
  57587. reshiram_frontNsfw: {
  57588. height: math.unit(10 + 6/12, "feet"),
  57589. weight: math.unit(727.5, "lb"),
  57590. name: "Front-nsfw",
  57591. image: {
  57592. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  57593. extra: 1198/940,
  57594. bottom: 123/1321
  57595. },
  57596. form: "reshiram",
  57597. },
  57598. reshiram_back: {
  57599. height: math.unit(10 + 6/12, "feet"),
  57600. weight: math.unit(727.5, "lb"),
  57601. name: "Back",
  57602. image: {
  57603. source: "./media/characters/robin-phox/reshiram-back.svg",
  57604. extra: 1024/904,
  57605. bottom: 85/1109
  57606. },
  57607. form: "reshiram",
  57608. },
  57609. samurott_front: {
  57610. height: math.unit(8, "feet"),
  57611. weight: math.unit(208.6, "lb"),
  57612. name: "Front",
  57613. image: {
  57614. source: "./media/characters/robin-phox/samurott-front.svg",
  57615. extra: 1048/984,
  57616. bottom: 100/1148
  57617. },
  57618. form: "samurott",
  57619. },
  57620. samurott_frontNsfw: {
  57621. height: math.unit(8, "feet"),
  57622. weight: math.unit(208.6, "lb"),
  57623. name: "Front-nsfw",
  57624. image: {
  57625. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  57626. extra: 1048/984,
  57627. bottom: 100/1148
  57628. },
  57629. form: "samurott",
  57630. },
  57631. samurott_back: {
  57632. height: math.unit(8, "feet"),
  57633. weight: math.unit(208.6, "lb"),
  57634. name: "Back",
  57635. image: {
  57636. source: "./media/characters/robin-phox/samurott-back.svg",
  57637. extra: 1110/1042,
  57638. bottom: 12/1122
  57639. },
  57640. form: "samurott",
  57641. },
  57642. samurott_feral: {
  57643. height: math.unit(4 + 11/12, "feet"),
  57644. weight: math.unit(208.6, "lb"),
  57645. name: "Feral",
  57646. image: {
  57647. source: "./media/characters/robin-phox/samurott-feral.svg",
  57648. extra: 766/681,
  57649. bottom: 108/874
  57650. },
  57651. form: "samurott",
  57652. },
  57653. },
  57654. [
  57655. {
  57656. name: "Normal",
  57657. height: math.unit(2, "feet"),
  57658. default: true,
  57659. form: "snivy"
  57660. },
  57661. {
  57662. name: "Normal",
  57663. height: math.unit(6, "feet"),
  57664. default: true,
  57665. form: "yoshi"
  57666. },
  57667. {
  57668. name: "Normal",
  57669. height: math.unit(4 + 11/12, "feet"),
  57670. default: true,
  57671. form: "delphox"
  57672. },
  57673. {
  57674. name: "Normal",
  57675. height: math.unit(4 + 7/12, "feet"),
  57676. default: true,
  57677. form: "mienshao"
  57678. },
  57679. {
  57680. name: "Normal",
  57681. height: math.unit(6 + 3/12, "feet"),
  57682. default: true,
  57683. form: "inteleon"
  57684. },
  57685. {
  57686. name: "Normal",
  57687. height: math.unit(10 + 6/12, "feet"),
  57688. default: true,
  57689. form: "reshiram"
  57690. },
  57691. {
  57692. name: "Normal",
  57693. height: math.unit(8, "feet"),
  57694. default: true,
  57695. form: "samurott"
  57696. },
  57697. {
  57698. name: "Macro",
  57699. height: math.unit(500, "feet"),
  57700. allForms: true
  57701. },
  57702. {
  57703. name: "Mega Macro",
  57704. height: math.unit(10, "earths"),
  57705. allForms: true
  57706. },
  57707. {
  57708. name: "Giga Macro",
  57709. height: math.unit(1, "galaxy"),
  57710. allForms: true
  57711. },
  57712. {
  57713. name: "Godly Macro",
  57714. height: math.unit(1e10, "multiverses"),
  57715. allForms: true
  57716. },
  57717. ],
  57718. {
  57719. "snivy": {
  57720. name: "Snivy",
  57721. default: true
  57722. },
  57723. "yoshi": {
  57724. name: "Yoshi",
  57725. },
  57726. "delphox": {
  57727. name: "Delphox",
  57728. },
  57729. "mienshao": {
  57730. name: "Mienshao",
  57731. },
  57732. "inteleon": {
  57733. name: "Inteleon",
  57734. },
  57735. "reshiram": {
  57736. name: "Reshiram",
  57737. },
  57738. "samurott": {
  57739. name: "Samurott",
  57740. },
  57741. }
  57742. ))
  57743. characterMakers.push(() => makeCharacter(
  57744. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  57745. {
  57746. front: {
  57747. height: math.unit(4, "feet"),
  57748. name: "Front",
  57749. image: {
  57750. source: "./media/characters/ash-leung/front.svg",
  57751. extra: 1916/1792,
  57752. bottom: 50/1966
  57753. }
  57754. },
  57755. },
  57756. [
  57757. {
  57758. name: "Atomic",
  57759. height: math.unit(1, "angstrom")
  57760. },
  57761. {
  57762. name: "Microscopic",
  57763. height: math.unit(4000, "angstroms")
  57764. },
  57765. {
  57766. name: "Speck",
  57767. height: math.unit(1, "mm")
  57768. },
  57769. {
  57770. name: "Small",
  57771. height: math.unit(1, "inch")
  57772. },
  57773. {
  57774. name: "Normal",
  57775. height: math.unit(4, "feet"),
  57776. default: true
  57777. },
  57778. ]
  57779. ))
  57780. characterMakers.push(() => makeCharacter(
  57781. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  57782. {
  57783. frontDressed: {
  57784. height: math.unit(2.08, "meters"),
  57785. weight: math.unit(175, "lb"),
  57786. name: "Front (Dressed)",
  57787. image: {
  57788. source: "./media/characters/carie/front-dressed.svg",
  57789. extra: 456/417,
  57790. bottom: 7/463
  57791. }
  57792. },
  57793. backDressed: {
  57794. height: math.unit(2.08, "meters"),
  57795. weight: math.unit(175, "lb"),
  57796. name: "Back (Dressed)",
  57797. image: {
  57798. source: "./media/characters/carie/back-dressed.svg",
  57799. extra: 455/414,
  57800. bottom: 11/466
  57801. }
  57802. },
  57803. front: {
  57804. height: math.unit(2, "meters"),
  57805. weight: math.unit(175, "lb"),
  57806. name: "Front",
  57807. image: {
  57808. source: "./media/characters/carie/front.svg",
  57809. extra: 438/399,
  57810. bottom: 12/450
  57811. }
  57812. },
  57813. back: {
  57814. height: math.unit(2, "meters"),
  57815. weight: math.unit(175, "lb"),
  57816. name: "Back",
  57817. image: {
  57818. source: "./media/characters/carie/back.svg",
  57819. extra: 438/397,
  57820. bottom: 7/445
  57821. }
  57822. },
  57823. },
  57824. [
  57825. {
  57826. name: "Normal",
  57827. height: math.unit(2.08, "meters"),
  57828. default: true
  57829. },
  57830. {
  57831. name: "Macro",
  57832. height: math.unit(2.08e3, "meters")
  57833. },
  57834. {
  57835. name: "Mega Macro",
  57836. height: math.unit(2.08e6, "meters")
  57837. },
  57838. {
  57839. name: "Giga Macro",
  57840. height: math.unit(2.08e9, "meters")
  57841. },
  57842. {
  57843. name: "Tera Macro",
  57844. height: math.unit(2.08e12, "meters")
  57845. },
  57846. {
  57847. name: "Peta Macro",
  57848. height: math.unit(2.08e15, "meters")
  57849. },
  57850. {
  57851. name: "Exa Macro",
  57852. height: math.unit(2.08e18, "meters")
  57853. },
  57854. {
  57855. name: "Zetta Macro",
  57856. height: math.unit(2.08e21, "meters")
  57857. },
  57858. {
  57859. name: "Yotta Macro",
  57860. height: math.unit(2.08e24, "meters")
  57861. },
  57862. ]
  57863. ))
  57864. characterMakers.push(() => makeCharacter(
  57865. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  57866. {
  57867. front: {
  57868. height: math.unit(5 + 2/12, "feet"),
  57869. weight: math.unit(120, "lb"),
  57870. name: "Front",
  57871. image: {
  57872. source: "./media/characters/sai-bree/front.svg",
  57873. extra: 1843/1702,
  57874. bottom: 91/1934
  57875. }
  57876. },
  57877. back: {
  57878. height: math.unit(5 + 2/12, "feet"),
  57879. weight: math.unit(120, "lb"),
  57880. name: "Back",
  57881. image: {
  57882. source: "./media/characters/sai-bree/back.svg",
  57883. extra: 1809/1637,
  57884. bottom: 56/1865
  57885. }
  57886. },
  57887. },
  57888. [
  57889. {
  57890. name: "Normal",
  57891. height: math.unit(5 + 2/12, "feet"),
  57892. default: true
  57893. },
  57894. {
  57895. name: "Macro",
  57896. height: math.unit(500, "feet")
  57897. },
  57898. ]
  57899. ))
  57900. characterMakers.push(() => makeCharacter(
  57901. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  57902. {
  57903. side: {
  57904. height: math.unit(0.77, "meters"),
  57905. weight: math.unit(120, "lb"),
  57906. name: "Side",
  57907. image: {
  57908. source: "./media/characters/davwyn/side.svg",
  57909. extra: 1557/1225,
  57910. bottom: 131/1688
  57911. }
  57912. },
  57913. front: {
  57914. height: math.unit(0.835410, "meters"),
  57915. weight: math.unit(120, "lb"),
  57916. name: "Front",
  57917. image: {
  57918. source: "./media/characters/davwyn/front.svg",
  57919. extra: 870/843,
  57920. bottom: 175/1045
  57921. }
  57922. },
  57923. },
  57924. [
  57925. {
  57926. name: "Minidrake",
  57927. height: math.unit(0.77/4, "meters")
  57928. },
  57929. {
  57930. name: "Normal",
  57931. height: math.unit(0.77, "meters"),
  57932. default: true
  57933. },
  57934. ]
  57935. ))
  57936. characterMakers.push(() => makeCharacter(
  57937. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  57938. {
  57939. front: {
  57940. height: math.unit(10 + 3/12, "feet"),
  57941. weight: math.unit(2857, "lb"),
  57942. name: "Front",
  57943. image: {
  57944. source: "./media/characters/balans/front.svg",
  57945. extra: 427/402,
  57946. bottom: 26/453
  57947. }
  57948. },
  57949. side: {
  57950. height: math.unit(10 + 3/12, "feet"),
  57951. weight: math.unit(2857, "lb"),
  57952. name: "Side",
  57953. image: {
  57954. source: "./media/characters/balans/side.svg",
  57955. extra: 397/371,
  57956. bottom: 17/414
  57957. }
  57958. },
  57959. back: {
  57960. height: math.unit(10 + 3/12, "feet"),
  57961. weight: math.unit(2857, "lb"),
  57962. name: "Back",
  57963. image: {
  57964. source: "./media/characters/balans/back.svg",
  57965. extra: 408/381,
  57966. bottom: 14/422
  57967. }
  57968. },
  57969. hand: {
  57970. height: math.unit(1.15, "feet"),
  57971. name: "Hand",
  57972. image: {
  57973. source: "./media/characters/balans/hand.svg"
  57974. }
  57975. },
  57976. footRest: {
  57977. height: math.unit(3.1, "feet"),
  57978. name: "Foot (Rest)",
  57979. image: {
  57980. source: "./media/characters/balans/foot-rest.svg"
  57981. }
  57982. },
  57983. footActive: {
  57984. height: math.unit(3.5, "feet"),
  57985. name: "Foot (Active)",
  57986. image: {
  57987. source: "./media/characters/balans/foot-active.svg"
  57988. }
  57989. },
  57990. },
  57991. [
  57992. {
  57993. name: "Normal",
  57994. height: math.unit(10 + 3/12, "feet"),
  57995. default: true
  57996. },
  57997. ]
  57998. ))
  57999. characterMakers.push(() => makeCharacter(
  58000. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  58001. {
  58002. side: {
  58003. height: math.unit(9, "meters"),
  58004. weight: math.unit(114, "tonnes"),
  58005. name: "Side",
  58006. image: {
  58007. source: "./media/characters/eldkveikir/side.svg",
  58008. extra: 1927/338,
  58009. bottom: 42/1969
  58010. }
  58011. },
  58012. sitting: {
  58013. height: math.unit(13.4, "meters"),
  58014. weight: math.unit(114, "tonnes"),
  58015. name: "Sitting",
  58016. image: {
  58017. source: "./media/characters/eldkveikir/sitting.svg",
  58018. extra: 1108/963,
  58019. bottom: 610/1718
  58020. }
  58021. },
  58022. maw: {
  58023. height: math.unit(8.36, "meters"),
  58024. name: "Maw",
  58025. image: {
  58026. source: "./media/characters/eldkveikir/maw.svg"
  58027. }
  58028. },
  58029. hand: {
  58030. height: math.unit(4.84, "meters"),
  58031. name: "Hand",
  58032. image: {
  58033. source: "./media/characters/eldkveikir/hand.svg"
  58034. }
  58035. },
  58036. foot: {
  58037. height: math.unit(6.9, "meters"),
  58038. name: "Foot",
  58039. image: {
  58040. source: "./media/characters/eldkveikir/foot.svg"
  58041. }
  58042. },
  58043. genitals: {
  58044. height: math.unit(9.6, "meters"),
  58045. name: "Genitals",
  58046. image: {
  58047. source: "./media/characters/eldkveikir/genitals.svg"
  58048. }
  58049. },
  58050. },
  58051. [
  58052. {
  58053. name: "Normal",
  58054. height: math.unit(9, "meters"),
  58055. default: true
  58056. },
  58057. ]
  58058. ))
  58059. characterMakers.push(() => makeCharacter(
  58060. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  58061. {
  58062. front: {
  58063. height: math.unit(14, "feet"),
  58064. weight: math.unit(4100, "lb"),
  58065. name: "Front",
  58066. image: {
  58067. source: "./media/characters/arrow/front.svg",
  58068. extra: 330/318,
  58069. bottom: 56/386
  58070. }
  58071. },
  58072. },
  58073. [
  58074. {
  58075. name: "Normal",
  58076. height: math.unit(14, "feet"),
  58077. default: true
  58078. },
  58079. {
  58080. name: "Minimacro",
  58081. height: math.unit(63, "feet")
  58082. },
  58083. {
  58084. name: "Macro",
  58085. height: math.unit(630, "feet")
  58086. },
  58087. {
  58088. name: "Megamacro",
  58089. height: math.unit(12600, "feet")
  58090. },
  58091. {
  58092. name: "Gigamacro",
  58093. height: math.unit(18000, "miles")
  58094. },
  58095. ]
  58096. ))
  58097. characterMakers.push(() => makeCharacter(
  58098. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  58099. {
  58100. front: {
  58101. height: math.unit(10, "feet"),
  58102. weight: math.unit(2.4, "tons"),
  58103. name: "Front",
  58104. image: {
  58105. source: "./media/characters/3yk-k0-unit/front.svg",
  58106. extra: 573/561,
  58107. bottom: 33/606
  58108. }
  58109. },
  58110. back: {
  58111. height: math.unit(10, "feet"),
  58112. weight: math.unit(2.4, "tons"),
  58113. name: "Back",
  58114. image: {
  58115. source: "./media/characters/3yk-k0-unit/back.svg",
  58116. extra: 614/573,
  58117. bottom: 32/646
  58118. }
  58119. },
  58120. maw: {
  58121. height: math.unit(2.15, "feet"),
  58122. name: "Maw",
  58123. image: {
  58124. source: "./media/characters/3yk-k0-unit/maw.svg"
  58125. }
  58126. },
  58127. },
  58128. [
  58129. {
  58130. name: "Normal",
  58131. height: math.unit(10, "feet"),
  58132. default: true
  58133. },
  58134. ]
  58135. ))
  58136. characterMakers.push(() => makeCharacter(
  58137. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  58138. {
  58139. front: {
  58140. height: math.unit(8 + 8/12, "feet"),
  58141. name: "Front",
  58142. image: {
  58143. source: "./media/characters/nemo/front.svg",
  58144. extra: 1308/1217,
  58145. bottom: 57/1365
  58146. }
  58147. },
  58148. },
  58149. [
  58150. {
  58151. name: "Normal",
  58152. height: math.unit(8 + 8/12, "feet"),
  58153. default: true
  58154. },
  58155. ]
  58156. ))
  58157. characterMakers.push(() => makeCharacter(
  58158. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  58159. {
  58160. front: {
  58161. height: math.unit(8, "feet"),
  58162. weight: math.unit(760, "lb"),
  58163. name: "Front",
  58164. image: {
  58165. source: "./media/characters/rexx/front.svg",
  58166. extra: 786/750,
  58167. bottom: 17/803
  58168. },
  58169. extraAttributes: {
  58170. "pawLength": {
  58171. name: "Paw Length",
  58172. power: 1,
  58173. type: "length",
  58174. base: math.unit(27, "inches")
  58175. },
  58176. }
  58177. },
  58178. },
  58179. [
  58180. {
  58181. name: "Micro",
  58182. height: math.unit(2, "inches")
  58183. },
  58184. {
  58185. name: "Normal",
  58186. height: math.unit(8, "feet"),
  58187. default: true
  58188. },
  58189. {
  58190. name: "Macro",
  58191. height: math.unit(150, "feet")
  58192. },
  58193. ]
  58194. ))
  58195. characterMakers.push(() => makeCharacter(
  58196. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  58197. {
  58198. front: {
  58199. height: math.unit(18, "feet"),
  58200. weight: math.unit(1975, "lb"),
  58201. name: "Front",
  58202. image: {
  58203. source: "./media/characters/draco/front.svg",
  58204. extra: 1325/1241,
  58205. bottom: 83/1408
  58206. }
  58207. },
  58208. back: {
  58209. height: math.unit(18, "feet"),
  58210. weight: math.unit(1975, "lb"),
  58211. name: "Back",
  58212. image: {
  58213. source: "./media/characters/draco/back.svg",
  58214. extra: 1332/1250,
  58215. bottom: 43/1375
  58216. }
  58217. },
  58218. dick: {
  58219. height: math.unit(7.5, "feet"),
  58220. name: "Dick",
  58221. image: {
  58222. source: "./media/characters/draco/dick.svg"
  58223. }
  58224. },
  58225. },
  58226. [
  58227. {
  58228. name: "Normal",
  58229. height: math.unit(18, "feet"),
  58230. default: true
  58231. },
  58232. ]
  58233. ))
  58234. characterMakers.push(() => makeCharacter(
  58235. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  58236. {
  58237. front: {
  58238. height: math.unit(3.2, "meters"),
  58239. name: "Front",
  58240. image: {
  58241. source: "./media/characters/harriett/front.svg",
  58242. extra: 1966/1915,
  58243. bottom: 9/1975
  58244. }
  58245. },
  58246. },
  58247. [
  58248. {
  58249. name: "Normal",
  58250. height: math.unit(3.2, "meters"),
  58251. default: true
  58252. },
  58253. ]
  58254. ))
  58255. characterMakers.push(() => makeCharacter(
  58256. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  58257. {
  58258. sitting: {
  58259. height: math.unit(0.8, "meter"),
  58260. name: "Sitting",
  58261. image: {
  58262. source: "./media/characters/serpentus/sitting.svg",
  58263. extra: 293/290,
  58264. bottom: 140/433
  58265. }
  58266. },
  58267. },
  58268. [
  58269. {
  58270. name: "Normal",
  58271. height: math.unit(0.8, "meter"),
  58272. default: true
  58273. },
  58274. ]
  58275. ))
  58276. characterMakers.push(() => makeCharacter(
  58277. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  58278. {
  58279. front: {
  58280. height: math.unit(5.7174385736, "feet"),
  58281. name: "Front",
  58282. image: {
  58283. source: "./media/characters/nova-polecat/front.svg",
  58284. extra: 1317/1216,
  58285. bottom: 92/1409
  58286. }
  58287. },
  58288. },
  58289. [
  58290. {
  58291. name: "Normal",
  58292. height: math.unit(5.7174385736, "feet"),
  58293. default: true
  58294. },
  58295. ]
  58296. ))
  58297. characterMakers.push(() => makeCharacter(
  58298. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  58299. {
  58300. front: {
  58301. height: math.unit(5 + 4/12, "feet"),
  58302. weight: math.unit(250, "lb"),
  58303. name: "Front",
  58304. image: {
  58305. source: "./media/characters/mook/front.svg",
  58306. extra: 1088/1037,
  58307. bottom: 132/1220
  58308. }
  58309. },
  58310. back: {
  58311. height: math.unit(5 + 1/12, "feet"),
  58312. weight: math.unit(250, "lb"),
  58313. name: "Back",
  58314. image: {
  58315. source: "./media/characters/mook/back.svg",
  58316. extra: 1184/905,
  58317. bottom: 96/1280
  58318. }
  58319. },
  58320. head: {
  58321. height: math.unit(1.85, "feet"),
  58322. name: "Head",
  58323. image: {
  58324. source: "./media/characters/mook/head.svg"
  58325. }
  58326. },
  58327. hand: {
  58328. height: math.unit(1.9, "feet"),
  58329. name: "Hand",
  58330. image: {
  58331. source: "./media/characters/mook/hand.svg"
  58332. }
  58333. },
  58334. palm: {
  58335. height: math.unit(1.84, "feet"),
  58336. name: "Palm",
  58337. image: {
  58338. source: "./media/characters/mook/palm.svg"
  58339. }
  58340. },
  58341. foot: {
  58342. height: math.unit(1.44, "feet"),
  58343. name: "Foot",
  58344. image: {
  58345. source: "./media/characters/mook/foot.svg"
  58346. }
  58347. },
  58348. sole: {
  58349. height: math.unit(1.44, "feet"),
  58350. name: "Sole",
  58351. image: {
  58352. source: "./media/characters/mook/sole.svg"
  58353. }
  58354. },
  58355. },
  58356. [
  58357. {
  58358. name: "Normal",
  58359. height: math.unit(5 + 4/12, "feet"),
  58360. default: true
  58361. },
  58362. {
  58363. name: "Big",
  58364. height: math.unit(12, "feet")
  58365. },
  58366. ]
  58367. ))
  58368. characterMakers.push(() => makeCharacter(
  58369. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  58370. {
  58371. front: {
  58372. height: math.unit(6 + 10/12, "feet"),
  58373. weight: math.unit(233, "lb"),
  58374. name: "Front",
  58375. image: {
  58376. source: "./media/characters/kayla/front.svg",
  58377. extra: 1850/1775,
  58378. bottom: 65/1915
  58379. }
  58380. },
  58381. },
  58382. [
  58383. {
  58384. name: "Normal",
  58385. height: math.unit(6 + 10/12, "feet"),
  58386. default: true
  58387. },
  58388. {
  58389. name: "Amazonian",
  58390. height: math.unit(12 + 5/12, "feet")
  58391. },
  58392. {
  58393. name: "Mini Giantess",
  58394. height: math.unit(26, "feet")
  58395. },
  58396. {
  58397. name: "Giantess",
  58398. height: math.unit(200, "feet")
  58399. },
  58400. {
  58401. name: "Mega Giantess",
  58402. height: math.unit(2500, "feet")
  58403. },
  58404. {
  58405. name: "City Sized",
  58406. height: math.unit(50, "miles")
  58407. },
  58408. {
  58409. name: "Country Sized",
  58410. height: math.unit(500, "miles")
  58411. },
  58412. {
  58413. name: "Continent Sized",
  58414. height: math.unit(2500, "miles")
  58415. },
  58416. {
  58417. name: "Planet Sized",
  58418. height: math.unit(10000, "miles")
  58419. },
  58420. {
  58421. name: "Star Sized",
  58422. height: math.unit(5e6, "miles")
  58423. },
  58424. {
  58425. name: "Solar System Sized",
  58426. height: math.unit(125, "AU")
  58427. },
  58428. {
  58429. name: "Galaxy Sized",
  58430. height: math.unit(300e3, "lightyears")
  58431. },
  58432. {
  58433. name: "Universe Sized",
  58434. height: math.unit(200e9, "lightyears")
  58435. },
  58436. {
  58437. name: "Multiverse Sized",
  58438. height: math.unit(20, "exauniverses")
  58439. },
  58440. {
  58441. name: "Mother of Existence",
  58442. height: math.unit(1e6, "yottauniverses")
  58443. },
  58444. ]
  58445. ))
  58446. characterMakers.push(() => makeCharacter(
  58447. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  58448. {
  58449. side: {
  58450. height: math.unit(9.5, "meters"),
  58451. name: "Side",
  58452. image: {
  58453. source: "./media/characters/kulve-ragnarok/side.svg",
  58454. extra: 364/326,
  58455. bottom: 50/414
  58456. }
  58457. },
  58458. },
  58459. [
  58460. {
  58461. name: "Normal",
  58462. height: math.unit(9.5, "meters"),
  58463. default: true
  58464. },
  58465. ]
  58466. ))
  58467. characterMakers.push(() => makeCharacter(
  58468. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  58469. {
  58470. front: {
  58471. height: math.unit(8 + 9/12, "feet"),
  58472. name: "Front",
  58473. image: {
  58474. source: "./media/characters/atlas-goat/front.svg",
  58475. extra: 1462/1323,
  58476. bottom: 12/1474
  58477. }
  58478. },
  58479. },
  58480. [
  58481. {
  58482. name: "Normal",
  58483. height: math.unit(8 + 9/12, "feet"),
  58484. default: true
  58485. },
  58486. {
  58487. name: "Skyline",
  58488. height: math.unit(845, "feet")
  58489. },
  58490. {
  58491. name: "Orbital",
  58492. height: math.unit(93000, "miles")
  58493. },
  58494. {
  58495. name: "Constellation",
  58496. height: math.unit(27000, "lightyears")
  58497. },
  58498. ]
  58499. ))
  58500. characterMakers.push(() => makeCharacter(
  58501. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  58502. {
  58503. side: {
  58504. height: math.unit(1.8, "meters"),
  58505. weight: math.unit(120, "kg"),
  58506. name: "Side",
  58507. image: {
  58508. source: "./media/characters/xie-ling/side.svg",
  58509. extra: 646/574,
  58510. bottom: 44/690
  58511. }
  58512. },
  58513. },
  58514. [
  58515. {
  58516. name: "Tiny",
  58517. height: math.unit(1.80, "meters")
  58518. },
  58519. {
  58520. name: "Small",
  58521. height: math.unit(6, "meters")
  58522. },
  58523. {
  58524. name: "Medium",
  58525. height: math.unit(15, "meters")
  58526. },
  58527. {
  58528. name: "Normal",
  58529. height: math.unit(30, "meters"),
  58530. default: true
  58531. },
  58532. {
  58533. name: "Above Normal",
  58534. height: math.unit(60, "meters")
  58535. },
  58536. {
  58537. name: "Big",
  58538. height: math.unit(220, "meters")
  58539. },
  58540. {
  58541. name: "Giant",
  58542. height: math.unit(2.2, "km")
  58543. },
  58544. {
  58545. name: "Macro",
  58546. height: math.unit(25, "km")
  58547. },
  58548. {
  58549. name: "Mega Macro",
  58550. height: math.unit(350, "km")
  58551. },
  58552. {
  58553. name: "Mega Macro+",
  58554. height: math.unit(5000, "km")
  58555. },
  58556. {
  58557. name: "Goddess",
  58558. height: math.unit(3, "multiverses")
  58559. },
  58560. ]
  58561. ))
  58562. characterMakers.push(() => makeCharacter(
  58563. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  58564. {
  58565. frontSfw: {
  58566. height: math.unit(5 + 11/12, "feet"),
  58567. weight: math.unit(210, "lb"),
  58568. name: "Front",
  58569. image: {
  58570. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  58571. extra: 1928/1821,
  58572. bottom: 45/1973
  58573. }
  58574. },
  58575. backSfw: {
  58576. height: math.unit(5 + 11/12, "feet"),
  58577. weight: math.unit(210, "lb"),
  58578. name: "Back",
  58579. image: {
  58580. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  58581. extra: 1920/1813,
  58582. bottom: 34/1954
  58583. }
  58584. },
  58585. frontNsfw: {
  58586. height: math.unit(5 + 11/12, "feet"),
  58587. weight: math.unit(210, "lb"),
  58588. name: "Front (NSFW)",
  58589. image: {
  58590. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  58591. extra: 1928/1821,
  58592. bottom: 45/1973
  58593. }
  58594. },
  58595. backNsfw: {
  58596. height: math.unit(5 + 11/12, "feet"),
  58597. weight: math.unit(210, "lb"),
  58598. name: "Back (NSFW)",
  58599. image: {
  58600. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  58601. extra: 1920/1813,
  58602. bottom: 34/1954
  58603. }
  58604. },
  58605. },
  58606. [
  58607. {
  58608. name: "Normal",
  58609. height: math.unit(5 + 11/12, "feet"),
  58610. default: true
  58611. },
  58612. {
  58613. name: "Goddess",
  58614. height: math.unit(20 + 3/12, "feet")
  58615. },
  58616. {
  58617. name: "Breaker of Man",
  58618. height: math.unit(329 + 9/12, "feet")
  58619. },
  58620. {
  58621. name: "Solar Justice",
  58622. height: math.unit(0.6, "solarradii")
  58623. },
  58624. {
  58625. name: "She Who Judges",
  58626. height: math.unit(1, "universe")
  58627. },
  58628. ]
  58629. ))
  58630. characterMakers.push(() => makeCharacter(
  58631. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  58632. {
  58633. casual_front: {
  58634. height: math.unit(6 + 1/12, "feet"),
  58635. weight: math.unit(190, "lb"),
  58636. preyCapacity: math.unit(1, "people"),
  58637. name: "Front",
  58638. image: {
  58639. source: "./media/characters/managarmr/casual-front.svg",
  58640. extra: 411/381,
  58641. bottom: 15/426
  58642. },
  58643. extraAttributes: {
  58644. "pawSize": {
  58645. name: "Paw Size",
  58646. power: 1,
  58647. type: "length",
  58648. base: math.unit(0.2, "meters")
  58649. },
  58650. },
  58651. form: "casual",
  58652. },
  58653. casual_back: {
  58654. height: math.unit(6 + 1/12, "feet"),
  58655. weight: math.unit(190, "lb"),
  58656. preyCapacity: math.unit(1, "people"),
  58657. name: "Back",
  58658. image: {
  58659. source: "./media/characters/managarmr/casual-back.svg",
  58660. extra: 413/383,
  58661. bottom: 13/426
  58662. },
  58663. extraAttributes: {
  58664. "pawSize": {
  58665. name: "Paw Size",
  58666. power: 1,
  58667. type: "length",
  58668. base: math.unit(0.2, "meters")
  58669. },
  58670. },
  58671. form: "casual",
  58672. },
  58673. base_front: {
  58674. height: math.unit(7, "feet"),
  58675. weight: math.unit(210, "lb"),
  58676. preyCapacity: math.unit(2, "people"),
  58677. name: "Front",
  58678. image: {
  58679. source: "./media/characters/managarmr/base-front.svg",
  58680. extra: 580/485,
  58681. bottom: 32/612
  58682. },
  58683. extraAttributes: {
  58684. "wingspan": {
  58685. name: "Wingspan",
  58686. power: 1,
  58687. type: "length",
  58688. base: math.unit(4, "meters")
  58689. },
  58690. "pawSize": {
  58691. name: "Paw Size",
  58692. power: 1,
  58693. type: "length",
  58694. base: math.unit(0.2, "meters")
  58695. },
  58696. },
  58697. form: "base",
  58698. },
  58699. "true-divine_front": {
  58700. height: math.unit(40, "feet"),
  58701. weight: math.unit(39000, "lb"),
  58702. preyCapacity: math.unit(375, "people"),
  58703. name: "Front",
  58704. image: {
  58705. source: "./media/characters/managarmr/true-divine-front.svg",
  58706. extra: 725/573,
  58707. bottom: 120/845
  58708. },
  58709. extraAttributes: {
  58710. "wingspan": {
  58711. name: "Wingspan",
  58712. power: 1,
  58713. type: "length",
  58714. base: math.unit(20, "meters")
  58715. },
  58716. "pawSize": {
  58717. name: "Paw Size",
  58718. power: 1,
  58719. type: "length",
  58720. base: math.unit(1.5, "meters")
  58721. },
  58722. },
  58723. form: "true-divine",
  58724. },
  58725. },
  58726. [
  58727. {
  58728. name: "Normal",
  58729. height: math.unit(6 + 1/12, "feet"),
  58730. form: "casual",
  58731. default: true
  58732. },
  58733. {
  58734. name: "Normal",
  58735. height: math.unit(7, "feet"),
  58736. form: "base",
  58737. default: true
  58738. },
  58739. ],
  58740. {
  58741. "casual": {
  58742. name: "Casual",
  58743. default: true
  58744. },
  58745. "base": {
  58746. name: "Base",
  58747. },
  58748. "true-divine": {
  58749. name: "True Divine",
  58750. },
  58751. }
  58752. ))
  58753. characterMakers.push(() => makeCharacter(
  58754. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  58755. {
  58756. front: {
  58757. height: math.unit(1.8, "meters"),
  58758. weight: math.unit(110, "kg"),
  58759. name: "Front",
  58760. image: {
  58761. source: "./media/characters/mystra/front.svg",
  58762. extra: 529/442,
  58763. bottom: 31/560
  58764. }
  58765. },
  58766. frontLewd: {
  58767. height: math.unit(1.8, "meters"),
  58768. weight: math.unit(110, "kg"),
  58769. name: "Front (Lewd)",
  58770. image: {
  58771. source: "./media/characters/mystra/front-lewd.svg",
  58772. extra: 529/442,
  58773. bottom: 31/560
  58774. }
  58775. },
  58776. head: {
  58777. height: math.unit(1.63, "feet"),
  58778. name: "Head",
  58779. image: {
  58780. source: "./media/characters/mystra/head.svg"
  58781. }
  58782. },
  58783. paw: {
  58784. height: math.unit(1.9, "feet"),
  58785. name: "Paw",
  58786. image: {
  58787. source: "./media/characters/mystra/paw.svg"
  58788. }
  58789. },
  58790. },
  58791. [
  58792. {
  58793. name: "Incognito",
  58794. height: math.unit(2.3, "meters")
  58795. },
  58796. {
  58797. name: "Small Macro",
  58798. height: math.unit(300, "meters")
  58799. },
  58800. {
  58801. name: "Small Mega",
  58802. height: math.unit(2, "km")
  58803. },
  58804. {
  58805. name: "Mega",
  58806. height: math.unit(30, "km")
  58807. },
  58808. {
  58809. name: "Small Giga",
  58810. height: math.unit(100, "km")
  58811. },
  58812. {
  58813. name: "Giga",
  58814. height: math.unit(1000, "km"),
  58815. default: true
  58816. },
  58817. {
  58818. name: "Continental",
  58819. height: math.unit(5000, "km")
  58820. },
  58821. {
  58822. name: "Terra",
  58823. height: math.unit(20000, "km")
  58824. },
  58825. {
  58826. name: "Solar",
  58827. height: math.unit(2e6, "km")
  58828. },
  58829. {
  58830. name: "Galactic",
  58831. height: math.unit(528502, "lightyears")
  58832. },
  58833. {
  58834. name: "Universal",
  58835. height: math.unit(20, "universes")
  58836. },
  58837. ]
  58838. ))
  58839. characterMakers.push(() => makeCharacter(
  58840. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  58841. {
  58842. front: {
  58843. height: math.unit(2, "meters"),
  58844. weight: math.unit(140, "kg"),
  58845. name: "Front",
  58846. image: {
  58847. source: "./media/characters/caleb/front.svg",
  58848. extra: 873/817,
  58849. bottom: 47/920
  58850. }
  58851. },
  58852. back: {
  58853. height: math.unit(2, "meters"),
  58854. weight: math.unit(140, "kg"),
  58855. name: "Back",
  58856. image: {
  58857. source: "./media/characters/caleb/back.svg",
  58858. extra: 877/828,
  58859. bottom: 24/901
  58860. }
  58861. },
  58862. snakeTail: {
  58863. height: math.unit(1.44, "feet"),
  58864. name: "Snake Tail",
  58865. image: {
  58866. source: "./media/characters/caleb/snake-tail.svg"
  58867. }
  58868. },
  58869. dick: {
  58870. height: math.unit(2.6, "feet"),
  58871. name: "Dick",
  58872. image: {
  58873. source: "./media/characters/caleb/dick.svg"
  58874. }
  58875. },
  58876. },
  58877. [
  58878. {
  58879. name: "Incognito",
  58880. height: math.unit(3, "meters")
  58881. },
  58882. {
  58883. name: "Home Size",
  58884. height: math.unit(200, "meters"),
  58885. default: true
  58886. },
  58887. {
  58888. name: "Macro",
  58889. height: math.unit(500, "meters")
  58890. },
  58891. {
  58892. name: "Big Macro",
  58893. height: math.unit(5, "km")
  58894. },
  58895. {
  58896. name: "Giga",
  58897. height: math.unit(250, "km")
  58898. },
  58899. {
  58900. name: "Giga+",
  58901. height: math.unit(5000, "km")
  58902. },
  58903. {
  58904. name: "Small Terra",
  58905. height: math.unit(35e3, "km")
  58906. },
  58907. {
  58908. name: "Terra",
  58909. height: math.unit(2e6, "km")
  58910. },
  58911. {
  58912. name: "Terra+",
  58913. height: math.unit(1.5e6, "km")
  58914. },
  58915. ]
  58916. ))
  58917. characterMakers.push(() => makeCharacter(
  58918. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  58919. {
  58920. front: {
  58921. height: math.unit(2, "meters"),
  58922. weight: math.unit(120, "kg"),
  58923. name: "Front",
  58924. image: {
  58925. source: "./media/characters/gilirian/front.svg",
  58926. extra: 805/737,
  58927. bottom: 13/818
  58928. }
  58929. },
  58930. side: {
  58931. height: math.unit(2, "meters"),
  58932. weight: math.unit(120, "kg"),
  58933. name: "Side",
  58934. image: {
  58935. source: "./media/characters/gilirian/side.svg",
  58936. extra: 810/746,
  58937. bottom: 6/816
  58938. }
  58939. },
  58940. back: {
  58941. height: math.unit(2, "meters"),
  58942. weight: math.unit(120, "kg"),
  58943. name: "Back",
  58944. image: {
  58945. source: "./media/characters/gilirian/back.svg",
  58946. extra: 815/745,
  58947. bottom: 15/830
  58948. }
  58949. },
  58950. frontNsfw: {
  58951. height: math.unit(2, "meters"),
  58952. weight: math.unit(120, "kg"),
  58953. name: "Front (NSFW)",
  58954. image: {
  58955. source: "./media/characters/gilirian/front-nsfw.svg",
  58956. extra: 805/737,
  58957. bottom: 13/818
  58958. }
  58959. },
  58960. sideNsfw: {
  58961. height: math.unit(2, "meters"),
  58962. weight: math.unit(120, "kg"),
  58963. name: "Side (NSFW)",
  58964. image: {
  58965. source: "./media/characters/gilirian/side-nsfw.svg",
  58966. extra: 810/746,
  58967. bottom: 6/816
  58968. }
  58969. },
  58970. },
  58971. [
  58972. {
  58973. name: "Incognito",
  58974. height: math.unit(2, "meters"),
  58975. default: true
  58976. },
  58977. {
  58978. name: "Macro",
  58979. height: math.unit(250, "meters")
  58980. },
  58981. {
  58982. name: "Big Macro",
  58983. height: math.unit(1500, "meters")
  58984. },
  58985. {
  58986. name: "Mega",
  58987. height: math.unit(40, "km")
  58988. },
  58989. {
  58990. name: "Giga",
  58991. height: math.unit(300, "km")
  58992. },
  58993. {
  58994. name: "Extra Giga",
  58995. height: math.unit(5000, "km")
  58996. },
  58997. {
  58998. name: "Small Terra",
  58999. height: math.unit(10e3, "km")
  59000. },
  59001. {
  59002. name: "Terra",
  59003. height: math.unit(3e5, "km")
  59004. },
  59005. {
  59006. name: "Galactic",
  59007. height: math.unit(369950, "lightyears")
  59008. },
  59009. ]
  59010. ))
  59011. characterMakers.push(() => makeCharacter(
  59012. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  59013. {
  59014. front: {
  59015. height: math.unit(2.5, "meters"),
  59016. weight: math.unit(230, "lb"),
  59017. name: "Front",
  59018. image: {
  59019. source: "./media/characters/tarken/front.svg",
  59020. extra: 764/720,
  59021. bottom: 49/813
  59022. }
  59023. },
  59024. back: {
  59025. height: math.unit(2.5, "meters"),
  59026. weight: math.unit(230, "lb"),
  59027. name: "Back",
  59028. image: {
  59029. source: "./media/characters/tarken/back.svg",
  59030. extra: 756/720,
  59031. bottom: 35/791
  59032. }
  59033. },
  59034. frontNsfw: {
  59035. height: math.unit(2.5, "meters"),
  59036. weight: math.unit(230, "lb"),
  59037. name: "Front (NSFW)",
  59038. image: {
  59039. source: "./media/characters/tarken/front-nsfw.svg",
  59040. extra: 764/720,
  59041. bottom: 49/813
  59042. }
  59043. },
  59044. backNsfw: {
  59045. height: math.unit(2.5, "meters"),
  59046. weight: math.unit(230, "lb"),
  59047. name: "Back (NSFW)",
  59048. image: {
  59049. source: "./media/characters/tarken/back-nsfw.svg",
  59050. extra: 756/720,
  59051. bottom: 35/791
  59052. }
  59053. },
  59054. head: {
  59055. height: math.unit(2.22, "feet"),
  59056. name: "Head",
  59057. image: {
  59058. source: "./media/characters/tarken/head.svg"
  59059. }
  59060. },
  59061. tail: {
  59062. height: math.unit(5.25, "feet"),
  59063. name: "Tail",
  59064. image: {
  59065. source: "./media/characters/tarken/tail.svg"
  59066. }
  59067. },
  59068. dick: {
  59069. height: math.unit(1.95, "feet"),
  59070. name: "Dick",
  59071. image: {
  59072. source: "./media/characters/tarken/dick.svg"
  59073. }
  59074. },
  59075. hand: {
  59076. height: math.unit(1.78, "feet"),
  59077. name: "Hand",
  59078. image: {
  59079. source: "./media/characters/tarken/hand.svg"
  59080. }
  59081. },
  59082. beam: {
  59083. height: math.unit(1.5, "feet"),
  59084. name: "Beam",
  59085. image: {
  59086. source: "./media/characters/tarken/beam.svg"
  59087. }
  59088. },
  59089. },
  59090. [
  59091. {
  59092. name: "Original Size",
  59093. height: math.unit(2.5, "meters")
  59094. },
  59095. {
  59096. name: "Macro",
  59097. height: math.unit(150, "meters"),
  59098. default: true
  59099. },
  59100. {
  59101. name: "Macro+",
  59102. height: math.unit(300, "meters")
  59103. },
  59104. {
  59105. name: "Mega",
  59106. height: math.unit(2, "km")
  59107. },
  59108. {
  59109. name: "Mega+",
  59110. height: math.unit(35, "km")
  59111. },
  59112.  {
  59113. name: "Mega++",
  59114. height: math.unit(60, "km")
  59115. },
  59116. {
  59117. name: "Giga",
  59118. height: math.unit(200, "km")
  59119. },
  59120. {
  59121. name: "Giga+",
  59122. height: math.unit(2500, "km")
  59123. },
  59124. {
  59125. name: "Giga++",
  59126. height: math.unit(6600, "km")
  59127. },
  59128. {
  59129. name: "Terra",
  59130. height: math.unit(20000, "km")
  59131. },
  59132. {
  59133. name: "Terra+",
  59134. height: math.unit(300000, "km")
  59135. },
  59136. ]
  59137. ))
  59138. characterMakers.push(() => makeCharacter(
  59139. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  59140. {
  59141. magpie_dressed: {
  59142. height: math.unit(1.7, "meters"),
  59143. weight: math.unit(70, "kg"),
  59144. name: "Dressed",
  59145. image: {
  59146. source: "./media/characters/otreus/magpie-dressed.svg",
  59147. extra: 691/672,
  59148. bottom: 116/807
  59149. },
  59150. form: "magpie",
  59151. default: true
  59152. },
  59153. magpie_nude: {
  59154. height: math.unit(1.7, "meters"),
  59155. weight: math.unit(70, "kg"),
  59156. name: "Nude",
  59157. image: {
  59158. source: "./media/characters/otreus/magpie-nude.svg",
  59159. extra: 691/672,
  59160. bottom: 116/807
  59161. },
  59162. form: "magpie",
  59163. },
  59164. magpie_dressedLewd: {
  59165. height: math.unit(1.7, "meters"),
  59166. weight: math.unit(70, "kg"),
  59167. name: "Dressed (Lewd)",
  59168. image: {
  59169. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  59170. extra: 691/672,
  59171. bottom: 116/807
  59172. },
  59173. form: "magpie",
  59174. },
  59175. magpie_nudeLewd: {
  59176. height: math.unit(1.7, "meters"),
  59177. weight: math.unit(70, "kg"),
  59178. name: "Nude (Lewd)",
  59179. image: {
  59180. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  59181. extra: 691/672,
  59182. bottom: 116/807
  59183. },
  59184. form: "magpie",
  59185. },
  59186. magpie_leftFoot: {
  59187. height: math.unit(1.58, "feet"),
  59188. name: "Left Foot",
  59189. image: {
  59190. source: "./media/characters/otreus/magpie-left-foot.svg"
  59191. },
  59192. form: "magpie",
  59193. },
  59194. magpie_rightFoot: {
  59195. height: math.unit(1.58, "feet"),
  59196. name: "Right Foot",
  59197. image: {
  59198. source: "./media/characters/otreus/magpie-right-foot.svg"
  59199. },
  59200. form: "magpie",
  59201. },
  59202. magpie_wingspan: {
  59203. height: math.unit(2, "meters"),
  59204. weight: math.unit(70, "kg"),
  59205. name: "Wingspan",
  59206. image: {
  59207. source: "./media/characters/otreus/magpie-wingspan.svg"
  59208. },
  59209. extraAttributes: {
  59210. "wingspan": {
  59211. name: "Wingspan",
  59212. power: 1,
  59213. type: "length",
  59214. base: math.unit(3.35, "meters")
  59215. },
  59216. },
  59217. form: "magpie",
  59218. },
  59219. hippogriff_dressed: {
  59220. height: math.unit(1.7, "meters"),
  59221. weight: math.unit(70, "kg"),
  59222. name: "Dressed",
  59223. image: {
  59224. source: "./media/characters/otreus/hippogriff-dressed.svg",
  59225. extra: 710/689,
  59226. bottom: 67/777
  59227. },
  59228. form: "hippogriff",
  59229. default: true
  59230. },
  59231. hippogriff_nude: {
  59232. height: math.unit(1.7, "meters"),
  59233. weight: math.unit(70, "kg"),
  59234. name: "Nude",
  59235. image: {
  59236. source: "./media/characters/otreus/hippogriff-nude.svg",
  59237. extra: 710/689,
  59238. bottom: 67/777
  59239. },
  59240. form: "hippogriff",
  59241. },
  59242. hippogriff_dressedLewd: {
  59243. height: math.unit(1.7, "meters"),
  59244. weight: math.unit(70, "kg"),
  59245. name: "Dressed (Lewd)",
  59246. image: {
  59247. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  59248. extra: 710/689,
  59249. bottom: 67/777
  59250. },
  59251. form: "hippogriff",
  59252. },
  59253. hippogriff_nudeLewd: {
  59254. height: math.unit(1.7, "meters"),
  59255. weight: math.unit(70, "kg"),
  59256. name: "Nude (Lewd)",
  59257. image: {
  59258. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  59259. extra: 710/689,
  59260. bottom: 67/777
  59261. },
  59262. form: "hippogriff",
  59263. },
  59264. },
  59265. [
  59266. {
  59267. name: "Original Size",
  59268. height: math.unit(1.7, "meters"),
  59269. allForms: true
  59270. },
  59271. {
  59272. name: "Incognito Size",
  59273. height: math.unit(2, "meters"),
  59274. allForms: true
  59275. },
  59276. {
  59277. name: "Mega",
  59278. height: math.unit(2, "km"),
  59279. allForms: true
  59280. },
  59281. {
  59282. name: "Mega+",
  59283. height: math.unit(40, "km"),
  59284. allForms: true
  59285. },
  59286. {
  59287. name: "Giga",
  59288. height: math.unit(250, "km"),
  59289. allForms: true
  59290. },
  59291. {
  59292. name: "Giga+",
  59293. height: math.unit(3000, "km"),
  59294. allForms: true
  59295. },
  59296. {
  59297. name: "Terra",
  59298. height: math.unit(20000, "km"),
  59299. allForms: true
  59300. },
  59301. {
  59302. name: "Solar (Home Size)",
  59303. height: math.unit(3e6, "km"),
  59304. allForms: true,
  59305. default: true
  59306. },
  59307. ],
  59308. {
  59309. "magpie": {
  59310. name: "Magpie",
  59311. default: true
  59312. },
  59313. "hippogriff": {
  59314. name: "Hippogriff",
  59315. },
  59316. }
  59317. ))
  59318. characterMakers.push(() => makeCharacter(
  59319. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  59320. {
  59321. frontDressed: {
  59322. height: math.unit(1.8, "meters"),
  59323. weight: math.unit(90, "kg"),
  59324. name: "Front (Dressed)",
  59325. image: {
  59326. source: "./media/characters/thalia/front-dressed.svg",
  59327. extra: 478/402,
  59328. bottom: 55/533
  59329. }
  59330. },
  59331. backDressed: {
  59332. height: math.unit(1.8, "meters"),
  59333. weight: math.unit(90, "kg"),
  59334. name: "Back (Dressed)",
  59335. image: {
  59336. source: "./media/characters/thalia/back-dressed.svg",
  59337. extra: 500/424,
  59338. bottom: 15/515
  59339. }
  59340. },
  59341. frontNude: {
  59342. height: math.unit(1.8, "meters"),
  59343. weight: math.unit(90, "kg"),
  59344. name: "Front (Nude)",
  59345. image: {
  59346. source: "./media/characters/thalia/front-nude.svg",
  59347. extra: 478/402,
  59348. bottom: 55/533
  59349. }
  59350. },
  59351. backNude: {
  59352. height: math.unit(1.8, "meters"),
  59353. weight: math.unit(90, "kg"),
  59354. name: "Back (Nude)",
  59355. image: {
  59356. source: "./media/characters/thalia/back-nude.svg",
  59357. extra: 500/424,
  59358. bottom: 15/515
  59359. }
  59360. },
  59361. },
  59362. [
  59363. {
  59364. name: "Incognito",
  59365. height: math.unit(3, "meters")
  59366. },
  59367. {
  59368. name: "Macro",
  59369. height: math.unit(500, "meters")
  59370. },
  59371. {
  59372. name: "Mega",
  59373. height: math.unit(5, "km")
  59374. },
  59375. {
  59376. name: "Mega+",
  59377. height: math.unit(30, "km")
  59378. },
  59379. {
  59380. name: "Giga",
  59381. height: math.unit(350, "km")
  59382. },
  59383. {
  59384. name: "Giga+",
  59385. height: math.unit(4000, "km")
  59386. },
  59387. {
  59388. name: "Terra",
  59389. height: math.unit(35000, "km")
  59390. },
  59391. {
  59392. name: "Original Size",
  59393. height: math.unit(130000, "km")
  59394. },
  59395. {
  59396. name: "Solar (Home Size)",
  59397. height: math.unit(4e6, "km"),
  59398. default: true
  59399. },
  59400. ]
  59401. ))
  59402. characterMakers.push(() => makeCharacter(
  59403. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  59404. {
  59405. front: {
  59406. height: math.unit(1.8, "meters"),
  59407. weight: math.unit(95, "kg"),
  59408. name: "Front",
  59409. image: {
  59410. source: "./media/characters/shango/front.svg",
  59411. extra: 1925/1774,
  59412. bottom: 67/1992
  59413. }
  59414. },
  59415. back: {
  59416. height: math.unit(1.8, "meters"),
  59417. weight: math.unit(95, "kg"),
  59418. name: "Back",
  59419. image: {
  59420. source: "./media/characters/shango/back.svg",
  59421. extra: 1915/1766,
  59422. bottom: 52/1967
  59423. }
  59424. },
  59425. frontLewd: {
  59426. height: math.unit(1.8, "meters"),
  59427. weight: math.unit(95, "kg"),
  59428. name: "Front (Lewd)",
  59429. image: {
  59430. source: "./media/characters/shango/front-lewd.svg",
  59431. extra: 1925/1774,
  59432. bottom: 67/1992
  59433. }
  59434. },
  59435. backLewd: {
  59436. height: math.unit(1.8, "meters"),
  59437. weight: math.unit(95, "kg"),
  59438. name: "Back (Lewd)",
  59439. image: {
  59440. source: "./media/characters/shango/back-lewd.svg",
  59441. extra: 1915/1766,
  59442. bottom: 52/1967
  59443. }
  59444. },
  59445. maw: {
  59446. height: math.unit(1.64, "feet"),
  59447. name: "Maw",
  59448. image: {
  59449. source: "./media/characters/shango/maw.svg"
  59450. }
  59451. },
  59452. dick: {
  59453. height: math.unit(2.14, "feet"),
  59454. name: "Dick",
  59455. image: {
  59456. source: "./media/characters/shango/dick.svg"
  59457. }
  59458. },
  59459. },
  59460. [
  59461. {
  59462. name: "Incognito",
  59463. height: math.unit(1.8, "meters")
  59464. },
  59465. {
  59466. name: "Home Size",
  59467. height: math.unit(60, "meters"),
  59468. default: true
  59469. },
  59470. {
  59471. name: "Macro",
  59472. height: math.unit(450, "meters")
  59473. },
  59474. {
  59475. name: "Mega",
  59476. height: math.unit(6, "km")
  59477. },
  59478. {
  59479. name: "Mega+",
  59480. height: math.unit(35, "km")
  59481. },
  59482. {
  59483. name: "Giga",
  59484. height: math.unit(500, "km")
  59485. },
  59486. {
  59487. name: "Giga+",
  59488. height: math.unit(5000, "km")
  59489. },
  59490. {
  59491. name: "Terra",
  59492. height: math.unit(60000, "km")
  59493. },
  59494. {
  59495. name: "Terra+",
  59496. height: math.unit(400000, "km")
  59497. },
  59498. ]
  59499. ))
  59500. characterMakers.push(() => makeCharacter(
  59501. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  59502. {
  59503. front: {
  59504. height: math.unit(2, "meters"),
  59505. weight: math.unit(95, "kg"),
  59506. name: "Front",
  59507. image: {
  59508. source: "./media/characters/osiris-gryphon/front.svg",
  59509. extra: 1508/1313,
  59510. bottom: 87/1595
  59511. }
  59512. },
  59513. back: {
  59514. height: math.unit(2, "meters"),
  59515. weight: math.unit(95, "kg"),
  59516. name: "Back",
  59517. image: {
  59518. source: "./media/characters/osiris-gryphon/back.svg",
  59519. extra: 1436/1309,
  59520. bottom: 64/1500
  59521. }
  59522. },
  59523. frontLewd: {
  59524. height: math.unit(2, "meters"),
  59525. weight: math.unit(95, "kg"),
  59526. name: "Front-lewd",
  59527. image: {
  59528. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  59529. extra: 1508/1313,
  59530. bottom: 87/1595
  59531. }
  59532. },
  59533. wing: {
  59534. height: math.unit(6.3333, "feet"),
  59535. name: "Wing",
  59536. image: {
  59537. source: "./media/characters/osiris-gryphon/wing.svg"
  59538. }
  59539. },
  59540. },
  59541. [
  59542. {
  59543. name: "Incognito",
  59544. height: math.unit(2, "meters")
  59545. },
  59546. {
  59547. name: "Home Size",
  59548. height: math.unit(30, "meters"),
  59549. default: true
  59550. },
  59551. {
  59552. name: "Macro",
  59553. height: math.unit(100, "meters")
  59554. },
  59555. {
  59556. name: "Macro+",
  59557. height: math.unit(350, "meters")
  59558. },
  59559. {
  59560. name: "Mega",
  59561. height: math.unit(40, "km")
  59562. },
  59563. {
  59564. name: "Giga",
  59565. height: math.unit(300, "km")
  59566. },
  59567. {
  59568. name: "Giga+",
  59569. height: math.unit(2000, "km")
  59570. },
  59571. {
  59572. name: "Terra",
  59573. height: math.unit(30000, "km")
  59574. },
  59575. ]
  59576. ))
  59577. characterMakers.push(() => makeCharacter(
  59578. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  59579. {
  59580. front: {
  59581. height: math.unit(2.5, "meters"),
  59582. weight: math.unit(200, "kg"),
  59583. name: "Front",
  59584. image: {
  59585. source: "./media/characters/atlas-dragon/front.svg",
  59586. extra: 745/462,
  59587. bottom: 36/781
  59588. }
  59589. },
  59590. back: {
  59591. height: math.unit(2.5, "meters"),
  59592. weight: math.unit(200, "kg"),
  59593. name: "Back",
  59594. image: {
  59595. source: "./media/characters/atlas-dragon/back.svg",
  59596. extra: 848/822,
  59597. bottom: 57/905
  59598. }
  59599. },
  59600. frontLewd: {
  59601. height: math.unit(2.5, "meters"),
  59602. weight: math.unit(200, "kg"),
  59603. name: "Front (Lewd)",
  59604. image: {
  59605. source: "./media/characters/atlas-dragon/front-lewd.svg",
  59606. extra: 745/462,
  59607. bottom: 36/781
  59608. }
  59609. },
  59610. backLewd: {
  59611. height: math.unit(2.5, "meters"),
  59612. weight: math.unit(200, "kg"),
  59613. name: "Back (Lewd)",
  59614. image: {
  59615. source: "./media/characters/atlas-dragon/back-lewd.svg",
  59616. extra: 848/822,
  59617. bottom: 57/905
  59618. }
  59619. },
  59620. },
  59621. [
  59622. {
  59623. name: "Incognito",
  59624. height: math.unit(2.5, "meters")
  59625. },
  59626. {
  59627. name: "Small Macro",
  59628. height: math.unit(50, "meters")
  59629. },
  59630. {
  59631. name: "Macro",
  59632. height: math.unit(350, "meters")
  59633. },
  59634. {
  59635. name: "Mega",
  59636. height: math.unit(5.5, "kilometers")
  59637. },
  59638. {
  59639. name: "Mega+",
  59640. height: math.unit(50, "km")
  59641. },
  59642. {
  59643. name: "Giga",
  59644. height: math.unit(350, "km")
  59645. },
  59646. {
  59647. name: "Giga+",
  59648. height: math.unit(2000, "km")
  59649. },
  59650. {
  59651. name: "Giga++",
  59652. height: math.unit(6500, "km")
  59653. },
  59654. {
  59655. name: "Terra",
  59656. height: math.unit(30000, "km")
  59657. },
  59658. {
  59659. name: "Terra+",
  59660. height: math.unit(250000, "km")
  59661. },
  59662. {
  59663. name: "True Size",
  59664. height: math.unit(100, "multiverses"),
  59665. default: true
  59666. },
  59667. ]
  59668. ))
  59669. characterMakers.push(() => makeCharacter(
  59670. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  59671. {
  59672. front: {
  59673. height: math.unit(1.8, "m"),
  59674. weight: math.unit(120, "kg"),
  59675. name: "Front",
  59676. image: {
  59677. source: "./media/characters/chey/front.svg",
  59678. extra: 1359/1270,
  59679. bottom: 18/1377
  59680. }
  59681. },
  59682. arm: {
  59683. height: math.unit(2.05, "feet"),
  59684. name: "Arm",
  59685. image: {
  59686. source: "./media/characters/chey/arm.svg"
  59687. }
  59688. },
  59689. head: {
  59690. height: math.unit(1.89, "feet"),
  59691. name: "Head",
  59692. image: {
  59693. source: "./media/characters/chey/head.svg"
  59694. }
  59695. },
  59696. },
  59697. [
  59698. {
  59699. name: "Original Size",
  59700. height: math.unit(5, "cm")
  59701. },
  59702. {
  59703. name: "Incognito Size",
  59704. height: math.unit(2.4, "m")
  59705. },
  59706. {
  59707. name: "Home Size",
  59708. height: math.unit(200, "meters"),
  59709. default: true
  59710. },
  59711. {
  59712. name: "Mega",
  59713. height: math.unit(2, "km")
  59714. },
  59715. {
  59716. name: "Giga (Preferred Size)",
  59717. height: math.unit(2000, "km")
  59718. },
  59719. {
  59720. name: "Giga+",
  59721. height: math.unit(6000, "km")
  59722. },
  59723. {
  59724. name: "Terra",
  59725. height: math.unit(17000, "km")
  59726. },
  59727. {
  59728. name: "Terra+",
  59729. height: math.unit(75000, "km")
  59730. },
  59731. {
  59732. name: "Terra++",
  59733. height: math.unit(225000, "km")
  59734. },
  59735. ]
  59736. ))
  59737. characterMakers.push(() => makeCharacter(
  59738. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  59739. {
  59740. side: {
  59741. height: math.unit(7.8, "meters"),
  59742. name: "Side",
  59743. image: {
  59744. source: "./media/characters/ragnarok/side.svg",
  59745. extra: 725/621,
  59746. bottom: 72/797
  59747. }
  59748. },
  59749. },
  59750. [
  59751. {
  59752. name: "Normal",
  59753. height: math.unit(7.8, "meters"),
  59754. default: true
  59755. },
  59756. ]
  59757. ))
  59758. characterMakers.push(() => makeCharacter(
  59759. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  59760. {
  59761. hyena_front: {
  59762. height: math.unit(2.1, "meters"),
  59763. weight: math.unit(110, "kg"),
  59764. name: "Front",
  59765. image: {
  59766. source: "./media/characters/nima/hyena-front.svg",
  59767. extra: 1904/1796,
  59768. bottom: 67/1971
  59769. },
  59770. form: "hyena",
  59771. },
  59772. hyena_back: {
  59773. height: math.unit(2.1, "meters"),
  59774. weight: math.unit(110, "kg"),
  59775. name: "Back",
  59776. image: {
  59777. source: "./media/characters/nima/hyena-back.svg",
  59778. extra: 1964/1884,
  59779. bottom: 35/1999
  59780. },
  59781. form: "hyena",
  59782. },
  59783. shark_front: {
  59784. height: math.unit(1.95, "meters"),
  59785. weight: math.unit(110, "kg"),
  59786. name: "Front",
  59787. image: {
  59788. source: "./media/characters/nima/shark-front.svg",
  59789. extra: 2238/2013,
  59790. bottom: 0/223
  59791. },
  59792. form: "shark",
  59793. },
  59794. paw: {
  59795. height: math.unit(1, "feet"),
  59796. name: "Paw",
  59797. image: {
  59798. source: "./media/characters/nima/paw.svg"
  59799. }
  59800. },
  59801. circlet: {
  59802. height: math.unit(0.3, "feet"),
  59803. name: "Circlet",
  59804. image: {
  59805. source: "./media/characters/nima/circlet.svg"
  59806. }
  59807. },
  59808. necklace: {
  59809. height: math.unit(1.2, "feet"),
  59810. name: "Necklace",
  59811. image: {
  59812. source: "./media/characters/nima/necklace.svg"
  59813. }
  59814. },
  59815. bracelet: {
  59816. height: math.unit(0.51, "feet"),
  59817. name: "Bracelet",
  59818. image: {
  59819. source: "./media/characters/nima/bracelet.svg"
  59820. }
  59821. },
  59822. armband: {
  59823. height: math.unit(1.3, "feet"),
  59824. name: "Armband",
  59825. image: {
  59826. source: "./media/characters/nima/armband.svg"
  59827. }
  59828. },
  59829. },
  59830. [
  59831. {
  59832. name: "Incognito",
  59833. height: math.unit(2.1, "meters"),
  59834. allForms: true
  59835. },
  59836. {
  59837. name: "Small Macro",
  59838. height: math.unit(50, "meters"),
  59839. allForms: true
  59840. },
  59841. {
  59842. name: "Macro",
  59843. height: math.unit(200, "meters"),
  59844. allForms: true
  59845. },
  59846. {
  59847. name: "Mega",
  59848. height: math.unit(2.5, "km"),
  59849. allForms: true
  59850. },
  59851. {
  59852. name: "Mega+",
  59853. height: math.unit(30, "km"),
  59854. allForms: true
  59855. },
  59856. {
  59857. name: "Giga (Home Size)",
  59858. height: math.unit(400, "km"),
  59859. allForms: true,
  59860. default: true
  59861. },
  59862. {
  59863. name: "Giga+",
  59864. height: math.unit(2500, "km"),
  59865. allForms: true
  59866. },
  59867. {
  59868. name: "Giga++",
  59869. height: math.unit(8000, "km"),
  59870. allForms: true
  59871. },
  59872. {
  59873. name: "Terra",
  59874. height: math.unit(20000, "km"),
  59875. allForms: true
  59876. },
  59877. {
  59878. name: "Terra+",
  59879. height: math.unit(70000, "km"),
  59880. allForms: true
  59881. },
  59882. {
  59883. name: "Terra++",
  59884. height: math.unit(600000, "km"),
  59885. allForms: true
  59886. },
  59887. {
  59888. name: "Galactic",
  59889. height: math.unit(40, "galaxies"),
  59890. allForms: true
  59891. },
  59892. {
  59893. name: "Universal",
  59894. height: math.unit(40, "universes"),
  59895. allForms: true
  59896. },
  59897. ],
  59898. {
  59899. "hyena": {
  59900. name: "Hyena",
  59901. default: true
  59902. },
  59903. "shark": {
  59904. name: "Shark",
  59905. },
  59906. }
  59907. ))
  59908. characterMakers.push(() => makeCharacter(
  59909. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  59910. {
  59911. anthro_front: {
  59912. height: math.unit(1.5, "meters"),
  59913. name: "Front",
  59914. image: {
  59915. source: "./media/characters/adelaide/anthro-front.svg",
  59916. extra: 860/783,
  59917. bottom: 60/920
  59918. },
  59919. form: "anthro",
  59920. default: true
  59921. },
  59922. hand: {
  59923. height: math.unit(0.65, "feet"),
  59924. name: "Hand",
  59925. image: {
  59926. source: "./media/characters/adelaide/hand.svg"
  59927. },
  59928. form: "anthro"
  59929. },
  59930. foot: {
  59931. height: math.unit(1.38 * 259 / 314, "feet"),
  59932. name: "Foot",
  59933. image: {
  59934. source: "./media/characters/adelaide/foot.svg",
  59935. extra: 259/259,
  59936. bottom: 55/314
  59937. },
  59938. form: "anthro"
  59939. },
  59940. feather: {
  59941. height: math.unit(0.85, "feet"),
  59942. name: "Feather",
  59943. image: {
  59944. source: "./media/characters/adelaide/feather.svg"
  59945. },
  59946. form: "anthro"
  59947. },
  59948. feral_side: {
  59949. height: math.unit(1, "meters"),
  59950. name: "Side",
  59951. image: {
  59952. source: "./media/characters/adelaide/feral-side.svg",
  59953. extra: 550/467,
  59954. bottom: 37/587
  59955. },
  59956. form: "feral",
  59957. default: true
  59958. },
  59959. feral_hand: {
  59960. height: math.unit(0.58, "feet"),
  59961. name: "Hand",
  59962. image: {
  59963. source: "./media/characters/adelaide/hand.svg"
  59964. },
  59965. form: "feral"
  59966. },
  59967. feral_foot: {
  59968. height: math.unit(1.2 * 259 / 314, "feet"),
  59969. name: "Foot",
  59970. image: {
  59971. source: "./media/characters/adelaide/foot.svg",
  59972. extra: 259/259,
  59973. bottom: 55/314
  59974. },
  59975. form: "feral"
  59976. },
  59977. feral_feather: {
  59978. height: math.unit(0.63, "feet"),
  59979. name: "Feather",
  59980. image: {
  59981. source: "./media/characters/adelaide/feather.svg"
  59982. },
  59983. form: "feral"
  59984. },
  59985. },
  59986. [
  59987. {
  59988. name: "Normal",
  59989. height: math.unit(1.5, "meters"),
  59990. form: "anthro",
  59991. default: true
  59992. },
  59993. {
  59994. name: "Normal",
  59995. height: math.unit(1, "meters"),
  59996. form: "feral",
  59997. default: true
  59998. },
  59999. ],
  60000. {
  60001. "anthro": {
  60002. name: "Anthro",
  60003. default: true
  60004. },
  60005. "feral": {
  60006. name: "Feral",
  60007. },
  60008. }
  60009. ))
  60010. characterMakers.push(() => makeCharacter(
  60011. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  60012. {
  60013. front: {
  60014. height: math.unit(2.5, "meters"),
  60015. name: "Front",
  60016. image: {
  60017. source: "./media/characters/goa/front.svg",
  60018. extra: 1109/1013,
  60019. bottom: 150/1259
  60020. }
  60021. },
  60022. },
  60023. [
  60024. {
  60025. name: "Normal",
  60026. height: math.unit(2.5, "meters"),
  60027. default: true
  60028. },
  60029. ]
  60030. ))
  60031. characterMakers.push(() => makeCharacter(
  60032. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  60033. {
  60034. front: {
  60035. height: math.unit(2, "meters"),
  60036. weight: math.unit(100, "kg"),
  60037. name: "Front",
  60038. image: {
  60039. source: "./media/characters/kiki-weavile/front.svg",
  60040. extra: 357/332,
  60041. bottom: 60/417
  60042. }
  60043. },
  60044. },
  60045. [
  60046. {
  60047. name: "Normal",
  60048. height: math.unit(2, "meters"),
  60049. default: true
  60050. },
  60051. ]
  60052. ))
  60053. characterMakers.push(() => makeCharacter(
  60054. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  60055. {
  60056. side: {
  60057. height: math.unit(1.6, "meters"),
  60058. name: "Side",
  60059. image: {
  60060. source: "./media/characters/liza/side.svg",
  60061. extra: 943/915,
  60062. bottom: 72/1015
  60063. }
  60064. },
  60065. },
  60066. [
  60067. {
  60068. name: "Normal",
  60069. height: math.unit(1.6, "meters"),
  60070. default: true
  60071. },
  60072. ]
  60073. ))
  60074. characterMakers.push(() => makeCharacter(
  60075. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  60076. {
  60077. side: {
  60078. height: math.unit(2.5, "meters"),
  60079. preyCapacity: math.unit(1, "people"),
  60080. name: "Side",
  60081. image: {
  60082. source: "./media/characters/persephone-sweetbreath/side.svg",
  60083. extra: 796/700,
  60084. bottom: 44/840
  60085. }
  60086. },
  60087. sideVore: {
  60088. height: math.unit(2.5, "meters"),
  60089. preyCapacity: math.unit(1, "people"),
  60090. name: "Side (Full)",
  60091. image: {
  60092. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  60093. extra: 796/700,
  60094. bottom: 44/840
  60095. }
  60096. },
  60097. },
  60098. [
  60099. {
  60100. name: "Normal",
  60101. height: math.unit(2.5, "meters"),
  60102. default: true
  60103. },
  60104. ]
  60105. ))
  60106. characterMakers.push(() => makeCharacter(
  60107. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  60108. {
  60109. front: {
  60110. height: math.unit(32, "meters"),
  60111. name: "Front",
  60112. image: {
  60113. source: "./media/characters/pierce/front.svg",
  60114. extra: 1695/1475,
  60115. bottom: 185/1880
  60116. }
  60117. },
  60118. side: {
  60119. height: math.unit(32, "meters"),
  60120. name: "Side",
  60121. image: {
  60122. source: "./media/characters/pierce/side.svg",
  60123. extra: 974/859,
  60124. bottom: 43/1017
  60125. }
  60126. },
  60127. frontWingless: {
  60128. height: math.unit(32, "meters"),
  60129. name: "Front (Wingless)",
  60130. image: {
  60131. source: "./media/characters/pierce/front-wingless.svg",
  60132. extra: 1695/1475,
  60133. bottom: 185/1880
  60134. }
  60135. },
  60136. sideWingless: {
  60137. height: math.unit(32, "meters"),
  60138. name: "Side (Wingless)",
  60139. image: {
  60140. source: "./media/characters/pierce/side-wingless.svg",
  60141. extra: 974/859,
  60142. bottom: 43/1017
  60143. }
  60144. },
  60145. maw: {
  60146. height: math.unit(19.3, "meters"),
  60147. name: "Maw",
  60148. image: {
  60149. source: "./media/characters/pierce/maw.svg"
  60150. }
  60151. },
  60152. },
  60153. [
  60154. {
  60155. name: "Small",
  60156. height: math.unit(8.5, "meters")
  60157. },
  60158. {
  60159. name: "Normal",
  60160. height: math.unit(32, "meters"),
  60161. default: true
  60162. },
  60163. ]
  60164. ))
  60165. characterMakers.push(() => makeCharacter(
  60166. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  60167. {
  60168. front: {
  60169. height: math.unit(2.3, "meters"),
  60170. weight: math.unit(165, "kg"),
  60171. name: "Front",
  60172. image: {
  60173. source: "./media/characters/shira/front.svg",
  60174. extra: 924/919,
  60175. bottom: 17/941
  60176. },
  60177. form: "cobra",
  60178. default: true
  60179. },
  60180. back: {
  60181. height: math.unit(2.3, "meters"),
  60182. weight: math.unit(165, "kg"),
  60183. name: "Back",
  60184. image: {
  60185. source: "./media/characters/shira/back.svg",
  60186. extra: 928/922,
  60187. bottom: 18/946
  60188. },
  60189. form: "cobra"
  60190. },
  60191. frontLewd: {
  60192. height: math.unit(2.3, "meters"),
  60193. weight: math.unit(165, "kg"),
  60194. name: "Front (Lewd)",
  60195. image: {
  60196. source: "./media/characters/shira/front-lewd.svg",
  60197. extra: 924/919,
  60198. bottom: 17/941
  60199. },
  60200. form: "cobra"
  60201. },
  60202. backLewd: {
  60203. height: math.unit(2.3, "meters"),
  60204. weight: math.unit(165, "kg"),
  60205. name: "Back (Lewd)",
  60206. image: {
  60207. source: "./media/characters/shira/back-lewd.svg",
  60208. extra: 928/922,
  60209. bottom: 18/946
  60210. },
  60211. form: "cobra"
  60212. },
  60213. maw: {
  60214. height: math.unit(1.14, "feet"),
  60215. name: "Maw",
  60216. image: {
  60217. source: "./media/characters/shira/maw.svg"
  60218. },
  60219. form: "cobra"
  60220. },
  60221. magma_front: {
  60222. height: math.unit(2.3, "meters"),
  60223. weight: math.unit(165, "kg"),
  60224. name: "Front",
  60225. image: {
  60226. source: "./media/characters/shira/magma-front.svg",
  60227. extra: 1870/1693,
  60228. bottom: 24/1894
  60229. },
  60230. form: "magma",
  60231. },
  60232. magma_back: {
  60233. height: math.unit(2.3, "meters"),
  60234. weight: math.unit(165, "kg"),
  60235. name: "Back",
  60236. image: {
  60237. source: "./media/characters/shira/magma-back.svg",
  60238. extra: 1918/1756,
  60239. bottom: 46/1964
  60240. },
  60241. form: "magma",
  60242. },
  60243. },
  60244. [
  60245. {
  60246. name: "Incognito",
  60247. height: math.unit(2.3, "meters"),
  60248. allForms: true
  60249. },
  60250. {
  60251. name: "Home Size",
  60252. height: math.unit(150, "meters"),
  60253. default: true,
  60254. allForms: true
  60255. },
  60256. {
  60257. name: "Macro",
  60258. height: math.unit(2, "km"),
  60259. allForms: true
  60260. },
  60261. {
  60262. name: "Mega",
  60263. height: math.unit(30, "km"),
  60264. allForms: true
  60265. },
  60266. {
  60267. name: "Giga",
  60268. height: math.unit(450, "km"),
  60269. allForms: true
  60270. },
  60271. {
  60272. name: "Giga+",
  60273. height: math.unit(3000, "km"),
  60274. allForms: true
  60275. },
  60276. {
  60277. name: "Giga++",
  60278. height: math.unit(6000, "km"),
  60279. allForms: true
  60280. },
  60281. {
  60282. name: "Terra",
  60283. height: math.unit(80000, "km"),
  60284. allForms: true
  60285. },
  60286. {
  60287. name: "Terra+",
  60288. height: math.unit(350000, "km"),
  60289. allForms: true
  60290. },
  60291. {
  60292. name: "Solar",
  60293. height: math.unit(1e6, "km"),
  60294. allForms: true
  60295. },
  60296. ],
  60297. {
  60298. "cobra": {
  60299. name: "Cobra",
  60300. default: true
  60301. },
  60302. "magma": {
  60303. name: "Magma Dragon",
  60304. },
  60305. }
  60306. ))
  60307. characterMakers.push(() => makeCharacter(
  60308. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  60309. {
  60310. front: {
  60311. height: math.unit(2, "meters"),
  60312. weight: math.unit(160, "kg"),
  60313. name: "Front",
  60314. image: {
  60315. source: "./media/characters/daxerios/front.svg",
  60316. extra: 1334/1277,
  60317. bottom: 45/1379
  60318. }
  60319. },
  60320. frontLewd: {
  60321. height: math.unit(2, "meters"),
  60322. weight: math.unit(160, "kg"),
  60323. name: "Front (Lewd)",
  60324. image: {
  60325. source: "./media/characters/daxerios/front-lewd.svg",
  60326. extra: 1334/1277,
  60327. bottom: 45/1379
  60328. }
  60329. },
  60330. dick: {
  60331. height: math.unit(2.35, "feet"),
  60332. name: "Dick",
  60333. image: {
  60334. source: "./media/characters/daxerios/dick.svg"
  60335. }
  60336. },
  60337. },
  60338. [
  60339. {
  60340. name: "\"Small\"",
  60341. height: math.unit(5, "meters")
  60342. },
  60343. {
  60344. name: "Original Size",
  60345. height: math.unit(500, "meters"),
  60346. default: true
  60347. },
  60348. {
  60349. name: "Mega",
  60350. height: math.unit(2, "km")
  60351. },
  60352. {
  60353. name: "Mega+",
  60354. height: math.unit(35, "km")
  60355. },
  60356. {
  60357. name: "Giga",
  60358. height: math.unit(250, "km")
  60359. },
  60360. {
  60361. name: "Giga+",
  60362. height: math.unit(3000, "km")
  60363. },
  60364. {
  60365. name: "Terra",
  60366. height: math.unit(25000, "km")
  60367. },
  60368. {
  60369. name: "Terra+",
  60370. height: math.unit(300000, "km")
  60371. },
  60372. {
  60373. name: "Solar",
  60374. height: math.unit(1e6, "km")
  60375. },
  60376. ]
  60377. ))
  60378. characterMakers.push(() => makeCharacter(
  60379. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  60380. {
  60381. front: {
  60382. height: math.unit(8 + 4/12, "feet"),
  60383. weight: math.unit(464, "lb"),
  60384. name: "Front",
  60385. image: {
  60386. source: "./media/characters/caveat/front.svg",
  60387. extra: 1861/1678,
  60388. bottom: 40/1901
  60389. }
  60390. },
  60391. },
  60392. [
  60393. {
  60394. name: "Normal",
  60395. height: math.unit(8 + 4/12, "feet"),
  60396. default: true
  60397. },
  60398. ]
  60399. ))
  60400. characterMakers.push(() => makeCharacter(
  60401. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  60402. {
  60403. front: {
  60404. height: math.unit(12, "feet"),
  60405. weight: math.unit(1800, "lb"),
  60406. name: "Front",
  60407. image: {
  60408. source: "./media/characters/centbair/front.svg",
  60409. extra: 781/663,
  60410. bottom: 25/806
  60411. }
  60412. },
  60413. frontNsfw: {
  60414. height: math.unit(12, "feet"),
  60415. weight: math.unit(1800, "lb"),
  60416. name: "Front (NSFW)",
  60417. image: {
  60418. source: "./media/characters/centbair/front-nsfw.svg",
  60419. extra: 781/663,
  60420. bottom: 25/806
  60421. }
  60422. },
  60423. back: {
  60424. height: math.unit(12, "feet"),
  60425. weight: math.unit(1800, "lb"),
  60426. name: "Back",
  60427. image: {
  60428. source: "./media/characters/centbair/back.svg",
  60429. extra: 808/761,
  60430. bottom: 19/827
  60431. }
  60432. },
  60433. dick: {
  60434. height: math.unit(6.5, "feet"),
  60435. name: "Dick",
  60436. image: {
  60437. source: "./media/characters/centbair/dick.svg"
  60438. }
  60439. },
  60440. slit: {
  60441. height: math.unit(3.25, "feet"),
  60442. name: "Slit",
  60443. image: {
  60444. source: "./media/characters/centbair/slit.svg"
  60445. }
  60446. },
  60447. },
  60448. [
  60449. {
  60450. name: "Normal",
  60451. height: math.unit(12, "feet"),
  60452. default: true
  60453. },
  60454. ]
  60455. ))
  60456. characterMakers.push(() => makeCharacter(
  60457. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  60458. {
  60459. front: {
  60460. height: math.unit(5 + 7/12, "feet"),
  60461. name: "Front",
  60462. image: {
  60463. source: "./media/characters/andy/front.svg",
  60464. extra: 634/588,
  60465. bottom: 36/670
  60466. },
  60467. extraAttributes: {
  60468. "pawLength": {
  60469. name: "Paw Length",
  60470. power: 1,
  60471. type: "length",
  60472. base: math.unit(1, "feet")
  60473. },
  60474. }
  60475. },
  60476. side: {
  60477. height: math.unit(5 + 7/12, "feet"),
  60478. name: "Side",
  60479. image: {
  60480. source: "./media/characters/andy/side.svg",
  60481. extra: 641/596,
  60482. bottom: 34/675
  60483. },
  60484. extraAttributes: {
  60485. "pawLength": {
  60486. name: "Paw Length",
  60487. power: 1,
  60488. type: "length",
  60489. base: math.unit(1, "feet")
  60490. },
  60491. }
  60492. },
  60493. back: {
  60494. height: math.unit(5 + 7/12, "feet"),
  60495. name: "Back",
  60496. image: {
  60497. source: "./media/characters/andy/back.svg",
  60498. extra: 618/583,
  60499. bottom: 39/657
  60500. },
  60501. extraAttributes: {
  60502. "pawLength": {
  60503. name: "Paw Length",
  60504. power: 1,
  60505. type: "length",
  60506. base: math.unit(1, "feet")
  60507. },
  60508. }
  60509. },
  60510. paw: {
  60511. height: math.unit(1.13, "feet"),
  60512. name: "Paw",
  60513. image: {
  60514. source: "./media/characters/andy/paw.svg"
  60515. }
  60516. },
  60517. },
  60518. [
  60519. {
  60520. name: "Micro",
  60521. height: math.unit(4, "inches")
  60522. },
  60523. {
  60524. name: "Normal",
  60525. height: math.unit(5 + 7/12, "feet"),
  60526. default: true
  60527. },
  60528. {
  60529. name: "Macro",
  60530. height: math.unit(390.42, "feet")
  60531. },
  60532. ]
  60533. ))
  60534. characterMakers.push(() => makeCharacter(
  60535. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  60536. {
  60537. front: {
  60538. height: math.unit(7, "feet"),
  60539. weight: math.unit(250, "lb"),
  60540. name: "Front",
  60541. image: {
  60542. source: "./media/characters/vix-titan/front.svg",
  60543. extra: 460/428,
  60544. bottom: 15/475
  60545. },
  60546. extraAttributes: {
  60547. "pawWidth": {
  60548. name: "Paw Width",
  60549. power: 1,
  60550. type: "length",
  60551. base: math.unit(0.75, "feet")
  60552. },
  60553. }
  60554. },
  60555. },
  60556. [
  60557. {
  60558. name: "Normal",
  60559. height: math.unit(7, "feet"),
  60560. default: true
  60561. },
  60562. {
  60563. name: "Giant",
  60564. height: math.unit(1500, "feet")
  60565. },
  60566. {
  60567. name: "Mega",
  60568. height: math.unit(10, "miles")
  60569. },
  60570. {
  60571. name: "Giga",
  60572. height: math.unit(150, "miles")
  60573. },
  60574. {
  60575. name: "Tera",
  60576. height: math.unit(144000, "miles")
  60577. },
  60578. ]
  60579. ))
  60580. characterMakers.push(() => makeCharacter(
  60581. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  60582. {
  60583. front: {
  60584. height: math.unit(6 + 2/12, "feet"),
  60585. name: "Front",
  60586. image: {
  60587. source: "./media/characters/reiku/front.svg",
  60588. extra: 1910/1757,
  60589. bottom: 103/2013
  60590. },
  60591. extraAttributes: {
  60592. "thighThickness": {
  60593. name: "Thigh Thickness",
  60594. power: 1,
  60595. type: "length",
  60596. base: math.unit(1.12, "feet")
  60597. },
  60598. "assThickness": {
  60599. name: "Ass Thickness",
  60600. power: 1,
  60601. type: "length",
  60602. base: math.unit(1.12*2, "feet")
  60603. },
  60604. }
  60605. },
  60606. side: {
  60607. height: math.unit(6 + 2/12, "feet"),
  60608. name: "Side",
  60609. image: {
  60610. source: "./media/characters/reiku/side.svg",
  60611. extra: 1846/1748,
  60612. bottom: 99/1945
  60613. },
  60614. extraAttributes: {
  60615. "thighThickness": {
  60616. name: "Thigh Thickness",
  60617. power: 1,
  60618. type: "length",
  60619. base: math.unit(1.12, "feet")
  60620. },
  60621. "assThickness": {
  60622. name: "Ass Thickness",
  60623. power: 1,
  60624. type: "length",
  60625. base: math.unit(1.12*2, "feet")
  60626. },
  60627. }
  60628. },
  60629. back: {
  60630. height: math.unit(6 + 2/12, "feet"),
  60631. name: "Back",
  60632. image: {
  60633. source: "./media/characters/reiku/back.svg",
  60634. extra: 1941/1786,
  60635. bottom: 34/1975
  60636. },
  60637. extraAttributes: {
  60638. "thighThickness": {
  60639. name: "Thigh Thickness",
  60640. power: 1,
  60641. type: "length",
  60642. base: math.unit(1.12, "feet")
  60643. },
  60644. "assThickness": {
  60645. name: "Ass Thickness",
  60646. power: 1,
  60647. type: "length",
  60648. base: math.unit(1.12*2, "feet")
  60649. },
  60650. }
  60651. },
  60652. head: {
  60653. height: math.unit(1.8, "feet"),
  60654. name: "Head",
  60655. image: {
  60656. source: "./media/characters/reiku/head.svg"
  60657. }
  60658. },
  60659. tailTop: {
  60660. height: math.unit(8.4, "feet"),
  60661. name: "Tail (Top)",
  60662. image: {
  60663. source: "./media/characters/reiku/tail-top.svg"
  60664. }
  60665. },
  60666. tailBottom: {
  60667. height: math.unit(8.4, "feet"),
  60668. name: "Tail (Bottom)",
  60669. image: {
  60670. source: "./media/characters/reiku/tail-bottom.svg"
  60671. }
  60672. },
  60673. foot: {
  60674. height: math.unit(2.6, "feet"),
  60675. name: "Foot",
  60676. image: {
  60677. source: "./media/characters/reiku/foot.svg"
  60678. }
  60679. },
  60680. footCurled: {
  60681. height: math.unit(2.3, "feet"),
  60682. name: "Foot (Curled)",
  60683. image: {
  60684. source: "./media/characters/reiku/foot-curled.svg"
  60685. }
  60686. },
  60687. footSide: {
  60688. height: math.unit(1.26, "feet"),
  60689. name: "Foot (Side)",
  60690. image: {
  60691. source: "./media/characters/reiku/foot-side.svg"
  60692. }
  60693. },
  60694. },
  60695. [
  60696. {
  60697. name: "Normal",
  60698. height: math.unit(6 + 2/12, "feet"),
  60699. default: true
  60700. },
  60701. ]
  60702. ))
  60703. characterMakers.push(() => makeCharacter(
  60704. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  60705. {
  60706. front: {
  60707. height: math.unit(7, "feet"),
  60708. weight: math.unit(500, "kg"),
  60709. name: "Front",
  60710. image: {
  60711. source: "./media/characters/cialda/front.svg",
  60712. extra: 912/745,
  60713. bottom: 55/967
  60714. }
  60715. },
  60716. },
  60717. [
  60718. {
  60719. name: "Normal",
  60720. height: math.unit(7, "feet"),
  60721. default: true
  60722. },
  60723. ]
  60724. ))
  60725. characterMakers.push(() => makeCharacter(
  60726. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  60727. {
  60728. side: {
  60729. height: math.unit(6, "feet"),
  60730. weight: math.unit(600, "lb"),
  60731. preyCapacity: math.unit(25, "liters"),
  60732. name: "Side",
  60733. image: {
  60734. source: "./media/characters/darkkin/side.svg",
  60735. extra: 1597/1447,
  60736. bottom: 101/1698
  60737. }
  60738. },
  60739. },
  60740. [
  60741. {
  60742. name: "Canon Height",
  60743. height: math.unit(568, "feet"),
  60744. default: true
  60745. },
  60746. ]
  60747. ))
  60748. characterMakers.push(() => makeCharacter(
  60749. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  60750. {
  60751. front: {
  60752. height: math.unit(6, "feet"),
  60753. weight: math.unit(1500, "lb"),
  60754. preyCapacity: math.unit(3, "people"),
  60755. name: "Front",
  60756. image: {
  60757. source: "./media/characters/livnia/front.svg",
  60758. extra: 934/932,
  60759. bottom: 83/1017
  60760. }
  60761. },
  60762. back: {
  60763. height: math.unit(6, "feet"),
  60764. weight: math.unit(1500, "lb"),
  60765. preyCapacity: math.unit(3, "people"),
  60766. name: "Back",
  60767. image: {
  60768. source: "./media/characters/livnia/back.svg",
  60769. extra: 916/915,
  60770. bottom: 58/974
  60771. }
  60772. },
  60773. head: {
  60774. height: math.unit(1.53, "feet"),
  60775. name: "Head",
  60776. image: {
  60777. source: "./media/characters/livnia/head.svg"
  60778. }
  60779. },
  60780. maw: {
  60781. height: math.unit(0.78, "feet"),
  60782. name: "Maw",
  60783. image: {
  60784. source: "./media/characters/livnia/maw.svg"
  60785. }
  60786. },
  60787. genitals: {
  60788. height: math.unit(0.35, "feet"),
  60789. name: "Genitals",
  60790. image: {
  60791. source: "./media/characters/livnia/genitals.svg"
  60792. }
  60793. },
  60794. },
  60795. [
  60796. {
  60797. name: "Normal",
  60798. height: math.unit(1000, "feet"),
  60799. default: true
  60800. },
  60801. ]
  60802. ))
  60803. characterMakers.push(() => makeCharacter(
  60804. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  60805. {
  60806. front: {
  60807. height: math.unit(4, "feet"),
  60808. weight: math.unit(73, "lb"),
  60809. name: "Front",
  60810. image: {
  60811. source: "./media/characters/hayaku/front.svg",
  60812. extra: 1011/888,
  60813. bottom: 33/1044
  60814. }
  60815. },
  60816. back: {
  60817. height: math.unit(4, "feet"),
  60818. weight: math.unit(73, "lb"),
  60819. name: "Back",
  60820. image: {
  60821. source: "./media/characters/hayaku/back.svg",
  60822. extra: 1040/930,
  60823. bottom: 20/1060
  60824. }
  60825. },
  60826. },
  60827. [
  60828. {
  60829. name: "Normal",
  60830. height: math.unit(4, "feet"),
  60831. default: true
  60832. },
  60833. ]
  60834. ))
  60835. characterMakers.push(() => makeCharacter(
  60836. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  60837. {
  60838. front: {
  60839. height: math.unit(6 + 7/12, "feet"),
  60840. weight: math.unit(300, "lb"),
  60841. name: "Front",
  60842. image: {
  60843. source: "./media/characters/athena-bryzant/front.svg",
  60844. extra: 870/835,
  60845. bottom: 33/903
  60846. }
  60847. },
  60848. back: {
  60849. height: math.unit(6 + 7/12, "feet"),
  60850. weight: math.unit(300, "lb"),
  60851. name: "Back",
  60852. image: {
  60853. source: "./media/characters/athena-bryzant/back.svg",
  60854. extra: 858/823,
  60855. bottom: 30/888
  60856. }
  60857. },
  60858. head: {
  60859. height: math.unit(2.38, "feet"),
  60860. name: "Head",
  60861. image: {
  60862. source: "./media/characters/athena-bryzant/head.svg"
  60863. }
  60864. },
  60865. wings: {
  60866. height: math.unit(2.85, "feet"),
  60867. name: "Wings",
  60868. image: {
  60869. source: "./media/characters/athena-bryzant/wings.svg"
  60870. }
  60871. },
  60872. },
  60873. [
  60874. {
  60875. name: "Normal",
  60876. height: math.unit(6 + 7/12, "feet"),
  60877. default: true
  60878. },
  60879. {
  60880. name: "Big",
  60881. height: math.unit(8, "feet")
  60882. },
  60883. {
  60884. name: "Very Big",
  60885. height: math.unit(11, "feet")
  60886. },
  60887. ]
  60888. ))
  60889. characterMakers.push(() => makeCharacter(
  60890. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  60891. {
  60892. side: {
  60893. height: math.unit(3, "meters"),
  60894. weight: math.unit(7500, "kg"),
  60895. preyCapacity: math.unit(1e12, "people"),
  60896. name: "Side",
  60897. image: {
  60898. source: "./media/characters/zel-kesh/side.svg",
  60899. extra: 910/407,
  60900. bottom: 147/1057
  60901. }
  60902. },
  60903. },
  60904. [
  60905. {
  60906. name: "Normal",
  60907. height: math.unit(3, "meters"),
  60908. default: true
  60909. },
  60910. ]
  60911. ))
  60912. characterMakers.push(() => makeCharacter(
  60913. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  60914. {
  60915. front: {
  60916. height: math.unit(2, "meters"),
  60917. weight: math.unit(95, "kg"),
  60918. name: "Front",
  60919. image: {
  60920. source: "./media/characters/kane-fox/front.svg",
  60921. extra: 945/888,
  60922. bottom: 27/972
  60923. }
  60924. },
  60925. back: {
  60926. height: math.unit(2, "meters"),
  60927. weight: math.unit(95, "kg"),
  60928. name: "Back",
  60929. image: {
  60930. source: "./media/characters/kane-fox/back.svg",
  60931. extra: 959/914,
  60932. bottom: 15/974
  60933. }
  60934. },
  60935. frontLewd: {
  60936. height: math.unit(2, "meters"),
  60937. weight: math.unit(95, "kg"),
  60938. name: "Front (Lewd)",
  60939. image: {
  60940. source: "./media/characters/kane-fox/front-lewd.svg",
  60941. extra: 945/888,
  60942. bottom: 27/972
  60943. }
  60944. },
  60945. },
  60946. [
  60947. {
  60948. name: "Home Size",
  60949. height: math.unit(2, "meters"),
  60950. default: true
  60951. },
  60952. {
  60953. name: "Macro",
  60954. height: math.unit(200, "meters")
  60955. },
  60956. {
  60957. name: "Small Mega",
  60958. height: math.unit(3, "km")
  60959. },
  60960. {
  60961. name: "Mega",
  60962. height: math.unit(50, "km")
  60963. },
  60964. {
  60965. name: "Giga",
  60966. height: math.unit(200, "km")
  60967. },
  60968. {
  60969. name: "Giga+",
  60970. height: math.unit(2500, "km")
  60971. },
  60972. {
  60973. name: "Terra",
  60974. height: math.unit(70000, "km")
  60975. },
  60976. {
  60977. name: "Terra+",
  60978. height: math.unit(150000, "km")
  60979. },
  60980. {
  60981. name: "Terra++",
  60982. height: math.unit(400000, "km")
  60983. },
  60984. ]
  60985. ))
  60986. characterMakers.push(() => makeCharacter(
  60987. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  60988. {
  60989. otter_front: {
  60990. height: math.unit(1.8, "meters"),
  60991. weight: math.unit(90, "kg"),
  60992. name: "Front",
  60993. image: {
  60994. source: "./media/characters/ayranus/otter-front.svg",
  60995. extra: 468/452,
  60996. bottom: 43/511
  60997. },
  60998. form: "otter",
  60999. },
  61000. otter_frontLewd: {
  61001. height: math.unit(1.8, "meters"),
  61002. weight: math.unit(90, "kg"),
  61003. name: "Front (Lewd)",
  61004. image: {
  61005. source: "./media/characters/ayranus/otter-front-lewd.svg",
  61006. extra: 468/452,
  61007. bottom: 43/511
  61008. },
  61009. form: "otter",
  61010. },
  61011. lionbat_front: {
  61012. height: math.unit(1.8, "meters"),
  61013. weight: math.unit(90, "kg"),
  61014. name: "Front (Lewd)",
  61015. image: {
  61016. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  61017. extra: 797/740,
  61018. bottom: 78/875
  61019. },
  61020. form: "lionbat",
  61021. },
  61022. paw: {
  61023. height: math.unit(1.5, "feet"),
  61024. name: "Paw",
  61025. image: {
  61026. source: "./media/characters/ayranus/paw.svg"
  61027. },
  61028. },
  61029. },
  61030. [
  61031. {
  61032. name: "Incognito",
  61033. height: math.unit(1.8, "meters"),
  61034. allForms: true
  61035. },
  61036. {
  61037. name: "Macro",
  61038. height: math.unit(60, "meters"),
  61039. allForms: true
  61040. },
  61041. {
  61042. name: "Macro+",
  61043. height: math.unit(200, "meters"),
  61044. allForms: true
  61045. },
  61046. {
  61047. name: "Mega",
  61048. height: math.unit(35, "km"),
  61049. allForms: true
  61050. },
  61051. {
  61052. name: "Giga",
  61053. height: math.unit(220, "km"),
  61054. allForms: true
  61055. },
  61056. {
  61057. name: "Giga+",
  61058. height: math.unit(1500, "km"),
  61059. allForms: true
  61060. },
  61061. {
  61062. name: "Terra",
  61063. height: math.unit(13000, "km"),
  61064. allForms: true
  61065. },
  61066. {
  61067. name: "Terra+",
  61068. height: math.unit(500000, "km"),
  61069. allForms: true
  61070. },
  61071. {
  61072. name: "Galactic",
  61073. height: math.unit(486080, "parsecs"),
  61074. default: true,
  61075. allForms: true
  61076. },
  61077. ],
  61078. {
  61079. "otter": {
  61080. name: "Otter",
  61081. default: true
  61082. },
  61083. "lionbat": {
  61084. name: "Lionbat",
  61085. },
  61086. }
  61087. ))
  61088. characterMakers.push(() => makeCharacter(
  61089. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  61090. {
  61091. front: {
  61092. height: math.unit(7 + 4/12, "feet"),
  61093. weight: math.unit(400, "lb"),
  61094. name: "Front",
  61095. image: {
  61096. source: "./media/characters/proxy/front.svg",
  61097. extra: 1605/1542,
  61098. bottom: 55/1660
  61099. }
  61100. },
  61101. side: {
  61102. height: math.unit(7 + 4/12, "feet"),
  61103. weight: math.unit(400, "lb"),
  61104. name: "Side",
  61105. image: {
  61106. source: "./media/characters/proxy/side.svg",
  61107. extra: 794/759,
  61108. bottom: 6/800
  61109. }
  61110. },
  61111. hand: {
  61112. height: math.unit(1.54, "feet"),
  61113. name: "Hand",
  61114. image: {
  61115. source: "./media/characters/proxy/hand.svg"
  61116. }
  61117. },
  61118. paw: {
  61119. height: math.unit(1.53, "feet"),
  61120. name: "Paw",
  61121. image: {
  61122. source: "./media/characters/proxy/paw.svg"
  61123. }
  61124. },
  61125. maw: {
  61126. height: math.unit(1.9, "feet"),
  61127. name: "Maw",
  61128. image: {
  61129. source: "./media/characters/proxy/maw.svg"
  61130. }
  61131. },
  61132. },
  61133. [
  61134. {
  61135. name: "Normal",
  61136. height: math.unit(7 + 4/12, "feet"),
  61137. default: true
  61138. },
  61139. ]
  61140. ))
  61141. characterMakers.push(() => makeCharacter(
  61142. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  61143. {
  61144. front: {
  61145. height: math.unit(4, "meters"),
  61146. name: "Front",
  61147. image: {
  61148. source: "./media/characters/crocozilla/front.svg",
  61149. extra: 1790/1742,
  61150. bottom: 78/1868
  61151. }
  61152. },
  61153. },
  61154. [
  61155. {
  61156. name: "Normal",
  61157. height: math.unit(4, "meters"),
  61158. default: true
  61159. },
  61160. ]
  61161. ))
  61162. characterMakers.push(() => makeCharacter(
  61163. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  61164. {
  61165. front: {
  61166. height: math.unit(1.8, "meters"),
  61167. weight: math.unit(120, "kg"),
  61168. name: "Front",
  61169. image: {
  61170. source: "./media/characters/kurz/front.svg",
  61171. extra: 1960/1824,
  61172. bottom: 41/2001
  61173. }
  61174. },
  61175. back: {
  61176. height: math.unit(1.8, "meters"),
  61177. weight: math.unit(120, "kg"),
  61178. name: "Back",
  61179. image: {
  61180. source: "./media/characters/kurz/back.svg",
  61181. extra: 1906/1787,
  61182. bottom: 60/1966
  61183. }
  61184. },
  61185. frontLewd: {
  61186. height: math.unit(1.8, "meters"),
  61187. weight: math.unit(120, "kg"),
  61188. name: "Front (Lewd)",
  61189. image: {
  61190. source: "./media/characters/kurz/front-lewd.svg",
  61191. extra: 1960/1824,
  61192. bottom: 41/2001
  61193. }
  61194. },
  61195. maw: {
  61196. height: math.unit(0.69, "meters"),
  61197. name: "Maw",
  61198. image: {
  61199. source: "./media/characters/kurz/maw.svg"
  61200. }
  61201. },
  61202. },
  61203. [
  61204. {
  61205. name: "Original Size",
  61206. height: math.unit(1.8, "meters")
  61207. },
  61208. {
  61209. name: "Incognito Size",
  61210. height: math.unit(2.4, "meters"),
  61211. default: true
  61212. },
  61213. {
  61214. name: "Macro",
  61215. height: math.unit(30, "meters")
  61216. },
  61217. {
  61218. name: "Macro+",
  61219. height: math.unit(250, "meters")
  61220. },
  61221. {
  61222. name: "Mega",
  61223. height: math.unit(2, "km")
  61224. },
  61225. {
  61226. name: "Mega+",
  61227. height: math.unit(35, "km")
  61228. },
  61229. {
  61230. name: "Mega++",
  61231. height: math.unit(75, "km")
  61232. },
  61233. {
  61234. name: "Giga",
  61235. height: math.unit(250, "km")
  61236. },
  61237. {
  61238. name: "Terra",
  61239. height: math.unit(15000, "km")
  61240. },
  61241. {
  61242. name: "Terra+",
  61243. height: math.unit(2250000, "km")
  61244. },
  61245. ]
  61246. ))
  61247. characterMakers.push(() => makeCharacter(
  61248. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  61249. {
  61250. front: {
  61251. height: math.unit(16 + 3/12, "feet"),
  61252. weight: math.unit(3575, "lb"),
  61253. name: "Front",
  61254. image: {
  61255. source: "./media/characters/nikita/front.svg",
  61256. extra: 1064/955,
  61257. bottom: 47/1111
  61258. }
  61259. },
  61260. },
  61261. [
  61262. {
  61263. name: "Normal",
  61264. height: math.unit(16 + 3/12, "feet"),
  61265. default: true
  61266. },
  61267. {
  61268. name: "Big",
  61269. height: math.unit(21, "feet")
  61270. },
  61271. {
  61272. name: "Biggest",
  61273. height: math.unit(50, "feet")
  61274. },
  61275. ]
  61276. ))
  61277. characterMakers.push(() => makeCharacter(
  61278. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  61279. {
  61280. front: {
  61281. height: math.unit(1.92, "m"),
  61282. weight: math.unit(76, "kg"),
  61283. name: "Front",
  61284. image: {
  61285. source: "./media/characters/kyara/front.svg",
  61286. extra: 1550/1438,
  61287. bottom: 139/1689
  61288. }
  61289. },
  61290. back: {
  61291. height: math.unit(1.92, "m"),
  61292. weight: math.unit(76, "kg"),
  61293. name: "Back",
  61294. image: {
  61295. source: "./media/characters/kyara/back.svg",
  61296. extra: 1523/1427,
  61297. bottom: 83/1606
  61298. }
  61299. },
  61300. head: {
  61301. height: math.unit(1.22, "feet"),
  61302. name: "Head",
  61303. image: {
  61304. source: "./media/characters/kyara/head.svg"
  61305. }
  61306. },
  61307. maw: {
  61308. height: math.unit(0.73, "feet"),
  61309. name: "Maw",
  61310. image: {
  61311. source: "./media/characters/kyara/maw.svg"
  61312. }
  61313. },
  61314. paws: {
  61315. height: math.unit(0.95, "feet"),
  61316. name: "Paws",
  61317. image: {
  61318. source: "./media/characters/kyara/paws.svg"
  61319. }
  61320. },
  61321. },
  61322. [
  61323. {
  61324. name: "Normal",
  61325. height: math.unit(1.92, "meters"),
  61326. default: true
  61327. },
  61328. {
  61329. name: "Mini Macro",
  61330. height: math.unit(192, "meters")
  61331. },
  61332. {
  61333. name: "Macro",
  61334. height: math.unit(480, "meters")
  61335. },
  61336. {
  61337. name: "Mega Macro",
  61338. height: math.unit(1440, "meters")
  61339. },
  61340. ]
  61341. ))
  61342. characterMakers.push(() => makeCharacter(
  61343. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  61344. {
  61345. front: {
  61346. height: math.unit(6, "feet"),
  61347. weight: math.unit(160, "lbs"),
  61348. preyCapacity: math.unit(0.05, "people"),
  61349. name: "Front",
  61350. image: {
  61351. source: "./media/characters/layla-amari/front.svg",
  61352. extra: 1922/1723,
  61353. bottom: 90/2012
  61354. }
  61355. },
  61356. back: {
  61357. height: math.unit(6, "feet"),
  61358. weight: math.unit(160, "lbs"),
  61359. preyCapacity: math.unit(0.05, "people"),
  61360. name: "Back",
  61361. image: {
  61362. source: "./media/characters/layla-amari/back.svg",
  61363. extra: 1917/1718,
  61364. bottom: 50/1967
  61365. }
  61366. },
  61367. frontDressed: {
  61368. height: math.unit(6, "feet"),
  61369. weight: math.unit(160, "lbs"),
  61370. preyCapacity: math.unit(0.05, "people"),
  61371. name: "Front (Dressed)",
  61372. image: {
  61373. source: "./media/characters/layla-amari/front-dressed.svg",
  61374. extra: 1922/1723,
  61375. bottom: 90/2012
  61376. }
  61377. },
  61378. face: {
  61379. height: math.unit(0.93, "feet"),
  61380. name: "Face",
  61381. image: {
  61382. source: "./media/characters/layla-amari/face.svg"
  61383. }
  61384. },
  61385. hand: {
  61386. height: math.unit(0.66 , "feet"),
  61387. name: "Hand",
  61388. image: {
  61389. source: "./media/characters/layla-amari/hand.svg"
  61390. }
  61391. },
  61392. foot: {
  61393. height: math.unit(1, "feet"),
  61394. name: "Foot",
  61395. image: {
  61396. source: "./media/characters/layla-amari/foot.svg"
  61397. }
  61398. },
  61399. necklace: {
  61400. height: math.unit(0.32, "feet"),
  61401. name: "Necklace",
  61402. image: {
  61403. source: "./media/characters/layla-amari/necklace.svg"
  61404. }
  61405. },
  61406. nipple: {
  61407. height: math.unit(0.2, "feet"),
  61408. name: "Nipple",
  61409. image: {
  61410. source: "./media/characters/layla-amari/nipple.svg"
  61411. }
  61412. },
  61413. slit: {
  61414. height: math.unit(0.26, "feet"),
  61415. name: "Slit",
  61416. image: {
  61417. source: "./media/characters/layla-amari/slit.svg"
  61418. }
  61419. },
  61420. },
  61421. [
  61422. {
  61423. name: "Natural",
  61424. height: math.unit(825, "feet"),
  61425. default: true
  61426. },
  61427. {
  61428. name: "Enhanced",
  61429. height: math.unit(8250, "feet")
  61430. },
  61431. {
  61432. name: "Apparent Size",
  61433. height: math.unit(9.04363e+8, "meters")
  61434. },
  61435. ]
  61436. ))
  61437. characterMakers.push(() => makeCharacter(
  61438. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  61439. {
  61440. front: {
  61441. height: math.unit(1.3, "meters"),
  61442. name: "Front",
  61443. image: {
  61444. source: "./media/characters/percy/front.svg",
  61445. extra: 1444/1289,
  61446. bottom: 54/1498
  61447. }
  61448. },
  61449. },
  61450. [
  61451. {
  61452. name: "Normal",
  61453. height: math.unit(1.3, "meters"),
  61454. default: true
  61455. },
  61456. ]
  61457. ))
  61458. characterMakers.push(() => makeCharacter(
  61459. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  61460. {
  61461. side: {
  61462. height: math.unit(10, "meters"),
  61463. name: "Side",
  61464. image: {
  61465. source: "./media/characters/grev/side.svg",
  61466. extra: 653/266,
  61467. bottom: 77/730
  61468. }
  61469. },
  61470. head: {
  61471. height: math.unit(16.2, "m"),
  61472. name: "Head",
  61473. image: {
  61474. source: "./media/characters/grev/head.svg"
  61475. }
  61476. },
  61477. dick: {
  61478. height: math.unit(2.8135932034, "m"),
  61479. name: "Dick",
  61480. image: {
  61481. source: "./media/characters/grev/dick.svg"
  61482. }
  61483. },
  61484. },
  61485. [
  61486. {
  61487. name: "Friend-Sized",
  61488. height: math.unit(80, "cm")
  61489. },
  61490. {
  61491. name: "Normal",
  61492. height: math.unit(10, "meters"),
  61493. default: true
  61494. },
  61495. {
  61496. name: "Macro",
  61497. height: math.unit(200, "meters")
  61498. },
  61499. ]
  61500. ))
  61501. characterMakers.push(() => makeCharacter(
  61502. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  61503. {
  61504. front: {
  61505. height: math.unit(19.75, "feet"),
  61506. weight: math.unit(20000, "lb"),
  61507. name: "Front",
  61508. image: {
  61509. source: "./media/characters/azuuca/front.svg",
  61510. extra: 1593/1511,
  61511. bottom: 55/1648
  61512. }
  61513. },
  61514. },
  61515. [
  61516. {
  61517. name: "Normal",
  61518. height: math.unit(19.75, "feet"),
  61519. default: true
  61520. },
  61521. ]
  61522. ))
  61523. characterMakers.push(() => makeCharacter(
  61524. { name: "Valuria", species: ["vesempress"], tags: ["anthro"] },
  61525. {
  61526. front: {
  61527. height: math.unit(15, "feet"),
  61528. weight: math.unit(1500, "lb"),
  61529. name: "Front",
  61530. image: {
  61531. source: "./media/characters/valuria/front.svg",
  61532. extra: 1588/1486,
  61533. bottom: 31/1619
  61534. }
  61535. },
  61536. },
  61537. [
  61538. {
  61539. name: "Normal",
  61540. height: math.unit(15, "feet"),
  61541. default: true
  61542. },
  61543. {
  61544. name: "Small",
  61545. height: math.unit(500, "feet")
  61546. },
  61547. {
  61548. name: "Macro",
  61549. height: math.unit(4000, "feet")
  61550. },
  61551. {
  61552. name: "Mega Macro",
  61553. height: math.unit(2000, "miles")
  61554. },
  61555. {
  61556. name: "Giga Macro",
  61557. height: math.unit(3e6, "miles")
  61558. },
  61559. ]
  61560. ))
  61561. characterMakers.push(() => makeCharacter(
  61562. { name: "Terigaia", species: ["gaelterranian"], tags: ["anthro"] },
  61563. {
  61564. front: {
  61565. height: math.unit(3500, "solarradii"),
  61566. name: "Front",
  61567. image: {
  61568. source: "./media/characters/terigaia/front.svg",
  61569. extra: 1531/1451,
  61570. bottom: 98/1629
  61571. }
  61572. },
  61573. },
  61574. [
  61575. {
  61576. name: "Normal",
  61577. height: math.unit(3500, "solarradii"),
  61578. default: true
  61579. },
  61580. ]
  61581. ))
  61582. characterMakers.push(() => makeCharacter(
  61583. { name: "Blair (Blaziken)", species: ["blaziken"], tags: ["anthro"] },
  61584. {
  61585. front: {
  61586. height: math.unit(9.34, "feet"),
  61587. weight: math.unit(600, "lb"),
  61588. name: "Front",
  61589. image: {
  61590. source: "./media/characters/blair-blaziken/front.svg",
  61591. extra: 1557/1462,
  61592. bottom: 55/1612
  61593. }
  61594. },
  61595. },
  61596. [
  61597. {
  61598. name: "Normal",
  61599. height: math.unit(9.34, "feet"),
  61600. default: true
  61601. },
  61602. ]
  61603. ))
  61604. characterMakers.push(() => makeCharacter(
  61605. { name: "Braxia", species: ["pistrogre", "human"], tags: ["anthro"] },
  61606. {
  61607. pistrogre_front: {
  61608. height: math.unit(10, "feet"),
  61609. weight: math.unit(10, "tons"),
  61610. name: "Front",
  61611. image: {
  61612. source: "./media/characters/braxia/pistrogre-front.svg",
  61613. extra: 1531/1334,
  61614. bottom: 114/1645
  61615. },
  61616. form: "pistrogre",
  61617. default: true
  61618. },
  61619. human_front: {
  61620. height: math.unit(10, "feet"),
  61621. weight: math.unit(10, "tons"),
  61622. name: "Front",
  61623. image: {
  61624. source: "./media/characters/braxia/human-front.svg",
  61625. extra: 1574/1501,
  61626. bottom: 37/1611
  61627. },
  61628. form: "human",
  61629. default: true
  61630. },
  61631. },
  61632. [
  61633. {
  61634. name: "Normal",
  61635. height: math.unit(10, "feet"),
  61636. default: true,
  61637. allForms: true
  61638. },
  61639. {
  61640. name: "Macro",
  61641. height: math.unit(1000, "feet"),
  61642. allForms: true
  61643. },
  61644. {
  61645. name: "Mega Macro",
  61646. height: math.unit(100, "miles"),
  61647. allForms: true
  61648. },
  61649. {
  61650. name: "Cosmic",
  61651. height: math.unit(1000000, "lightyears"),
  61652. allForms: true
  61653. },
  61654. {
  61655. name: "ϐѮԆԬӁꭍϞԢ",
  61656. height: math.unit(1000, "multiverses"),
  61657. allForms: true
  61658. },
  61659. ],
  61660. {
  61661. "pistrogre": {
  61662. name: "Pistrogre",
  61663. default: true
  61664. },
  61665. "human": {
  61666. name: "Human",
  61667. },
  61668. }
  61669. ))
  61670. characterMakers.push(() => makeCharacter(
  61671. { name: "Kiriga Yato", species: ["zorgoia"], tags: ["anthro"] },
  61672. {
  61673. front: {
  61674. height: math.unit(6 + 1/12, "feet"),
  61675. weight: math.unit(280, "lb"),
  61676. name: "Front",
  61677. image: {
  61678. source: "./media/characters/kiriga-yato/front.svg",
  61679. extra: 445/394,
  61680. bottom: 11/456
  61681. }
  61682. },
  61683. },
  61684. [
  61685. {
  61686. name: "Descended",
  61687. height: math.unit(3, "feet")
  61688. },
  61689. {
  61690. name: "Average",
  61691. height: math.unit(6 + 1/12, "feet"),
  61692. default: true
  61693. },
  61694. {
  61695. name: "Ascended",
  61696. height: math.unit(9 + 2/12, "feet")
  61697. },
  61698. ]
  61699. ))
  61700. characterMakers.push(() => makeCharacter(
  61701. { name: "Kylie", species: ["giraffe"], tags: ["anthro"] },
  61702. {
  61703. front: {
  61704. height: math.unit(6, "feet"),
  61705. weight: math.unit(150, "lb"),
  61706. name: "Front",
  61707. image: {
  61708. source: "./media/characters/kylie/front.svg",
  61709. extra: 1114/1046,
  61710. bottom: 65/1179
  61711. },
  61712. extraAttributes: {
  61713. "hoofSize": {
  61714. name: "Hoof Size",
  61715. power: 2,
  61716. type: "area",
  61717. base: math.unit(0.034, "m^2")
  61718. },
  61719. "footSize": {
  61720. name: "Foot Size",
  61721. power: 2,
  61722. type: "area",
  61723. base: math.unit(0.75, "m^2")
  61724. },
  61725. }
  61726. },
  61727. side: {
  61728. height: math.unit(6, "feet"),
  61729. weight: math.unit(150, "lb"),
  61730. name: "Side",
  61731. image: {
  61732. source: "./media/characters/kylie/side.svg",
  61733. extra: 1178/1110,
  61734. bottom: 21/1199
  61735. },
  61736. extraAttributes: {
  61737. "hoofSize": {
  61738. name: "Hoof Size",
  61739. power: 2,
  61740. type: "area",
  61741. base: math.unit(0.034, "m^2")
  61742. },
  61743. "footSize": {
  61744. name: "Foot Size",
  61745. power: 2,
  61746. type: "area",
  61747. base: math.unit(0.75, "m^2")
  61748. },
  61749. }
  61750. },
  61751. back: {
  61752. height: math.unit(6, "feet"),
  61753. weight: math.unit(150, "lb"),
  61754. name: "Back",
  61755. image: {
  61756. source: "./media/characters/kylie/back.svg",
  61757. extra: 1115/1047,
  61758. bottom: 66/1181
  61759. },
  61760. extraAttributes: {
  61761. "hoofSize": {
  61762. name: "Hoof Size",
  61763. power: 2,
  61764. type: "area",
  61765. base: math.unit(0.034, "m^2")
  61766. },
  61767. "footSize": {
  61768. name: "Foot Size",
  61769. power: 2,
  61770. type: "area",
  61771. base: math.unit(0.75, "m^2")
  61772. },
  61773. }
  61774. },
  61775. head: {
  61776. height: math.unit(1.85, "feet"),
  61777. name: "Head",
  61778. image: {
  61779. source: "./media/characters/kylie/head.svg"
  61780. }
  61781. },
  61782. },
  61783. [
  61784. {
  61785. name: "Normal",
  61786. height: math.unit(90, "meters"),
  61787. default: true
  61788. },
  61789. ]
  61790. ))
  61791. characterMakers.push(() => makeCharacter(
  61792. { name: "Sabado", species: ["suicune"], tags: ["anthro"] },
  61793. {
  61794. front: {
  61795. height: math.unit(245, "feet"),
  61796. weight: math.unit(400000, "lb"),
  61797. name: "Front",
  61798. image: {
  61799. source: "./media/characters/sabado/front.svg",
  61800. extra: 1309/1164,
  61801. bottom: 29/1338
  61802. }
  61803. },
  61804. },
  61805. [
  61806. {
  61807. name: "Normal",
  61808. height: math.unit(245, "feet"),
  61809. default: true
  61810. },
  61811. ]
  61812. ))
  61813. characterMakers.push(() => makeCharacter(
  61814. { name: "Zechal", species: ["shark", "dragon", "deity"], tags: ["anthro"] },
  61815. {
  61816. shark_front: {
  61817. height: math.unit(2, "meters"),
  61818. weight: math.unit(200, "kg"),
  61819. name: "Front",
  61820. image: {
  61821. source: "./media/characters/zechal/shark-front.svg",
  61822. extra: 969/925,
  61823. bottom: 74/1043
  61824. },
  61825. form: "shark",
  61826. },
  61827. shark_back: {
  61828. height: math.unit(2, "meters"),
  61829. weight: math.unit(200, "kg"),
  61830. name: "Back",
  61831. image: {
  61832. source: "./media/characters/zechal/shark-back.svg",
  61833. extra: 994/949,
  61834. bottom: 176/1170
  61835. },
  61836. form: "shark",
  61837. },
  61838. shark_frontLewd: {
  61839. height: math.unit(2, "meters"),
  61840. weight: math.unit(200, "kg"),
  61841. name: "Front (Lewd)",
  61842. image: {
  61843. source: "./media/characters/zechal/shark-front-lewd.svg",
  61844. extra: 969/925,
  61845. bottom: 74/1043
  61846. },
  61847. form: "shark",
  61848. },
  61849. shark_side: {
  61850. height: math.unit(1.56, "meters"),
  61851. weight: math.unit(200, "kg"),
  61852. name: "Side",
  61853. image: {
  61854. source: "./media/characters/zechal/shark-side.svg"
  61855. },
  61856. form: "shark",
  61857. },
  61858. dragon_front: {
  61859. height: math.unit(2, "meters"),
  61860. weight: math.unit(200, "kg"),
  61861. name: "Front",
  61862. image: {
  61863. source: "./media/characters/zechal/dragon-front.svg",
  61864. extra: 1041/925,
  61865. bottom: 74/1115
  61866. },
  61867. form: "dragon",
  61868. },
  61869. dragon_back: {
  61870. height: math.unit(2, "meters"),
  61871. weight: math.unit(200, "kg"),
  61872. name: "Back",
  61873. image: {
  61874. source: "./media/characters/zechal/dragon-back.svg",
  61875. extra: 1061/949,
  61876. bottom: 176/1237
  61877. },
  61878. form: "dragon",
  61879. },
  61880. dragon_frontLewd: {
  61881. height: math.unit(2, "meters"),
  61882. weight: math.unit(200, "kg"),
  61883. name: "Front (Lewd)",
  61884. image: {
  61885. source: "./media/characters/zechal/dragon-front-lewd.svg",
  61886. extra: 1041/925,
  61887. bottom: 74/1115
  61888. },
  61889. form: "dragon",
  61890. },
  61891. dragon_side: {
  61892. height: math.unit(1.56, "meters"),
  61893. weight: math.unit(200, "kg"),
  61894. name: "Side",
  61895. image: {
  61896. source: "./media/characters/zechal/dragon-side.svg"
  61897. },
  61898. form: "dragon",
  61899. },
  61900. foot: {
  61901. height: math.unit(0.5, "meters"),
  61902. name: "Foot",
  61903. image: {
  61904. source: "./media/characters/zechal/foot.svg"
  61905. }
  61906. },
  61907. sheathFront: {
  61908. height: math.unit(0.45, "meters"),
  61909. name: "Sheath (Front)",
  61910. image: {
  61911. source: "./media/characters/zechal/sheath-front.svg"
  61912. }
  61913. },
  61914. sheathSide: {
  61915. height: math.unit(0.45, "meters"),
  61916. name: "Sheath (Side)",
  61917. image: {
  61918. source: "./media/characters/zechal/sheath-side.svg"
  61919. }
  61920. },
  61921. },
  61922. [
  61923. {
  61924. name: "Incognito",
  61925. height: math.unit(2, "meters"),
  61926. allForms: true
  61927. },
  61928. {
  61929. name: "Small Rampage",
  61930. height: math.unit(25, "meters"),
  61931. allForms: true
  61932. },
  61933. {
  61934. name: "Home Size",
  61935. height: math.unit(250, "meters"),
  61936. allForms: true,
  61937. default: true
  61938. },
  61939. {
  61940. name: "Macro+",
  61941. height: math.unit(700, "meters"),
  61942. allForms: true
  61943. },
  61944. {
  61945. name: "Small Mega",
  61946. height: math.unit(3, "km"),
  61947. allForms: true
  61948. },
  61949. {
  61950. name: "Mega",
  61951. height: math.unit(15, "km"),
  61952. allForms: true
  61953. },
  61954. {
  61955. name: "Giga",
  61956. height: math.unit(300, "km"),
  61957. allForms: true
  61958. },
  61959. {
  61960. name: "Giga+",
  61961. height: math.unit(1750, "km"),
  61962. allForms: true
  61963. },
  61964. {
  61965. name: "Continental",
  61966. height: math.unit(5000, "km"),
  61967. allForms: true
  61968. },
  61969. {
  61970. name: "Terra",
  61971. height: math.unit(20000, "km"),
  61972. allForms: true
  61973. },
  61974. {
  61975. name: "Terra+",
  61976. height: math.unit(300000, "km"),
  61977. allForms: true
  61978. },
  61979. {
  61980. name: "Solar",
  61981. height: math.unit(40000000, "km"),
  61982. allForms: true
  61983. },
  61984. {
  61985. name: "Galactic",
  61986. height: math.unit(810133, "parsecs"),
  61987. allForms: true
  61988. },
  61989. {
  61990. name: "Universal",
  61991. height: math.unit(25, "universes"),
  61992. allForms: true
  61993. },
  61994. ],
  61995. {
  61996. "shark": {
  61997. name: "Shark",
  61998. default: true
  61999. },
  62000. "dragon": {
  62001. name: "Dragon",
  62002. },
  62003. }
  62004. ))
  62005. characterMakers.push(() => makeCharacter(
  62006. { name: "Sergis", species: ["komodo-dragon", "deity"], tags: ["anthro"] },
  62007. {
  62008. front: {
  62009. height: math.unit(2.2, "meters"),
  62010. weight: math.unit(150, "kg"),
  62011. name: "Front",
  62012. image: {
  62013. source: "./media/characters/sergis/front.svg",
  62014. extra: 1314/1312,
  62015. bottom: 112/1426
  62016. }
  62017. },
  62018. back: {
  62019. height: math.unit(2.2, "meters"),
  62020. weight: math.unit(150, "kg"),
  62021. name: "Back",
  62022. image: {
  62023. source: "./media/characters/sergis/back.svg",
  62024. extra: 1335/1333,
  62025. bottom: 19/1354
  62026. }
  62027. },
  62028. frontLewd: {
  62029. height: math.unit(2.2, "meters"),
  62030. weight: math.unit(150, "kg"),
  62031. name: "Front (Lewd)",
  62032. image: {
  62033. source: "./media/characters/sergis/front-lewd.svg",
  62034. extra: 1314/1312,
  62035. bottom: 112/1426
  62036. }
  62037. },
  62038. frontDressed: {
  62039. height: math.unit(2.2, "meters"),
  62040. weight: math.unit(150, "kg"),
  62041. name: "Front (Dressed)",
  62042. image: {
  62043. source: "./media/characters/sergis/front-dressed.svg",
  62044. extra: 1330/1328,
  62045. bottom: 95/1425
  62046. }
  62047. },
  62048. frontDressedLewd: {
  62049. height: math.unit(2.2, "meters"),
  62050. weight: math.unit(150, "kg"),
  62051. name: "Front (Dressed, Lewd)",
  62052. image: {
  62053. source: "./media/characters/sergis/front-dressed-lewd.svg",
  62054. extra: 1330/1328,
  62055. bottom: 95/1425
  62056. }
  62057. },
  62058. maw: {
  62059. height: math.unit(0.48, "meters"),
  62060. name: "Maw",
  62061. image: {
  62062. source: "./media/characters/sergis/maw.svg"
  62063. }
  62064. },
  62065. sheath: {
  62066. height: math.unit(0.38, "meters"),
  62067. name: "Sheath",
  62068. image: {
  62069. source: "./media/characters/sergis/sheath.svg"
  62070. }
  62071. },
  62072. },
  62073. [
  62074. {
  62075. name: "Incognito Size",
  62076. height: math.unit(2.2, "meters")
  62077. },
  62078. {
  62079. name: "Small Macro",
  62080. height: math.unit(40, "meters")
  62081. },
  62082. {
  62083. name: "Macro",
  62084. height: math.unit(150, "meters")
  62085. },
  62086. {
  62087. name: "Macro+",
  62088. height: math.unit(300, "meters")
  62089. },
  62090. {
  62091. name: "Mega",
  62092. height: math.unit(2.5, "km")
  62093. },
  62094. {
  62095. name: "Mega+",
  62096. height: math.unit(30, "km")
  62097. },
  62098. {
  62099. name: "Home Size",
  62100. height: math.unit(300, "km"),
  62101. default: true
  62102. },
  62103. {
  62104. name: "Giga+",
  62105. height: math.unit(1000, "km")
  62106. },
  62107. {
  62108. name: "Giga++",
  62109. height: math.unit(6000, "km")
  62110. },
  62111. {
  62112. name: "Terra",
  62113. height: math.unit(70000, "km")
  62114. },
  62115. {
  62116. name: "Terra+",
  62117. height: math.unit(200000, "km")
  62118. },
  62119. {
  62120. name: "Galactic",
  62121. height: math.unit(634200, "lightyears")
  62122. },
  62123. ]
  62124. ))
  62125. characterMakers.push(() => makeCharacter(
  62126. { name: "Spade", species: ["demon", "mouse"], tags: ["anthro"] },
  62127. {
  62128. standard: {
  62129. height: math.unit(1 + 5/12, "feet"),
  62130. name: "Standard",
  62131. image: {
  62132. source: "./media/characters/spade/standard.svg",
  62133. extra: 1794/1703,
  62134. bottom: 115/1909
  62135. }
  62136. },
  62137. disguised: {
  62138. height: math.unit(1 + 5/12, "feet"),
  62139. name: "Disguised",
  62140. image: {
  62141. source: "./media/characters/spade/disguised.svg",
  62142. extra: 1794/1700,
  62143. bottom: 98/1892
  62144. }
  62145. },
  62146. },
  62147. [
  62148. {
  62149. name: "Normal",
  62150. height: math.unit(1 + 5/12, "feet"),
  62151. default: true
  62152. },
  62153. ]
  62154. ))
  62155. characterMakers.push(() => makeCharacter(
  62156. { name: "Zeanlain", species: ["harpy-eagle"], tags: ["anthro"] },
  62157. {
  62158. frontNsfw: {
  62159. height: math.unit(5, "meters"),
  62160. weight: math.unit(2000, "kg"),
  62161. preyCapacity: math.unit(5, "people"),
  62162. name: "Front (NSFW)",
  62163. image: {
  62164. source: "./media/characters/zeanlain/front-nsfw.svg",
  62165. extra: 1087/938,
  62166. bottom: 93/1180
  62167. },
  62168. extraAttributes: {
  62169. "wingspan": {
  62170. name: "Wingspan",
  62171. power: 1,
  62172. type: "length",
  62173. base: math.unit(10, "meters")
  62174. },
  62175. "footSize": {
  62176. name: "Foot Size",
  62177. power: 1,
  62178. type: "length",
  62179. base: math.unit(0.68, "meters")
  62180. },
  62181. "cockLength": {
  62182. name: "Cock Length",
  62183. power: 1,
  62184. type: "length",
  62185. base: math.unit(1.69, "meters")
  62186. },
  62187. "ballVolume": {
  62188. name: "Ball Volume",
  62189. power: 3,
  62190. type: "volume",
  62191. base: math.unit(0.028, "m^3")
  62192. },
  62193. }
  62194. },
  62195. front: {
  62196. height: math.unit(5, "meters"),
  62197. weight: math.unit(2000, "kg"),
  62198. preyCapacity: math.unit(3, "people"),
  62199. name: "Front",
  62200. image: {
  62201. source: "./media/characters/zeanlain/front.svg",
  62202. extra: 1087/938,
  62203. bottom: 93/1180
  62204. },
  62205. extraAttributes: {
  62206. "wingspan": {
  62207. name: "Wingspan",
  62208. power: 1,
  62209. type: "length",
  62210. base: math.unit(10, "meters")
  62211. },
  62212. "footSize": {
  62213. name: "Foot Size",
  62214. power: 1,
  62215. type: "length",
  62216. base: math.unit(0.68, "meters")
  62217. },
  62218. }
  62219. },
  62220. },
  62221. [
  62222. {
  62223. name: "Normal",
  62224. height: math.unit(5, "meters"),
  62225. default: true
  62226. },
  62227. ]
  62228. ))
  62229. characterMakers.push(() => makeCharacter(
  62230. { name: "Airamis", species: ["aeromorph", "dragon"], tags: ["anthro"] },
  62231. {
  62232. front: {
  62233. height: math.unit(10, "meters"),
  62234. weight: math.unit(250000, "kg"),
  62235. name: "Front",
  62236. image: {
  62237. source: "./media/characters/airamis/front.svg",
  62238. extra: 865/835,
  62239. bottom: 13/878
  62240. }
  62241. },
  62242. },
  62243. [
  62244. {
  62245. name: "Normal",
  62246. height: math.unit(10, "meters"),
  62247. default: true
  62248. },
  62249. ]
  62250. ))
  62251. characterMakers.push(() => makeCharacter(
  62252. { name: "Corra Tourmaline", species: ["vaporeon"], tags: ["anthro"] },
  62253. {
  62254. front: {
  62255. height: math.unit(3 + 3/12, "feet"),
  62256. weight: math.unit(75, "lb"),
  62257. name: "Front",
  62258. image: {
  62259. source: "./media/characters/corra-tourmaline/front.svg",
  62260. extra: 1037/864,
  62261. bottom: 39/1076
  62262. }
  62263. },
  62264. back: {
  62265. height: math.unit(3 + 3/12, "feet"),
  62266. weight: math.unit(75, "lb"),
  62267. name: "Back",
  62268. image: {
  62269. source: "./media/characters/corra-tourmaline/back.svg",
  62270. extra: 1022/849,
  62271. bottom: 26/1048
  62272. }
  62273. },
  62274. dressed: {
  62275. height: math.unit(3 + 3/12, "feet"),
  62276. weight: math.unit(75, "lb"),
  62277. name: "Dressed",
  62278. image: {
  62279. source: "./media/characters/corra-tourmaline/dressed.svg",
  62280. extra: 1037/864,
  62281. bottom: 39/1076
  62282. }
  62283. },
  62284. beans: {
  62285. height: math.unit(0.37, "feet"),
  62286. name: "Beans",
  62287. image: {
  62288. source: "./media/characters/corra-tourmaline/beans.svg"
  62289. }
  62290. },
  62291. },
  62292. [
  62293. {
  62294. name: "Normal",
  62295. height: math.unit(3 + 3/12, "feet"),
  62296. default: true
  62297. },
  62298. {
  62299. name: "Macro",
  62300. height: math.unit(32, "feet")
  62301. },
  62302. ]
  62303. ))
  62304. characterMakers.push(() => makeCharacter(
  62305. { name: "Maki Kawa", species: ["sabertooth-tiger", "serval"], tags: ["anthro"] },
  62306. {
  62307. front: {
  62308. height: math.unit(6 + 2/12, "feet"),
  62309. weight: math.unit(203, "lb"),
  62310. name: "Front",
  62311. image: {
  62312. source: "./media/characters/maki-kawa/front.svg",
  62313. extra: 950/890,
  62314. bottom: 62/1012
  62315. }
  62316. },
  62317. back: {
  62318. height: math.unit(6 + 2/12, "feet"),
  62319. weight: math.unit(203, "lb"),
  62320. name: "Back",
  62321. image: {
  62322. source: "./media/characters/maki-kawa/back.svg",
  62323. extra: 953/878,
  62324. bottom: 49/1002
  62325. }
  62326. },
  62327. frontBarista: {
  62328. height: math.unit(6 + 2/12, "feet"),
  62329. weight: math.unit(203, "lb"),
  62330. name: "Front (Barista)",
  62331. image: {
  62332. source: "./media/characters/maki-kawa/front-barista.svg",
  62333. extra: 943/883,
  62334. bottom: 69/1012
  62335. }
  62336. },
  62337. backBarista: {
  62338. height: math.unit(6 + 2/12, "feet"),
  62339. weight: math.unit(203, "lb"),
  62340. name: "Back (Barista)",
  62341. image: {
  62342. source: "./media/characters/maki-kawa/back-barista.svg",
  62343. extra: 953/878,
  62344. bottom: 49/1002
  62345. }
  62346. },
  62347. frontWrestler: {
  62348. height: math.unit(6 + 2/12, "feet"),
  62349. weight: math.unit(203, "lb"),
  62350. name: "Front (Wrestler)",
  62351. image: {
  62352. source: "./media/characters/maki-kawa/front-wrestler.svg",
  62353. extra: 950/890,
  62354. bottom: 62/1012
  62355. }
  62356. },
  62357. backWrestler: {
  62358. height: math.unit(6 + 2/12, "feet"),
  62359. weight: math.unit(203, "lb"),
  62360. name: "Back (Wrestler)",
  62361. image: {
  62362. source: "./media/characters/maki-kawa/back-wrestler.svg",
  62363. extra: 953/878,
  62364. bottom: 49/1002
  62365. }
  62366. },
  62367. headFront: {
  62368. height: math.unit(1.64, "feet"),
  62369. name: "Head (Front)",
  62370. image: {
  62371. source: "./media/characters/maki-kawa/head-front.svg"
  62372. }
  62373. },
  62374. headSide: {
  62375. height: math.unit(1.59, "feet"),
  62376. name: "Head (Side)",
  62377. image: {
  62378. source: "./media/characters/maki-kawa/head-side.svg"
  62379. }
  62380. },
  62381. paw: {
  62382. height: math.unit(0.9, "feet"),
  62383. name: "Paw",
  62384. image: {
  62385. source: "./media/characters/maki-kawa/paw.svg"
  62386. }
  62387. },
  62388. },
  62389. [
  62390. {
  62391. name: "Normal",
  62392. height: math.unit(6 + 2/12, "feet"),
  62393. default: true
  62394. },
  62395. {
  62396. name: "Macro",
  62397. height: math.unit(617, "feet")
  62398. },
  62399. ]
  62400. ))
  62401. characterMakers.push(() => makeCharacter(
  62402. { name: "Lennox", species: ["wolf"], tags: ["anthro"] },
  62403. {
  62404. front: {
  62405. height: math.unit(10, "feet"),
  62406. weight: math.unit(1500, "lb"),
  62407. name: "Front",
  62408. image: {
  62409. source: "./media/characters/lennox/front.svg",
  62410. extra: 1623/1496,
  62411. bottom: 18/1641
  62412. }
  62413. },
  62414. back: {
  62415. height: math.unit(10, "feet"),
  62416. weight: math.unit(1500, "lb"),
  62417. name: "Back",
  62418. image: {
  62419. source: "./media/characters/lennox/back.svg",
  62420. extra: 1641/1481,
  62421. bottom: 13/1654
  62422. }
  62423. },
  62424. maw: {
  62425. height: math.unit(2.94, "feet"),
  62426. name: "Maw",
  62427. image: {
  62428. source: "./media/characters/lennox/maw.svg"
  62429. }
  62430. },
  62431. },
  62432. [
  62433. {
  62434. name: "Micro",
  62435. height: math.unit(1, "inch")
  62436. },
  62437. {
  62438. name: "Normal",
  62439. height: math.unit(10, "feet"),
  62440. default: true
  62441. },
  62442. {
  62443. name: "Macro",
  62444. height: math.unit(200, "feet")
  62445. },
  62446. ]
  62447. ))
  62448. characterMakers.push(() => makeCharacter(
  62449. { name: "Vyse Iron-Thunder", species: ["luxray", "shiny"], tags: ["anthro"] },
  62450. {
  62451. frontDressed: {
  62452. height: math.unit(15 + 7/12, "feet"),
  62453. weight: math.unit(5000, "lb"),
  62454. name: "Front (Dressed)",
  62455. image: {
  62456. source: "./media/characters/vyse-iron-thunder/front-dressed.svg",
  62457. extra: 1136/1023,
  62458. bottom: 51/1187
  62459. }
  62460. },
  62461. backDressed: {
  62462. height: math.unit(15 + 7/12, "feet"),
  62463. weight: math.unit(5000, "lb"),
  62464. name: "Back (Dressed)",
  62465. image: {
  62466. source: "./media/characters/vyse-iron-thunder/back-dressed.svg",
  62467. extra: 2359/2143,
  62468. bottom: 103/2462
  62469. }
  62470. },
  62471. front: {
  62472. height: math.unit(15 + 7/12, "feet"),
  62473. weight: math.unit(5000, "lb"),
  62474. name: "Front",
  62475. image: {
  62476. source: "./media/characters/vyse-iron-thunder/front.svg",
  62477. extra: 1136/1023,
  62478. bottom: 51/1187
  62479. }
  62480. },
  62481. hand: {
  62482. height: math.unit(2.36, "feet"),
  62483. name: "Hand",
  62484. image: {
  62485. source: "./media/characters/vyse-iron-thunder/hand.svg"
  62486. }
  62487. },
  62488. foot: {
  62489. height: math.unit(1.72, "feet"),
  62490. name: "Foot",
  62491. image: {
  62492. source: "./media/characters/vyse-iron-thunder/foot.svg"
  62493. }
  62494. },
  62495. mouth: {
  62496. height: math.unit(2, "feet"),
  62497. name: "Mouth",
  62498. image: {
  62499. source: "./media/characters/vyse-iron-thunder/mouth.svg"
  62500. }
  62501. },
  62502. eye: {
  62503. height: math.unit(0.58, "feet"),
  62504. name: "Eye",
  62505. image: {
  62506. source: "./media/characters/vyse-iron-thunder/eye.svg"
  62507. }
  62508. },
  62509. },
  62510. [
  62511. {
  62512. name: "Normal",
  62513. height: math.unit(15 + 7/12, "feet"),
  62514. default: true
  62515. },
  62516. {
  62517. name: "Macro",
  62518. height: math.unit(157, "feet")
  62519. },
  62520. {
  62521. name: "Macro+",
  62522. height: math.unit(1570, "feet")
  62523. },
  62524. {
  62525. name: "Macro++",
  62526. height: math.unit(15700, "feet")
  62527. },
  62528. {
  62529. name: "Macro+++",
  62530. height: math.unit(157000, "feet")
  62531. },
  62532. {
  62533. name: "Macro++++",
  62534. height: math.unit(1570000, "feet")
  62535. },
  62536. ]
  62537. ))
  62538. characterMakers.push(() => makeCharacter(
  62539. { name: "Moonbeam", species: ["latex", "wolf"], tags: ["feral"] },
  62540. {
  62541. side: {
  62542. height: math.unit(6, "feet"),
  62543. weight: math.unit(115, "lb"),
  62544. name: "Side",
  62545. image: {
  62546. source: "./media/characters/moonbeam/side.svg",
  62547. extra: 839/485,
  62548. bottom: 60/899
  62549. }
  62550. },
  62551. },
  62552. [
  62553. {
  62554. name: "Normal",
  62555. height: math.unit(6, "feet"),
  62556. default: true
  62557. },
  62558. ]
  62559. ))
  62560. characterMakers.push(() => makeCharacter(
  62561. { name: "Baltica", species: ["orca"], tags: ["anthro"] },
  62562. {
  62563. front: {
  62564. height: math.unit(3500, "miles"),
  62565. weight: math.unit(1659, "petatonnes"),
  62566. name: "Front",
  62567. image: {
  62568. source: "./media/characters/baltica/front.svg",
  62569. extra: 429/428,
  62570. bottom: 41/470
  62571. }
  62572. },
  62573. back: {
  62574. height: math.unit(3500, "miles"),
  62575. weight: math.unit(1659, "petatonnes"),
  62576. name: "Back",
  62577. image: {
  62578. source: "./media/characters/baltica/back.svg",
  62579. extra: 452/451,
  62580. bottom: 8/460
  62581. }
  62582. },
  62583. },
  62584. [
  62585. {
  62586. name: "Gigamacro",
  62587. height: math.unit(3500, "miles"),
  62588. default: true
  62589. },
  62590. ]
  62591. ))
  62592. characterMakers.push(() => makeCharacter(
  62593. { name: "Shadow (Wolf)", species: ["wolf", "demi"], tags: ["anthro"] },
  62594. {
  62595. front: {
  62596. height: math.unit(6 + 10/12, "feet"),
  62597. weight: math.unit(200, "lb"),
  62598. name: "Front",
  62599. image: {
  62600. source: "./media/characters/shadow-wolf/front.svg",
  62601. extra: 1931/1760,
  62602. bottom: 88/2019
  62603. }
  62604. },
  62605. },
  62606. [
  62607. {
  62608. name: "Normal",
  62609. height: math.unit(6 + 10/12, "feet"),
  62610. default: true
  62611. },
  62612. ]
  62613. ))
  62614. characterMakers.push(() => makeCharacter(
  62615. { name: "Quincy (Praying Mantis)", species: ["praying-mantis"], tags: ["anthro"] },
  62616. {
  62617. front: {
  62618. height: math.unit(5 + 10/12, "feet"),
  62619. name: "Front",
  62620. image: {
  62621. source: "./media/characters/quincy-praying-mantis/front.svg",
  62622. extra: 1055/891,
  62623. bottom: 92/1147
  62624. }
  62625. },
  62626. soles: {
  62627. height: math.unit(0.85, "feet"),
  62628. name: "Soles",
  62629. image: {
  62630. source: "./media/characters/quincy-praying-mantis/soles.svg",
  62631. extra: 429/324,
  62632. bottom: 89/518
  62633. },
  62634. extraAttributes: {
  62635. "shoeSize": {
  62636. name: "Shoe Size",
  62637. power: 1,
  62638. type: "length",
  62639. base: math.unit(23, "ShoeSizeMensUS"),
  62640. defaultUnit: "ShoeSizeMensUS"
  62641. },
  62642. }
  62643. },
  62644. foot: {
  62645. height: math.unit(0.72, "feet"),
  62646. name: "Foot",
  62647. image: {
  62648. source: "./media/characters/quincy-praying-mantis/foot.svg",
  62649. extra: 349/349,
  62650. bottom: 76/425
  62651. }
  62652. },
  62653. },
  62654. [
  62655. {
  62656. name: "Normal",
  62657. height: math.unit(5 + 10/12, "feet"),
  62658. default: true
  62659. },
  62660. ]
  62661. ))
  62662. characterMakers.push(() => makeCharacter(
  62663. { name: "Christopher Redwood", species: ["gray-wolf"], tags: ["anthro"] },
  62664. {
  62665. front: {
  62666. height: math.unit(6, "feet"),
  62667. name: "Front",
  62668. image: {
  62669. source: "./media/characters/christopher-redwood/front.svg",
  62670. extra: 1402/1341,
  62671. bottom: 23/1425
  62672. }
  62673. },
  62674. back: {
  62675. height: math.unit(6, "feet"),
  62676. name: "Back",
  62677. image: {
  62678. source: "./media/characters/christopher-redwood/back.svg",
  62679. extra: 1406/1345,
  62680. bottom: 36/1442
  62681. }
  62682. },
  62683. head: {
  62684. height: math.unit(1.685, "feet"),
  62685. name: "Head",
  62686. image: {
  62687. source: "./media/characters/christopher-redwood/head.svg"
  62688. }
  62689. },
  62690. },
  62691. [
  62692. {
  62693. name: "Normal",
  62694. height: math.unit(6, "feet"),
  62695. default: true
  62696. },
  62697. ]
  62698. ))
  62699. characterMakers.push(() => makeCharacter(
  62700. { name: "Kara (Fox)", species: ["fox"], tags: ["anthro"] },
  62701. {
  62702. front: {
  62703. height: math.unit(1.9, "meters"),
  62704. weight: math.unit(140, "lb"),
  62705. name: "Front",
  62706. image: {
  62707. source: "./media/characters/kara-fox/front.svg",
  62708. extra: 766/711,
  62709. bottom: 41/807
  62710. }
  62711. },
  62712. back: {
  62713. height: math.unit(1.9, "meters"),
  62714. weight: math.unit(140, "lb"),
  62715. name: "Back",
  62716. image: {
  62717. source: "./media/characters/kara-fox/back.svg",
  62718. extra: 766/596,
  62719. bottom: 29/795
  62720. }
  62721. },
  62722. maw: {
  62723. height: math.unit(0.78, "feet"),
  62724. name: "Maw",
  62725. image: {
  62726. source: "./media/characters/kara-fox/maw.svg"
  62727. }
  62728. },
  62729. pawpads: {
  62730. height: math.unit(0.96, "feet"),
  62731. name: "Pawpads",
  62732. image: {
  62733. source: "./media/characters/kara-fox/pawpads.svg"
  62734. }
  62735. },
  62736. },
  62737. [
  62738. {
  62739. name: "Normal",
  62740. height: math.unit(1.9, "meters"),
  62741. default: true
  62742. },
  62743. {
  62744. name: "Giantess",
  62745. height: math.unit(80, "meters")
  62746. },
  62747. ]
  62748. ))
  62749. characterMakers.push(() => makeCharacter(
  62750. { name: "Naomi (Espeon)", species: ["espeon"], tags: ["anthro"] },
  62751. {
  62752. front: {
  62753. height: math.unit(12, "feet"),
  62754. name: "Front",
  62755. image: {
  62756. source: "./media/characters/naomi-espeon/front.svg",
  62757. extra: 892/797,
  62758. bottom: 5/897
  62759. }
  62760. },
  62761. back: {
  62762. height: math.unit(12, "feet"),
  62763. name: "Back",
  62764. image: {
  62765. source: "./media/characters/naomi-espeon/back.svg",
  62766. extra: 890/785,
  62767. bottom: 12/902
  62768. }
  62769. },
  62770. },
  62771. [
  62772. {
  62773. name: "Normal",
  62774. height: math.unit(12, "feet"),
  62775. default: true
  62776. },
  62777. ]
  62778. ))
  62779. characterMakers.push(() => makeCharacter(
  62780. { name: "Asher Heulfyrn", species: ["skullwolf"], tags: ["anthro", "taur"] },
  62781. {
  62782. anthro_front: {
  62783. height: math.unit(8, "feet"),
  62784. weight: math.unit(625, "lb"),
  62785. name: "Front",
  62786. image: {
  62787. source: "./media/characters/asher-heulfyrn/anthro-front.svg",
  62788. extra: 638/574,
  62789. bottom: 73/711
  62790. },
  62791. form: "anthro",
  62792. default: true
  62793. },
  62794. anthro_back: {
  62795. height: math.unit(8, "feet"),
  62796. weight: math.unit(625, "lb"),
  62797. name: "Back",
  62798. image: {
  62799. source: "./media/characters/asher-heulfyrn/anthro-back.svg",
  62800. extra: 674/614,
  62801. bottom: 7/681
  62802. },
  62803. form: "anthro",
  62804. },
  62805. taur_side: {
  62806. height: math.unit(16, "feet"),
  62807. weight: math.unit(4.5, "tons"),
  62808. name: "Side",
  62809. image: {
  62810. source: "./media/characters/asher-heulfyrn/taur-side.svg",
  62811. extra: 704/646,
  62812. bottom: 132/836
  62813. },
  62814. form: "taur",
  62815. default: true
  62816. },
  62817. },
  62818. [
  62819. {
  62820. name: "Normal",
  62821. height: math.unit(8, "feet"),
  62822. default: true,
  62823. form: "anthro"
  62824. },
  62825. {
  62826. name: "Normal",
  62827. height: math.unit(16, "feet"),
  62828. default: true,
  62829. form: "taur"
  62830. },
  62831. ],
  62832. {
  62833. "anthro": {
  62834. name: "Anthro",
  62835. default: true
  62836. },
  62837. "taur": {
  62838. name: "Taur",
  62839. },
  62840. }
  62841. ))
  62842. characterMakers.push(() => makeCharacter(
  62843. { name: "Amelie", species: ["ferrin"], tags: ["anthro"] },
  62844. {
  62845. front: {
  62846. height: math.unit(190, "cm"),
  62847. weight: math.unit(110, "kg"),
  62848. name: "Front",
  62849. image: {
  62850. source: "./media/characters/amelie/front.svg",
  62851. extra: 530/442,
  62852. bottom: 35/565
  62853. }
  62854. },
  62855. },
  62856. [
  62857. {
  62858. name: "Normal",
  62859. height: math.unit(190, "cm"),
  62860. default: true
  62861. },
  62862. ]
  62863. ))
  62864. characterMakers.push(() => makeCharacter(
  62865. { name: "Valence", species: ["skulldragon"], tags: ["anthro"] },
  62866. {
  62867. front: {
  62868. height: math.unit(21, "feet"),
  62869. weight: math.unit(30000, "lb"),
  62870. name: "Front",
  62871. image: {
  62872. source: "./media/characters/valence/front.svg",
  62873. extra: 1430/1306,
  62874. bottom: 51/1481
  62875. }
  62876. },
  62877. },
  62878. [
  62879. {
  62880. name: "Normal",
  62881. height: math.unit(21, "feet"),
  62882. default: true
  62883. },
  62884. ]
  62885. ))
  62886. characterMakers.push(() => makeCharacter(
  62887. { name: "Aurora Adkins", species: ["rusty-spotted-cat"], tags: ["anthro"] },
  62888. {
  62889. front: {
  62890. height: math.unit(5 + 9/12, "feet"),
  62891. weight: math.unit(170, "lb"),
  62892. name: "Front",
  62893. image: {
  62894. source: "./media/characters/aurora-adkins/front.svg",
  62895. extra: 1141/1089,
  62896. bottom: 41/1182
  62897. }
  62898. },
  62899. },
  62900. [
  62901. {
  62902. name: "Tiny",
  62903. height: math.unit(7, "mm")
  62904. },
  62905. {
  62906. name: "Small",
  62907. height: math.unit(3.4, "inches")
  62908. },
  62909. {
  62910. name: "Normal",
  62911. height: math.unit(5 + 9/12, "feet"),
  62912. default: true
  62913. },
  62914. {
  62915. name: "Big",
  62916. height: math.unit(31, "feet")
  62917. },
  62918. {
  62919. name: "Giant",
  62920. height: math.unit(300, "feet")
  62921. },
  62922. ]
  62923. ))
  62924. characterMakers.push(() => makeCharacter(
  62925. { name: "Cyber", species: ["maned-wolf", "lynx", "deity"], tags: ["anthro"] },
  62926. {
  62927. front: {
  62928. height: math.unit(5 + 6/12, "feet"),
  62929. weight: math.unit(210, "lb"),
  62930. name: "Front",
  62931. image: {
  62932. source: "./media/characters/cyber/front.svg",
  62933. extra: 1968/1798,
  62934. bottom: 10/1978
  62935. },
  62936. extraAttributes: {
  62937. "shoeSize": {
  62938. name: "Shoe Size",
  62939. power: 1,
  62940. type: "length",
  62941. base: math.unit(30, "ShoeSizeMensUS")
  62942. },
  62943. }
  62944. },
  62945. },
  62946. [
  62947. {
  62948. name: "Normal",
  62949. height: math.unit(5 + 6/12, "feet"),
  62950. default: true
  62951. },
  62952. ]
  62953. ))
  62954. characterMakers.push(() => makeCharacter(
  62955. { name: "Sapphire Wairimea", species: ["elf"], tags: ["anthro"] },
  62956. {
  62957. front: {
  62958. height: math.unit(6 + 6/12, "feet"),
  62959. weight: math.unit(140, "lb"),
  62960. name: "Front",
  62961. image: {
  62962. source: "./media/characters/sapphire-wairimea/front.svg",
  62963. extra: 475/458,
  62964. bottom: 14/489
  62965. }
  62966. },
  62967. },
  62968. [
  62969. {
  62970. name: "Normal",
  62971. height: math.unit(6 + 6/12, "feet")
  62972. },
  62973. {
  62974. name: "Macro",
  62975. height: math.unit(132, "feet"),
  62976. default: true
  62977. },
  62978. ]
  62979. ))
  62980. characterMakers.push(() => makeCharacter(
  62981. { name: "Cirkazi", species: ["elf"], tags: ["anthro"] },
  62982. {
  62983. front: {
  62984. height: math.unit(1.6, "meters"),
  62985. weight: math.unit(100, "lb"),
  62986. name: "Front",
  62987. image: {
  62988. source: "./media/characters/cirkazi/front.svg",
  62989. extra: 489/477,
  62990. bottom: 0/489
  62991. }
  62992. },
  62993. },
  62994. [
  62995. {
  62996. name: "Normal",
  62997. height: math.unit(1.6, "meters")
  62998. },
  62999. {
  63000. name: "Macro",
  63001. height: math.unit(800, "feet"),
  63002. default: true
  63003. },
  63004. ]
  63005. ))
  63006. characterMakers.push(() => makeCharacter(
  63007. { name: "Corrin Cavelli", species: ["human"], tags: ["anthro"] },
  63008. {
  63009. front: {
  63010. height: math.unit(5 + 10/12, "feet"),
  63011. weight: math.unit(145, "lb"),
  63012. name: "Front",
  63013. image: {
  63014. source: "./media/characters/corrin-cavelli/front.svg",
  63015. extra: 483/464,
  63016. bottom: 6/489
  63017. }
  63018. },
  63019. },
  63020. [
  63021. {
  63022. name: "Human",
  63023. height: math.unit(5 + 10/12, "feet")
  63024. },
  63025. {
  63026. name: "Giant",
  63027. height: math.unit(210, "feet"),
  63028. default: true
  63029. },
  63030. ]
  63031. ))
  63032. characterMakers.push(() => makeCharacter(
  63033. { name: "Lori Lopez", species: ["human"], tags: ["anthro"] },
  63034. {
  63035. back: {
  63036. height: math.unit(5 + 6/12, "feet"),
  63037. weight: math.unit(115, "lb"),
  63038. name: "Back",
  63039. image: {
  63040. source: "./media/characters/lori-lopez/back.svg",
  63041. extra: 483/474,
  63042. bottom: 6/489
  63043. }
  63044. },
  63045. },
  63046. [
  63047. {
  63048. name: "Human",
  63049. height: math.unit(5 + 6/12, "feet")
  63050. },
  63051. {
  63052. name: "Macro",
  63053. height: math.unit(198, "feet"),
  63054. default: true
  63055. },
  63056. ]
  63057. ))
  63058. characterMakers.push(() => makeCharacter(
  63059. { name: "Sylvia Beauregard", species: ["human"], tags: ["anthro"] },
  63060. {
  63061. front: {
  63062. height: math.unit(6, "feet"),
  63063. weight: math.unit(220, "lb"),
  63064. name: "Front",
  63065. image: {
  63066. source: "./media/characters/sylvia-beauregard/front.svg",
  63067. extra: 483/479,
  63068. bottom: 6/489
  63069. }
  63070. },
  63071. },
  63072. [
  63073. {
  63074. name: "Macro",
  63075. height: math.unit(2071, "feet"),
  63076. default: true
  63077. },
  63078. ]
  63079. ))
  63080. characterMakers.push(() => makeCharacter(
  63081. { name: "Akiko Takahashi", species: ["human"], tags: ["anthro"] },
  63082. {
  63083. back: {
  63084. height: math.unit(5 + 6/12, "feet"),
  63085. weight: math.unit(160, "lb"),
  63086. name: "Back",
  63087. image: {
  63088. source: "./media/characters/akiko-takahashi/back.svg",
  63089. extra: 459/454,
  63090. bottom: 27/486
  63091. }
  63092. },
  63093. },
  63094. [
  63095. {
  63096. name: "Human",
  63097. height: math.unit(5 + 6/12, "feet")
  63098. },
  63099. {
  63100. name: "Macro",
  63101. height: math.unit(198, "feet"),
  63102. default: true
  63103. },
  63104. {
  63105. name: "Megamacro",
  63106. height: math.unit(7128, "feet")
  63107. },
  63108. ]
  63109. ))
  63110. characterMakers.push(() => makeCharacter(
  63111. { name: "Velvet Garza", species: ["human"], tags: ["anthro"] },
  63112. {
  63113. front: {
  63114. height: math.unit(6, "feet"),
  63115. weight: math.unit(140, "lb"),
  63116. name: "Front",
  63117. image: {
  63118. source: "./media/characters/velvet-garza/front.svg",
  63119. extra: 480/462,
  63120. bottom: 7/487
  63121. }
  63122. },
  63123. },
  63124. [
  63125. {
  63126. name: "Macro",
  63127. height: math.unit(37, "feet"),
  63128. default: true
  63129. },
  63130. ]
  63131. ))
  63132. characterMakers.push(() => makeCharacter(
  63133. { name: "Gaia", species: ["deity", "human"], tags: ["anthro"] },
  63134. {
  63135. front: {
  63136. height: math.unit(7 + 6/12, "feet"),
  63137. weight: math.unit(400, "lb"),
  63138. name: "Front",
  63139. image: {
  63140. source: "./media/characters/gaia/front.svg",
  63141. extra: 474/463,
  63142. bottom: 13/487
  63143. }
  63144. },
  63145. },
  63146. [
  63147. {
  63148. name: "MiniMacro",
  63149. height: math.unit(7 + 6/12, "feet")
  63150. },
  63151. {
  63152. name: "GigaMacro",
  63153. height: math.unit(14500, "feet"),
  63154. default: true
  63155. },
  63156. ]
  63157. ))
  63158. characterMakers.push(() => makeCharacter(
  63159. { name: "Tim", species: ["rabbit"], tags: ["anthro"] },
  63160. {
  63161. front: {
  63162. height: math.unit(6, "feet"),
  63163. weight: math.unit(150, "lb"),
  63164. name: "Front",
  63165. image: {
  63166. source: "./media/characters/tim/front.svg",
  63167. extra: 1878/1743,
  63168. bottom: 9/1887
  63169. }
  63170. },
  63171. frontDressed: {
  63172. height: math.unit(6, "feet"),
  63173. weight: math.unit(150, "lb"),
  63174. name: "Front (Dressed)",
  63175. image: {
  63176. source: "./media/characters/tim/front-dressed.svg",
  63177. extra: 1765/1485,
  63178. bottom: 48/1813
  63179. }
  63180. },
  63181. backDressed: {
  63182. height: math.unit(6, "feet"),
  63183. weight: math.unit(150, "lb"),
  63184. name: "Back (Dressed)",
  63185. image: {
  63186. source: "./media/characters/tim/back-dressed.svg",
  63187. extra: 1750/1465,
  63188. bottom: 25/1775
  63189. }
  63190. },
  63191. dick: {
  63192. height: math.unit(1.5, "feet"),
  63193. weight: math.unit(6, "lb"),
  63194. name: "Dick",
  63195. image: {
  63196. source: "./media/characters/tim/dick.svg"
  63197. }
  63198. },
  63199. hand: {
  63200. height: math.unit(0.522, "feet"),
  63201. name: "Hand",
  63202. image: {
  63203. source: "./media/characters/tim/hand.svg"
  63204. }
  63205. },
  63206. palm: {
  63207. height: math.unit(0.48, "feet"),
  63208. name: "Palm",
  63209. image: {
  63210. source: "./media/characters/tim/palm.svg"
  63211. }
  63212. },
  63213. paw: {
  63214. height: math.unit(0.9, "feet"),
  63215. name: "Paw",
  63216. image: {
  63217. source: "./media/characters/tim/paw.svg"
  63218. }
  63219. },
  63220. sole: {
  63221. height: math.unit(0.88, "feet"),
  63222. name: "Sole",
  63223. image: {
  63224. source: "./media/characters/tim/sole.svg"
  63225. }
  63226. },
  63227. },
  63228. [
  63229. {
  63230. name: "Macro",
  63231. height: math.unit(1000, "feet")
  63232. },
  63233. {
  63234. name: "Megamacro",
  63235. height: math.unit(10000, "feet"),
  63236. default: true
  63237. },
  63238. {
  63239. name: "Megamacro+",
  63240. height: math.unit(50000, "feet")
  63241. },
  63242. {
  63243. name: "Gigamacro",
  63244. height: math.unit(150000, "km")
  63245. },
  63246. ]
  63247. ))
  63248. characterMakers.push(() => makeCharacter(
  63249. { name: "Abel Delreoux", species: ["maine-coon"], tags: ["anthro"] },
  63250. {
  63251. front: {
  63252. height: math.unit(5 + 8/12, "feet"),
  63253. weight: math.unit(170, "lb"),
  63254. name: "Front",
  63255. image: {
  63256. source: "./media/characters/abel-delreoux/front.svg",
  63257. extra: 1615/1500,
  63258. bottom: 82/1697
  63259. }
  63260. },
  63261. back: {
  63262. height: math.unit(5 + 8/12, "feet"),
  63263. weight: math.unit(170, "lb"),
  63264. name: "Back",
  63265. image: {
  63266. source: "./media/characters/abel-delreoux/back.svg",
  63267. extra: 1644/1534,
  63268. bottom: 24/1668
  63269. }
  63270. },
  63271. casual: {
  63272. height: math.unit(5 + 8/12, "feet"),
  63273. weight: math.unit(170, "lb"),
  63274. name: "Casual",
  63275. image: {
  63276. source: "./media/characters/abel-delreoux/casual.svg",
  63277. extra: 1716/1598,
  63278. bottom: 29/1745
  63279. }
  63280. },
  63281. sleepy: {
  63282. height: math.unit(5 + 8/12, "feet"),
  63283. weight: math.unit(170, "lb"),
  63284. name: "Sleepy",
  63285. image: {
  63286. source: "./media/characters/abel-delreoux/sleepy.svg",
  63287. extra: 1649/1573,
  63288. bottom: 22/1671
  63289. }
  63290. },
  63291. fem: {
  63292. height: math.unit(5 + 8/12, "feet"),
  63293. weight: math.unit(170, "lb"),
  63294. name: "Fem",
  63295. image: {
  63296. source: "./media/characters/abel-delreoux/fem.svg",
  63297. extra: 1680/1564,
  63298. bottom: 17/1697
  63299. }
  63300. },
  63301. hand: {
  63302. height: math.unit(0.78, "feet"),
  63303. name: "Hand",
  63304. image: {
  63305. source: "./media/characters/abel-delreoux/hand.svg"
  63306. }
  63307. },
  63308. paw: {
  63309. height: math.unit(0.78, "feet"),
  63310. name: "Paw",
  63311. image: {
  63312. source: "./media/characters/abel-delreoux/paw.svg"
  63313. }
  63314. },
  63315. },
  63316. [
  63317. {
  63318. name: "Normal",
  63319. height: math.unit(5 + 8/12, "feet"),
  63320. default: true
  63321. },
  63322. ]
  63323. ))
  63324. characterMakers.push(() => makeCharacter(
  63325. { name: "Meus", species: ["phoenix"], tags: ["anthro"] },
  63326. {
  63327. front: {
  63328. height: math.unit(6, "feet"),
  63329. weight: math.unit(159, "lb"),
  63330. name: "Front",
  63331. image: {
  63332. source: "./media/characters/meus/front.svg",
  63333. extra: 938/843,
  63334. bottom: 37/975
  63335. }
  63336. },
  63337. back: {
  63338. height: math.unit(6, "feet"),
  63339. weight: math.unit(159, "lb"),
  63340. name: "Back",
  63341. image: {
  63342. source: "./media/characters/meus/back.svg",
  63343. extra: 967/873,
  63344. bottom: 12/979
  63345. }
  63346. },
  63347. },
  63348. [
  63349. {
  63350. name: "Micro",
  63351. height: math.unit(2, "inches")
  63352. },
  63353. {
  63354. name: "Mini",
  63355. height: math.unit(6, "inches")
  63356. },
  63357. {
  63358. name: "Normal",
  63359. height: math.unit(6, "feet"),
  63360. default: true
  63361. },
  63362. {
  63363. name: "Macro",
  63364. height: math.unit(84, "feet")
  63365. },
  63366. ]
  63367. ))
  63368. characterMakers.push(() => makeCharacter(
  63369. { name: "Yamato", species: ["kobold"], tags: ["anthro"] },
  63370. {
  63371. front: {
  63372. height: math.unit(60, "cm"),
  63373. weight: math.unit(18, "kg"),
  63374. name: "Front",
  63375. image: {
  63376. source: "./media/characters/yamato/front.svg",
  63377. extra: 733/688,
  63378. bottom: 29/762
  63379. }
  63380. },
  63381. },
  63382. [
  63383. {
  63384. name: "Micro",
  63385. height: math.unit(6, "cm")
  63386. },
  63387. {
  63388. name: "Normal",
  63389. height: math.unit(60, "cm"),
  63390. default: true
  63391. },
  63392. ]
  63393. ))
  63394. characterMakers.push(() => makeCharacter(
  63395. { name: "Barus", species: ["deity"], tags: ["anthro"] },
  63396. {
  63397. front: {
  63398. height: math.unit(9, "feet"),
  63399. weight: math.unit(518, "lb"),
  63400. name: "Front",
  63401. image: {
  63402. source: "./media/characters/barus/front.svg",
  63403. extra: 1877/1795,
  63404. bottom: 55/1932
  63405. }
  63406. },
  63407. },
  63408. [
  63409. {
  63410. name: "Base Height",
  63411. height: math.unit(9, "feet"),
  63412. default: true
  63413. },
  63414. {
  63415. name: "Large",
  63416. height: math.unit(18, "feet")
  63417. },
  63418. {
  63419. name: "Giant",
  63420. height: math.unit(100, "feet")
  63421. },
  63422. {
  63423. name: "Huge",
  63424. height: math.unit(500, "feet")
  63425. },
  63426. {
  63427. name: "Enormous",
  63428. height: math.unit(300, "meters")
  63429. },
  63430. {
  63431. name: "Deity Among Man",
  63432. height: math.unit(3000, "meters")
  63433. },
  63434. ]
  63435. ))
  63436. characterMakers.push(() => makeCharacter(
  63437. { name: "Yari", species: ["sergal"], tags: ["anthro"] },
  63438. {
  63439. front: {
  63440. height: math.unit(1.7, "meters"),
  63441. name: "Front",
  63442. image: {
  63443. source: "./media/characters/yari/front.svg",
  63444. extra: 1210/1125,
  63445. bottom: 283/1493
  63446. }
  63447. },
  63448. back: {
  63449. height: math.unit(1.7, "meters"),
  63450. name: "Back",
  63451. image: {
  63452. source: "./media/characters/yari/back.svg",
  63453. extra: 1240/1195,
  63454. bottom: 180/1420
  63455. }
  63456. },
  63457. head: {
  63458. height: math.unit(1.26, "feet"),
  63459. name: "Head",
  63460. image: {
  63461. source: "./media/characters/yari/head.svg"
  63462. }
  63463. },
  63464. },
  63465. [
  63466. {
  63467. name: "Nano",
  63468. height: math.unit(0.5, "mm")
  63469. },
  63470. {
  63471. name: "Micro",
  63472. height: math.unit(3, "inches")
  63473. },
  63474. {
  63475. name: "Short",
  63476. height: math.unit(1.5, "meters")
  63477. },
  63478. {
  63479. name: "Norm",
  63480. height: math.unit(1.7, "meters"),
  63481. default: true
  63482. },
  63483. ]
  63484. ))
  63485. characterMakers.push(() => makeCharacter(
  63486. { name: "Salem", species: ["mouse"], tags: ["anthro"] },
  63487. {
  63488. front: {
  63489. height: math.unit(5 + 2/12, "feet"),
  63490. weight: math.unit(110, "lb"),
  63491. name: "Front",
  63492. image: {
  63493. source: "./media/characters/salem/front.svg",
  63494. extra: 1895/1800,
  63495. bottom: 23/1918
  63496. }
  63497. },
  63498. back: {
  63499. height: math.unit(5 + 2/12, "feet"),
  63500. weight: math.unit(110, "lb"),
  63501. name: "Back",
  63502. image: {
  63503. source: "./media/characters/salem/back.svg",
  63504. extra: 1875/1802,
  63505. bottom: 20/1895
  63506. }
  63507. },
  63508. head: {
  63509. height: math.unit(1, "feet"),
  63510. name: "Head",
  63511. image: {
  63512. source: "./media/characters/salem/head.svg"
  63513. }
  63514. },
  63515. paw: {
  63516. height: math.unit(0.59, "feet"),
  63517. name: "Paw",
  63518. image: {
  63519. source: "./media/characters/salem/paw.svg"
  63520. }
  63521. },
  63522. beans: {
  63523. height: math.unit(0.66, "feet"),
  63524. name: "Beans",
  63525. image: {
  63526. source: "./media/characters/salem/beans.svg"
  63527. }
  63528. },
  63529. eye: {
  63530. height: math.unit(0.224, "feet"),
  63531. name: "Eye",
  63532. image: {
  63533. source: "./media/characters/salem/eye.svg"
  63534. }
  63535. },
  63536. semiferal: {
  63537. height: math.unit(2.3, "feet"),
  63538. name: "Semiferal",
  63539. image: {
  63540. source: "./media/characters/salem/semiferal.svg",
  63541. extra: 914/839,
  63542. bottom: 32/946
  63543. }
  63544. },
  63545. },
  63546. [
  63547. {
  63548. name: "Micro",
  63549. height: math.unit(4, "inches")
  63550. },
  63551. {
  63552. name: "Normal",
  63553. height: math.unit(5 + 2/12, "feet"),
  63554. default: true
  63555. },
  63556. {
  63557. name: "Macro",
  63558. height: math.unit(108, "feet")
  63559. },
  63560. {
  63561. name: "Macro+",
  63562. height: math.unit(1500, "feet")
  63563. },
  63564. ]
  63565. ))
  63566. characterMakers.push(() => makeCharacter(
  63567. { name: "Kii", species: ["dragon", "dog"], tags: ["anthro"] },
  63568. {
  63569. front: {
  63570. height: math.unit(7 + 6/12, "feet"),
  63571. weight: math.unit(600, "kg"),
  63572. preyCapacity: math.unit(10, "people"),
  63573. name: "Front",
  63574. image: {
  63575. source: "./media/characters/kii/front.svg",
  63576. extra: 3296/3087,
  63577. bottom: 130/3426
  63578. }
  63579. },
  63580. },
  63581. [
  63582. {
  63583. name: "Normal",
  63584. height: math.unit(7 + 6/12, "feet"),
  63585. default: true
  63586. },
  63587. ]
  63588. ))
  63589. characterMakers.push(() => makeCharacter(
  63590. { name: "Taffy", species: ["saltwater-crocodile"], tags: ["anthro"] },
  63591. {
  63592. front: {
  63593. height: math.unit(2, "meters"),
  63594. weight: math.unit(200, "lb"),
  63595. name: "Front",
  63596. image: {
  63597. source: "./media/characters/taffy/front.svg",
  63598. extra: 1666/1618,
  63599. bottom: 157/1823
  63600. }
  63601. },
  63602. back: {
  63603. height: math.unit(2, "meters"),
  63604. weight: math.unit(200, "lb"),
  63605. name: "Back",
  63606. image: {
  63607. source: "./media/characters/taffy/back.svg",
  63608. extra: 1635/1583,
  63609. bottom: 153/1788
  63610. }
  63611. },
  63612. },
  63613. [
  63614. {
  63615. name: "Normal",
  63616. height: math.unit(2, "meters"),
  63617. default: true
  63618. },
  63619. ]
  63620. ))
  63621. characterMakers.push(() => makeCharacter(
  63622. { name: "Barley", species: ["eastern-grey-kangaroo"], tags: ["anthro"] },
  63623. {
  63624. front: {
  63625. height: math.unit(1.55, "meters"),
  63626. weight: math.unit(60, "kg"),
  63627. name: "Front",
  63628. image: {
  63629. source: "./media/characters/barley/front.svg",
  63630. extra: 1520/1340,
  63631. bottom: 47/1567
  63632. }
  63633. },
  63634. back: {
  63635. height: math.unit(1.55, "meters"),
  63636. weight: math.unit(60, "kg"),
  63637. name: "Back",
  63638. image: {
  63639. source: "./media/characters/barley/back.svg",
  63640. extra: 1543/1341,
  63641. bottom: 12/1555
  63642. }
  63643. },
  63644. feet: {
  63645. height: math.unit(2.18, "feet"),
  63646. name: "Feet",
  63647. image: {
  63648. source: "./media/characters/barley/feet.svg"
  63649. }
  63650. },
  63651. },
  63652. [
  63653. {
  63654. name: "Normal",
  63655. height: math.unit(1.55, "meters"),
  63656. default: true
  63657. },
  63658. ]
  63659. ))
  63660. characterMakers.push(() => makeCharacter(
  63661. { name: "Lydia Lopez", species: ["shark"], tags: ["anthro"] },
  63662. {
  63663. dressed: {
  63664. height: math.unit(6, "feet"),
  63665. name: "Dressed",
  63666. image: {
  63667. source: "./media/characters/lydia-lopez/dressed.svg",
  63668. extra: 1319/1277,
  63669. bottom: 90/1409
  63670. }
  63671. },
  63672. nude: {
  63673. height: math.unit(6, "feet"),
  63674. name: "Nude",
  63675. image: {
  63676. source: "./media/characters/lydia-lopez/nude.svg",
  63677. extra: 1319/1277,
  63678. bottom: 90/1409
  63679. }
  63680. },
  63681. },
  63682. [
  63683. {
  63684. name: "Normal",
  63685. height: math.unit(6, "feet"),
  63686. default: true
  63687. },
  63688. {
  63689. name: "Maximum",
  63690. height: math.unit(2101, "feet")
  63691. },
  63692. ]
  63693. ))
  63694. characterMakers.push(() => makeCharacter(
  63695. { name: "Kira (Slime)", species: ["slime"], tags: ["goo"] },
  63696. {
  63697. front: {
  63698. height: math.unit(5 + 4/12, "feet"),
  63699. weight: math.unit(250, "lb"),
  63700. volume: math.unit(20, "gallons"),
  63701. name: "Front",
  63702. image: {
  63703. source: "./media/characters/kira-slime/front.svg",
  63704. extra: 442/403,
  63705. bottom: 18/460
  63706. }
  63707. },
  63708. frontNsfw: {
  63709. height: math.unit(5 + 4/12, "feet"),
  63710. weight: math.unit(250, "lb"),
  63711. volume: math.unit(20, "gallons"),
  63712. name: "Front (NSFW)",
  63713. image: {
  63714. source: "./media/characters/kira-slime/front-nsfw.svg",
  63715. extra: 442/403,
  63716. bottom: 18/460
  63717. }
  63718. },
  63719. },
  63720. [
  63721. {
  63722. name: "Droplet",
  63723. height: math.unit(0.0464452, "feet")
  63724. },
  63725. {
  63726. name: "Pint",
  63727. height: math.unit(0.9824, "feet")
  63728. },
  63729. {
  63730. name: "Bucket",
  63731. height: math.unit(2.83, "feet")
  63732. },
  63733. {
  63734. name: "Normal",
  63735. height: math.unit(5 + 4/12, "feet"),
  63736. default: true
  63737. },
  63738. {
  63739. name: "Tub",
  63740. height: math.unit(8.46614, "feet")
  63741. },
  63742. {
  63743. name: "Pool",
  63744. height: math.unit(31.1895, "feet")
  63745. },
  63746. {
  63747. name: "Pond",
  63748. height: math.unit(170.349, "feet")
  63749. },
  63750. {
  63751. name: "Lake",
  63752. height: math.unit(289334, "feet")
  63753. },
  63754. {
  63755. name: "Ocean",
  63756. height: math.unit(1.11940e+7, "feet")
  63757. },
  63758. ]
  63759. ))
  63760. characterMakers.push(() => makeCharacter(
  63761. { name: "Holiday", species: ["fennec-fox", "deer"], tags: ["anthro"] },
  63762. {
  63763. front: {
  63764. height: math.unit(5 + 6/12, "feet"),
  63765. weight: math.unit(120, "lb"),
  63766. name: "Front",
  63767. image: {
  63768. source: "./media/characters/holiday/front.svg",
  63769. extra: 456/403,
  63770. bottom: 4/460
  63771. }
  63772. },
  63773. back: {
  63774. height: math.unit(5 + 6/12, "feet"),
  63775. weight: math.unit(120, "lb"),
  63776. name: "Back",
  63777. image: {
  63778. source: "./media/characters/holiday/back.svg",
  63779. extra: 450/404,
  63780. bottom: 12/462
  63781. }
  63782. },
  63783. head: {
  63784. height: math.unit(2.3, "feet"),
  63785. name: "Head",
  63786. image: {
  63787. source: "./media/characters/holiday/head.svg"
  63788. }
  63789. },
  63790. },
  63791. [
  63792. {
  63793. name: "Normal",
  63794. height: math.unit(5 + 6/12, "feet"),
  63795. default: true
  63796. },
  63797. {
  63798. name: "Macro",
  63799. height: math.unit(6574.25, "feet")
  63800. },
  63801. ]
  63802. ))
  63803. characterMakers.push(() => makeCharacter(
  63804. { name: "Camina", species: ["latenivenatrix"], tags: ["anthro"] },
  63805. {
  63806. front: {
  63807. height: math.unit(6 + 2/12, "feet"),
  63808. weight: math.unit(200, "lb"),
  63809. name: "Front",
  63810. image: {
  63811. source: "./media/characters/camina/front.svg",
  63812. extra: 1048/985,
  63813. bottom: 30/1078
  63814. }
  63815. },
  63816. },
  63817. [
  63818. {
  63819. name: "Normal",
  63820. height: math.unit(6 + 2/12, "feet"),
  63821. default: true
  63822. },
  63823. ]
  63824. ))
  63825. characterMakers.push(() => makeCharacter(
  63826. { name: "Smuck", species: ["duck"], tags: ["feral"] },
  63827. {
  63828. front: {
  63829. height: math.unit(30, "cm"),
  63830. weight: math.unit(420, "grams"),
  63831. name: "Front",
  63832. image: {
  63833. source: "./media/characters/smuck/front.svg",
  63834. extra: 379/345,
  63835. bottom: 36/415
  63836. }
  63837. },
  63838. },
  63839. [
  63840. {
  63841. name: "Smuck-Sized",
  63842. height: math.unit(30, "cm"),
  63843. default: true
  63844. },
  63845. ]
  63846. ))
  63847. characterMakers.push(() => makeCharacter(
  63848. { name: "Bylur", species: ["monster"], tags: ["anthro"] },
  63849. {
  63850. frontSfw: {
  63851. height: math.unit(10, "feet"),
  63852. weight: math.unit(1000, "kg"),
  63853. preyCapacity: math.unit(2, "people"),
  63854. name: "Front (SFW)",
  63855. image: {
  63856. source: "./media/characters/bylur/front-sfw.svg",
  63857. extra: 419/343,
  63858. bottom: 3/422
  63859. },
  63860. default: true
  63861. },
  63862. frontSheath: {
  63863. height: math.unit(10, "feet"),
  63864. weight: math.unit(1000, "kg"),
  63865. preyCapacity: math.unit(2, "people"),
  63866. name: "Front (Sheath)",
  63867. image: {
  63868. source: "./media/characters/bylur/front-sheath.svg",
  63869. extra: 419/343,
  63870. bottom: 3/422
  63871. }
  63872. },
  63873. frontErect: {
  63874. height: math.unit(10, "feet"),
  63875. weight: math.unit(1000, "kg"),
  63876. preyCapacity: math.unit(2, "people"),
  63877. name: "Front (Erect)",
  63878. image: {
  63879. source: "./media/characters/bylur/front-erect.svg",
  63880. extra: 419/343,
  63881. bottom: 3/422
  63882. }
  63883. },
  63884. back: {
  63885. height: math.unit(10, "feet"),
  63886. weight: math.unit(1000, "kg"),
  63887. preyCapacity: math.unit(2, "people"),
  63888. name: "Back",
  63889. image: {
  63890. source: "./media/characters/bylur/back.svg",
  63891. extra: 392/315,
  63892. bottom: 3/395
  63893. }
  63894. },
  63895. maw: {
  63896. height: math.unit(3.65, "feet"),
  63897. name: "Maw",
  63898. image: {
  63899. source: "./media/characters/bylur/maw.svg"
  63900. }
  63901. },
  63902. },
  63903. [
  63904. {
  63905. name: "Slightly Human Sized",
  63906. height: math.unit(10, "feet")
  63907. },
  63908. {
  63909. name: "Normal",
  63910. height: math.unit(35, "feet"),
  63911. default: true
  63912. },
  63913. {
  63914. name: "Macro",
  63915. height: math.unit(130, "feet")
  63916. },
  63917. ]
  63918. ))
  63919. characterMakers.push(() => makeCharacter(
  63920. { name: "Oarven", species: ["earless-monitor-lizard"], tags: ["anthro"] },
  63921. {
  63922. frontNsfw: {
  63923. height: math.unit(6, "feet"),
  63924. weight: math.unit(250, "lb"),
  63925. preyCapacity: math.unit(0.05, "people"),
  63926. name: "Front (NSFW)",
  63927. image: {
  63928. source: "./media/characters/oarven/front-nsfw.svg",
  63929. extra: 1795/1783,
  63930. bottom: 142/1937
  63931. }
  63932. },
  63933. frontSfw: {
  63934. height: math.unit(6, "feet"),
  63935. weight: math.unit(250, "lb"),
  63936. preyCapacity: math.unit(0.05, "people"),
  63937. name: "Front (SFW)",
  63938. image: {
  63939. source: "./media/characters/oarven/front-sfw.svg",
  63940. extra: 1795/1783,
  63941. bottom: 142/1937
  63942. }
  63943. },
  63944. },
  63945. [
  63946. {
  63947. name: "Megamacro",
  63948. height: math.unit(5, "miles"),
  63949. default: true
  63950. },
  63951. {
  63952. name: "Maximum Height",
  63953. height: math.unit(5, "AUs")
  63954. },
  63955. ]
  63956. ))
  63957. characterMakers.push(() => makeCharacter(
  63958. { name: "Solidarity", species: ["aerosynth"], tags: ["feral"] },
  63959. {
  63960. side: {
  63961. height: math.unit(1065, "meters"),
  63962. weight: math.unit(1e12, "kg"),
  63963. volume: math.unit(3265000000, "m^3"),
  63964. name: "Side",
  63965. image: {
  63966. source: "./media/characters/solidarity/side.svg"
  63967. }
  63968. },
  63969. front: {
  63970. height: math.unit(1065, "meters"),
  63971. weight: math.unit(3265000000000, "kg"),
  63972. volume: math.unit(3265000000, "m^3"),
  63973. name: "Front",
  63974. image: {
  63975. source: "./media/characters/solidarity/front.svg"
  63976. }
  63977. },
  63978. top: {
  63979. height: math.unit(5823, "meters"),
  63980. weight: math.unit(3265000000000, "kg"),
  63981. volume: math.unit(3265000000, "m^3"),
  63982. name: "Top",
  63983. image: {
  63984. source: "./media/characters/solidarity/top.svg"
  63985. }
  63986. },
  63987. },
  63988. [
  63989. {
  63990. name: "Normal",
  63991. height: math.unit(1065, "meters"),
  63992. default: true
  63993. },
  63994. ]
  63995. ))
  63996. characterMakers.push(() => makeCharacter(
  63997. { name: "Ani'szi", species: ["phenx"], tags: ["taur"] },
  63998. {
  63999. side: {
  64000. height: math.unit(18 + 4/12, "feet"),
  64001. weight: math.unit(13000, "kg"),
  64002. name: "Side",
  64003. image: {
  64004. source: "./media/characters/ani'szi/side.svg",
  64005. extra: 468/459,
  64006. bottom: 60/528
  64007. }
  64008. },
  64009. head: {
  64010. height: math.unit(4.8, "feet"),
  64011. name: "Head",
  64012. image: {
  64013. source: "./media/characters/ani'szi/head.svg"
  64014. }
  64015. },
  64016. jaws: {
  64017. height: math.unit(2.25, "feet"),
  64018. name: "Jaws",
  64019. image: {
  64020. source: "./media/characters/ani'szi/jaws.svg"
  64021. }
  64022. },
  64023. bust: {
  64024. height: math.unit(8.9, "feet"),
  64025. name: "Bust",
  64026. image: {
  64027. source: "./media/characters/ani'szi/bust.svg"
  64028. }
  64029. },
  64030. back: {
  64031. height: math.unit(13.53, "feet"),
  64032. name: "Back",
  64033. image: {
  64034. source: "./media/characters/ani'szi/back.svg"
  64035. }
  64036. },
  64037. eye: {
  64038. height: math.unit(0.44, "feet"),
  64039. name: "Eye",
  64040. image: {
  64041. source: "./media/characters/ani'szi/eye.svg"
  64042. }
  64043. },
  64044. },
  64045. [
  64046. {
  64047. name: "Normal",
  64048. height: math.unit(18 + 4/12, "feet"),
  64049. default: true
  64050. },
  64051. ]
  64052. ))
  64053. characterMakers.push(() => makeCharacter(
  64054. { name: "Rain", species: ["driger"], tags: ["anthro"] },
  64055. {
  64056. front: {
  64057. height: math.unit(7 + 6/12, "feet"),
  64058. weight: math.unit(300, "lb"),
  64059. name: "Front",
  64060. image: {
  64061. source: "./media/characters/rain/front.svg",
  64062. extra: 2955/2698,
  64063. bottom: 235/3190
  64064. }
  64065. },
  64066. dressed: {
  64067. height: math.unit(7 + 6/12, "feet"),
  64068. weight: math.unit(300, "lb"),
  64069. name: "Dressed",
  64070. image: {
  64071. source: "./media/characters/rain/dressed.svg",
  64072. extra: 2783/2572,
  64073. bottom: 430/3213
  64074. }
  64075. },
  64076. },
  64077. [
  64078. {
  64079. name: "Normal",
  64080. height: math.unit(7 + 6/12, "feet"),
  64081. default: true
  64082. },
  64083. {
  64084. name: "Macro",
  64085. height: math.unit(200, "feet")
  64086. },
  64087. {
  64088. name: "Macro+",
  64089. height: math.unit(500, "feet")
  64090. },
  64091. {
  64092. name: "Megamacro",
  64093. height: math.unit(5, "miles")
  64094. },
  64095. ]
  64096. ))
  64097. characterMakers.push(() => makeCharacter(
  64098. { name: "Anise", species: ["gryphon"], tags: ["feral", "taur"] },
  64099. {
  64100. taur_side: {
  64101. height: math.unit(3, "meters"),
  64102. name: "Side",
  64103. image: {
  64104. source: "./media/characters/anise/taur-side.svg",
  64105. extra: 1833/926,
  64106. bottom: 134/1967
  64107. },
  64108. form: "taur",
  64109. default: true
  64110. },
  64111. feral_side: {
  64112. height: math.unit(3, "meters"),
  64113. name: "Side",
  64114. image: {
  64115. source: "./media/characters/anise/feral-side.svg",
  64116. extra: 681/349,
  64117. bottom: 26/707
  64118. },
  64119. form: "feral"
  64120. },
  64121. },
  64122. [
  64123. {
  64124. name: "Normal",
  64125. height: math.unit(3, "meters"),
  64126. default: true,
  64127. allForms: true
  64128. },
  64129. ],
  64130. {
  64131. "taur": {
  64132. name: "Taur",
  64133. default: true
  64134. },
  64135. "feral": {
  64136. name: "Feral",
  64137. },
  64138. }
  64139. ))
  64140. characterMakers.push(() => makeCharacter(
  64141. { name: "Sarina", species: ["red-panda"], tags: ["anthro"] },
  64142. {
  64143. front: {
  64144. height: math.unit(1.9, "meters"),
  64145. weight: math.unit(75, "kg"),
  64146. name: "Front",
  64147. image: {
  64148. source: "./media/characters/sarina/front.svg",
  64149. extra: 1275/1200,
  64150. bottom: 49/1324
  64151. }
  64152. },
  64153. back: {
  64154. height: math.unit(1.9, "meters"),
  64155. weight: math.unit(75, "kg"),
  64156. name: "Back",
  64157. image: {
  64158. source: "./media/characters/sarina/back.svg",
  64159. extra: 1279/1209,
  64160. bottom: 14/1293
  64161. }
  64162. },
  64163. dressed: {
  64164. height: math.unit(1.9, "meters"),
  64165. weight: math.unit(75, "kg"),
  64166. name: "Dressed",
  64167. image: {
  64168. source: "./media/characters/sarina/dressed.svg",
  64169. extra: 1256/1187,
  64170. bottom: 56/1312
  64171. }
  64172. },
  64173. paw: {
  64174. height: math.unit(0.57, "feet"),
  64175. name: "Paw",
  64176. image: {
  64177. source: "./media/characters/sarina/paw.svg"
  64178. }
  64179. },
  64180. toering: {
  64181. height: math.unit(0.27, "feet"),
  64182. name: "Toering",
  64183. image: {
  64184. source: "./media/characters/sarina/toering.svg"
  64185. }
  64186. },
  64187. },
  64188. [
  64189. {
  64190. name: "Incognito",
  64191. height: math.unit(1.9, "meters")
  64192. },
  64193. {
  64194. name: "Home Size",
  64195. height: math.unit(160, "meters"),
  64196. default: true
  64197. },
  64198. {
  64199. name: "Mega",
  64200. height: math.unit(50, "km")
  64201. },
  64202. {
  64203. name: "Small Giga",
  64204. height: math.unit(250, "km")
  64205. },
  64206. {
  64207. name: "Giga (Preferred Size)",
  64208. height: math.unit(3000, "km")
  64209. },
  64210. {
  64211. name: "Terra",
  64212. height: math.unit(40000, "km")
  64213. },
  64214. {
  64215. name: "Terra+",
  64216. height: math.unit(400000, "km")
  64217. },
  64218. {
  64219. name: "Solar",
  64220. height: math.unit(35e6, "km")
  64221. },
  64222. {
  64223. name: "Galactic",
  64224. height: math.unit(648106, "parsecs")
  64225. },
  64226. {
  64227. name: "Universal",
  64228. height: math.unit(7, "universes")
  64229. },
  64230. {
  64231. name: "Universal+",
  64232. height: math.unit(30, "universes")
  64233. },
  64234. ]
  64235. ))
  64236. characterMakers.push(() => makeCharacter(
  64237. { name: "Sifray", species: ["homestuck-troll"], tags: ["anthro"] },
  64238. {
  64239. front: {
  64240. height: math.unit(5 + 6/12, "feet"),
  64241. name: "Front",
  64242. image: {
  64243. source: "./media/characters/sifray/front.svg",
  64244. extra: 722/691,
  64245. bottom: 64/786
  64246. }
  64247. },
  64248. },
  64249. [
  64250. {
  64251. name: "Normal",
  64252. height: math.unit(5 + 6/12, "feet"),
  64253. default: true
  64254. },
  64255. ]
  64256. ))
  64257. //characters
  64258. function makeCharacters() {
  64259. const results = [];
  64260. characterMakers.forEach(character => {
  64261. results.push(character());
  64262. });
  64263. return results;
  64264. }